blob: 0c9f6c4e99666ef67dbc288233d12b6e335c8bc5 [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 },
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +0000567 .printlock = spi_prettyprint_status_register_amic_a25l05p,
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 },
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +0000601 .printlock = spi_prettyprint_status_register_amic_a25l05p,
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 },
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +0000636 .printlock = spi_prettyprint_status_register_amic_a25l05p,
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 },
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +0000671 .printlock = spi_prettyprint_status_register_amic_a25l05p,
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 },
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +0000706 .printlock = spi_prettyprint_status_register_amic_a25l05p,
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 },
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +0000741 .printlock = spi_prettyprint_status_register_amic_a25l05p,
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 },
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +0000781 .printlock = spi_prettyprint_status_register_amic_a25l40p,
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 },
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +0000816 .printlock = spi_prettyprint_status_register_amic_a25l40p,
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 },
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +0000851 .printlock = spi_prettyprint_status_register_amic_a25l40p,
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 },
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +0000889 .printlock = spi_prettyprint_status_register_amic_a25l40p,
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 },
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +0000927 .printlock = spi_prettyprint_status_register_amic_a25l40p,
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,
957 }
958 },
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +0000959 .printlock = spi_prettyprint_status_register_amic_a25l40p,
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,
989 }
990 },
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +0000991 .printlock = spi_prettyprint_status_register_amic_a25l40p,
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,
1021 }
1022 },
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +00001023 .printlock = spi_prettyprint_status_register_amic_a25l40p,
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,
1053 }
1054 },
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +00001055 .printlock = spi_prettyprint_status_register_amic_a25l40p,
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,
1085 }
1086 },
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +00001087 .printlock = spi_prettyprint_status_register_amic_a25l40p,
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,
1117 }
1118 },
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +00001119 .printlock = spi_prettyprint_status_register_amic_a25l40p,
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,
Dan Lenski11617122010-07-29 15:00:40 +00001136 .tested = TEST_UNTESTED,
1137 .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,
1156 }
1157 },
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,
1195 }
1196 },
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +00001197 .printlock = spi_prettyprint_status_register_amic_a25lq032,
Dan Lenski11617122010-07-29 15:00:40 +00001198 .unlock = NULL, /* Two status reg bytes (read with 0x35 and 0x05) */
1199 .write = spi_chip_write_256,
1200 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001201 .voltage = {2700, 3600},
Dan Lenski11617122010-07-29 15:00:40 +00001202 },
1203
1204 {
1205 .vendor = "AMIC",
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001206 .name = "A29002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001207 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001208 .manufacture_id = AMIC_ID_NOPREFIX,
1209 .model_id = AMIC_A29002B,
1210 .total_size = 256,
1211 .page_size = 64 * 1024,
1212 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
1213 .tested = TEST_UNTESTED,
1214 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00001215 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001216 .block_erasers =
1217 {
1218 {
1219 .eraseblocks = {
1220 {16 * 1024, 1},
1221 {8 * 1024, 2},
1222 {32 * 1024, 1},
1223 {64 * 1024, 3},
1224 },
1225 .block_erase = erase_sector_jedec,
1226 }, {
1227 .eraseblocks = { {256 * 1024, 1} },
1228 .block_erase = erase_chip_block_jedec,
1229 },
1230 },
1231 .write = write_jedec_1,
1232 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001233 .voltage = {4500, 5500},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001234 },
1235
1236 {
1237 .vendor = "AMIC",
1238 .name = "A29002T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001239 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001240 .manufacture_id = AMIC_ID_NOPREFIX,
1241 .model_id = AMIC_A29002T,
1242 .total_size = 256,
1243 .page_size = 64 * 1024,
1244 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00001245 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001246 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00001247 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001248 .block_erasers =
1249 {
1250 {
1251 .eraseblocks = {
1252 {64 * 1024, 3},
1253 {32 * 1024, 1},
1254 {8 * 1024, 2},
1255 {16 * 1024, 1},
1256 },
1257 .block_erase = erase_sector_jedec,
1258 }, {
1259 .eraseblocks = { {256 * 1024, 1} },
1260 .block_erase = erase_chip_block_jedec,
1261 },
1262 },
1263 .write = write_jedec_1,
1264 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001265 .voltage = {4500, 5500},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001266 },
1267
1268 {
1269 .vendor = "AMIC",
1270 .name = "A29040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001271 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001272 .manufacture_id = AMIC_ID_NOPREFIX,
1273 .model_id = AMIC_A29040B,
1274 .total_size = 512,
1275 .page_size = 64 * 1024,
1276 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
1277 .tested = TEST_UNTESTED,
1278 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00001279 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001280 .block_erasers =
1281 {
1282 {
1283 .eraseblocks = { {64 * 1024, 8} },
1284 .block_erase = erase_sector_jedec,
1285 }, {
1286 .eraseblocks = { {512 * 1024, 1} },
1287 .block_erase = erase_chip_block_jedec,
1288 },
1289 },
1290 .write = write_jedec_1,
1291 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001292 .voltage = {4500, 5500},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001293 },
1294
1295 {
1296 .vendor = "AMIC",
1297 .name = "A49LF040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001298 .bustype = BUS_LPC,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001299 .manufacture_id = AMIC_ID_NOPREFIX,
1300 .model_id = AMIC_A49LF040A,
1301 .total_size = 512,
1302 .page_size = 64 * 1024,
1303 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Tauneraf2db612011-12-02 21:48:17 +00001304 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001305 .probe = probe_jedec,
1306 .probe_timing = TIMING_ZERO, /* routine is wrapper to probe_jedec (pm49fl00x.c) */
1307 .block_erasers =
1308 {
1309 {
1310 .eraseblocks = { {64 * 1024, 8} },
1311 .block_erase = erase_block_jedec,
1312 }, {
1313 .eraseblocks = { {512 * 1024, 1} },
1314 .block_erase = erase_chip_block_jedec,
1315 }
1316 },
1317 .unlock = unlock_49fl00x,
1318 .write = write_jedec_1,
1319 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001320 .voltage = {3000, 3600},
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00001321 },
1322
1323 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001324 .vendor = "Atmel",
1325 .name = "AT25DF021",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001326 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001327 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001328 .model_id = ATMEL_AT25DF021,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001329 .total_size = 256,
1330 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00001331 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
1332 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001333 .tested = TEST_UNTESTED,
1334 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001335 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001336 .block_erasers =
1337 {
1338 {
1339 .eraseblocks = { {4 * 1024, 64} },
1340 .block_erase = spi_block_erase_20,
1341 }, {
1342 .eraseblocks = { {32 * 1024, 8} },
1343 .block_erase = spi_block_erase_52,
1344 }, {
1345 .eraseblocks = { {64 * 1024, 4} },
1346 .block_erase = spi_block_erase_d8,
1347 }, {
1348 .eraseblocks = { {256 * 1024, 1} },
1349 .block_erase = spi_block_erase_60,
1350 }, {
1351 .eraseblocks = { {256 * 1024, 1} },
1352 .block_erase = spi_block_erase_c7,
1353 }
1354 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001355 .printlock = spi_prettyprint_status_register_at25df,
1356 .unlock = spi_disable_blockprotect_at25df,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001357 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001358 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00001359 .voltage = {2700, 3600}, /* 2.3-3.6V & 2.7-3.6V models available */
FENG yu ningff692fb2008-12-08 18:15:10 +00001360 },
1361
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001362 {
1363 .vendor = "Atmel",
1364 .name = "AT25DF041A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001365 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001366 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001367 .model_id = ATMEL_AT25DF041A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001368 .total_size = 512,
1369 .page_size = 256,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001370 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001371 .tested = TEST_UNTESTED,
1372 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001373 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001374 .block_erasers =
1375 {
1376 {
1377 .eraseblocks = { {4 * 1024, 128} },
1378 .block_erase = spi_block_erase_20,
1379 }, {
1380 .eraseblocks = { {32 * 1024, 16} },
1381 .block_erase = spi_block_erase_52,
1382 }, {
1383 .eraseblocks = { {64 * 1024, 8} },
1384 .block_erase = spi_block_erase_d8,
1385 }, {
1386 .eraseblocks = { {512 * 1024, 1} },
1387 .block_erase = spi_block_erase_60,
1388 }, {
1389 .eraseblocks = { {512 * 1024, 1} },
1390 .block_erase = spi_block_erase_c7,
1391 }
1392 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001393 .printlock = spi_prettyprint_status_register_at25df,
1394 .unlock = spi_disable_blockprotect_at25df,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001395 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001396 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00001397 .voltage = {2700, 3600}, /* 2.3-3.6V & 2.7-3.6V models available */
FENG yu ningff692fb2008-12-08 18:15:10 +00001398 },
1399
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001400 {
1401 .vendor = "Atmel",
1402 .name = "AT25DF081",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001403 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001404 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001405 .model_id = ATMEL_AT25DF081,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001406 .total_size = 1024,
1407 .page_size = 256,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001408 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001409 .tested = TEST_UNTESTED,
1410 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001411 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001412 .block_erasers =
1413 {
1414 {
1415 .eraseblocks = { {4 * 1024, 256} },
1416 .block_erase = spi_block_erase_20,
1417 }, {
1418 .eraseblocks = { {32 * 1024, 32} },
1419 .block_erase = spi_block_erase_52,
1420 }, {
1421 .eraseblocks = { {64 * 1024, 16} },
1422 .block_erase = spi_block_erase_d8,
1423 }, {
1424 .eraseblocks = { {1024 * 1024, 1} },
1425 .block_erase = spi_block_erase_60,
1426 }, {
1427 .eraseblocks = { {1024 * 1024, 1} },
1428 .block_erase = spi_block_erase_c7,
1429 }
1430 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001431 .printlock = spi_prettyprint_status_register_at25df,
1432 .unlock = spi_disable_blockprotect_at25df,
1433 .write = spi_chip_write_256,
1434 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001435 .voltage = {1600, 2000}, /* Datasheet says range is 1.65-1.95 V */
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001436 },
1437
1438 {
1439 .vendor = "Atmel",
1440 .name = "AT25DF081A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001441 .bustype = BUS_SPI,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001442 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001443 .model_id = ATMEL_AT25DF081A,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001444 .total_size = 1024,
1445 .page_size = 256,
1446 .feature_bits = FEATURE_WRSR_WREN,
1447 .tested = TEST_UNTESTED,
1448 .probe = probe_spi_rdid,
1449 .probe_timing = TIMING_ZERO,
1450 .block_erasers =
1451 {
1452 {
1453 .eraseblocks = { {4 * 1024, 256} },
1454 .block_erase = spi_block_erase_20,
1455 }, {
1456 .eraseblocks = { {32 * 1024, 32} },
1457 .block_erase = spi_block_erase_52,
1458 }, {
1459 .eraseblocks = { {64 * 1024, 16} },
1460 .block_erase = spi_block_erase_d8,
1461 }, {
1462 .eraseblocks = { {1024 * 1024, 1} },
1463 .block_erase = spi_block_erase_60,
1464 }, {
1465 .eraseblocks = { {1024 * 1024, 1} },
1466 .block_erase = spi_block_erase_c7,
1467 }
1468 },
1469 .printlock = spi_prettyprint_status_register_at25df_sec,
1470 .unlock = spi_disable_blockprotect_at25df_sec,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001471 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001472 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00001473 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001474 },
1475
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001476 {
1477 .vendor = "Atmel",
1478 .name = "AT25DF161",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001479 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001480 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001481 .model_id = ATMEL_AT25DF161,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001482 .total_size = 2048,
1483 .page_size = 256,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001484 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner2abab942012-04-27 20:41:23 +00001485 .tested = TEST_OK_PROBE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001486 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001487 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001488 .block_erasers =
1489 {
1490 {
1491 .eraseblocks = { {4 * 1024, 512} },
1492 .block_erase = spi_block_erase_20,
1493 }, {
1494 .eraseblocks = { {32 * 1024, 64} },
1495 .block_erase = spi_block_erase_52,
1496 }, {
1497 .eraseblocks = { {64 * 1024, 32} },
1498 .block_erase = spi_block_erase_d8,
1499 }, {
1500 .eraseblocks = { {2 * 1024 * 1024, 1} },
1501 .block_erase = spi_block_erase_60,
1502 }, {
1503 .eraseblocks = { {2 * 1024 * 1024, 1} },
1504 .block_erase = spi_block_erase_c7,
1505 }
1506 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001507 .printlock = spi_prettyprint_status_register_at25df_sec,
1508 .unlock = spi_disable_blockprotect_at25df_sec,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001509 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001510 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001511 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001512 },
1513
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001514 {
1515 .vendor = "Atmel",
1516 .name = "AT25DF321",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001517 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001518 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001519 .model_id = ATMEL_AT25DF321,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001520 .total_size = 4096,
1521 .page_size = 256,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001522 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerd06d9412011-06-12 19:47:55 +00001523 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001524 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001525 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001526 .block_erasers =
1527 {
1528 {
1529 .eraseblocks = { {4 * 1024, 1024} },
1530 .block_erase = spi_block_erase_20,
1531 }, {
1532 .eraseblocks = { {32 * 1024, 128} },
1533 .block_erase = spi_block_erase_52,
1534 }, {
1535 .eraseblocks = { {64 * 1024, 64} },
1536 .block_erase = spi_block_erase_d8,
1537 }, {
1538 .eraseblocks = { {4 * 1024 * 1024, 1} },
1539 .block_erase = spi_block_erase_60,
1540 }, {
1541 .eraseblocks = { {4 * 1024 * 1024, 1} },
1542 .block_erase = spi_block_erase_c7,
1543 }
1544 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001545 .printlock = spi_prettyprint_status_register_at25df,
1546 .unlock = spi_disable_blockprotect_at25df,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001547 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001548 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001549 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001550 },
1551
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001552 {
1553 .vendor = "Atmel",
1554 .name = "AT25DF321A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001555 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001556 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001557 .model_id = ATMEL_AT25DF321A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001558 .total_size = 4096,
1559 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00001560 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
1561 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00001562 .tested = TEST_OK_PROBE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001563 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001564 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001565 .block_erasers =
1566 {
1567 {
1568 .eraseblocks = { {4 * 1024, 1024} },
1569 .block_erase = spi_block_erase_20,
1570 }, {
1571 .eraseblocks = { {32 * 1024, 128} },
1572 .block_erase = spi_block_erase_52,
1573 }, {
1574 .eraseblocks = { {64 * 1024, 64} },
1575 .block_erase = spi_block_erase_d8,
1576 }, {
1577 .eraseblocks = { {4 * 1024 * 1024, 1} },
1578 .block_erase = spi_block_erase_60,
1579 }, {
1580 .eraseblocks = { {4 * 1024 * 1024, 1} },
1581 .block_erase = spi_block_erase_c7,
1582 }
1583 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001584 .printlock = spi_prettyprint_status_register_at25df_sec,
1585 .unlock = spi_disable_blockprotect_at25df_sec,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001586 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001587 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001588 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001589 },
1590
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001591 {
1592 .vendor = "Atmel",
Paul Menzelac427b22012-02-16 21:07:07 +00001593 .name = "AT25DF641(A)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001594 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001595 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001596 .model_id = ATMEL_AT25DF641,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001597 .total_size = 8192,
1598 .page_size = 256,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001599 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001600 .tested = TEST_UNTESTED,
1601 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001602 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001603 .block_erasers =
1604 {
1605 {
1606 .eraseblocks = { {4 * 1024, 2048} },
1607 .block_erase = spi_block_erase_20,
1608 }, {
1609 .eraseblocks = { {32 * 1024, 256} },
1610 .block_erase = spi_block_erase_52,
1611 }, {
1612 .eraseblocks = { {64 * 1024, 128} },
1613 .block_erase = spi_block_erase_d8,
1614 }, {
1615 .eraseblocks = { {8 * 1024 * 1024, 1} },
1616 .block_erase = spi_block_erase_60,
1617 }, {
1618 .eraseblocks = { {8 * 1024 * 1024, 1} },
1619 .block_erase = spi_block_erase_c7,
1620 }
1621 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001622 .printlock = spi_prettyprint_status_register_at25df_sec,
1623 .unlock = spi_disable_blockprotect_at25df_sec,
1624 .write = spi_chip_write_256,
1625 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001626 .voltage = {2700, 3600},
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001627 },
1628
1629 {
1630 .vendor = "Atmel",
1631 .name = "AT25DQ161",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001632 .bustype = BUS_SPI,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001633 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001634 .model_id = ATMEL_AT25DQ161,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001635 .total_size = 2048,
1636 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00001637 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
1638 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001639 .tested = TEST_UNTESTED,
1640 .probe = probe_spi_rdid,
1641 .probe_timing = TIMING_ZERO,
1642 .block_erasers =
1643 {
1644 {
1645 .eraseblocks = { {4 * 1024, 512} },
1646 .block_erase = spi_block_erase_20,
1647 }, {
1648 .eraseblocks = { {32 * 1024, 64} },
1649 .block_erase = spi_block_erase_52,
1650 }, {
1651 .eraseblocks = { {64 * 1024, 32} },
1652 .block_erase = spi_block_erase_d8,
1653 }, {
1654 .eraseblocks = { {2 * 1024 * 1024, 1} },
1655 .block_erase = spi_block_erase_60,
1656 }, {
1657 .eraseblocks = { {2 * 1024 * 1024, 1} },
1658 .block_erase = spi_block_erase_c7,
1659 }
1660 },
1661 .printlock = spi_prettyprint_status_register_at25df_sec,
1662 .unlock = spi_disable_blockprotect_at25df_sec,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001663 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001664 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001665 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001666 },
1667
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001668 {
1669 .vendor = "Atmel",
1670 .name = "AT25F512B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001671 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001672 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001673 .model_id = ATMEL_AT25F512B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001674 .total_size = 64,
1675 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00001676 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
1677 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001678 .tested = TEST_UNTESTED,
1679 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001680 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001681 .block_erasers =
1682 {
1683 {
1684 .eraseblocks = { {4 * 1024, 16} },
1685 .block_erase = spi_block_erase_20,
1686 }, {
1687 .eraseblocks = { {32 * 1024, 2} },
1688 .block_erase = spi_block_erase_52,
1689 }, {
1690 .eraseblocks = { {32 * 1024, 2} },
1691 .block_erase = spi_block_erase_d8,
1692 }, {
1693 .eraseblocks = { {64 * 1024, 1} },
1694 .block_erase = spi_block_erase_60,
1695 }, {
1696 .eraseblocks = { {64 * 1024, 1} },
1697 .block_erase = spi_block_erase_c7,
1698 }
1699 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001700 .printlock = spi_prettyprint_status_register_at25f,
1701 .unlock = spi_disable_blockprotect_at25f,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001702 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001703 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001704 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001705 },
1706
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001707 {
1708 .vendor = "Atmel",
1709 .name = "AT25FS010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001710 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001711 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001712 .model_id = ATMEL_AT25FS010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001713 .total_size = 128,
1714 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00001715 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001716 .tested = TEST_UNTESTED,
1717 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001718 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001719 .block_erasers =
1720 {
1721 {
1722 .eraseblocks = { {4 * 1024, 32} },
1723 .block_erase = spi_block_erase_20,
1724 }, {
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001725 .eraseblocks = { {4 * 1024, 32} },
1726 .block_erase = spi_block_erase_d7,
1727 }, {
Sean Nelson89187292009-12-23 12:02:55 +00001728 .eraseblocks = { {32 * 1024, 4} },
1729 .block_erase = spi_block_erase_52,
1730 }, {
1731 .eraseblocks = { {32 * 1024, 4} },
1732 .block_erase = spi_block_erase_d8,
1733 }, {
1734 .eraseblocks = { {128 * 1024, 1} },
1735 .block_erase = spi_block_erase_60,
1736 }, {
1737 .eraseblocks = { {128 * 1024, 1} },
1738 .block_erase = spi_block_erase_c7,
1739 }
1740 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001741 .printlock = spi_prettyprint_status_register_at25fs010,
1742 .unlock = spi_disable_blockprotect_at25fs010,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001743 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001744 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001745 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001746 },
1747
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001748 {
1749 .vendor = "Atmel",
1750 .name = "AT25FS040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001751 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001752 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001753 .model_id = ATMEL_AT25FS040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001754 .total_size = 512,
1755 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00001756 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001757 .tested = TEST_UNTESTED,
1758 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001759 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001760 .block_erasers =
1761 {
1762 {
1763 .eraseblocks = { {4 * 1024, 128} },
1764 .block_erase = spi_block_erase_20,
1765 }, {
1766 .eraseblocks = { {64 * 1024, 8} },
1767 .block_erase = spi_block_erase_52,
1768 }, {
1769 .eraseblocks = { {64 * 1024, 8} },
1770 .block_erase = spi_block_erase_d8,
1771 }, {
1772 .eraseblocks = { {512 * 1024, 1} },
1773 .block_erase = spi_block_erase_60,
1774 }, {
1775 .eraseblocks = { {512 * 1024, 1} },
1776 .block_erase = spi_block_erase_c7,
1777 }
1778 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001779 .printlock = spi_prettyprint_status_register_at25fs040,
1780 .unlock = spi_disable_blockprotect_at25fs040,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001781 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001782 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001783 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001784 },
1785
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001786 {
1787 .vendor = "Atmel",
1788 .name = "AT26DF041",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001789 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001790 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001791 .model_id = ATMEL_AT26DF041,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001792 .total_size = 512,
1793 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00001794 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001795 .tested = TEST_UNTESTED,
1796 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001797 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001798 .block_erasers =
1799 {
1800 {
1801 .eraseblocks = { {4 * 1024, 128} },
1802 .block_erase = spi_block_erase_20,
1803 }
1804 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001805 .write = NULL /* Incompatible Page write */,
1806 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00001807 .voltage = {2700, 3600}, /* 3.0-3.6V for higher speed, 2.7-3.6V normal */
FENG yu ningff692fb2008-12-08 18:15:10 +00001808 },
1809
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001810 {
1811 .vendor = "Atmel",
1812 .name = "AT26DF081A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001813 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001814 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001815 .model_id = ATMEL_AT26DF081A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001816 .total_size = 1024,
1817 .page_size = 256,
Mathias Krause2c3afa32011-01-17 07:45:54 +00001818 .feature_bits = FEATURE_WRSR_WREN,
1819 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001820 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001821 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001822 .block_erasers =
1823 {
1824 {
1825 .eraseblocks = { {4 * 1024, 256} },
1826 .block_erase = spi_block_erase_20,
1827 }, {
1828 .eraseblocks = { {32 * 1024, 32} },
1829 .block_erase = spi_block_erase_52,
1830 }, {
1831 .eraseblocks = { {64 * 1024, 16} },
1832 .block_erase = spi_block_erase_d8,
1833 }, {
1834 .eraseblocks = { {1024 * 1024, 1} },
1835 .block_erase = spi_block_erase_60,
1836 }, {
1837 .eraseblocks = { {1024 * 1024, 1} },
1838 .block_erase = spi_block_erase_c7,
1839 }
1840 },
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +00001841 .printlock = spi_prettyprint_status_register_atmel_at26df081a,
Mathias Krause2c3afa32011-01-17 07:45:54 +00001842 .unlock = spi_disable_blockprotect_at25df,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001843 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001844 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001845 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001846 },
1847
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001848 {
1849 .vendor = "Atmel",
1850 .name = "AT26DF161",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001851 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001852 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001853 .model_id = ATMEL_AT26DF161,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001854 .total_size = 2048,
1855 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00001856 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001857 .tested = TEST_UNTESTED,
1858 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001859 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001860 .block_erasers =
1861 {
1862 {
1863 .eraseblocks = { {4 * 1024, 512} },
1864 .block_erase = spi_block_erase_20,
1865 }, {
1866 .eraseblocks = { {32 * 1024, 64} },
1867 .block_erase = spi_block_erase_52,
1868 }, {
1869 .eraseblocks = { {64 * 1024, 32} },
1870 .block_erase = spi_block_erase_d8,
1871 }, {
1872 .eraseblocks = { {2 * 1024 * 1024, 1} },
1873 .block_erase = spi_block_erase_60,
1874 }, {
1875 .eraseblocks = { {2 * 1024 * 1024, 1} },
1876 .block_erase = spi_block_erase_c7,
1877 }
1878 },
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +00001879 .printlock = spi_prettyprint_status_register_at25df,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00001880 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001881 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001882 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001883 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001884 },
1885
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001886 {
1887 .vendor = "Atmel",
1888 .name = "AT26DF161A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001889 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001890 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001891 .model_id = ATMEL_AT26DF161A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001892 .total_size = 2048,
1893 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00001894 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001895 .tested = TEST_UNTESTED,
1896 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001897 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001898 .block_erasers =
1899 {
1900 {
1901 .eraseblocks = { {4 * 1024, 512} },
1902 .block_erase = spi_block_erase_20,
1903 }, {
1904 .eraseblocks = { {32 * 1024, 64} },
1905 .block_erase = spi_block_erase_52,
1906 }, {
1907 .eraseblocks = { {64 * 1024, 32} },
1908 .block_erase = spi_block_erase_d8,
1909 }, {
1910 .eraseblocks = { {2 * 1024 * 1024, 1} },
1911 .block_erase = spi_block_erase_60,
1912 }, {
1913 .eraseblocks = { {2 * 1024 * 1024, 1} },
1914 .block_erase = spi_block_erase_c7,
1915 }
1916 },
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +00001917 .printlock = spi_prettyprint_status_register_atmel_at26df081a,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00001918 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001919 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001920 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001921 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001922 },
1923
1924 /*The AT26DF321 has the same ID as the AT25DF321. */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001925 /*{
1926 .vendor = "Atmel",
1927 .name = "AT26DF321",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001928 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001929 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001930 .model_id = ATMEL_AT26DF321,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001931 .total_size = 4096,
1932 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00001933 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001934 .tested = TEST_UNTESTED,
1935 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001936 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +00001937 .printlock = spi_prettyprint_status_register_atmel_at26df081a,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00001938 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001939 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001940 .read = spi_chip_read,
1941 },*/
FENG yu ningff692fb2008-12-08 18:15:10 +00001942
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001943 {
1944 .vendor = "Atmel",
1945 .name = "AT26F004",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001946 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001947 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001948 .model_id = ATMEL_AT26F004,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001949 .total_size = 512,
1950 .page_size = 256,
1951 .tested = TEST_UNTESTED,
Steven Zakulec3603a282012-05-02 20:07:57 +00001952 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001953 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001954 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001955 .block_erasers =
1956 {
1957 {
1958 .eraseblocks = { {4 * 1024, 128} },
1959 .block_erase = spi_block_erase_20,
1960 }, {
1961 .eraseblocks = { {32 * 1024, 16} },
1962 .block_erase = spi_block_erase_52,
1963 }, {
1964 .eraseblocks = { {64 * 1024, 8} },
1965 .block_erase = spi_block_erase_d8,
1966 }, {
1967 .eraseblocks = { {512 * 1024, 1} },
1968 .block_erase = spi_block_erase_60,
1969 }, {
1970 .eraseblocks = { {512 * 1024, 1} },
1971 .block_erase = spi_block_erase_c7,
1972 }
1973 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001974 .write = NULL /* Incompatible Page write */,
1975 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001976 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001977 },
1978
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001979 {
1980 .vendor = "Atmel",
Maciej Pijankabc2bbd22009-06-02 16:45:59 +00001981 .name = "AT29C512",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001982 .bustype = BUS_PARALLEL,
Maciej Pijankabc2bbd22009-06-02 16:45:59 +00001983 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001984 .model_id = ATMEL_AT29C512,
Maciej Pijankabc2bbd22009-06-02 16:45:59 +00001985 .total_size = 64,
1986 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00001987 .feature_bits = FEATURE_LONG_RESET,
Paul Menzelac427b22012-02-16 21:07:07 +00001988 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00001989 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00001990 .probe_timing = 10000, /* 10mS, Enter=Exec */
Sean Nelson89187292009-12-23 12:02:55 +00001991 .block_erasers =
1992 {
1993 {
1994 .eraseblocks = { {64 * 1024, 1} },
1995 .block_erase = erase_chip_block_jedec,
1996 }
1997 },
Maciej Pijankabc2bbd22009-06-02 16:45:59 +00001998 .write = write_jedec,
1999 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002000 .voltage = {4500, 5500},
Maciej Pijankabc2bbd22009-06-02 16:45:59 +00002001 },
2002
2003 {
2004 .vendor = "Atmel",
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002005 .name = "AT29C010A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002006 .bustype = BUS_PARALLEL,
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002007 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002008 .model_id = ATMEL_AT29C010A,
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002009 .total_size = 128,
2010 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00002011 .feature_bits = FEATURE_LONG_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00002012 .tested = TEST_OK_PRE,
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002013 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00002014 .probe_timing = 10000, /* 10mS, Enter=Exec */
Sean Nelson89187292009-12-23 12:02:55 +00002015 .block_erasers =
2016 {
2017 {
2018 .eraseblocks = { {128 * 1024, 1} },
2019 .block_erase = erase_chip_block_jedec,
2020 }
2021 },
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002022 .write = write_jedec, /* FIXME */
2023 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002024 .voltage = {4500, 5500},
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002025 },
2026
2027 {
2028 .vendor = "Atmel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002029 .name = "AT29C020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002030 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002031 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002032 .model_id = ATMEL_AT29C020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002033 .total_size = 256,
2034 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00002035 .feature_bits = FEATURE_LONG_RESET,
2036 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002037 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00002038 .probe_timing = 10000, /* 10ms */
Sean Nelson89187292009-12-23 12:02:55 +00002039 .block_erasers =
2040 {
2041 {
2042 .eraseblocks = { {256 * 1024, 1} },
2043 .block_erase = erase_chip_block_jedec,
2044 }
2045 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002046 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002047 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002048 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00002049 },
2050
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002051 {
2052 .vendor = "Atmel",
2053 .name = "AT29C040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002054 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002055 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002056 .model_id = ATMEL_AT29C040A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002057 .total_size = 512,
2058 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00002059 .feature_bits = FEATURE_LONG_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002060 .tested = TEST_UNTESTED,
2061 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00002062 .probe_timing = 10000, /* 10 ms */
Sean Nelson89187292009-12-23 12:02:55 +00002063 .block_erasers =
2064 {
2065 {
2066 .eraseblocks = { {512 * 1024, 1} },
2067 .block_erase = erase_chip_block_jedec,
2068 }
2069 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002070 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002071 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002072 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00002073 },
2074
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002075 {
2076 .vendor = "Atmel",
2077 .name = "AT45CS1282",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002078 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002079 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002080 .model_id = ATMEL_AT45CS1282,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002081 .total_size = 16896 /* No power of two sizes */,
2082 .page_size = 1056 /* No power of two sizes */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002083 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002084 .tested = TEST_BAD_READ,
2085 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002086 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002087 .write = NULL /* Incompatible Page write */,
2088 .read = NULL /* Incompatible read */,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002089 .voltage = {2700, 3600},
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002090 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002091
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002092 {
2093 .vendor = "Atmel",
2094 .name = "AT45DB011D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002095 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002096 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002097 .model_id = ATMEL_AT45DB011D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002098 .total_size = 128 /* Size can only be determined from status register */,
2099 .page_size = 256 /* Size can only be determined from status register */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002100 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002101 .tested = TEST_BAD_READ,
2102 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002103 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002104 .write = NULL,
2105 .read = NULL,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002106 .voltage = {2700, 3600},
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002107 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002108
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002109 {
2110 .vendor = "Atmel",
2111 .name = "AT45DB021D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002112 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002113 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002114 .model_id = ATMEL_AT45DB021D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002115 .total_size = 256 /* Size can only be determined from status register */,
2116 .page_size = 256 /* Size can only be determined from status register */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002117 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002118 .tested = TEST_BAD_READ,
2119 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002120 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002121 .write = NULL,
2122 .read = NULL,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002123 .voltage = {2700, 3600},
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002124 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002125
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002126 {
2127 .vendor = "Atmel",
2128 .name = "AT45DB041D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002129 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002130 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002131 .model_id = ATMEL_AT45DB041D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002132 .total_size = 512 /* Size can only be determined from status register */,
2133 .page_size = 256 /* Size can only be determined from status register */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002134 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002135 .tested = TEST_BAD_READ,
2136 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002137 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002138 .write = NULL,
2139 .read = NULL,
Steven Zakulec7d257b42011-07-19 08:50:18 +00002140 .voltage = {2500, 3600}, /* 2.5-3.6V & 2.7-3.6V models available */
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002141 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002142
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002143 {
2144 .vendor = "Atmel",
2145 .name = "AT45DB081D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002146 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002147 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002148 .model_id = ATMEL_AT45DB081D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002149 .total_size = 1024 /* Size can only be determined from status register */,
2150 .page_size = 256 /* Size can only be determined from status register */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002151 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002152 .tested = TEST_BAD_READ,
2153 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002154 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002155 .write = NULL,
2156 .read = NULL,
Steven Zakulec7d257b42011-07-19 08:50:18 +00002157 .voltage = {2700, 3600}, /* 2.5-3.6V & 2.7-3.6V models available */
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002158 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002159
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002160 {
2161 .vendor = "Atmel",
2162 .name = "AT45DB161D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002163 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002164 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002165 .model_id = ATMEL_AT45DB161D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002166 .total_size = 2048 /* Size can only be determined from status register */,
2167 .page_size = 512 /* Size can only be determined from status register */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002168 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002169 .tested = TEST_BAD_READ,
2170 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002171 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002172 .write = NULL,
2173 .read = NULL,
Steven Zakulec7d257b42011-07-19 08:50:18 +00002174 .voltage = {2700, 3600}, /* 2.5-3.6V & 2.7-3.6V models available */
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002175 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002176
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002177 {
2178 .vendor = "Atmel",
2179 .name = "AT45DB321C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002180 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002181 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002182 .model_id = ATMEL_AT45DB321C,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002183 .total_size = 4224 /* No power of two sizes */,
2184 .page_size = 528 /* No power of two sizes */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002185 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002186 .tested = TEST_BAD_READ,
2187 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002188 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002189 .write = NULL,
2190 .read = NULL /* Incompatible read */,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002191 .voltage = {2700, 3600},
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002192 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002193
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002194 {
2195 .vendor = "Atmel",
2196 .name = "AT45DB321D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002197 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002198 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002199 .model_id = ATMEL_AT45DB321D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002200 .total_size = 4096 /* Size can only be determined from status register */,
2201 .page_size = 512 /* Size can only be determined from status register */,
Daniel Lenski65922a32012-02-15 23:40:23 +00002202 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
Steven Zakulec3603a282012-05-02 20:07:57 +00002203 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Daniel Lenski65922a32012-02-15 23:40:23 +00002204 .feature_bits = FEATURE_OTP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002205 .tested = TEST_BAD_READ,
2206 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002207 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002208 .write = NULL,
2209 .read = NULL,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002210 .voltage = {2700, 3600},
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002211 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002212
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002213 {
2214 .vendor = "Atmel",
2215 .name = "AT45DB642D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002216 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002217 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002218 .model_id = ATMEL_AT45DB642D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002219 .total_size = 8192 /* Size can only be determined from status register */,
2220 .page_size = 1024 /* Size can only be determined from status register */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002221 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002222 .tested = TEST_BAD_READ,
2223 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002224 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002225 .write = NULL,
2226 .read = NULL,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002227 .voltage = {2700, 3600},
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002228 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002229
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002230 {
2231 .vendor = "Atmel",
Uwe Hermannb4dcb712009-05-13 11:36:06 +00002232 .name = "AT49BV512",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002233 .bustype = BUS_PARALLEL,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00002234 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002235 .model_id = ATMEL_AT49BV512,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00002236 .total_size = 64,
2237 .page_size = 64,
Sean Nelson35727f72010-01-28 23:55:12 +00002238 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner8179be52011-06-04 13:13:34 +00002239 .tested = TEST_OK_PREW,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00002240 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002241 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson89187292009-12-23 12:02:55 +00002242 .block_erasers =
2243 {
2244 {
2245 .eraseblocks = { {64 * 1024, 1} },
2246 .block_erase = erase_chip_block_jedec,
2247 }
2248 },
Sean Nelson35727f72010-01-28 23:55:12 +00002249 .write = write_jedec_1,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00002250 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002251 .voltage = {2700, 3600},
Uwe Hermannb4dcb712009-05-13 11:36:06 +00002252 },
2253
2254 {
2255 .vendor = "Atmel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002256 .name = "AT49F002(N)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002257 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002258 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002259 .model_id = ATMEL_AT49F002N,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002260 .total_size = 256,
2261 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00002262 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002263 .tested = TEST_UNTESTED,
2264 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002265 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson89187292009-12-23 12:02:55 +00002266 .block_erasers =
2267 {
2268 {
2269 .eraseblocks = {
2270 {16 * 1024, 1},
2271 {8 * 1024, 2},
2272 {96 * 1024, 1},
2273 {128 * 1024, 1},
2274 },
2275 .block_erase = erase_sector_jedec,
2276 }, {
2277 .eraseblocks = { {256 * 1024, 1} },
2278 .block_erase = erase_chip_block_jedec,
2279 }
2280 },
Sean Nelson35727f72010-01-28 23:55:12 +00002281 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002282 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002283 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00002284 },
2285
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002286 {
2287 .vendor = "Atmel",
2288 .name = "AT49F002(N)T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002289 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002290 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002291 .model_id = ATMEL_AT49F002NT,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002292 .total_size = 256,
2293 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00002294 .feature_bits = FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00002295 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002296 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002297 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson89187292009-12-23 12:02:55 +00002298 .block_erasers =
2299 {
2300 {
2301 .eraseblocks = {
2302 {128 * 1024, 1},
2303 {96 * 1024, 1},
2304 {8 * 1024, 2},
2305 {16 * 1024, 1},
2306 },
2307 .block_erase = erase_sector_jedec,
2308 }, {
2309 .eraseblocks = { {256 * 1024, 1} },
2310 .block_erase = erase_chip_block_jedec,
2311 }
2312 },
Sean Nelson35727f72010-01-28 23:55:12 +00002313 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002314 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002315 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00002316 },
2317
Daniel Lenskidf90d3a2010-07-22 11:44:38 +00002318 {
Uwe Hermannc74e9772011-09-08 19:55:18 +00002319 .vendor = "Atmel",
David Borgf5a30f62012-04-15 13:16:32 +00002320 .name = "AT49F020",
2321 .bustype = BUS_PARALLEL,
2322 .manufacture_id = ATMEL_ID,
2323 .model_id = ATMEL_AT49F020,
2324 .total_size = 256,
2325 .page_size = 256,
2326 .feature_bits = FEATURE_EITHER_RESET,
2327 .tested = TEST_OK_PRE,
2328 .probe = probe_jedec,
2329 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
2330 .block_erasers =
2331 {
2332 {
2333 .eraseblocks = { {256 * 1024, 1} },
2334 .block_erase = erase_chip_block_jedec,
2335 }
2336 /* Chip features an optional permanent write protection
2337 * of the first 8 kB. The erase function is the same as
2338 * above, but 00000H to 01FFFH will not be erased.
2339 * FIXME: add another eraser when partial erasers are
2340 * supported.
2341 */
2342 },
2343 .printlock = printlock_at49f,
2344 .write = write_jedec_1,
2345 .read = read_memmapped,
2346 .voltage = {4500, 5500},
2347 },
2348
2349 {
2350 .vendor = "Atmel",
2351 .name = "AT49F040",
2352 .bustype = BUS_PARALLEL,
2353 .manufacture_id = ATMEL_ID,
2354 .model_id = ATMEL_AT49F040,
2355 .total_size = 512,
2356 .page_size = 512,
2357 .feature_bits = FEATURE_EITHER_RESET,
2358 .tested = TEST_UNTESTED,
2359 .probe = probe_jedec,
2360 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
2361 .block_erasers =
2362 {
2363 {
2364 .eraseblocks = { {512 * 1024, 1} },
2365 .block_erase = erase_chip_block_jedec,
2366 }
2367 /* Chip features an optional permanent write protection
2368 * of the first 16 kB. The erase function is the same as
2369 * above, but 00000H to 03FFFH will not be erased.
2370 * FIXME: add another eraser when partial erasers are
2371 * supported.
2372 */
2373 },
2374 .printlock = printlock_at49f,
2375 .write = write_jedec_1,
2376 .read = read_memmapped,
2377 .voltage = {4500, 5500},
2378 },
2379
2380 {
2381 .vendor = "Atmel",
Uwe Hermannc74e9772011-09-08 19:55:18 +00002382 .name = "AT49LH002",
2383 .bustype = BUS_LPC | BUS_FWH, /* A/A Mux */
2384 .manufacture_id = ATMEL_ID,
2385 .model_id = ATMEL_AT49LH002,
2386 .total_size = 256,
2387 .page_size = 0, /* unused */
2388 .feature_bits = FEATURE_REGISTERMAP, /* TODO: LPC OK too? */
2389 .tested = TEST_UNTESTED,
2390 .probe = probe_82802ab, /* TODO: 0xff cmd not documented? */
2391 .probe_timing = TIMING_FIXME,
2392 .block_erasers =
2393 {
2394 {
2395 .eraseblocks = {
2396 {64 * 1024, 3},
2397 {32 * 1024, 1},
2398 {8 * 1024, 2},
2399 {16 * 1024, 1},
2400 },
2401 .block_erase = erase_block_82802ab,
2402 }, {
2403 .eraseblocks = {
2404 {64 * 1024, 4},
2405 },
2406 .block_erase = NULL, /* TODO: Implement. */
2407 },
2408 },
2409 .printlock = NULL, /* TODO */
2410 .unlock = NULL, /* unlock_82802ab() not correct(?) */
2411 .write = write_82802ab,
2412 .read = read_memmapped,
2413 .voltage = {3000, 3600},
2414 },
2415
2416 {
Andrew Morganca081462011-09-13 22:05:44 +00002417 .vendor = "Catalyst",
2418 .name = "CAT28F512",
2419 .bustype = BUS_PARALLEL,
2420 .manufacture_id = CATALYST_ID,
2421 .model_id = CATALYST_CAT28F512,
2422 .total_size = 64,
2423 .page_size = 0, /* unused */
2424 .feature_bits = 0,
2425 .tested = TEST_OK_PR,
2426 .probe = probe_jedec, /* FIXME! */
2427 .probe_timing = TIMING_ZERO,
2428 .block_erasers =
2429 {
2430 {
2431 .eraseblocks = { {64 * 1024, 1} },
2432 .block_erase = NULL, /* TODO */
2433 },
2434 },
2435 .write = NULL, /* TODO */
2436 .read = read_memmapped,
2437 .voltage = {4500, 5500},
2438 },
2439
2440 {
Joshua Roysf1324e02010-09-16 00:51:51 +00002441 .vendor = "Bright",
2442 .name = "BM29F040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002443 .bustype = BUS_PARALLEL,
Joshua Roysf1324e02010-09-16 00:51:51 +00002444 .manufacture_id = BRIGHT_ID,
2445 .model_id = BRIGHT_BM29F040,
2446 .total_size = 512,
2447 .page_size = 64 * 1024,
2448 .feature_bits = FEATURE_EITHER_RESET,
2449 .tested = TEST_OK_PR,
2450 .probe = probe_jedec,
2451 .probe_timing = TIMING_ZERO,
2452 .block_erasers =
2453 {
2454 {
2455 .eraseblocks = { {64 * 1024, 8} },
2456 .block_erase = erase_sector_jedec,
2457 }, {
2458 .eraseblocks = { {512 * 1024, 1} },
2459 .block_erase = erase_chip_block_jedec,
2460 },
2461 },
2462 .write = write_jedec_1,
2463 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00002464 .voltage = {4500, 5500},
Joshua Roysf1324e02010-09-16 00:51:51 +00002465 },
2466
2467 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002468 .vendor = "EMST",
2469 .name = "F49B002UA",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002470 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002471 .manufacture_id = EMST_ID,
2472 .model_id = EMST_F49B002UA,
2473 .total_size = 256,
2474 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00002475 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002476 .tested = TEST_UNTESTED,
2477 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002478 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson54596372010-01-09 05:30:14 +00002479 .block_erasers =
2480 {
2481 {
2482 .eraseblocks = {
2483 {128 * 1024, 1},
2484 {96 * 1024, 1},
2485 {8 * 1024, 2},
2486 {16 * 1024, 1},
2487 },
2488 .block_erase = erase_sector_jedec,
2489 }, {
2490 .eraseblocks = { {256 * 1024, 1} },
2491 .block_erase = erase_chip_block_jedec,
2492 }
2493 },
Sean Nelson35727f72010-01-28 23:55:12 +00002494 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002495 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002496 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00002497 },
2498
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002499 {
Michael Karcher80a59ea2010-06-19 22:06:35 +00002500 .vendor = "EMST",
2501 .name = "F25L008A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002502 .bustype = BUS_SPI,
Michael Karcher80a59ea2010-06-19 22:06:35 +00002503 .manufacture_id = EMST_ID,
2504 .model_id = EMST_F25L008A,
2505 .total_size = 1024,
2506 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002507 .feature_bits = FEATURE_WRSR_EITHER,
Michael Karcher80a59ea2010-06-19 22:06:35 +00002508 .tested = TEST_UNTESTED,
2509 .probe = probe_spi_rdid,
2510 .probe_timing = TIMING_ZERO,
2511 .block_erasers =
2512 {
2513 {
2514 .eraseblocks = { {4 * 1024, 256} },
2515 .block_erase = spi_block_erase_20,
2516 }, {
2517 .eraseblocks = { {64 * 1024, 16} },
2518 .block_erase = spi_block_erase_d8,
2519 }, {
2520 .eraseblocks = { {1024 * 1024, 1} },
2521 .block_erase = spi_block_erase_60,
2522 }, {
2523 .eraseblocks = { {1024 * 1024, 1} },
2524 .block_erase = spi_block_erase_c7,
2525 }
2526 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002527 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +00002528 .write = spi_chip_write_1,
Michael Karcher4497e862010-07-10 19:34:15 +00002529 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002530 .voltage = {2700, 3600},
Michael Karcher80a59ea2010-06-19 22:06:35 +00002531 },
2532
2533 {
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002534 .vendor = "Eon",
2535 .name = "EN25B05",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002536 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002537 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002538 .model_id = EON_EN25B05,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002539 .total_size = 64,
2540 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002541 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002542 .tested = TEST_UNTESTED,
2543 .probe = probe_spi_rdid,
2544 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002545 .block_erasers =
2546 {
2547 {
2548 .eraseblocks = {
2549 {4 * 1024, 2},
2550 {8 * 1024, 1},
2551 {16 * 1024, 1},
2552 {32 * 1024, 1},
2553 },
2554 .block_erase = spi_block_erase_d8,
2555 }, {
2556 .eraseblocks = { {64 * 1024, 1} },
2557 .block_erase = spi_block_erase_c7,
2558 }
2559 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002560 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00002561 .write = spi_chip_write_256,
2562 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002563 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00002564 },
2565
2566 {
2567 .vendor = "Eon",
2568 .name = "EN25B05T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002569 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00002570 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002571 .model_id = EON_EN25B05,
Sean Nelson54596372010-01-09 05:30:14 +00002572 .total_size = 64,
2573 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002574 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00002575 .tested = TEST_UNTESTED,
2576 .probe = probe_spi_rdid,
2577 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002578 .block_erasers =
2579 {
2580 {
2581 .eraseblocks = {
2582 {32 * 1024, 1},
2583 {16 * 1024, 1},
2584 {8 * 1024, 1},
2585 {4 * 1024, 2},
2586 },
2587 .block_erase = spi_block_erase_d8,
2588 }, {
2589 .eraseblocks = { {64 * 1024, 1} },
2590 .block_erase = spi_block_erase_c7,
2591 }
2592 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002593 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002594 .write = spi_chip_write_256,
2595 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002596 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002597 },
2598
2599 {
2600 .vendor = "Eon",
2601 .name = "EN25B10",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002602 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002603 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002604 .model_id = EON_EN25B10,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002605 .total_size = 128,
2606 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002607 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002608 .tested = TEST_UNTESTED,
2609 .probe = probe_spi_rdid,
2610 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002611 .block_erasers =
2612 {
2613 {
2614 .eraseblocks = {
2615 {4 * 1024, 2},
2616 {8 * 1024, 1},
2617 {16 * 1024, 1},
2618 {32 * 1024, 3},
2619 },
2620 .block_erase = spi_block_erase_d8,
2621 }, {
2622 .eraseblocks = { {128 * 1024, 1} },
2623 .block_erase = spi_block_erase_c7,
2624 }
2625 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002626 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00002627 .write = spi_chip_write_256,
2628 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002629 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00002630 },
2631
2632 {
2633 .vendor = "Eon",
2634 .name = "EN25B10T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002635 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00002636 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002637 .model_id = EON_EN25B10,
Sean Nelson54596372010-01-09 05:30:14 +00002638 .total_size = 128,
2639 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002640 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00002641 .tested = TEST_UNTESTED,
2642 .probe = probe_spi_rdid,
2643 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002644 .block_erasers =
2645 {
2646 {
2647 .eraseblocks = {
2648 {32 * 1024, 3},
2649 {16 * 1024, 1},
2650 {8 * 1024, 1},
2651 {4 * 1024, 2},
2652 },
2653 .block_erase = spi_block_erase_d8,
2654 }, {
2655 .eraseblocks = { {128 * 1024, 1} },
2656 .block_erase = spi_block_erase_c7,
2657 }
2658 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002659 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002660 .write = spi_chip_write_256,
2661 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002662 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002663 },
2664
2665 {
2666 .vendor = "Eon",
2667 .name = "EN25B20",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002668 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002669 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002670 .model_id = EON_EN25B20,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002671 .total_size = 256,
2672 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002673 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002674 .tested = TEST_UNTESTED,
2675 .probe = probe_spi_rdid,
2676 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002677 .block_erasers =
2678 {
2679 {
2680 .eraseblocks = {
2681 {4 * 1024, 2},
2682 {8 * 1024, 1},
2683 {16 * 1024, 1},
2684 {32 * 1024, 1},
2685 {64 * 1024, 3}
2686 },
2687 .block_erase = spi_block_erase_d8,
2688 }, {
2689 .eraseblocks = { {256 * 1024, 1} },
2690 .block_erase = spi_block_erase_c7,
2691 }
2692 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002693 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00002694 .write = spi_chip_write_256,
2695 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002696 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00002697 },
2698
2699 {
2700 .vendor = "Eon",
2701 .name = "EN25B20T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002702 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00002703 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002704 .model_id = EON_EN25B20,
Sean Nelson54596372010-01-09 05:30:14 +00002705 .total_size = 256,
2706 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002707 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00002708 .tested = TEST_UNTESTED,
2709 .probe = probe_spi_rdid,
2710 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002711 .block_erasers =
2712 {
2713 {
2714 .eraseblocks = {
2715 {64 * 1024, 3},
2716 {32 * 1024, 1},
2717 {16 * 1024, 1},
2718 {8 * 1024, 1},
2719 {4 * 1024, 2},
2720 },
2721 .block_erase = spi_block_erase_d8,
2722 }, {
2723 .eraseblocks = { {256 * 1024, 1} },
2724 .block_erase = spi_block_erase_c7,
2725 }
2726 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002727 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002728 .write = spi_chip_write_256,
2729 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002730 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002731 },
2732
2733 {
2734 .vendor = "Eon",
2735 .name = "EN25B40",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002736 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002737 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002738 .model_id = EON_EN25B40,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002739 .total_size = 512,
2740 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002741 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002742 .tested = TEST_UNTESTED,
2743 .probe = probe_spi_rdid,
2744 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002745 .block_erasers =
2746 {
2747 {
2748 .eraseblocks = {
2749 {4 * 1024, 2},
2750 {8 * 1024, 1},
2751 {16 * 1024, 1},
2752 {32 * 1024, 1},
2753 {64 * 1024, 7}
2754 },
2755 .block_erase = spi_block_erase_d8,
2756 }, {
2757 .eraseblocks = { {512 * 1024, 1} },
2758 .block_erase = spi_block_erase_c7,
2759 }
2760 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002761 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00002762 .write = spi_chip_write_256,
2763 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002764 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00002765 },
2766
2767 {
2768 .vendor = "Eon",
2769 .name = "EN25B40T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002770 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00002771 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002772 .model_id = EON_EN25B40,
Sean Nelson54596372010-01-09 05:30:14 +00002773 .total_size = 512,
2774 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002775 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00002776 .tested = TEST_UNTESTED,
2777 .probe = probe_spi_rdid,
2778 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002779 .block_erasers =
2780 {
2781 {
2782 .eraseblocks = {
2783 {64 * 1024, 7},
2784 {32 * 1024, 1},
2785 {16 * 1024, 1},
2786 {8 * 1024, 1},
2787 {4 * 1024, 2},
2788 },
2789 .block_erase = spi_block_erase_d8,
2790 }, {
2791 .eraseblocks = { {512 * 1024, 1} },
2792 .block_erase = spi_block_erase_c7,
2793 }
2794 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002795 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002796 .write = spi_chip_write_256,
2797 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002798 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002799 },
2800
2801 {
2802 .vendor = "Eon",
2803 .name = "EN25B80",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002804 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002805 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002806 .model_id = EON_EN25B80,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002807 .total_size = 1024,
2808 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002809 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002810 .tested = TEST_UNTESTED,
2811 .probe = probe_spi_rdid,
2812 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002813 .block_erasers =
2814 {
2815 {
2816 .eraseblocks = {
2817 {4 * 1024, 2},
2818 {8 * 1024, 1},
2819 {16 * 1024, 1},
2820 {32 * 1024, 1},
2821 {64 * 1024, 15}
2822 },
2823 .block_erase = spi_block_erase_d8,
2824 }, {
2825 .eraseblocks = { {1024 * 1024, 1} },
2826 .block_erase = spi_block_erase_c7,
2827 }
2828 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002829 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00002830 .write = spi_chip_write_256,
2831 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002832 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00002833 },
2834
2835 {
2836 .vendor = "Eon",
2837 .name = "EN25B80T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002838 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00002839 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002840 .model_id = EON_EN25B80,
Sean Nelson54596372010-01-09 05:30:14 +00002841 .total_size = 1024,
2842 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002843 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00002844 .tested = TEST_UNTESTED,
2845 .probe = probe_spi_rdid,
2846 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002847 .block_erasers =
2848 {
2849 {
2850 .eraseblocks = {
2851 {64 * 1024, 15},
2852 {32 * 1024, 1},
2853 {16 * 1024, 1},
2854 {8 * 1024, 1},
2855 {4 * 1024, 2},
2856 },
2857 .block_erase = spi_block_erase_d8,
2858 }, {
2859 .eraseblocks = { {1024 * 1024, 1} },
2860 .block_erase = spi_block_erase_c7,
2861 }
2862 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002863 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002864 .write = spi_chip_write_256,
2865 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002866 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002867 },
2868
2869 {
2870 .vendor = "Eon",
2871 .name = "EN25B16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002872 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002873 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002874 .model_id = EON_EN25B16,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002875 .total_size = 2048,
2876 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002877 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002878 .tested = TEST_UNTESTED,
2879 .probe = probe_spi_rdid,
2880 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002881 .block_erasers =
2882 {
2883 {
2884 .eraseblocks = {
2885 {4 * 1024, 2},
2886 {8 * 1024, 1},
2887 {16 * 1024, 1},
2888 {32 * 1024, 1},
2889 {64 * 1024, 31},
2890 },
2891 .block_erase = spi_block_erase_d8,
2892 }, {
2893 .eraseblocks = { {2 * 1024 * 1024, 1} },
2894 .block_erase = spi_block_erase_c7,
2895 }
2896 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002897 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00002898 .write = spi_chip_write_256,
2899 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002900 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00002901 },
2902
2903 {
2904 .vendor = "Eon",
2905 .name = "EN25B16T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002906 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00002907 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002908 .model_id = EON_EN25B16,
Sean Nelson54596372010-01-09 05:30:14 +00002909 .total_size = 2048,
2910 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002911 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00002912 .tested = TEST_UNTESTED,
2913 .probe = probe_spi_rdid,
2914 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002915 .block_erasers =
2916 {
2917 {
2918 .eraseblocks = {
2919 {64 * 1024, 31},
2920 {32 * 1024, 1},
2921 {16 * 1024, 1},
2922 {8 * 1024, 1},
2923 {4 * 1024, 2},
2924 },
2925 .block_erase = spi_block_erase_d8,
2926 }, {
2927 .eraseblocks = { {2 * 1024 * 1024, 1} },
2928 .block_erase = spi_block_erase_c7,
2929 }
2930 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002931 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002932 .write = spi_chip_write_256,
2933 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002934 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002935 },
2936
2937 {
2938 .vendor = "Eon",
2939 .name = "EN25B32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002940 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002941 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002942 .model_id = EON_EN25B32,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002943 .total_size = 4096,
2944 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002945 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002946 .tested = TEST_UNTESTED,
2947 .probe = probe_spi_rdid,
2948 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002949 .block_erasers =
2950 {
2951 {
2952 .eraseblocks = {
2953 {4 * 1024, 2},
2954 {8 * 1024, 1},
2955 {16 * 1024, 1},
2956 {32 * 1024, 1},
2957 {64 * 1024, 63},
2958 },
2959 .block_erase = spi_block_erase_d8,
2960 }, {
2961 .eraseblocks = { {4 * 1024 * 1024, 1} },
2962 .block_erase = spi_block_erase_c7,
2963 }
2964 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002965 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00002966 .write = spi_chip_write_256,
2967 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002968 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00002969 },
2970
2971 {
2972 .vendor = "Eon",
2973 .name = "EN25B32T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002974 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00002975 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002976 .model_id = EON_EN25B32,
Sean Nelson54596372010-01-09 05:30:14 +00002977 .total_size = 4096,
2978 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002979 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00002980 .tested = TEST_UNTESTED,
2981 .probe = probe_spi_rdid,
2982 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002983 .block_erasers =
2984 {
2985 {
2986 .eraseblocks = {
2987 {64 * 1024, 63},
2988 {32 * 1024, 1},
2989 {16 * 1024, 1},
2990 {8 * 1024, 1},
2991 {4 * 1024, 2},
2992 },
2993 .block_erase = spi_block_erase_d8,
2994 }, {
2995 .eraseblocks = { {4 * 1024 * 1024, 1} },
2996 .block_erase = spi_block_erase_c7,
2997 }
2998 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002999 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003000 .write = spi_chip_write_256,
3001 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003002 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003003 },
3004
3005 {
3006 .vendor = "Eon",
3007 .name = "EN25B64",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003008 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003009 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003010 .model_id = EON_EN25B64,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003011 .total_size = 8192,
3012 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00003013 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003014 .tested = TEST_UNTESTED,
3015 .probe = probe_spi_rdid,
3016 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003017 .block_erasers =
3018 {
3019 {
3020 .eraseblocks = {
3021 {4 * 1024, 2},
3022 {8 * 1024, 1},
3023 {16 * 1024, 1},
3024 {32 * 1024, 1},
3025 {64 * 1024, 127},
3026 },
3027 .block_erase = spi_block_erase_d8,
3028 }, {
3029 .eraseblocks = { {8 * 1024 * 1024, 1} },
3030 .block_erase = spi_block_erase_c7,
3031 }
3032 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003033 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00003034 .write = spi_chip_write_256,
3035 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003036 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00003037 },
3038
3039 {
3040 .vendor = "Eon",
3041 .name = "EN25B64T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003042 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00003043 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003044 .model_id = EON_EN25B64,
Sean Nelson54596372010-01-09 05:30:14 +00003045 .total_size = 8192,
3046 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003047 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00003048 .tested = TEST_UNTESTED,
3049 .probe = probe_spi_rdid,
3050 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003051 .block_erasers =
3052 {
3053 {
3054 .eraseblocks = {
3055 {64 * 1024, 127},
3056 {32 * 1024, 1},
3057 {16 * 1024, 1},
3058 {8 * 1024, 1},
3059 {4 * 1024, 2},
3060 },
3061 .block_erase = spi_block_erase_d8,
3062 }, {
3063 .eraseblocks = { {8 * 1024 * 1024, 1} },
3064 .block_erase = spi_block_erase_c7,
3065 }
3066 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003067 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003068 .write = spi_chip_write_256,
3069 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003070 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003071 },
3072
3073 {
3074 .vendor = "Eon",
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003075 .name = "EN25F05",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003076 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003077 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003078 .model_id = EON_EN25F05,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003079 .total_size = 64,
3080 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00003081 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003082 .tested = TEST_UNTESTED,
3083 .probe = probe_spi_rdid,
3084 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003085 .block_erasers =
3086 {
3087 {
3088 .eraseblocks = { {4 * 1024, 16} },
3089 .block_erase = spi_block_erase_20,
3090 }, {
3091 .eraseblocks = { {32 * 1024, 2} },
3092 .block_erase = spi_block_erase_d8,
3093 }, {
3094 .eraseblocks = { {32 * 1024, 2} },
3095 .block_erase = spi_block_erase_52,
3096 }, {
3097 .eraseblocks = { {64 * 1024, 1} },
3098 .block_erase = spi_block_erase_60,
3099 }, {
3100 .eraseblocks = { {64 * 1024, 1} },
3101 .block_erase = spi_block_erase_c7,
3102 }
3103 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003104 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003105 .write = spi_chip_write_256,
3106 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003107 .voltage = {2700, 3600},
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003108 },
3109
3110 {
3111 .vendor = "Eon",
3112 .name = "EN25F10",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003113 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003114 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003115 .model_id = EON_EN25F10,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003116 .total_size = 128,
3117 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00003118 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003119 .tested = TEST_UNTESTED,
3120 .probe = probe_spi_rdid,
3121 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003122 .block_erasers =
3123 {
3124 {
3125 .eraseblocks = { {4 * 1024, 32} },
3126 .block_erase = spi_block_erase_20,
3127 }, {
3128 .eraseblocks = { {32 * 1024, 4} },
3129 .block_erase = spi_block_erase_d8,
3130 }, {
3131 .eraseblocks = { {32 * 1024, 4} },
3132 .block_erase = spi_block_erase_52,
3133 }, {
3134 .eraseblocks = { {128 * 1024, 1} },
3135 .block_erase = spi_block_erase_60,
3136 }, {
3137 .eraseblocks = { {128 * 1024, 1} },
3138 .block_erase = spi_block_erase_c7,
3139 }
3140 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003141 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003142 .write = spi_chip_write_256,
3143 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003144 .voltage = {2700, 3600},
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003145 },
3146
3147 {
3148 .vendor = "Eon",
3149 .name = "EN25F20",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003150 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003151 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003152 .model_id = EON_EN25F20,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003153 .total_size = 256,
3154 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00003155 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003156 .tested = TEST_UNTESTED,
3157 .probe = probe_spi_rdid,
3158 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003159 .block_erasers =
3160 {
3161 {
3162 .eraseblocks = { {4 * 1024, 64} },
3163 .block_erase = spi_block_erase_20,
3164 }, {
3165 .eraseblocks = { {64 * 1024, 4} },
3166 .block_erase = spi_block_erase_d8,
3167 }, {
3168 .eraseblocks = { {64 * 1024, 4} },
3169 .block_erase = spi_block_erase_52,
3170 }, {
3171 .eraseblocks = { {256 * 1024, 1} },
3172 .block_erase = spi_block_erase_60,
3173 }, {
3174 .eraseblocks = { {256 * 1024, 1} },
3175 .block_erase = spi_block_erase_c7,
3176 }
3177 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003178 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003179 .write = spi_chip_write_256,
3180 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003181 .voltage = {2700, 3600},
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003182 },
3183
3184 {
3185 .vendor = "Eon",
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003186 .name = "EN25F40",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003187 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003188 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003189 .model_id = EON_EN25F40,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003190 .total_size = 512,
3191 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00003192 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerfaaa2b22009-06-22 10:06:28 +00003193 .tested = TEST_OK_PROBE,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003194 .probe = probe_spi_rdid,
3195 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00003196 .block_erasers =
3197 {
3198 {
Sean Nelson54596372010-01-09 05:30:14 +00003199 .eraseblocks = { {4 * 1024, 128} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00003200 .block_erase = spi_block_erase_20,
3201 }, {
Sean Nelson54596372010-01-09 05:30:14 +00003202 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00003203 .block_erase = spi_block_erase_d8,
3204 }, {
Sean Nelson54596372010-01-09 05:30:14 +00003205 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00003206 .block_erase = spi_block_erase_60,
3207 }, {
Sean Nelson54596372010-01-09 05:30:14 +00003208 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00003209 .block_erase = spi_block_erase_c7,
3210 },
3211 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003212 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003213 .write = spi_chip_write_256,
3214 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003215 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003216 },
3217
3218 {
3219 .vendor = "Eon",
3220 .name = "EN25F80",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003221 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003222 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003223 .model_id = EON_EN25F80,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003224 .total_size = 1024,
3225 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00003226 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner716e0982011-07-25 20:38:52 +00003227 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003228 .probe = probe_spi_rdid,
3229 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003230 .block_erasers =
3231 {
3232 {
3233 .eraseblocks = { {4 * 1024, 256} },
3234 .block_erase = spi_block_erase_20,
3235 }, {
3236 .eraseblocks = { {64 * 1024, 16} },
3237 .block_erase = spi_block_erase_d8,
3238 }, {
3239 .eraseblocks = { {1024 * 1024, 1} },
3240 .block_erase = spi_block_erase_60,
3241 }, {
3242 .eraseblocks = { {1024 * 1024, 1} },
3243 .block_erase = spi_block_erase_c7,
3244 }
3245 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003246 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003247 .write = spi_chip_write_256,
3248 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003249 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003250 },
3251
3252 {
3253 .vendor = "Eon",
3254 .name = "EN25F16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003255 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003256 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003257 .model_id = EON_EN25F16,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003258 .total_size = 2048,
3259 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00003260 .feature_bits = FEATURE_WRSR_WREN,
Paul Menzel018d4822011-10-21 12:33:07 +00003261 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003262 .probe = probe_spi_rdid,
3263 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003264 .block_erasers =
3265 {
3266 {
3267 .eraseblocks = { {4 * 1024, 512} },
3268 .block_erase = spi_block_erase_20,
3269 }, {
3270 .eraseblocks = { {64 * 1024, 32} },
3271 .block_erase = spi_block_erase_d8,
3272 }, {
3273 .eraseblocks = { {2 * 1024 * 1024, 1} },
3274 .block_erase = spi_block_erase_60,
3275 }, {
3276 .eraseblocks = { {2 * 1024 * 1024, 1} },
3277 .block_erase = spi_block_erase_c7,
3278 }
3279 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003280 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003281 .write = spi_chip_write_256,
3282 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003283 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003284 },
3285
3286 {
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003287 .vendor = "Eon",
3288 .name = "EN25F32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003289 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003290 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003291 .model_id = EON_EN25F32,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003292 .total_size = 4096,
3293 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00003294 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003295 .tested = TEST_UNTESTED,
3296 .probe = probe_spi_rdid,
3297 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003298 .block_erasers =
3299 {
3300 {
3301 .eraseblocks = { {4 * 1024, 1024} },
3302 .block_erase = spi_block_erase_20,
3303 }, {
3304 .eraseblocks = { {64 * 1024, 64} },
3305 .block_erase = spi_block_erase_d8,
3306 }, {
3307 .eraseblocks = { {4 * 1024 * 1024, 1} },
3308 .block_erase = spi_block_erase_60,
3309 }, {
3310 .eraseblocks = { {4 * 1024 * 1024, 1} },
3311 .block_erase = spi_block_erase_c7,
3312 }
3313 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003314 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003315 .write = spi_chip_write_256,
3316 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003317 .voltage = {2700, 3600},
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003318 },
3319
3320 {
Russ Dill3cd5a122010-03-05 08:44:11 +00003321 .vendor = "Eon",
David Hendricks6d715302011-07-24 22:21:57 +00003322 .name = "EN25Q40",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003323 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00003324 .manufacture_id = EON_ID_NOPREFIX,
3325 .model_id = EON_EN25Q40,
3326 .total_size = 512,
3327 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00003328 /* OTP: 256B total; enter 0x3A */
3329 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks6d715302011-07-24 22:21:57 +00003330 .tested = TEST_UNTESTED,
3331 .probe = probe_spi_rdid,
3332 .probe_timing = TIMING_ZERO,
3333 .block_erasers =
3334 {
3335 {
3336 .eraseblocks = { {4 * 1024, 128} },
3337 .block_erase = spi_block_erase_20,
3338 }, {
3339 .eraseblocks = { {64 * 1024, 8} },
3340 .block_erase = spi_block_erase_d8,
3341 }, {
3342 .eraseblocks = { {512 * 1024, 1} },
3343 .block_erase = spi_block_erase_60,
3344 }, {
3345 .eraseblocks = { {512 * 1024, 1} },
3346 .block_erase = spi_block_erase_c7,
3347 }
3348 },
3349 .unlock = spi_disable_blockprotect,
3350 .write = spi_chip_write_256,
3351 .read = spi_chip_read,
3352 .voltage = {2700, 3600},
3353 },
3354
3355 {
3356 .vendor = "Eon",
3357 .name = "EN25Q80(A)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003358 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00003359 .manufacture_id = EON_ID_NOPREFIX,
3360 .model_id = EON_EN25Q80,
3361 .total_size = 1024,
3362 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00003363 /* OTP: 256B total; enter 0x3A */
3364 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks6d715302011-07-24 22:21:57 +00003365 .tested = TEST_UNTESTED,
3366 .probe = probe_spi_rdid,
3367 .probe_timing = TIMING_ZERO,
3368 .block_erasers =
3369 {
3370 {
3371 .eraseblocks = { {4 * 1024, 256} },
3372 .block_erase = spi_block_erase_20,
3373 }, {
3374 .eraseblocks = { {64 * 1024, 16} },
3375 .block_erase = spi_block_erase_d8,
3376 }, {
3377 .eraseblocks = { {1024 * 1024, 1} },
3378 .block_erase = spi_block_erase_60,
3379 }, {
3380 .eraseblocks = { {1024 * 1024, 1} },
3381 .block_erase = spi_block_erase_c7,
3382 }
3383 },
3384 .unlock = spi_disable_blockprotect,
3385 .write = spi_chip_write_256,
3386 .read = spi_chip_read,
3387 .voltage = {2700, 3600},
3388 },
3389
3390 {
3391 /* Note: EN25D16 is an evil twin which shares the model ID
3392 but has different write protection capabilities */
3393 .vendor = "Eon",
3394 .name = "EN25Q16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003395 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00003396 .manufacture_id = EON_ID_NOPREFIX,
3397 .model_id = EON_EN25Q16,
3398 .total_size = 2048,
3399 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00003400 /* OTP: D16 512B/Q16 128B total; enter 0x3A */
3401 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks6d715302011-07-24 22:21:57 +00003402 .tested = TEST_UNTESTED,
3403 .probe = probe_spi_rdid,
3404 .probe_timing = TIMING_ZERO,
3405 .block_erasers =
3406 {
3407 {
3408 .eraseblocks = { {4 * 1024, 512} },
3409 .block_erase = spi_block_erase_20,
3410 }, {
3411 .eraseblocks = { {64 * 1024, 32} },
3412 .block_erase = spi_block_erase_d8,
3413 }, {
3414 /* not supported by Q16 version */
3415 .eraseblocks = { {64 * 1024, 32} },
3416 .block_erase = spi_block_erase_52,
3417 }, {
3418 .eraseblocks = { {2 * 1024 * 1024, 1} },
3419 .block_erase = spi_block_erase_60,
3420 }, {
3421 .eraseblocks = { {2 * 1024 * 1024, 1} },
3422 .block_erase = spi_block_erase_c7,
3423 }
3424 },
3425 .unlock = spi_disable_blockprotect,
3426 .write = spi_chip_write_256,
3427 .read = spi_chip_read,
3428 .voltage = {2700, 3600},
3429 },
3430
3431 {
3432 .vendor = "Eon",
3433 .name = "EN25Q32(A/B)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003434 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00003435 .manufacture_id = EON_ID_NOPREFIX,
3436 .model_id = EON_EN25Q32,
3437 .total_size = 4096,
3438 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00003439 /* OTP: 512B total; enter 0x3A */
3440 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner2abab942012-04-27 20:41:23 +00003441 .tested = TEST_OK_PROBE,
David Hendricks6d715302011-07-24 22:21:57 +00003442 .probe = probe_spi_rdid,
3443 .probe_timing = TIMING_ZERO,
3444 .block_erasers =
3445 {
3446 {
3447 .eraseblocks = { {4 * 1024, 1024} },
3448 .block_erase = spi_block_erase_20,
3449 }, {
3450 .eraseblocks = { {64 * 1024, 64} },
3451 .block_erase = spi_block_erase_d8,
3452 }, {
3453 .eraseblocks = { {4 * 1024 * 1024, 1} },
3454 .block_erase = spi_block_erase_60,
3455 }, {
3456 .eraseblocks = { {4 * 1024 * 1024, 1} },
3457 .block_erase = spi_block_erase_c7,
3458 }
3459 },
3460 .unlock = spi_disable_blockprotect,
3461 .write = spi_chip_write_256,
3462 .read = spi_chip_read,
3463 .voltage = {2700, 3600},
3464 },
3465
3466 {
3467 .vendor = "Eon",
3468 .name = "EN25Q64",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003469 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00003470 .manufacture_id = EON_ID_NOPREFIX,
3471 .model_id = EON_EN25Q64,
3472 .total_size = 8192,
3473 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00003474 /* OTP: 512B total; enter 0x3A */
3475 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks6d715302011-07-24 22:21:57 +00003476 .tested = TEST_UNTESTED,
3477 .probe = probe_spi_rdid,
3478 .probe_timing = TIMING_ZERO,
3479 .block_erasers =
3480 {
3481 {
3482 .eraseblocks = { {4 * 1024, 2048} },
3483 .block_erase = spi_block_erase_20,
3484 }, {
3485 .eraseblocks = { {64 * 1024, 128} },
3486 .block_erase = spi_block_erase_d8,
3487 }, {
3488 .eraseblocks = { {8 * 1024 * 1024, 1} },
3489 .block_erase = spi_block_erase_60,
3490 }, {
3491 .eraseblocks = { {8 * 1024 * 1024, 1} },
3492 .block_erase = spi_block_erase_c7,
3493 }
3494 },
3495 .unlock = spi_disable_blockprotect,
3496 .write = spi_chip_write_256,
3497 .read = spi_chip_read,
3498 .voltage = {2700, 3600},
3499 },
3500
3501 {
3502 .vendor = "Eon",
3503 .name = "EN25Q128",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003504 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00003505 .manufacture_id = EON_ID_NOPREFIX,
3506 .model_id = EON_EN25Q128,
3507 .total_size = 16384,
3508 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00003509 /* OTP: 512B total; enter 0x3A */
3510 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks6d715302011-07-24 22:21:57 +00003511 .tested = TEST_UNTESTED,
3512 .probe = probe_spi_rdid,
3513 .probe_timing = TIMING_ZERO,
3514 .block_erasers =
3515 {
3516 {
3517 .eraseblocks = { {4 * 1024, 4096} },
3518 .block_erase = spi_block_erase_20,
3519 }, {
3520 .eraseblocks = { {64 * 1024, 256} },
3521 .block_erase = spi_block_erase_d8,
3522 }, {
3523 .eraseblocks = { {16 * 1024 * 1024, 1} },
3524 .block_erase = spi_block_erase_60,
3525 }, {
3526 .eraseblocks = { {16 * 1024 * 1024, 1} },
3527 .block_erase = spi_block_erase_c7,
3528 }
3529 },
3530 .unlock = spi_disable_blockprotect,
3531 .write = spi_chip_write_256,
3532 .read = spi_chip_read,
3533 },
3534
3535 {
3536 .vendor = "Eon",
3537 .name = "EN25QH16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003538 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00003539 .manufacture_id = EON_ID_NOPREFIX,
3540 .model_id = EON_EN25QH16,
3541 .total_size = 2048,
3542 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00003543 /* supports SFDP */
3544 /* OTP: 512B total; enter 0x3A */
3545 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks6d715302011-07-24 22:21:57 +00003546 .tested = TEST_UNTESTED,
3547 .probe = probe_spi_rdid,
3548 .probe_timing = TIMING_ZERO,
3549 .block_erasers =
3550 {
3551 {
3552 .eraseblocks = { {4 * 1024, 512} },
3553 .block_erase = spi_block_erase_20,
3554 }, {
3555 .eraseblocks = { {64 * 1024, 32} },
3556 .block_erase = spi_block_erase_d8,
3557 }, {
3558 .eraseblocks = { {1024 * 2048, 1} },
3559 .block_erase = spi_block_erase_60,
3560 }, {
3561 .eraseblocks = { {1024 * 2048, 1} },
3562 .block_erase = spi_block_erase_c7,
3563 }
3564 },
3565 .unlock = spi_disable_blockprotect,
3566 .write = spi_chip_write_256,
3567 .read = spi_chip_read,
Stefan Tauner2cef9162012-05-14 01:51:46 +00003568 .voltage = {2700, 3600},
3569 },
3570
3571 {
3572 .vendor = "Eon",
3573 .name = "EN25QH32",
3574 .bustype = BUS_SPI,
3575 .manufacture_id = EON_ID_NOPREFIX,
3576 .model_id = EON_EN25QH32,
3577 .total_size = 4096,
3578 .page_size = 256,
3579 /* supports SFDP */
3580 /* OTP: 512B total; enter 0x3A */
3581 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
3582 .tested = TEST_UNTESTED,
3583 .probe = probe_spi_rdid,
3584 .probe_timing = TIMING_ZERO,
3585 .block_erasers =
3586 {
3587 {
3588 .eraseblocks = { {4 * 1024, 1024} },
3589 .block_erase = spi_block_erase_20,
3590 }, {
3591 .eraseblocks = { {64 * 1024, 64} },
3592 .block_erase = spi_block_erase_d8,
3593 }, {
3594 .eraseblocks = { {1024 * 4096, 1} },
3595 .block_erase = spi_block_erase_60,
3596 }, {
3597 .eraseblocks = { {1024 * 4096, 1} },
3598 .block_erase = spi_block_erase_c7,
3599 }
3600 },
3601 .unlock = spi_disable_blockprotect,
3602 .write = spi_chip_write_256,
3603 .read = spi_chip_read,
3604 .voltage = {2700, 3600},
David Hendricks6d715302011-07-24 22:21:57 +00003605 },
3606
3607 {
3608 .vendor = "Eon",
Russ Dill3cd5a122010-03-05 08:44:11 +00003609 .name = "EN29F010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003610 .bustype = BUS_PARALLEL,
Russ Dill3cd5a122010-03-05 08:44:11 +00003611 .manufacture_id = EON_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003612 .model_id = EON_EN29F010,
Russ Dill3cd5a122010-03-05 08:44:11 +00003613 .total_size = 128,
3614 .page_size = 128,
3615 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00003616 .tested = TEST_OK_PRE,
Russ Dill3cd5a122010-03-05 08:44:11 +00003617 .probe = probe_jedec,
3618 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
3619 .block_erasers =
3620 {
3621 {
3622 .eraseblocks = { {16 * 1024, 8} },
3623 .block_erase = erase_sector_jedec,
3624 },
3625 {
3626 .eraseblocks = { {128 * 1024, 1} },
3627 .block_erase = erase_chip_block_jedec,
3628 },
3629 },
3630 .write = write_jedec_1,
3631 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003632 .voltage = {4500, 5500},
Russ Dill3cd5a122010-03-05 08:44:11 +00003633 },
3634
3635 {
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00003636 .vendor = "Eon",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003637 .name = "EN29F002(A)(N)B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003638 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003639 .manufacture_id = EON_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003640 .model_id = EON_EN29F002B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003641 .total_size = 256,
3642 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00003643 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00003644 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003645 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00003646 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00003647 .block_erasers =
3648 {
3649 {
Rudolf Marek47eff6b2012-04-14 22:51:40 +00003650 .eraseblocks = {
Sean Nelson6b11ad22009-12-23 17:05:59 +00003651 {16 * 1024, 1},
Michael Karchere3cb0a12010-03-13 23:47:09 +00003652 {8 * 1024, 2},
3653 {32 * 1024, 1},
3654 {64 * 1024, 3},
Sean Nelson6b11ad22009-12-23 17:05:59 +00003655 },
3656 .block_erase = erase_sector_jedec,
3657 }, {
3658 .eraseblocks = { {256 * 1024, 1} },
3659 .block_erase = erase_chip_block_jedec,
3660 },
3661 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00003662 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003663 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003664 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00003665 },
3666
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003667 {
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00003668 .vendor = "Eon",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003669 .name = "EN29F002(A)(N)T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003670 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003671 .manufacture_id = EON_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003672 .model_id = EON_EN29F002T,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003673 .total_size = 256,
3674 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00003675 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00003676 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003677 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00003678 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00003679 .block_erasers =
3680 {
3681 {
Rudolf Marek47eff6b2012-04-14 22:51:40 +00003682 .eraseblocks = {
Sean Nelson6b11ad22009-12-23 17:05:59 +00003683 {64 * 1024, 3},
Michael Karchere3cb0a12010-03-13 23:47:09 +00003684 {32 * 1024, 1},
3685 {8 * 1024, 2},
3686 {16 * 1024, 1},
Sean Nelson6b11ad22009-12-23 17:05:59 +00003687 },
3688 .block_erase = erase_sector_jedec,
3689 }, {
3690 .eraseblocks = { {256 * 1024, 1} },
3691 .block_erase = erase_chip_block_jedec,
3692 },
3693 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00003694 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003695 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003696 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00003697 },
3698
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003699 {
Rudolf Marek47eff6b2012-04-14 22:51:40 +00003700 .vendor = "Eon",
3701 .name = "EN29LV640B",
3702 .bustype = BUS_PARALLEL,
3703 .manufacture_id = EON_ID,
3704 .model_id = EON_EN29LV640B,
3705 .total_size = 8192,
3706 .page_size = 8192,
3707 .feature_bits = 0,
3708 .tested = TEST_OK_PREW,
3709 .probe = probe_en29lv640b,
3710 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
3711 .block_erasers =
3712 {
3713 {
3714 .eraseblocks = {
3715 {8 * 1024, 8},
3716 {64 * 1024, 127},
3717 },
3718 .block_erase = block_erase_en29lv640b,
3719 }, {
3720 .eraseblocks = { {8 * 1024 * 1024, 1} },
3721 .block_erase = block_erase_chip_en29lv640b,
3722 },
3723 },
3724 .write = write_en29lv640b,
3725 .read = read_memmapped,
3726 .voltage = {2700, 3600},
3727 },
3728
3729 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003730 .vendor = "Fujitsu",
3731 .name = "MBM29F004BC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003732 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003733 .manufacture_id = FUJITSU_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003734 .model_id = FUJITSU_MBM29F004BC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003735 .total_size = 512,
3736 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00003737 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003738 .tested = TEST_UNTESTED,
3739 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00003740 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00003741 .block_erasers =
3742 {
3743 {
3744 .eraseblocks = {
3745 {16 * 1024, 1},
3746 {8 * 1024, 2},
3747 {32 * 1024, 1},
3748 {64 * 1024, 7},
3749 },
Sean Nelson35727f72010-01-28 23:55:12 +00003750 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00003751 }, {
3752 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00003753 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00003754 },
3755 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003756 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003757 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003758 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00003759 },
3760
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003761 {
3762 .vendor = "Fujitsu",
3763 .name = "MBM29F004TC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003764 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003765 .manufacture_id = FUJITSU_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003766 .model_id = FUJITSU_MBM29F004TC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003767 .total_size = 512,
3768 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00003769 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003770 .tested = TEST_UNTESTED,
3771 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00003772 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00003773 .block_erasers =
3774 {
3775 {
3776 .eraseblocks = {
3777 {64 * 1024, 7},
3778 {32 * 1024, 1},
3779 {8 * 1024, 2},
3780 {16 * 1024, 1},
3781 },
Sean Nelson35727f72010-01-28 23:55:12 +00003782 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00003783 }, {
3784 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00003785 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00003786 },
3787 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003788 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003789 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003790 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00003791 },
3792
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003793 {
Sean Nelson35727f72010-01-28 23:55:12 +00003794 /* FIXME: this has WORD/BYTE sequences; 2AA for word, 555 for byte */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003795 .vendor = "Fujitsu",
3796 .name = "MBM29F400BC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003797 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003798 .manufacture_id = FUJITSU_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003799 .model_id = FUJITSU_MBM29F400BC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003800 .total_size = 512,
3801 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00003802 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00003803 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003804 .probe = probe_m29f400bt,
Paul Menzelc07a41c2011-06-19 17:23:55 +00003805 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (m29f400bt.c) */
Sean Nelson6b11ad22009-12-23 17:05:59 +00003806 .block_erasers =
3807 {
3808 {
3809 .eraseblocks = {
3810 {16 * 1024, 1},
3811 {8 * 1024, 2},
3812 {32 * 1024, 1},
3813 {64 * 1024, 7},
3814 },
3815 .block_erase = block_erase_m29f400bt,
3816 }, {
3817 .eraseblocks = { {512 * 1024, 1} },
3818 .block_erase = block_erase_chip_m29f400bt,
3819 },
3820 },
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00003821 .write = write_m29f400bt,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003822 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00003823 .voltage = {4750, 5250}, /* 4.75-5.25V for type -55, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +00003824 },
3825
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003826 {
3827 .vendor = "Fujitsu",
3828 .name = "MBM29F400TC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003829 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003830 .manufacture_id = FUJITSU_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003831 .model_id = FUJITSU_MBM29F400TC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003832 .total_size = 512,
3833 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00003834 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003835 .tested = TEST_UNTESTED,
3836 .probe = probe_m29f400bt,
Paul Menzelc07a41c2011-06-19 17:23:55 +00003837 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (m29f400bt.c) */
Sean Nelson6b11ad22009-12-23 17:05:59 +00003838 .block_erasers =
3839 {
3840 {
3841 .eraseblocks = {
3842 {64 * 1024, 7},
3843 {32 * 1024, 1},
3844 {8 * 1024, 2},
3845 {16 * 1024, 1},
3846 },
3847 .block_erase = block_erase_m29f400bt,
3848 }, {
3849 .eraseblocks = { {512 * 1024, 1} },
3850 .block_erase = block_erase_chip_m29f400bt,
3851 },
3852 },
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00003853 .write = write_m29f400bt,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003854 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00003855 .voltage = {4750, 5250}, /* 4.75-5.25V for type -55, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +00003856 },
3857
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003858 {
Justin Chevrier1525b2a2012-04-14 21:59:23 +00003859 .vendor = "GigaDevice",
3860 .name = "GD25Q20",
3861 .bustype = BUS_SPI,
3862 .manufacture_id = GIGADEVICE_ID,
3863 .model_id = GIGADEVICE_GD25Q20,
3864 .total_size = 256,
3865 .page_size = 256,
3866 .feature_bits = FEATURE_WRSR_WREN,
3867 .tested = TEST_UNTESTED,
3868 .probe = probe_spi_rdid,
3869 .probe_timing = TIMING_ZERO,
3870 .block_erasers =
3871 {
3872 {
3873 .eraseblocks = { {4 * 1024, 64} },
3874 .block_erase = spi_block_erase_20,
3875 }, {
3876 .eraseblocks = { {32 * 1024, 8} },
3877 .block_erase = spi_block_erase_52,
3878 }, {
3879 .eraseblocks = { {64 * 1024, 4} },
3880 .block_erase = spi_block_erase_d8,
3881 }, {
3882 .eraseblocks = { {256 * 1024, 1} },
3883 .block_erase = spi_block_erase_60,
3884 }, {
3885 .eraseblocks = { {256 * 1024, 1} },
3886 .block_erase = spi_block_erase_c7,
3887 }
3888 },
3889 .unlock = spi_disable_blockprotect,
3890 .write = spi_chip_write_256,
3891 .read = spi_chip_read,
3892 .voltage = {2700, 3600},
3893 },
3894
3895 {
3896 .vendor = "GigaDevice",
3897 .name = "GD25Q40",
3898 .bustype = BUS_SPI,
3899 .manufacture_id = GIGADEVICE_ID,
3900 .model_id = GIGADEVICE_GD25Q40,
3901 .total_size = 512,
3902 .page_size = 256,
3903 .feature_bits = FEATURE_WRSR_WREN,
3904 .tested = TEST_UNTESTED,
3905 .probe = probe_spi_rdid,
3906 .probe_timing = TIMING_ZERO,
3907 .block_erasers =
3908 {
3909 {
3910 .eraseblocks = { {4 * 1024, 128} },
3911 .block_erase = spi_block_erase_20,
3912 }, {
3913 .eraseblocks = { {32 * 1024, 16} },
3914 .block_erase = spi_block_erase_52,
3915 }, {
3916 .eraseblocks = { {64 * 1024, 8} },
3917 .block_erase = spi_block_erase_d8,
3918 }, {
3919 .eraseblocks = { {512 * 1024, 1} },
3920 .block_erase = spi_block_erase_60,
3921 }, {
3922 .eraseblocks = { {512 * 1024, 1} },
3923 .block_erase = spi_block_erase_c7,
3924 }
3925 },
3926 .unlock = spi_disable_blockprotect,
3927 .write = spi_chip_write_256,
3928 .read = spi_chip_read,
3929 .voltage = {2700, 3600},
3930 },
3931
3932 {
3933 .vendor = "GigaDevice",
3934 .name = "GD25Q80",
3935 .bustype = BUS_SPI,
3936 .manufacture_id = GIGADEVICE_ID,
3937 .model_id = GIGADEVICE_GD25Q80,
3938 .total_size = 1024,
3939 .page_size = 256,
3940 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42 */
3941 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
3942 .tested = TEST_OK_PREW,
3943 .probe = probe_spi_rdid,
3944 .probe_timing = TIMING_ZERO,
3945 .block_erasers =
3946 {
3947 {
3948 .eraseblocks = { {4 * 1024, 256} },
3949 .block_erase = spi_block_erase_20,
3950 }, {
3951 .eraseblocks = { {32 * 1024, 32} },
3952 .block_erase = spi_block_erase_52,
3953 }, {
3954 .eraseblocks = { {64 * 1024, 16} },
3955 .block_erase = spi_block_erase_d8,
3956 }, {
3957 .eraseblocks = { {1024 * 1024, 1} },
3958 .block_erase = spi_block_erase_60,
3959 }, {
3960 .eraseblocks = { {1024 * 1024, 1} },
3961 .block_erase = spi_block_erase_c7,
3962 }
3963 },
3964 .unlock = spi_disable_blockprotect,
3965 .write = spi_chip_write_256,
3966 .read = spi_chip_read,
3967 .voltage = {2700, 3600},
3968 },
3969
3970 {
3971 .vendor = "GigaDevice",
3972 .name = "GD25Q16",
3973 .bustype = BUS_SPI,
3974 .manufacture_id = GIGADEVICE_ID,
3975 .model_id = GIGADEVICE_GD25Q16,
3976 .total_size = 2048,
3977 .page_size = 256,
3978 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42 */
3979 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
3980 .tested = TEST_UNTESTED,
3981 .probe = probe_spi_rdid,
3982 .probe_timing = TIMING_ZERO,
3983 .block_erasers =
3984 {
3985 {
3986 .eraseblocks = { {4 * 1024, 512} },
3987 .block_erase = spi_block_erase_20,
3988 }, {
3989 .eraseblocks = { {32 * 1024, 64} },
3990 .block_erase = spi_block_erase_52,
3991 }, {
3992 .eraseblocks = { {64 * 1024, 32} },
3993 .block_erase = spi_block_erase_d8,
3994 }, {
3995 .eraseblocks = { {2 * 1024 * 1024, 1} },
3996 .block_erase = spi_block_erase_60,
3997 }, {
3998 .eraseblocks = { {2 * 1024 * 1024, 1} },
3999 .block_erase = spi_block_erase_c7,
4000 }
4001 },
4002 .unlock = spi_disable_blockprotect,
4003 .write = spi_chip_write_256,
4004 .read = spi_chip_read,
4005 .voltage = {2700, 3600},
4006 },
4007
4008 {
4009 .vendor = "GigaDevice",
4010 .name = "GD25Q32",
4011 .bustype = BUS_SPI,
4012 .manufacture_id = GIGADEVICE_ID,
4013 .model_id = GIGADEVICE_GD25Q32,
4014 .total_size = 4096,
4015 .page_size = 256,
4016 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42 */
4017 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4018 .tested = TEST_UNTESTED,
4019 .probe = probe_spi_rdid,
4020 .probe_timing = TIMING_ZERO,
4021 .block_erasers =
4022 {
4023 {
4024 .eraseblocks = { {4 * 1024, 1024} },
4025 .block_erase = spi_block_erase_20,
4026 }, {
4027 .eraseblocks = { {32 * 1024, 128} },
4028 .block_erase = spi_block_erase_52,
4029 }, {
4030 .eraseblocks = { {64 * 1024, 64} },
4031 .block_erase = spi_block_erase_d8,
4032 }, {
4033 .eraseblocks = { {4 * 1024 * 1024, 1} },
4034 .block_erase = spi_block_erase_60,
4035 }, {
4036 .eraseblocks = { {4 * 1024 * 1024, 1} },
4037 .block_erase = spi_block_erase_c7,
4038 }
4039 },
4040 .unlock = spi_disable_blockprotect,
4041 .write = spi_chip_write_256,
4042 .read = spi_chip_read,
4043 .voltage = {2700, 3600},
4044 },
4045
4046 {
4047 .vendor = "GigaDevice",
4048 .name = "GD25Q64",
4049 .bustype = BUS_SPI,
4050 .manufacture_id = GIGADEVICE_ID,
4051 .model_id = GIGADEVICE_GD25Q64,
4052 .total_size = 8192,
4053 .page_size = 256,
4054 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42 */
4055 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4056 .tested = TEST_UNTESTED,
4057 .probe = probe_spi_rdid,
4058 .probe_timing = TIMING_ZERO,
4059 .block_erasers =
4060 {
4061 {
4062 .eraseblocks = { {4 * 1024, 2048} },
4063 .block_erase = spi_block_erase_20,
4064 }, {
4065 .eraseblocks = { {32 * 1024, 256} },
4066 .block_erase = spi_block_erase_52,
4067 }, {
4068 .eraseblocks = { {64 * 1024, 128} },
4069 .block_erase = spi_block_erase_d8,
4070 }, {
4071 .eraseblocks = { {8 * 1024 * 1024, 1} },
4072 .block_erase = spi_block_erase_60,
4073 }, {
4074 .eraseblocks = { {8 * 1024 * 1024, 1} },
4075 .block_erase = spi_block_erase_c7,
4076 }
4077 },
4078 .unlock = spi_disable_blockprotect,
4079 .write = spi_chip_write_256,
4080 .read = spi_chip_read,
4081 },
4082
4083 {
4084 .vendor = "GigaDevice",
4085 .name = "GD25Q128",
4086 .bustype = BUS_SPI,
4087 .manufacture_id = GIGADEVICE_ID,
4088 .model_id = GIGADEVICE_GD25Q128,
4089 .total_size = 16384,
4090 .page_size = 256,
4091 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42 */
4092 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4093 .tested = TEST_UNTESTED,
4094 .probe = probe_spi_rdid,
4095 .probe_timing = TIMING_ZERO,
4096 .block_erasers =
4097 {
4098 {
4099 .eraseblocks = { {4 * 1024, 4096} },
4100 .block_erase = spi_block_erase_20,
4101 }, {
4102 .eraseblocks = { {32 * 1024, 512} },
4103 .block_erase = spi_block_erase_52,
4104 }, {
4105 .eraseblocks = { {64 * 1024, 256} },
4106 .block_erase = spi_block_erase_d8,
4107 }, {
4108 .eraseblocks = { {16 * 1024 * 1024, 1} },
4109 .block_erase = spi_block_erase_60,
4110 }, {
4111 .eraseblocks = { {16 * 1024 * 1024, 1} },
4112 .block_erase = spi_block_erase_c7,
4113 }
4114 },
4115 .unlock = spi_disable_blockprotect,
4116 .write = spi_chip_write_256,
4117 .read = spi_chip_read,
4118 },
4119
4120 {
David Borgc96a8bd2010-06-21 16:12:22 +00004121 .vendor = "Hyundai",
4122 .name = "HY29F002T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004123 .bustype = BUS_PARALLEL,
David Borgc96a8bd2010-06-21 16:12:22 +00004124 .manufacture_id = HYUNDAI_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004125 .model_id = HYUNDAI_HY29F002T,
David Borgc96a8bd2010-06-21 16:12:22 +00004126 .total_size = 256,
4127 .page_size = 256 * 1024,
4128 .feature_bits = FEATURE_EITHER_RESET, /* Some revisions may need FEATURE_ADDR_2AA */
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00004129 .tested = TEST_OK_PRE,
David Borgc96a8bd2010-06-21 16:12:22 +00004130 .probe = probe_jedec,
4131 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
4132 .block_erasers =
4133 {
4134 {
4135 .eraseblocks = {
4136 {64 * 1024, 3},
4137 {32 * 1024, 1},
4138 {8 * 1024, 2},
4139 {16 * 1024, 1},
4140 },
4141 .block_erase = erase_sector_jedec,
4142 }, {
4143 .eraseblocks = { {256 * 1024, 1} },
4144 .block_erase = erase_chip_block_jedec,
4145 },
4146 },
4147 .write = write_jedec_1,
4148 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00004149 .voltage = {4750, 5250}, /* 4.75-5.25V for type -45, others 4.5-5.5V */
David Borgc96a8bd2010-06-21 16:12:22 +00004150 },
4151
4152 {
4153 .vendor = "Hyundai",
4154 .name = "HY29F002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004155 .bustype = BUS_PARALLEL,
David Borgc96a8bd2010-06-21 16:12:22 +00004156 .manufacture_id = HYUNDAI_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004157 .model_id = HYUNDAI_HY29F002B,
David Borgc96a8bd2010-06-21 16:12:22 +00004158 .total_size = 256,
4159 .page_size = 256 * 1024,
4160 .feature_bits = FEATURE_EITHER_RESET, /* Some revisions may need FEATURE_ADDR_2AA */
4161 .tested = TEST_UNTESTED,
4162 .probe = probe_jedec,
4163 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
4164 .block_erasers =
4165 {
4166 {
4167 .eraseblocks = {
4168 {16 * 1024, 1},
4169 {8 * 1024, 2},
4170 {32 * 1024, 1},
4171 {64 * 1024, 3},
4172 },
4173 .block_erase = erase_sector_jedec,
4174 }, {
4175 .eraseblocks = { {256 * 1024, 1} },
4176 .block_erase = erase_chip_block_jedec,
4177 },
4178 },
4179 .write = write_jedec_1,
4180 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00004181 .voltage = {4750, 5250}, /* 4.75-5.25V for type -45, others 4.5-5.5V */
David Borgc96a8bd2010-06-21 16:12:22 +00004182 },
4183
4184 {
Joshua Roysf1324e02010-09-16 00:51:51 +00004185 .vendor = "Hyundai",
4186 .name = "HY29F040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004187 .bustype = BUS_PARALLEL,
Joshua Roysf1324e02010-09-16 00:51:51 +00004188 .manufacture_id = HYUNDAI_ID,
4189 .model_id = HYUNDAI_HY29F040A,
4190 .total_size = 512,
4191 .page_size = 64 * 1024,
4192 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
4193 .tested = TEST_UNTESTED,
4194 .probe = probe_jedec,
4195 .probe_timing = TIMING_ZERO,
4196 .block_erasers =
4197 {
4198 {
4199 .eraseblocks = { {64 * 1024, 8} },
4200 .block_erase = erase_sector_jedec,
4201 }, {
4202 .eraseblocks = { {512 * 1024, 1} },
4203 .block_erase = erase_chip_block_jedec,
4204 },
4205 },
4206 .write = write_jedec_1,
4207 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00004208 .voltage = {4500, 5500},
Joshua Roysf1324e02010-09-16 00:51:51 +00004209 },
4210
4211 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004212 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004213 .name = "28F001BN/BX-B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004214 .bustype = BUS_PARALLEL,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004215 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004216 .model_id = INTEL_28F001B,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004217 .total_size = 128,
4218 .page_size = 128 * 1024, /* 8k + 2x4k + 112k */
Sean Nelsondee4a832010-03-22 04:39:31 +00004219 .tested = TEST_UNTESTED,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004220 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00004221 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson54596372010-01-09 05:30:14 +00004222 .block_erasers =
4223 {
4224 {
4225 .eraseblocks = {
4226 {8 * 1024, 1},
4227 {4 * 1024, 2},
4228 {112 * 1024, 1},
4229 },
Sean Nelson28accc22010-03-19 18:47:06 +00004230 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00004231 },
4232 },
Sean Nelsondee4a832010-03-22 04:39:31 +00004233 .write = write_82802ab,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004234 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004235 .voltage = {4500, 5500},
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004236 },
4237
4238 {
4239 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004240 .name = "28F001BN/BX-T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004241 .bustype = BUS_PARALLEL,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004242 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004243 .model_id = INTEL_28F001T,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004244 .total_size = 128,
4245 .page_size = 128 * 1024, /* 112k + 2x4k + 8k */
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00004246 .tested = TEST_OK_PR,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004247 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00004248 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson54596372010-01-09 05:30:14 +00004249 .block_erasers =
4250 {
4251 {
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00004252 .eraseblocks = {
Sean Nelson54596372010-01-09 05:30:14 +00004253 {112 * 1024, 1},
4254 {4 * 1024, 2},
4255 {8 * 1024, 1},
4256 },
Sean Nelson28accc22010-03-19 18:47:06 +00004257 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00004258 },
4259 },
Sean Nelsondee4a832010-03-22 04:39:31 +00004260 .write = write_82802ab,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004261 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004262 .voltage = {4500, 5500},
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004263 },
4264
4265 {
4266 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004267 .name = "28F002BC/BL/BV/BX-T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004268 .bustype = BUS_PARALLEL,
Joshua Roysd97c0e02010-07-22 15:20:43 +00004269 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004270 .model_id = INTEL_28F002T,
Joshua Roysd97c0e02010-07-22 15:20:43 +00004271 .total_size = 256,
4272 .page_size = 256 * 1024,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00004273 .tested = TEST_OK_PRE,
Joshua Roysd97c0e02010-07-22 15:20:43 +00004274 .probe = probe_82802ab,
4275 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
4276 .block_erasers =
4277 {
4278 {
4279 .eraseblocks = {
4280 {128 * 1024, 1},
4281 {96 * 1024, 1},
4282 {8 * 1024, 2},
4283 {16 * 1024, 1},
4284 },
4285 .block_erase = erase_block_82802ab,
4286 },
4287 },
4288 .write = write_82802ab,
4289 .read = read_memmapped,
4290 },
4291
4292 {
4293 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004294 .name = "28F008S3/S5/SC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004295 .bustype = BUS_PARALLEL,
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00004296 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004297 .model_id = INTEL_28F004S3,
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00004298 .total_size = 512,
4299 .page_size = 256,
4300 .tested = TEST_UNTESTED,
4301 .probe = probe_82802ab,
4302 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00004303 .block_erasers =
4304 {
4305 {
4306 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson28accc22010-03-19 18:47:06 +00004307 .block_erase = erase_block_82802ab,
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00004308 },
4309 },
Sean Nelsondee4a832010-03-22 04:39:31 +00004310 .unlock = unlock_28f004s5,
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00004311 .write = write_82802ab,
4312 .read = read_memmapped,
4313 },
4314
4315 {
4316 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004317 .name = "28F004B5/BE/BV/BX-B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004318 .bustype = BUS_PARALLEL,
Michael Karcherad0010a2010-04-03 10:27:08 +00004319 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004320 .model_id = INTEL_28F004B,
Michael Karcherad0010a2010-04-03 10:27:08 +00004321 .total_size = 512,
4322 .page_size = 128 * 1024, /* maximal block size */
4323 .tested = TEST_UNTESTED,
4324 .probe = probe_82802ab,
4325 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
4326 .block_erasers =
4327 {
4328 {
4329 .eraseblocks = {
4330 {16 * 1024, 1},
4331 {8 * 1024, 2},
4332 {96 * 1024, 1},
4333 {128 * 1024, 3},
4334 },
4335 .block_erase = erase_block_82802ab,
4336 },
4337 },
4338 .write = write_82802ab,
4339 .read = read_memmapped,
4340 },
4341
4342 {
4343 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004344 .name = "28F004B5/BE/BV/BX-T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004345 .bustype = BUS_PARALLEL,
Michael Karcherad0010a2010-04-03 10:27:08 +00004346 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004347 .model_id = INTEL_28F004T,
Michael Karcherad0010a2010-04-03 10:27:08 +00004348 .total_size = 512,
4349 .page_size = 128 * 1024, /* maximal block size */
4350 .tested = TEST_UNTESTED,
4351 .probe = probe_82802ab,
4352 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
4353 .block_erasers =
4354 {
4355 {
4356 .eraseblocks = {
4357 {128 * 1024, 3},
4358 {96 * 1024, 1},
4359 {8 * 1024, 2},
4360 {16 * 1024, 1},
4361 },
4362 .block_erase = erase_block_82802ab,
4363 },
4364 },
4365 .write = write_82802ab,
4366 .read = read_memmapped,
4367 },
4368
4369 {
4370 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004371 .name = "28F400BV/BX/CE/CV-B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004372 .bustype = BUS_PARALLEL,
Michael Karcherad0010a2010-04-03 10:27:08 +00004373 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004374 .model_id = INTEL_28F400B,
Michael Karcherad0010a2010-04-03 10:27:08 +00004375 .total_size = 512,
4376 .page_size = 128 * 1024, /* maximal block size */
4377 .feature_bits = FEATURE_ADDR_SHIFTED,
4378 .tested = TEST_UNTESTED,
4379 .probe = probe_82802ab,
4380 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
4381 .block_erasers =
4382 {
4383 {
4384 .eraseblocks = {
4385 {16 * 1024, 1},
4386 {8 * 1024, 2},
4387 {96 * 1024, 1},
4388 {128 * 1024, 3},
4389 },
4390 .block_erase = erase_block_82802ab,
4391 },
4392 },
4393 .write = write_82802ab,
4394 .read = read_memmapped,
4395 },
4396
4397 {
4398 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004399 .name = "28F400BV/BX/CE/CV-T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004400 .bustype = BUS_PARALLEL,
Michael Karcherad0010a2010-04-03 10:27:08 +00004401 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004402 .model_id = INTEL_28F400T,
Michael Karcherad0010a2010-04-03 10:27:08 +00004403 .total_size = 512,
4404 .page_size = 128 * 1024, /* maximal block size */
4405 .feature_bits = FEATURE_ADDR_SHIFTED,
4406 .tested = TEST_UNTESTED,
4407 .probe = probe_82802ab,
4408 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
4409 .block_erasers =
4410 {
4411 {
4412 .eraseblocks = {
4413 {128 * 1024, 3},
4414 {96 * 1024, 1},
4415 {8 * 1024, 2},
4416 {16 * 1024, 1},
4417 },
4418 .block_erase = erase_block_82802ab,
4419 },
4420 },
4421 .write = write_82802ab,
4422 .read = read_memmapped,
4423 },
4424
4425 {
4426 .vendor = "Intel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004427 .name = "82802AB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004428 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004429 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004430 .model_id = INTEL_82802AB,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004431 .total_size = 512,
4432 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004433 .feature_bits = FEATURE_REGISTERMAP,
Stefan Taunerd06d9412011-06-12 19:47:55 +00004434 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004435 .probe = probe_82802ab,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004436 .probe_timing = TIMING_IGNORED, /* routine does not use probe_timing (82802ab.c) */
Sean Nelson54596372010-01-09 05:30:14 +00004437 .block_erasers =
4438 {
4439 {
4440 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson28accc22010-03-19 18:47:06 +00004441 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00004442 },
4443 },
Sean Nelson28accc22010-03-19 18:47:06 +00004444 .unlock = unlock_82802ab,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004445 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004446 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004447 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00004448 },
4449
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004450 {
4451 .vendor = "Intel",
4452 .name = "82802AC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004453 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004454 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004455 .model_id = INTEL_82802AC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004456 .total_size = 1024,
4457 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004458 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson28accc22010-03-19 18:47:06 +00004459 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004460 .probe = probe_82802ab,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004461 .probe_timing = TIMING_IGNORED, /* routine does not use probe_timing (82802ab.c) */
Sean Nelson54596372010-01-09 05:30:14 +00004462 .block_erasers =
4463 {
4464 {
4465 .eraseblocks = { {64 * 1024, 16} },
Sean Nelson28accc22010-03-19 18:47:06 +00004466 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00004467 },
4468 },
Sean Nelson28accc22010-03-19 18:47:06 +00004469 .unlock = unlock_82802ab,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004470 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004471 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004472 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00004473 },
4474
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004475 {
4476 .vendor = "Macronix",
4477 .name = "MX25L512",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004478 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004479 .manufacture_id = MACRONIX_ID,
4480 .model_id = MACRONIX_MX25L512,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004481 .total_size = 64,
4482 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00004483 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004484 .tested = TEST_UNTESTED,
4485 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004486 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00004487 .block_erasers =
4488 {
4489 {
4490 .eraseblocks = { {4 * 1024, 16} },
4491 .block_erase = spi_block_erase_20,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00004492 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00004493 .eraseblocks = { {64 * 1024, 1} },
4494 .block_erase = spi_block_erase_52,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00004495 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00004496 .eraseblocks = { {64 * 1024, 1} },
4497 .block_erase = spi_block_erase_d8,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00004498 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00004499 .eraseblocks = { {64 * 1024, 1} },
4500 .block_erase = spi_block_erase_60,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00004501 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00004502 .eraseblocks = { {64 * 1024, 1} },
4503 .block_erase = spi_block_erase_c7,
4504 },
4505 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004506 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004507 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004508 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004509 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00004510 },
4511
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004512 {
4513 .vendor = "Macronix",
4514 .name = "MX25L1005",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004515 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004516 .manufacture_id = MACRONIX_ID,
4517 .model_id = MACRONIX_MX25L1005,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004518 .total_size = 128,
4519 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00004520 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004521 .tested = TEST_UNTESTED,
4522 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004523 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00004524 .block_erasers =
4525 {
4526 {
4527 .eraseblocks = { {4 * 1024, 32} },
4528 .block_erase = spi_block_erase_20,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00004529 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00004530 .eraseblocks = { {64 * 1024, 2} },
4531 .block_erase = spi_block_erase_d8,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00004532 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00004533 .eraseblocks = { {128 * 1024, 1} },
4534 .block_erase = spi_block_erase_60,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00004535 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00004536 .eraseblocks = { {128 * 1024, 1} },
4537 .block_erase = spi_block_erase_c7,
4538 },
4539 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004540 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004541 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004542 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004543 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00004544 },
4545
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004546 {
4547 .vendor = "Macronix",
4548 .name = "MX25L2005",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004549 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004550 .manufacture_id = MACRONIX_ID,
4551 .model_id = MACRONIX_MX25L2005,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004552 .total_size = 256,
4553 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00004554 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004555 .tested = TEST_UNTESTED,
4556 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004557 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00004558 .block_erasers =
4559 {
4560 {
4561 .eraseblocks = { {4 * 1024, 64} },
4562 .block_erase = spi_block_erase_20,
4563 }, {
4564 .eraseblocks = { {64 * 1024, 4} },
4565 .block_erase = spi_block_erase_52,
4566 }, {
4567 .eraseblocks = { {64 * 1024, 4} },
4568 .block_erase = spi_block_erase_d8,
4569 }, {
4570 .eraseblocks = { {256 * 1024, 1} },
4571 .block_erase = spi_block_erase_60,
4572 }, {
4573 .eraseblocks = { {256 * 1024, 1} },
4574 .block_erase = spi_block_erase_c7,
4575 },
4576 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004577 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004578 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004579 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004580 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00004581 },
4582
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004583 {
4584 .vendor = "Macronix",
4585 .name = "MX25L4005",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004586 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004587 .manufacture_id = MACRONIX_ID,
4588 .model_id = MACRONIX_MX25L4005,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004589 .total_size = 512,
4590 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00004591 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner8179be52011-06-04 13:13:34 +00004592 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004593 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004594 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00004595 .block_erasers =
4596 {
4597 {
4598 .eraseblocks = { {4 * 1024, 128} },
4599 .block_erase = spi_block_erase_20,
4600 }, {
4601 .eraseblocks = { {64 * 1024, 8} },
4602 .block_erase = spi_block_erase_52,
4603 }, {
4604 .eraseblocks = { {64 * 1024, 8} },
4605 .block_erase = spi_block_erase_d8,
4606 }, {
4607 .eraseblocks = { {512 * 1024, 1} },
4608 .block_erase = spi_block_erase_60,
4609 }, {
4610 .eraseblocks = { {512 * 1024, 1} },
4611 .block_erase = spi_block_erase_c7,
4612 },
4613 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004614 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004615 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004616 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004617 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00004618 },
4619
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004620 {
4621 .vendor = "Macronix",
4622 .name = "MX25L8005",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004623 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004624 .manufacture_id = MACRONIX_ID,
4625 .model_id = MACRONIX_MX25L8005,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004626 .total_size = 1024,
4627 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00004628 .feature_bits = FEATURE_WRSR_WREN,
David Hendricks567b7b82011-05-18 01:31:03 +00004629 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004630 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004631 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00004632 .block_erasers =
4633 {
4634 {
4635 .eraseblocks = { {4 * 1024, 256} },
4636 .block_erase = spi_block_erase_20,
4637 }, {
4638 .eraseblocks = { {64 * 1024, 16} },
4639 .block_erase = spi_block_erase_52,
4640 }, {
4641 .eraseblocks = { {64 * 1024, 16} },
4642 .block_erase = spi_block_erase_d8,
4643 }, {
4644 .eraseblocks = { {1024 * 1024, 1} },
4645 .block_erase = spi_block_erase_60,
4646 }, {
4647 .eraseblocks = { {1024 * 1024, 1} },
4648 .block_erase = spi_block_erase_c7,
4649 },
4650 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004651 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004652 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004653 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004654 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00004655 },
4656
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004657 {
4658 .vendor = "Macronix",
4659 .name = "MX25L1605",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004660 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004661 .manufacture_id = MACRONIX_ID,
4662 .model_id = MACRONIX_MX25L1605,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004663 .total_size = 2048,
4664 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00004665 .feature_bits = FEATURE_WRSR_WREN,
Sven Schnelle4bd8a402011-03-07 10:59:06 +00004666 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004667 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004668 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00004669 .block_erasers =
4670 {
4671 {
4672 .eraseblocks = { {4 * 1024, 512} },
4673 .block_erase = spi_block_erase_20, /* This erase function has 64k blocksize for eLiteFlash */
4674 }, {
4675 .eraseblocks = { {64 * 1024, 32} }, /* Not supported in MX25L1605 (eLiteFlash) and MX25L1605D */
4676 .block_erase = spi_block_erase_52,
4677 }, {
4678 .eraseblocks = { {64 * 1024, 32} },
4679 .block_erase = spi_block_erase_d8,
4680 }, {
4681 .eraseblocks = { {2 * 1024 * 1024, 1} },
4682 .block_erase = spi_block_erase_60,
4683 }, {
4684 .eraseblocks = { {2 * 1024 * 1024, 1} },
4685 .block_erase = spi_block_erase_c7,
4686 },
4687 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004688 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004689 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004690 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004691 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00004692 },
4693
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004694 {
4695 .vendor = "Macronix",
Stephan Guillouxf5c70902009-04-19 23:04:00 +00004696 .name = "MX25L1635D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004697 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004698 .manufacture_id = MACRONIX_ID,
4699 .model_id = MACRONIX_MX25L1635D,
Stephan Guillouxf5c70902009-04-19 23:04:00 +00004700 .total_size = 2048,
4701 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00004702 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guillouxf5c70902009-04-19 23:04:00 +00004703 .tested = TEST_UNTESTED,
4704 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004705 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00004706 .block_erasers =
4707 {
4708 {
4709 .eraseblocks = { {4 * 1024, 512} },
4710 .block_erase = spi_block_erase_20,
4711 }, {
4712 .eraseblocks = { {64 * 1024, 32} },
4713 .block_erase = spi_block_erase_d8,
4714 }, {
4715 .eraseblocks = { {2 * 1024 * 1024, 1} },
4716 .block_erase = spi_block_erase_60,
4717 }, {
4718 .eraseblocks = { {2 * 1024 * 1024, 1} },
4719 .block_erase = spi_block_erase_c7,
4720 }
4721 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004722 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004723 .write = spi_chip_write_256,
Stephan Guillouxf5c70902009-04-19 23:04:00 +00004724 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004725 .voltage = {2700, 3600},
Stephan Guillouxf5c70902009-04-19 23:04:00 +00004726 },
Stephan Guillouxfd315502009-04-20 22:54:13 +00004727
Stephan Guillouxf5c70902009-04-19 23:04:00 +00004728 {
4729 .vendor = "Macronix",
Stephan Guilloux3611b802010-09-13 19:59:28 +00004730 .name = "MX25L1635E",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004731 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004732 .manufacture_id = MACRONIX_ID,
4733 .model_id = MACRONIX_MX25L1635E,
Stephan Guilloux3611b802010-09-13 19:59:28 +00004734 .total_size = 2048,
4735 .page_size = 256,
4736 .feature_bits = FEATURE_WRSR_WREN,
4737 .tested = TEST_UNTESTED,
4738 .probe = probe_spi_rdid,
4739 .probe_timing = TIMING_ZERO,
4740 .block_erasers =
4741 {
4742 {
4743 .eraseblocks = { {4 * 1024, 512} },
4744 .block_erase = spi_block_erase_20,
4745 }, {
4746 .eraseblocks = { {64 * 1024, 32} },
4747 .block_erase = spi_block_erase_d8,
4748 }, {
4749 .eraseblocks = { {2 * 1024 * 1024, 1} },
4750 .block_erase = spi_block_erase_60,
4751 }, {
4752 .eraseblocks = { {2 * 1024 * 1024, 1} },
4753 .block_erase = spi_block_erase_c7,
4754 }
4755 },
4756 .unlock = spi_disable_blockprotect,
4757 .write = spi_chip_write_256,
4758 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00004759 .voltage = {2700, 3600},
Stephan Guilloux3611b802010-09-13 19:59:28 +00004760 },
4761
4762 {
4763 .vendor = "Macronix",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004764 .name = "MX25L3205",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004765 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004766 .manufacture_id = MACRONIX_ID,
4767 .model_id = MACRONIX_MX25L3205,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004768 .total_size = 4096,
4769 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00004770 .feature_bits = FEATURE_WRSR_WREN,
David Hendricks22e05322010-12-13 23:54:59 +00004771 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004772 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004773 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00004774 .block_erasers =
4775 {
4776 {
4777 .eraseblocks = { {4 * 1024, 1024} },
4778 .block_erase = spi_block_erase_20,
4779 }, {
4780 .eraseblocks = { {4 * 1024, 1024} },
4781 .block_erase = spi_block_erase_d8,
4782 }, {
4783 .eraseblocks = { {4 * 1024 * 1024, 1} },
4784 .block_erase = spi_block_erase_60,
4785 }, {
4786 .eraseblocks = { {4 * 1024 * 1024, 1} },
4787 .block_erase = spi_block_erase_c7,
4788 },
4789 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004790 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004791 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004792 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004793 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00004794 },
4795
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004796 {
4797 .vendor = "Macronix",
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00004798 .name = "MX25L3235D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004799 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004800 .manufacture_id = MACRONIX_ID,
4801 .model_id = MACRONIX_MX25L3235D,
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00004802 .total_size = 4096,
4803 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00004804 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00004805 .tested = TEST_UNTESTED,
4806 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004807 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00004808 .block_erasers =
4809 {
4810 {
4811 .eraseblocks = { {4 * 1024, 1024} },
4812 .block_erase = spi_block_erase_20,
4813 }, {
4814 .eraseblocks = { {64 * 1024, 64} },
4815 .block_erase = spi_block_erase_d8,
4816 }, {
4817 .eraseblocks = { {4 * 1024 * 1024, 1} },
4818 .block_erase = spi_block_erase_60,
4819 }, {
4820 .eraseblocks = { {4 * 1024 * 1024, 1} },
4821 .block_erase = spi_block_erase_c7,
4822 }
4823 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004824 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004825 .write = spi_chip_write_256,
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00004826 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004827 .voltage = {2700, 3600},
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00004828 },
4829
4830 {
4831 .vendor = "Macronix",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004832 .name = "MX25L6405",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004833 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004834 .manufacture_id = MACRONIX_ID,
4835 .model_id = MACRONIX_MX25L6405,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004836 .total_size = 8192,
4837 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00004838 .feature_bits = FEATURE_WRSR_WREN,
Paul Menzelac427b22012-02-16 21:07:07 +00004839 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004840 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004841 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00004842 .block_erasers =
4843 {
4844 {
4845 .eraseblocks = { {64 * 1024, 128} },
4846 .block_erase = spi_block_erase_20,
4847 }, {
4848 .eraseblocks = { {64 * 1024, 128} },
4849 .block_erase = spi_block_erase_d8,
4850 }, {
4851 .eraseblocks = { {8 * 1024 * 1024, 1} },
4852 .block_erase = spi_block_erase_60,
4853 }, {
4854 .eraseblocks = { {8 * 1024 * 1024, 1} },
4855 .block_erase = spi_block_erase_c7,
4856 }
4857 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004858 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004859 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004860 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004861 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00004862 },
4863
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004864 {
4865 .vendor = "Macronix",
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00004866 .name = "MX25L12805",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004867 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004868 .manufacture_id = MACRONIX_ID,
4869 .model_id = MACRONIX_MX25L12805,
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00004870 .total_size = 16384,
4871 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00004872 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00004873 .tested = TEST_UNTESTED,
4874 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004875 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00004876 .block_erasers =
4877 {
4878 {
4879 .eraseblocks = { {4 * 1024, 4096} },
4880 .block_erase = spi_block_erase_20,
4881 }, {
4882 .eraseblocks = { {64 * 1024, 256} },
4883 .block_erase = spi_block_erase_d8,
4884 }, {
4885 .eraseblocks = { {16 * 1024 * 1024, 1} },
4886 .block_erase = spi_block_erase_60,
4887 }, {
4888 .eraseblocks = { {16 * 1024 * 1024, 1} },
4889 .block_erase = spi_block_erase_c7,
4890 }
4891 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004892 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004893 .write = spi_chip_write_256,
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00004894 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004895 .voltage = {2700, 3600},
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00004896 },
4897
4898 {
4899 .vendor = "Macronix",
Mark Panajotovic502a9132009-08-24 01:42:24 +00004900 .name = "MX29F001B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004901 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004902 .manufacture_id = MACRONIX_ID,
4903 .model_id = MACRONIX_MX29F001B,
Mark Panajotovic502a9132009-08-24 01:42:24 +00004904 .total_size = 128,
4905 .page_size = 32 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004906 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
4907 .tested = TEST_UNTESTED,
4908 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00004909 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00004910 .block_erasers =
4911 {
4912 {
4913 .eraseblocks = {
4914 {8 * 1024, 1},
4915 {4 * 1024, 2},
4916 {8 * 1024, 2},
4917 {32 * 1024, 1},
4918 {64 * 1024, 1},
4919 },
Sean Nelson35727f72010-01-28 23:55:12 +00004920 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00004921 }, {
4922 .eraseblocks = { {128 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00004923 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00004924 }
4925 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00004926 .write = write_jedec_1,
Mark Panajotovic502a9132009-08-24 01:42:24 +00004927 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004928 .voltage = {4500, 5500},
Mark Panajotovic502a9132009-08-24 01:42:24 +00004929 },
4930
4931 {
4932 .vendor = "Macronix",
4933 .name = "MX29F001T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004934 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004935 .manufacture_id = MACRONIX_ID,
4936 .model_id = MACRONIX_MX29F001T,
Mark Panajotovic502a9132009-08-24 01:42:24 +00004937 .total_size = 128,
4938 .page_size = 32 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004939 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Stefan Tauner74c6ec62011-05-18 01:31:46 +00004940 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +00004941 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00004942 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00004943 .block_erasers =
4944 {
4945 {
4946 .eraseblocks = {
4947 {64 * 1024, 1},
4948 {32 * 1024, 1},
4949 {8 * 1024, 2},
4950 {4 * 1024, 2},
4951 {8 * 1024, 1},
4952 },
Sean Nelson35727f72010-01-28 23:55:12 +00004953 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00004954 }, {
4955 .eraseblocks = { {128 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00004956 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00004957 }
4958 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00004959 .write = write_jedec_1,
Mark Panajotovic502a9132009-08-24 01:42:24 +00004960 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004961 .voltage = {4500, 5500},
Mark Panajotovic502a9132009-08-24 01:42:24 +00004962 },
4963
4964 {
4965 .vendor = "Macronix",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00004966 .name = "MX29F002(N)B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004967 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004968 .manufacture_id = MACRONIX_ID,
4969 .model_id = MACRONIX_MX29F002B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004970 .total_size = 256,
4971 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00004972 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004973 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00004974 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00004975 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00004976 .block_erasers =
4977 {
4978 {
4979 .eraseblocks = {
4980 {16 * 1024, 1},
4981 {8 * 1024, 2},
4982 {32 * 1024, 1},
4983 {64 * 1024, 3},
4984 },
Sean Nelson35727f72010-01-28 23:55:12 +00004985 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00004986 }, {
4987 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00004988 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00004989 },
4990 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00004991 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004992 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004993 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00004994 },
4995
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004996 {
4997 .vendor = "Macronix",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00004998 .name = "MX29F002(N)T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004999 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005000 .manufacture_id = MACRONIX_ID,
5001 .model_id = MACRONIX_MX29F002T,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005002 .total_size = 256,
5003 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005004 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00005005 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +00005006 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00005007 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005008 .block_erasers =
5009 {
5010 {
5011 .eraseblocks = {
5012 {64 * 1024, 3},
5013 {32 * 1024, 1},
5014 {8 * 1024, 2},
5015 {16 * 1024, 1},
5016 },
Sean Nelson35727f72010-01-28 23:55:12 +00005017 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005018 }, {
5019 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00005020 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005021 },
5022 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00005023 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005024 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005025 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00005026 },
5027
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005028 {
5029 .vendor = "Macronix",
Joshua Roysf1324e02010-09-16 00:51:51 +00005030 .name = "MX29F040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005031 .bustype = BUS_PARALLEL,
Joshua Roysf1324e02010-09-16 00:51:51 +00005032 .manufacture_id = MACRONIX_ID,
5033 .model_id = MACRONIX_MX29F040,
5034 .total_size = 512,
5035 .page_size = 64 * 1024,
5036 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
5037 .tested = TEST_UNTESTED,
5038 .probe = probe_jedec,
5039 .probe_timing = TIMING_ZERO,
5040 .block_erasers =
5041 {
5042 {
5043 .eraseblocks = { {64 * 1024, 8} },
5044 .block_erase = erase_sector_jedec,
5045 }, {
5046 .eraseblocks = { {512 * 1024, 1} },
5047 .block_erase = erase_chip_block_jedec,
5048 },
5049 },
5050 .write = write_jedec_1,
5051 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00005052 .voltage = {4500, 5500},
Joshua Roysf1324e02010-09-16 00:51:51 +00005053 },
5054
5055 {
5056 .vendor = "Macronix",
Carl-Daniel Hailfinger350a0c32009-07-24 13:59:27 +00005057 .name = "MX29LV040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005058 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005059 .manufacture_id = MACRONIX_ID,
5060 .model_id = MACRONIX_MX29LV040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005061 .total_size = 512,
5062 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005063 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
5064 .tested = TEST_UNTESTED,
5065 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00005066 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00005067 .block_erasers =
5068 {
5069 {
5070 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson35727f72010-01-28 23:55:12 +00005071 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00005072 }, {
5073 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00005074 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00005075 },
5076 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00005077 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005078 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005079 .voltage = {2700, 3600},
Carl-Daniel Hailfinger7de86392008-12-10 10:32:05 +00005080 },
5081
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005082 {
Mattias Mattsson4c066502010-07-29 20:01:13 +00005083 .vendor = "MoselVitelic",
5084 .name = "V29C51000B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005085 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00005086 .manufacture_id = SYNCMOS_MVC_ID,
5087 .model_id = MVC_V29C51000B,
5088 .total_size = 64,
5089 .page_size = 512,
5090 .feature_bits = FEATURE_EITHER_RESET,
5091 .tested = TEST_UNTESTED,
5092 .probe = probe_jedec,
5093 .probe_timing = TIMING_ZERO,
5094 .block_erasers =
5095 {
5096 {
5097 .eraseblocks = { {512, 128} },
5098 .block_erase = erase_sector_jedec,
5099 }, {
5100 .eraseblocks = { {64 * 1024, 1} },
5101 .block_erase = erase_chip_block_jedec,
5102 },
5103 },
5104 .write = write_jedec_1,
5105 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005106 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00005107 },
5108
5109 {
5110 .vendor = "MoselVitelic",
5111 .name = "V29C51000T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005112 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00005113 .manufacture_id = SYNCMOS_MVC_ID,
5114 .model_id = MVC_V29C51000T,
5115 .total_size = 64,
5116 .page_size = 512,
5117 .feature_bits = FEATURE_EITHER_RESET,
5118 .tested = TEST_UNTESTED,
5119 .probe = probe_jedec,
5120 .probe_timing = TIMING_ZERO,
5121 .block_erasers =
5122 {
5123 {
5124 .eraseblocks = { {512, 128} },
5125 .block_erase = erase_sector_jedec,
5126 }, {
5127 .eraseblocks = { {64 * 1024, 1} },
5128 .block_erase = erase_chip_block_jedec,
5129 },
5130 },
5131 .write = write_jedec_1,
5132 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005133 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00005134 },
5135
5136 {
5137 .vendor = "MoselVitelic",
5138 .name = "V29C51400B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005139 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00005140 .manufacture_id = SYNCMOS_MVC_ID,
5141 .model_id = MVC_V29C51400B,
5142 .total_size = 512,
5143 .page_size = 1024,
5144 .feature_bits = FEATURE_EITHER_RESET,
5145 .tested = TEST_UNTESTED,
5146 .probe = probe_jedec,
5147 .probe_timing = TIMING_ZERO,
5148 .block_erasers =
5149 {
5150 {
5151 .eraseblocks = { {1024, 512} },
5152 .block_erase = erase_sector_jedec,
5153 }, {
5154 .eraseblocks = { {512 * 1024, 1} },
5155 .block_erase = erase_chip_block_jedec,
5156 },
5157 },
5158 .write = write_jedec_1,
5159 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005160 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00005161 },
5162
5163 {
5164 .vendor = "MoselVitelic",
5165 .name = "V29C51400T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005166 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00005167 .manufacture_id = SYNCMOS_MVC_ID,
5168 .model_id = MVC_V29C51400T,
5169 .total_size = 512,
5170 .page_size = 1024,
5171 .feature_bits = FEATURE_EITHER_RESET,
5172 .tested = TEST_UNTESTED,
5173 .probe = probe_jedec,
5174 .probe_timing = TIMING_ZERO,
5175 .block_erasers =
5176 {
5177 {
5178 .eraseblocks = { {1024, 512} },
5179 .block_erase = erase_sector_jedec,
5180 }, {
5181 .eraseblocks = { {512 * 1024, 1} },
5182 .block_erase = erase_chip_block_jedec,
5183 },
5184 },
5185 .write = write_jedec_1,
5186 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005187 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00005188 },
5189
5190 {
5191 .vendor = "MoselVitelic",
5192 .name = "V29LC51000",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005193 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00005194 .manufacture_id = SYNCMOS_MVC_ID,
5195 .model_id = MVC_V29LC51000,
5196 .total_size = 64,
5197 .page_size = 512,
5198 .feature_bits = FEATURE_EITHER_RESET,
5199 .tested = TEST_UNTESTED,
5200 .probe = probe_jedec,
5201 .probe_timing = TIMING_ZERO,
5202 .block_erasers =
5203 {
5204 {
5205 .eraseblocks = { {512, 128} },
5206 .block_erase = erase_sector_jedec,
5207 }, {
5208 .eraseblocks = { {64 * 1024, 1} },
5209 .block_erase = erase_chip_block_jedec,
5210 },
5211 },
5212 .write = write_jedec_1,
5213 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005214 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00005215 },
5216
5217 {
5218 .vendor = "MoselVitelic",
5219 .name = "V29LC51001",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005220 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00005221 .manufacture_id = SYNCMOS_MVC_ID,
5222 .model_id = MVC_V29LC51001,
5223 .total_size = 128,
5224 .page_size = 512,
5225 .feature_bits = FEATURE_EITHER_RESET,
5226 .tested = TEST_UNTESTED,
5227 .probe = probe_jedec,
5228 .probe_timing = TIMING_ZERO,
5229 .block_erasers =
5230 {
5231 {
5232 .eraseblocks = { {512, 256} },
5233 .block_erase = erase_sector_jedec,
5234 }, {
5235 .eraseblocks = { {128 * 1024, 1} },
5236 .block_erase = erase_chip_block_jedec,
5237 },
5238 },
5239 .write = write_jedec_1,
5240 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005241 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00005242 },
5243
5244 {
5245 .vendor = "MoselVitelic",
5246 .name = "V29LC51002",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005247 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00005248 .manufacture_id = SYNCMOS_MVC_ID,
5249 .model_id = MVC_V29LC51002,
5250 .total_size = 256,
5251 .page_size = 512,
5252 .feature_bits = FEATURE_EITHER_RESET,
5253 .tested = TEST_UNTESTED,
5254 .probe = probe_jedec,
5255 .probe_timing = TIMING_ZERO,
5256 .block_erasers =
5257 {
5258 {
5259 .eraseblocks = { {512, 512} },
5260 .block_erase = erase_sector_jedec,
5261 }, {
5262 .eraseblocks = { {256 * 1024, 1} },
5263 .block_erase = erase_chip_block_jedec,
5264 },
5265 },
5266 .write = write_jedec_1,
5267 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005268 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00005269 },
5270
5271 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005272 .vendor = "Numonyx",
5273 .name = "M25PE10",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005274 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005275 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00005276 .model_id = ST_M25PE10,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005277 .total_size = 128,
5278 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00005279 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005280 .tested = TEST_UNTESTED,
5281 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005282 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00005283 .block_erasers =
5284 {
5285 {
5286 .eraseblocks = { {4 * 1024, 32} },
5287 .block_erase = spi_block_erase_20,
5288 }, {
5289 .eraseblocks = { {64 * 1024, 2} },
5290 .block_erase = spi_block_erase_d8,
5291 }, {
5292 .eraseblocks = { {128 * 1024, 1} },
5293 .block_erase = spi_block_erase_c7,
5294 }
5295 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005296 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005297 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005298 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005299 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005300 },
5301
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005302 {
5303 .vendor = "Numonyx",
5304 .name = "M25PE20",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005305 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005306 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00005307 .model_id = ST_M25PE20,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005308 .total_size = 256,
5309 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00005310 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005311 .tested = TEST_UNTESTED,
5312 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005313 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00005314 .block_erasers =
5315 {
5316 {
5317 .eraseblocks = { {4 * 1024, 64} },
5318 .block_erase = spi_block_erase_20,
5319 }, {
5320 .eraseblocks = { {64 * 1024, 4} },
5321 .block_erase = spi_block_erase_d8,
5322 }, {
5323 .eraseblocks = { {256 * 1024, 1} },
5324 .block_erase = spi_block_erase_c7,
5325 }
5326 },
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,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005329 .read = spi_chip_read,
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 = "Numonyx",
5335 .name = "M25PE40",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005336 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005337 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00005338 .model_id = ST_M25PE40,
Sean Nelson5643c072010-01-19 03:23:07 +00005339 .total_size = 512,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005340 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00005341 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005342 .tested = TEST_UNTESTED,
5343 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005344 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00005345 .block_erasers =
5346 {
5347 {
5348 .eraseblocks = { {4 * 1024, 128} },
5349 .block_erase = spi_block_erase_20,
5350 }, {
5351 .eraseblocks = { {64 * 1024, 8} },
5352 .block_erase = spi_block_erase_d8,
5353 }, {
5354 .eraseblocks = { {512 * 1024, 1} },
5355 .block_erase = spi_block_erase_c7,
5356 }
5357 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005358 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005359 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005360 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005361 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005362 },
5363
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005364 {
5365 .vendor = "Numonyx",
5366 .name = "M25PE80",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005367 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005368 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00005369 .model_id = ST_M25PE80,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005370 .total_size = 1024,
5371 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00005372 .feature_bits = FEATURE_WRSR_WREN,
Paul Menzelac427b22012-02-16 21:07:07 +00005373 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005374 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005375 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00005376 .block_erasers =
5377 {
5378 {
5379 .eraseblocks = { {4 * 1024, 256} },
5380 .block_erase = spi_block_erase_20,
5381 }, {
5382 .eraseblocks = { {64 * 1024, 16} },
5383 .block_erase = spi_block_erase_d8,
5384 }, {
5385 .eraseblocks = { {1024 * 1024, 1} },
5386 .block_erase = spi_block_erase_c7,
5387 }
5388 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005389 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005390 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005391 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005392 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005393 },
5394
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005395 {
5396 .vendor = "Numonyx",
5397 .name = "M25PE16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005398 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005399 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00005400 .model_id = ST_M25PE16,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005401 .total_size = 2048,
5402 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00005403 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005404 .tested = TEST_UNTESTED,
5405 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005406 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00005407 .block_erasers =
5408 {
5409 {
5410 .eraseblocks = { {4 * 1024, 512} },
5411 .block_erase = spi_block_erase_20,
5412 }, {
5413 .eraseblocks = { {64 * 1024, 32} },
5414 .block_erase = spi_block_erase_d8,
5415 }, {
5416 .eraseblocks = { {2 * 1024 * 1024, 1} },
5417 .block_erase = spi_block_erase_c7,
5418 }
5419 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005420 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005421 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005422 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005423 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005424 },
5425
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005426 {
Niklas Söderlundae4294f2012-04-14 21:04:03 +00005427 .vendor = "Numonyx",
5428 .name = "N25Q064",
5429 .bustype = BUS_SPI,
5430 .manufacture_id = ST_ID,
5431 .model_id = ST_N25Q064,
5432 .total_size = 8192,
5433 .page_size = 256,
5434 .tested = TEST_OK_PREW,
5435 .probe = probe_spi_rdid,
5436 .probe_timing = TIMING_ZERO,
5437 .block_erasers =
5438 {
5439 {
5440 .eraseblocks = { {4 * 1024, 2048 } },
5441 .block_erase = spi_block_erase_20,
5442 }, {
5443 .eraseblocks = { {64 * 1024, 128} },
5444 .block_erase = spi_block_erase_d8,
5445 }, {
5446 .eraseblocks = { {8 * 1024 * 1024, 1} },
5447 .block_erase = spi_block_erase_c7,
5448 }
5449 },
5450 .unlock = spi_disable_blockprotect,
5451 .write = spi_chip_write_256,
5452 .read = spi_chip_read,
5453 },
5454
5455 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005456 .vendor = "PMC",
5457 .name = "Pm25LV010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005458 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005459 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005460 .model_id = PMC_PM25LV010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005461 .total_size = 128,
5462 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00005463 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005464 .tested = TEST_UNTESTED,
5465 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005466 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00005467 .block_erasers =
5468 {
5469 {
5470 .eraseblocks = { {4 * 1024, 32} },
5471 .block_erase = spi_block_erase_d7,
5472 }, {
5473 .eraseblocks = { {32 * 1024, 4} },
5474 .block_erase = spi_block_erase_d8,
5475 }, {
5476 .eraseblocks = { {128 * 1024, 1} },
5477 .block_erase = spi_block_erase_c7,
5478 }
5479 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005480 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005481 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005482 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005483 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005484 },
5485
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005486 {
5487 .vendor = "PMC",
5488 .name = "Pm25LV016B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005489 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005490 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005491 .model_id = PMC_PM25LV016B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005492 .total_size = 2048,
5493 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00005494 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005495 .tested = TEST_UNTESTED,
5496 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005497 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00005498 .block_erasers =
5499 {
5500 {
5501 .eraseblocks = { {4 * 1024, 512} },
5502 .block_erase = spi_block_erase_d7,
5503 }, {
5504 .eraseblocks = { {4 * 1024, 512} },
5505 .block_erase = spi_block_erase_20,
5506 }, {
5507 .eraseblocks = { {64 * 1024, 32} },
5508 .block_erase = spi_block_erase_d8,
5509 }, {
5510 .eraseblocks = { {2 * 1024 * 1024, 1} },
5511 .block_erase = spi_block_erase_60,
5512 }, {
5513 .eraseblocks = { {2 * 1024 * 1024, 1} },
5514 .block_erase = spi_block_erase_c7,
5515 }
5516 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005517 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005518 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005519 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00005520 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005521 },
5522
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005523 {
5524 .vendor = "PMC",
5525 .name = "Pm25LV020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005526 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005527 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005528 .model_id = PMC_PM25LV020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005529 .total_size = 256,
5530 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00005531 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005532 .tested = TEST_UNTESTED,
5533 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005534 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00005535 .block_erasers =
5536 {
5537 {
5538 .eraseblocks = { {4 * 1024, 64} },
5539 .block_erase = spi_block_erase_d7,
5540 }, {
5541 .eraseblocks = { {64 * 1024, 4} },
5542 .block_erase = spi_block_erase_d8,
5543 }, {
5544 .eraseblocks = { {256 * 1024, 1} },
5545 .block_erase = spi_block_erase_c7,
5546 }
5547 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005548 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005549 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005550 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005551 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005552 },
5553
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005554 {
5555 .vendor = "PMC",
5556 .name = "Pm25LV040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005557 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005558 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005559 .model_id = PMC_PM25LV040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005560 .total_size = 512,
5561 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00005562 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner716e0982011-07-25 20:38:52 +00005563 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005564 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005565 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00005566 .block_erasers =
5567 {
5568 {
5569 .eraseblocks = { {4 * 1024, 128} },
5570 .block_erase = spi_block_erase_d7,
5571 }, {
5572 .eraseblocks = { {64 * 1024, 8} },
5573 .block_erase = spi_block_erase_d8,
5574 }, {
5575 .eraseblocks = { {512 * 1024, 1} },
5576 .block_erase = spi_block_erase_c7,
5577 }
5578 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005579 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005580 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005581 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005582 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005583 },
5584
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005585 {
5586 .vendor = "PMC",
5587 .name = "Pm25LV080B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005588 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005589 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005590 .model_id = PMC_PM25LV080B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005591 .total_size = 1024,
5592 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00005593 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005594 .tested = TEST_UNTESTED,
5595 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005596 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00005597 .block_erasers =
5598 {
5599 {
5600 .eraseblocks = { {4 * 1024, 256} },
5601 .block_erase = spi_block_erase_d7,
5602 }, {
5603 .eraseblocks = { {4 * 1024, 256} },
5604 .block_erase = spi_block_erase_20,
5605 }, {
5606 .eraseblocks = { {64 * 1024, 16} },
5607 .block_erase = spi_block_erase_d8,
5608 }, {
5609 .eraseblocks = { {1024 * 1024, 1} },
5610 .block_erase = spi_block_erase_60,
5611 }, {
5612 .eraseblocks = { {1024 * 1024, 1} },
5613 .block_erase = spi_block_erase_c7,
5614 }
5615 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005616 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005617 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005618 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005619 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005620 },
5621
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005622 {
5623 .vendor = "PMC",
5624 .name = "Pm25LV512",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005625 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005626 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005627 .model_id = PMC_PM25LV512,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005628 .total_size = 64,
5629 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00005630 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005631 .tested = TEST_UNTESTED,
5632 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005633 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00005634 .block_erasers =
5635 {
5636 {
5637 .eraseblocks = { {4 * 1024, 16} },
5638 .block_erase = spi_block_erase_d7,
5639 }, {
5640 .eraseblocks = { {32 * 1024, 2} },
5641 .block_erase = spi_block_erase_d8,
5642 }, {
5643 .eraseblocks = { {64 * 1024, 1} },
5644 .block_erase = spi_block_erase_c7,
5645 }
5646 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005647 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005648 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005649 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00005650 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005651 },
5652
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005653 {
5654 .vendor = "PMC",
Sean Nelson72a9a022009-12-22 22:15:33 +00005655 .name = "Pm29F002T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005656 .bustype = BUS_PARALLEL,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00005657 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005658 .model_id = PMC_PM29F002T,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00005659 .total_size = 256,
Sean Nelson72a9a022009-12-22 22:15:33 +00005660 .page_size = 8 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005661 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stefan Tauneraf2db612011-12-02 21:48:17 +00005662 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +00005663 .probe = probe_jedec,
Stefan Tauneraf2db612011-12-02 21:48:17 +00005664 .probe_timing = TIMING_FIXME,
Sean Nelson72a9a022009-12-22 22:15:33 +00005665 .block_erasers =
5666 {
5667 {
5668 .eraseblocks = {
5669 {128 * 1024, 1},
5670 {96 * 1024, 1},
5671 {8 * 1024, 2},
5672 {16 * 1024, 1},
5673 },
Sean Nelson35727f72010-01-28 23:55:12 +00005674 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00005675 }, {
5676 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00005677 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00005678 },
5679 },
Sean Nelson35727f72010-01-28 23:55:12 +00005680 .write = write_jedec_1,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00005681 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005682 .voltage = {4500, 5500},
Uwe Hermannf983d9f2009-06-14 21:53:26 +00005683 },
5684
5685 {
5686 .vendor = "PMC",
Sean Nelson72a9a022009-12-22 22:15:33 +00005687 .name = "Pm29F002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005688 .bustype = BUS_PARALLEL,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00005689 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005690 .model_id = PMC_PM29F002B,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00005691 .total_size = 256,
Sean Nelson72a9a022009-12-22 22:15:33 +00005692 .page_size = 8 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005693 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00005694 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00005695 .probe = probe_jedec,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00005696 .probe_timing = TIMING_FIXME,
Sean Nelson72a9a022009-12-22 22:15:33 +00005697 .block_erasers =
5698 {
5699 {
5700 .eraseblocks = {
5701 {16 * 1024, 1},
5702 {8 * 1024, 2},
5703 {96 * 1024, 1},
5704 {128 * 1024, 1},
5705 },
Sean Nelson35727f72010-01-28 23:55:12 +00005706 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00005707 }, {
5708 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00005709 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00005710 },
5711 },
Sean Nelson35727f72010-01-28 23:55:12 +00005712 .write = write_jedec_1,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00005713 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005714 .voltage = {4500, 5500},
Uwe Hermannf983d9f2009-06-14 21:53:26 +00005715 },
5716
5717 {
5718 .vendor = "PMC",
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00005719 .name = "Pm39LV010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005720 .bustype = BUS_PARALLEL,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00005721 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005722 .model_id = PMC_PM39F010, /* Pm39LV010 and Pm39F010 have identical IDs but different voltage */
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00005723 .total_size = 128,
5724 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00005725 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00005726 .tested = TEST_OK_PREW,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00005727 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00005728 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson5643c072010-01-19 03:23:07 +00005729 .block_erasers =
5730 {
5731 {
5732 .eraseblocks = { {4 * 1024, 32} },
5733 .block_erase = erase_sector_jedec,
5734 }, {
5735 .eraseblocks = { {64 * 1024, 2} },
5736 .block_erase = erase_block_jedec,
5737 }, {
5738 .eraseblocks = { {128 * 1024, 1} },
5739 .block_erase = erase_chip_block_jedec,
5740 }
5741 },
Sean Nelson35727f72010-01-28 23:55:12 +00005742 .write = write_jedec_1,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00005743 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005744 .voltage = {2700, 3600},
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00005745 },
5746
5747 {
5748 .vendor = "PMC",
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00005749 .name = "Pm39LV020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005750 .bustype = BUS_PARALLEL,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00005751 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005752 .model_id = PMC_PM39LV020,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00005753 .total_size = 256,
5754 .page_size = 4096,
5755 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
5756 .tested = TEST_UNTESTED,
5757 .probe = probe_jedec,
5758 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
5759 .block_erasers =
5760 {
5761 {
5762 .eraseblocks = { {4 * 1024, 64} },
5763 .block_erase = erase_sector_jedec,
5764 }, {
5765 .eraseblocks = { {64 * 1024, 4} },
5766 .block_erase = erase_block_jedec,
5767 }, {
5768 .eraseblocks = { {256 * 1024, 1} },
5769 .block_erase = erase_chip_block_jedec,
5770 }
5771 },
5772 .write = write_jedec_1,
5773 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005774 .voltage = {2700, 3600},
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00005775 },
5776
5777 {
5778 .vendor = "PMC",
5779 .name = "Pm39LV040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005780 .bustype = BUS_PARALLEL,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00005781 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005782 .model_id = PMC_PM39LV040,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00005783 .total_size = 512,
5784 .page_size = 4096,
5785 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00005786 .tested = TEST_OK_PR,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00005787 .probe = probe_jedec,
5788 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
5789 .block_erasers =
5790 {
5791 {
5792 .eraseblocks = { {4 * 1024, 128} },
5793 .block_erase = erase_sector_jedec,
5794 }, {
5795 .eraseblocks = { {64 * 1024, 8} },
5796 .block_erase = erase_block_jedec,
5797 }, {
5798 .eraseblocks = { {512 * 1024, 1} },
5799 .block_erase = erase_chip_block_jedec,
5800 }
5801 },
5802 .write = write_jedec_1,
5803 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005804 .voltage = {2700, 3600},
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00005805 },
Kyösti Mälkkiedab1d22012-05-20 23:32:33 +00005806
5807 {
5808 .vendor = "PMC",
5809 .name = "Pm39LV512",
5810 .bustype = BUS_PARALLEL,
5811 .manufacture_id = PMC_ID_NOPREFIX,
5812 .model_id = PMC_PM39LV512,
5813 .total_size = 64,
5814 .page_size = 4096,
5815 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
5816 .tested = TEST_OK_PREW,
5817 .probe = probe_jedec,
5818 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
5819 .block_erasers =
5820 {
5821 {
5822 .eraseblocks = { {4 * 1024, 16} },
5823 .block_erase = erase_sector_jedec,
5824 }, {
5825 .eraseblocks = { {64 * 1024, 1} },
5826 .block_erase = erase_block_jedec,
5827 }, {
5828 .eraseblocks = { {64 * 1024, 1} },
5829 .block_erase = erase_chip_block_jedec,
5830 }
5831 },
5832 .write = write_jedec_1,
5833 .read = read_memmapped,
5834 .voltage = {2700, 3600},
5835 },
5836
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00005837 {
5838 .vendor = "PMC",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005839 .name = "Pm49FL002",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005840 .bustype = BUS_LPC | BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005841 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005842 .model_id = PMC_PM49FL002,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005843 .total_size = 256,
5844 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005845 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Taunerd06d9412011-06-12 19:47:55 +00005846 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00005847 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00005848 .probe_timing = TIMING_ZERO, /* routine is wrapper to probe_jedec (pm49fl00x.c) */
Sean Nelson5643c072010-01-19 03:23:07 +00005849 .block_erasers =
5850 {
5851 {
5852 .eraseblocks = { {4 * 1024, 64} },
5853 .block_erase = erase_sector_jedec,
5854 }, {
5855 .eraseblocks = { {16 * 1024, 16} },
5856 .block_erase = erase_block_jedec,
5857 }, {
5858 .eraseblocks = { {256 * 1024, 1} },
5859 .block_erase = erase_chip_block_jedec,
5860 }
5861 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00005862 .unlock = unlock_49fl00x,
Sean Nelson36172342010-02-27 18:01:15 +00005863 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005864 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005865 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005866 },
5867
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005868 {
5869 .vendor = "PMC",
5870 .name = "Pm49FL004",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005871 .bustype = BUS_LPC | BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005872 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005873 .model_id = PMC_PM49FL004,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005874 .total_size = 512,
5875 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005876 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Idwer Vollering67f28142011-03-06 22:26:23 +00005877 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00005878 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00005879 .probe_timing = TIMING_ZERO, /* routine is wrapper to probe_jedec (pm49fl00x.c) */
Sean Nelson5643c072010-01-19 03:23:07 +00005880 .block_erasers =
5881 {
5882 {
5883 .eraseblocks = { {4 * 1024, 128} },
5884 .block_erase = erase_sector_jedec,
5885 }, {
5886 .eraseblocks = { {64 * 1024, 8} },
5887 .block_erase = erase_block_jedec,
5888 }, {
5889 .eraseblocks = { {512 * 1024, 1} },
5890 .block_erase = erase_chip_block_jedec,
5891 }
5892 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00005893 .unlock = unlock_49fl00x,
Sean Nelson36172342010-02-27 18:01:15 +00005894 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005895 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005896 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005897 },
5898
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005899 {
Sean Nelsond70b09c2009-11-24 02:11:08 +00005900 .vendor = "Sanyo",
5901 .name = "LF25FW203A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005902 .bustype = BUS_SPI,
Sean Nelsond70b09c2009-11-24 02:11:08 +00005903 .manufacture_id = SANYO_ID,
5904 .model_id = SANYO_LE25FW203A,
5905 .total_size = 2048,
5906 .page_size = 256,
5907 .tested = TEST_UNTESTED,
5908 .probe = probe_spi_rdid,
5909 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00005910 .block_erasers =
5911 {
5912 {
5913 .eraseblocks = { {64 * 1024, 32} },
5914 .block_erase = spi_block_erase_d8,
5915 }, {
5916 .eraseblocks = { {2 * 1024 * 1024, 1} },
5917 .block_erase = spi_block_erase_c7,
5918 }
5919 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005920 .unlock = spi_disable_blockprotect,
Sean Nelsond70b09c2009-11-24 02:11:08 +00005921 .write = spi_chip_write_256,
5922 .read = spi_chip_read,
5923 },
5924
5925 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005926 .vendor = "Sharp",
Mattias Mattssonfca3b012011-08-25 22:44:11 +00005927 .name = "LH28F008BJT-BTLZ1",
5928 .bustype = BUS_PARALLEL,
5929 .manufacture_id = SHARP_ID,
5930 .model_id = SHARP_LH28F008BJxxPB,
5931 .total_size = 1024,
5932 .page_size = 64 * 1024,
5933 .tested = TEST_OK_PREW,
5934 .probe = probe_82802ab,
5935 .probe_timing = TIMING_ZERO,
5936 .block_erasers =
5937 {
5938 {
5939 .eraseblocks = {
5940 {8 * 1024, 8},
5941 {64 * 1024, 15}
5942 },
5943 .block_erase = erase_block_82802ab,
5944 }, {
5945 .eraseblocks = { {1024 * 1024, 1} },
5946 .block_erase = erase_sector_49lfxxxc,
5947 }
5948 },
5949 .unlock = unlock_lh28f008bjt,
5950 .write = write_82802ab,
5951 .read = read_memmapped,
5952 .voltage = {2700, 3600},
5953 },
5954
5955 {
5956 .vendor = "Sharp",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005957 .name = "LHF00L04",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005958 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005959 .manufacture_id = SHARP_ID,
5960 .model_id = SHARP_LHF00L04,
5961 .total_size = 1024,
5962 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005963 .feature_bits = FEATURE_EITHER_RESET | FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005964 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00005965 .probe = probe_82802ab,
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +00005966 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +00005967 .block_erasers =
5968 {
5969 {
5970 .eraseblocks = {
5971 {64 * 1024, 15},
5972 {8 * 1024, 8}
5973 },
Sean Nelson28accc22010-03-19 18:47:06 +00005974 .block_erase = erase_block_82802ab,
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +00005975 }, {
5976 .eraseblocks = {
5977 {1024 * 1024, 1}
5978 },
Sean Nelson51c83fb2010-01-20 20:55:53 +00005979 .block_erase = NULL, /* 30 D0, only in A/A mux mode */
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +00005980 },
5981 },
Sean Nelson28accc22010-03-19 18:47:06 +00005982 .unlock = unlock_82802ab,
5983 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005984 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005985 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005986 },
5987
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005988 {
5989 .vendor = "Spansion",
Rudy Hostf4e57772010-11-29 00:37:49 +00005990 .name = "S25FL004A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005991 .bustype = BUS_SPI,
Rudy Hostf4e57772010-11-29 00:37:49 +00005992 .manufacture_id = SPANSION_ID,
5993 .model_id = SPANSION_S25FL004A,
5994 .total_size = 512,
5995 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00005996 .feature_bits = FEATURE_WRSR_WREN,
Rudy Hostf4e57772010-11-29 00:37:49 +00005997 .tested = TEST_UNTESTED,
5998 .probe = probe_spi_rdid,
5999 .probe_timing = TIMING_ZERO,
6000 .block_erasers =
6001 {
6002 {
6003 .eraseblocks = { {64 * 1024, 8} },
6004 .block_erase = spi_block_erase_d8,
6005 }, {
6006 .eraseblocks = { {512 * 1024, 1} },
6007 .block_erase = spi_block_erase_c7,
6008 }
6009 },
6010 .unlock = spi_disable_blockprotect,
6011 .write = spi_chip_write_256,
6012 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00006013 .voltage = {2700, 3600},
Rudy Hostf4e57772010-11-29 00:37:49 +00006014 },
6015
6016 {
6017 .vendor = "Spansion",
Michael Karcher23ff4602010-01-12 23:29:30 +00006018 .name = "S25FL008A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006019 .bustype = BUS_SPI,
Michael Karcher23ff4602010-01-12 23:29:30 +00006020 .manufacture_id = SPANSION_ID,
6021 .model_id = SPANSION_S25FL008A,
6022 .total_size = 1024,
6023 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006024 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00006025 .tested = TEST_OK_PRE,
Michael Karcher23ff4602010-01-12 23:29:30 +00006026 .probe = probe_spi_rdid,
6027 .probe_timing = TIMING_ZERO,
Michael Karcher23ff4602010-01-12 23:29:30 +00006028 .block_erasers =
6029 {
6030 {
6031 .eraseblocks = { {64 * 1024, 16} },
6032 .block_erase = spi_block_erase_d8,
6033 }, {
6034 .eraseblocks = { {1024 * 1024, 1} },
6035 .block_erase = spi_block_erase_c7,
6036 }
6037 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006038 .unlock = spi_disable_blockprotect,
Michael Karcher23ff4602010-01-12 23:29:30 +00006039 .write = spi_chip_write_256,
6040 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006041 .voltage = {2700, 3600},
Michael Karcher23ff4602010-01-12 23:29:30 +00006042 },
6043
6044 {
6045 .vendor = "Spansion",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006046 .name = "S25FL016A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006047 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006048 .manufacture_id = SPANSION_ID,
6049 .model_id = SPANSION_S25FL016A,
6050 .total_size = 2048,
6051 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006052 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00006053 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006054 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006055 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00006056 .block_erasers =
6057 {
6058 {
6059 .eraseblocks = { {64 * 1024, 32} },
6060 .block_erase = spi_block_erase_d8,
6061 }, {
6062 .eraseblocks = { {2 * 1024 * 1024, 1} },
6063 .block_erase = spi_block_erase_c7,
6064 }
6065 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006066 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00006067 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006068 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006069 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006070 },
6071
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006072 {
Rudy Hostf4e57772010-11-29 00:37:49 +00006073 .vendor = "Spansion",
6074 .name = "S25FL032A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006075 .bustype = BUS_SPI,
Rudy Hostf4e57772010-11-29 00:37:49 +00006076 .manufacture_id = SPANSION_ID,
6077 .model_id = SPANSION_S25FL032A,
6078 .total_size = 4096,
6079 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006080 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner2abab942012-04-27 20:41:23 +00006081 .tested = TEST_OK_PR,
Rudy Hostf4e57772010-11-29 00:37:49 +00006082 .probe = probe_spi_rdid,
6083 .probe_timing = TIMING_ZERO,
6084 .block_erasers =
6085 {
6086 {
6087 .eraseblocks = { {64 * 1024, 64} },
6088 .block_erase = spi_block_erase_d8,
6089 }, {
6090 .eraseblocks = { {4 * 1024 * 1024, 1} },
6091 .block_erase = spi_block_erase_c7,
6092 }
6093 },
6094 .unlock = spi_disable_blockprotect,
6095 .write = spi_chip_write_256,
6096 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00006097 .voltage = {2700, 3600},
Rudy Hostf4e57772010-11-29 00:37:49 +00006098 },
6099
6100 {
6101 .vendor = "Spansion",
6102 .name = "S25FL064A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006103 .bustype = BUS_SPI,
Rudy Hostf4e57772010-11-29 00:37:49 +00006104 .manufacture_id = SPANSION_ID,
6105 .model_id = SPANSION_S25FL064A,
6106 .total_size = 8192,
6107 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006108 .feature_bits = FEATURE_WRSR_WREN,
Rudy Hostf4e57772010-11-29 00:37:49 +00006109 .tested = TEST_OK_PREW,
6110 .probe = probe_spi_rdid,
6111 .probe_timing = TIMING_ZERO,
6112 .block_erasers =
6113 {
6114 {
6115 .eraseblocks = { {64 * 1024, 128} },
6116 .block_erase = spi_block_erase_d8,
6117 }, {
6118 .eraseblocks = { {8 * 1024 * 1024, 1} },
6119 .block_erase = spi_block_erase_c7,
6120 }
6121 },
6122 .unlock = spi_disable_blockprotect,
6123 .write = spi_chip_write_256,
6124 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00006125 .voltage = {2700, 3600},
Rudy Hostf4e57772010-11-29 00:37:49 +00006126 },
6127
6128 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006129 .vendor = "SST",
Zeus Castro33670ba2011-08-17 09:50:11 +00006130 .name = "SST25LF040A",
6131 .bustype = BUS_SPI,
6132 .manufacture_id = SST_ID,
6133 .model_id = SST_SST25VF040_REMS,
6134 .total_size = 512,
6135 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006136 .feature_bits = FEATURE_WRSR_EWSR,
Uwe Hermann4335ec82011-09-07 20:20:25 +00006137 .tested = TEST_OK_PREW,
Zeus Castro33670ba2011-08-17 09:50:11 +00006138 .probe = probe_spi_res2,
6139 .probe_timing = TIMING_ZERO,
6140 .block_erasers =
6141 {
6142 {
6143 .eraseblocks = { {4 * 1024, 128} },
6144 .block_erase = spi_block_erase_20,
6145 }, {
6146 .eraseblocks = { {32 * 1024, 16} },
6147 .block_erase = spi_block_erase_52,
6148 }, {
6149 .eraseblocks = { {512 * 1024, 1} },
6150 .block_erase = spi_block_erase_60,
6151 },
6152 },
6153 .unlock = spi_disable_blockprotect,
6154 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
6155 .read = spi_chip_read,
6156 .voltage = {3000, 3600},
6157 },
6158
6159 {
6160 .vendor = "SST",
6161 .name = "SST25LF080A",
6162 .bustype = BUS_SPI,
6163 .manufacture_id = SST_ID,
6164 .model_id = SST_SST25VF080_REMS,
6165 .total_size = 1024,
6166 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006167 .feature_bits = FEATURE_WRSR_EWSR,
Zeus Castro33670ba2011-08-17 09:50:11 +00006168 .tested = TEST_UNTESTED,
6169 .probe = probe_spi_res2,
6170 .probe_timing = TIMING_ZERO,
6171 .block_erasers =
6172 {
6173 {
6174 .eraseblocks = { {4 * 1024, 256} },
6175 .block_erase = spi_block_erase_20,
6176 }, {
6177 .eraseblocks = { {32 * 1024, 32} },
6178 .block_erase = spi_block_erase_52,
6179 }, {
6180 .eraseblocks = { {1024 * 1024, 1} },
6181 .block_erase = spi_block_erase_60,
6182 },
6183 },
6184 .unlock = spi_disable_blockprotect,
6185 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
6186 .read = spi_chip_read,
6187 .voltage = {3000, 3600},
6188 },
6189
6190 {
6191 .vendor = "SST",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00006192 .name = "SST25VF010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006193 .bustype = BUS_SPI,
Mark Marshall90021f22010-12-03 14:48:11 +00006194 .manufacture_id = SST_ID,
6195 .model_id = SST_SST25VF010_REMS,
6196 .total_size = 128,
6197 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006198 .feature_bits = FEATURE_WRSR_EWSR,
Mark Marshall90021f22010-12-03 14:48:11 +00006199 .tested = TEST_OK_PREW,
6200 .probe = probe_spi_rems,
6201 .probe_timing = TIMING_ZERO,
6202 .block_erasers =
6203 {
6204 {
6205 .eraseblocks = { {4 * 1024, 32} },
6206 .block_erase = spi_block_erase_20,
6207 }, {
6208 .eraseblocks = { {32 * 1024, 4} },
6209 .block_erase = spi_block_erase_52,
6210 }, {
6211 .eraseblocks = { {128 * 1024, 1} },
6212 .block_erase = spi_block_erase_60,
6213 },
6214 },
6215 .unlock = spi_disable_blockprotect,
6216 .write = spi_chip_write_1,
6217 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00006218 .voltage = {2700, 3600},
Mark Marshall90021f22010-12-03 14:48:11 +00006219 },
6220
6221 {
6222 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006223 .name = "SST25VF016B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006224 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006225 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006226 .model_id = SST_SST25VF016B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006227 .total_size = 2048,
6228 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006229 .feature_bits = FEATURE_WRSR_EWSR,
Mark Marshall90021f22010-12-03 14:48:11 +00006230 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006231 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006232 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00006233 .block_erasers =
6234 {
6235 {
6236 .eraseblocks = { {4 * 1024, 512} },
6237 .block_erase = spi_block_erase_20,
6238 }, {
6239 .eraseblocks = { {32 * 1024, 64} },
6240 .block_erase = spi_block_erase_52,
6241 }, {
6242 .eraseblocks = { {64 * 1024, 32} },
6243 .block_erase = spi_block_erase_d8,
6244 }, {
6245 .eraseblocks = { {2 * 1024 * 1024, 1} },
6246 .block_erase = spi_block_erase_60,
6247 }, {
6248 .eraseblocks = { {2 * 1024 * 1024, 1} },
6249 .block_erase = spi_block_erase_c7,
6250 },
6251 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006252 .unlock = spi_disable_blockprotect,
Joshua Roys87955bf2011-08-01 18:39:28 +00006253 .write = spi_aai_write,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006254 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006255 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006256 },
6257
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006258 {
6259 .vendor = "SST",
6260 .name = "SST25VF032B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006261 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006262 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006263 .model_id = SST_SST25VF032B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006264 .total_size = 4096,
6265 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006266 .feature_bits = FEATURE_WRSR_EWSR,
Stefan Taunerfcf6a8c2011-05-18 01:32:00 +00006267 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006268 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006269 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00006270 .block_erasers =
6271 {
6272 {
6273 .eraseblocks = { {4 * 1024, 1024} },
6274 .block_erase = spi_block_erase_20,
6275 }, {
6276 .eraseblocks = { {32 * 1024, 128} },
6277 .block_erase = spi_block_erase_52,
6278 }, {
6279 .eraseblocks = { {64 * 1024, 64} },
6280 .block_erase = spi_block_erase_d8,
6281 }, {
6282 .eraseblocks = { {4 * 1024 * 1024, 1} },
6283 .block_erase = spi_block_erase_60,
6284 }, {
6285 .eraseblocks = { {4 * 1024 * 1024, 1} },
6286 .block_erase = spi_block_erase_c7,
6287 },
6288 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006289 .unlock = spi_disable_blockprotect,
Helge Wagner1db7a442010-10-05 22:29:08 +00006290 .write = spi_aai_write,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00006291 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006292 .voltage = {2700, 3600},
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00006293 },
6294
6295 {
6296 .vendor = "SST",
Ed Swierk86f4e6d2010-07-21 15:02:22 +00006297 .name = "SST25VF064C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006298 .bustype = BUS_SPI,
Ed Swierk86f4e6d2010-07-21 15:02:22 +00006299 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006300 .model_id = SST_SST25VF064C,
Ed Swierk86f4e6d2010-07-21 15:02:22 +00006301 .total_size = 8192,
6302 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006303 .feature_bits = FEATURE_WRSR_EWSR,
Stefan Tauner8179be52011-06-04 13:13:34 +00006304 .tested = TEST_OK_PREW,
Ed Swierk86f4e6d2010-07-21 15:02:22 +00006305 .probe = probe_spi_rdid,
6306 .probe_timing = TIMING_ZERO,
6307 .block_erasers =
6308 {
6309 {
6310 .eraseblocks = { {4 * 1024, 2048} },
6311 .block_erase = spi_block_erase_20,
6312 }, {
6313 .eraseblocks = { {32 * 1024, 256} },
6314 .block_erase = spi_block_erase_52,
6315 }, {
6316 .eraseblocks = { {64 * 1024, 128} },
6317 .block_erase = spi_block_erase_d8,
6318 }, {
6319 .eraseblocks = { {8 * 1024 * 1024, 1} },
6320 .block_erase = spi_block_erase_60,
6321 }, {
6322 .eraseblocks = { {8 * 1024 * 1024, 1} },
6323 .block_erase = spi_block_erase_c7,
6324 },
6325 },
6326 .unlock = spi_disable_blockprotect,
Helge Wagner1db7a442010-10-05 22:29:08 +00006327 .write = spi_chip_write_256,
Ed Swierk86f4e6d2010-07-21 15:02:22 +00006328 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006329 .voltage = {2700, 3600},
Ed Swierk86f4e6d2010-07-21 15:02:22 +00006330 },
6331
6332 {
6333 .vendor = "SST",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00006334 .name = "SST25VF040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006335 .bustype = BUS_SPI,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00006336 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006337 .model_id = SST_SST25VF040_REMS,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00006338 .total_size = 512,
6339 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006340 .feature_bits = FEATURE_WRSR_EWSR,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00006341 .tested = TEST_OK_PR,
6342 .probe = probe_spi_rems,
6343 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00006344 .block_erasers =
6345 {
6346 {
6347 .eraseblocks = { {4 * 1024, 128} },
6348 .block_erase = spi_block_erase_20,
6349 }, {
6350 .eraseblocks = { {32 * 1024, 16} },
6351 .block_erase = spi_block_erase_52,
6352 }, {
6353 .eraseblocks = { {512 * 1024, 1} },
6354 .block_erase = spi_block_erase_60,
6355 },
6356 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006357 .unlock = spi_disable_blockprotect,
Joshua Roys87955bf2011-08-01 18:39:28 +00006358 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006359 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00006360 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006361 },
6362
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006363 {
6364 .vendor = "SST",
6365 .name = "SST25VF040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006366 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006367 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006368 .model_id = SST_SST25VF040B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006369 .total_size = 512,
6370 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006371 .feature_bits = FEATURE_WRSR_EWSR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006372 .tested = TEST_UNTESTED,
6373 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006374 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00006375 .block_erasers =
6376 {
6377 {
6378 .eraseblocks = { {4 * 1024, 128} },
6379 .block_erase = spi_block_erase_20,
6380 }, {
6381 .eraseblocks = { {32 * 1024, 16} },
6382 .block_erase = spi_block_erase_52,
6383 }, {
6384 .eraseblocks = { {64 * 1024, 8} },
6385 .block_erase = spi_block_erase_d8,
6386 }, {
6387 .eraseblocks = { {512 * 1024, 1} },
6388 .block_erase = spi_block_erase_60,
6389 }, {
6390 .eraseblocks = { {512 * 1024, 1} },
6391 .block_erase = spi_block_erase_c7,
6392 },
6393 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006394 .unlock = spi_disable_blockprotect,
Joshua Roys87955bf2011-08-01 18:39:28 +00006395 .write = spi_aai_write,
Zheng Bao0677dff2009-02-25 08:07:33 +00006396 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006397 .voltage = {2700, 3600},
Zheng Bao0677dff2009-02-25 08:07:33 +00006398 },
6399
6400 {
6401 .vendor = "SST",
Peter Stugefd9217d2009-01-26 03:37:40 +00006402 .name = "SST25VF040B.REMS",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006403 .bustype = BUS_SPI,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00006404 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006405 .model_id = SST_SST25VF040B_REMS,
Peter Stugefd9217d2009-01-26 03:37:40 +00006406 .total_size = 512,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00006407 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006408 .feature_bits = FEATURE_WRSR_EWSR,
Peter Stugefd9217d2009-01-26 03:37:40 +00006409 .tested = TEST_OK_PR,
6410 .probe = probe_spi_rems,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006411 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00006412 .block_erasers =
6413 {
6414 {
6415 .eraseblocks = { {4 * 1024, 128} },
6416 .block_erase = spi_block_erase_20,
6417 }, {
6418 .eraseblocks = { {32 * 1024, 16} },
6419 .block_erase = spi_block_erase_52,
6420 }, {
6421 .eraseblocks = { {64 * 1024, 8} },
6422 .block_erase = spi_block_erase_d8,
6423 }, {
6424 .eraseblocks = { {512 * 1024, 1} },
6425 .block_erase = spi_block_erase_60,
6426 }, {
6427 .eraseblocks = { {512 * 1024, 1} },
6428 .block_erase = spi_block_erase_c7,
6429 },
6430 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006431 .unlock = spi_disable_blockprotect,
Joshua Roys87955bf2011-08-01 18:39:28 +00006432 .write = spi_aai_write,
Peter Stugefd9217d2009-01-26 03:37:40 +00006433 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00006434 .voltage = {2700, 3600},
Peter Stugefd9217d2009-01-26 03:37:40 +00006435 },
6436
6437 {
6438 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006439 .name = "SST25VF080B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006440 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006441 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006442 .model_id = SST_SST25VF080B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006443 .total_size = 1024,
6444 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006445 .feature_bits = FEATURE_WRSR_EWSR,
John Schmergec965c2d2011-05-18 11:28:47 +00006446 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006447 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006448 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00006449 .block_erasers =
6450 {
6451 {
6452 .eraseblocks = { {4 * 1024, 256} },
6453 .block_erase = spi_block_erase_20,
6454 }, {
6455 .eraseblocks = { {32 * 1024, 32} },
6456 .block_erase = spi_block_erase_52,
6457 }, {
6458 .eraseblocks = { {64 * 1024, 16} },
6459 .block_erase = spi_block_erase_d8,
6460 }, {
6461 .eraseblocks = { {1024 * 1024, 1} },
6462 .block_erase = spi_block_erase_60,
6463 }, {
6464 .eraseblocks = { {1024 * 1024, 1} },
6465 .block_erase = spi_block_erase_c7,
6466 },
6467 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006468 .unlock = spi_disable_blockprotect,
Joshua Roys87955bf2011-08-01 18:39:28 +00006469 .write = spi_aai_write,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006470 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006471 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006472 },
6473
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006474 {
6475 .vendor = "SST",
6476 .name = "SST28SF040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006477 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006478 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006479 .model_id = SST_SST28SF040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006480 .total_size = 512,
6481 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00006482 .feature_bits = 0,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006483 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00006484 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00006485 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst28sf040.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00006486 .block_erasers =
6487 {
6488 {
6489 .eraseblocks = { {128, 4096} },
6490 .block_erase = erase_sector_28sf040,
6491 }, {
6492 .eraseblocks = { {512 * 1024, 1} },
6493 .block_erase = erase_chip_28sf040,
6494 }
6495 },
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00006496 .unlock = unprotect_28sf040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006497 .write = write_28sf040,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006498 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006499 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00006500 },
6501
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006502 {
6503 .vendor = "SST",
6504 .name = "SST29EE010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006505 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006506 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006507 .model_id = SST_SST29EE010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006508 .total_size = 128,
6509 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00006510 .feature_bits = FEATURE_LONG_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00006511 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006512 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00006513 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +00006514 .block_erasers =
6515 {
6516 {
6517 .eraseblocks = { {128 * 1024, 1} },
6518 .block_erase = erase_chip_block_jedec,
6519 }
6520 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006521 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006522 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006523 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00006524 },
6525
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006526 {
6527 .vendor = "SST",
6528 .name = "SST29LE010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006529 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006530 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006531 .model_id = SST_SST29LE010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006532 .total_size = 128,
6533 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00006534 .feature_bits = FEATURE_LONG_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006535 .tested = TEST_UNTESTED,
6536 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00006537 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +00006538 .block_erasers =
6539 {
6540 {
6541 .eraseblocks = { {128 * 1024, 1} },
6542 .block_erase = erase_chip_block_jedec,
6543 }
6544 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006545 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006546 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006547 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006548 },
6549
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006550 {
6551 .vendor = "SST",
6552 .name = "SST29EE020A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006553 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006554 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006555 .model_id = SST_SST29EE020A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006556 .total_size = 256,
6557 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00006558 .feature_bits = FEATURE_LONG_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00006559 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006560 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00006561 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +00006562 .block_erasers =
6563 {
6564 {
6565 .eraseblocks = { {256 * 1024, 1} },
6566 .block_erase = erase_chip_block_jedec,
6567 }
6568 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006569 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006570 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006571 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00006572 },
6573
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006574 {
6575 .vendor = "SST",
6576 .name = "SST29LE020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006577 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006578 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006579 .model_id = SST_SST29LE020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006580 .total_size = 256,
6581 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00006582 .feature_bits = FEATURE_LONG_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00006583 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006584 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00006585 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +00006586 .block_erasers =
6587 {
6588 {
6589 .eraseblocks = { {256 * 1024, 1} },
6590 .block_erase = erase_chip_block_jedec,
6591 }
6592 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006593 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006594 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006595 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006596 },
6597
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006598 {
6599 .vendor = "SST",
Uwe Hermann48da3f92010-01-23 15:15:19 +00006600 .name = "SST39SF512",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006601 .bustype = BUS_PARALLEL,
Uwe Hermann48da3f92010-01-23 15:15:19 +00006602 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006603 .model_id = SST_SST39SF512,
Uwe Hermann48da3f92010-01-23 15:15:19 +00006604 .total_size = 64,
6605 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00006606 .feature_bits = FEATURE_EITHER_RESET,
Idwer Vollering7913fb42011-03-07 15:32:58 +00006607 .tested = TEST_OK_PREW,
Uwe Hermann48da3f92010-01-23 15:15:19 +00006608 .probe = probe_jedec,
6609 .probe_timing = 1, /* 150 ns */
Uwe Hermann48da3f92010-01-23 15:15:19 +00006610 .block_erasers =
6611 {
6612 {
6613 .eraseblocks = { {4 * 1024, 16} },
6614 .block_erase = erase_sector_jedec,
6615 }, {
6616 .eraseblocks = { {64 * 1024, 1} },
6617 .block_erase = erase_chip_block_jedec,
6618 }
6619 },
Sean Nelson35727f72010-01-28 23:55:12 +00006620 .write = write_jedec_1,
Uwe Hermann48da3f92010-01-23 15:15:19 +00006621 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006622 .voltage = {4500, 5500},
Uwe Hermann48da3f92010-01-23 15:15:19 +00006623 },
6624
6625 {
6626 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006627 .name = "SST39SF010A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006628 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006629 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006630 .model_id = SST_SST39SF010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006631 .total_size = 128,
6632 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00006633 .feature_bits = FEATURE_EITHER_RESET,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +00006634 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006635 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00006636 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00006637 .block_erasers =
6638 {
6639 {
6640 .eraseblocks = { {4 * 1024, 32} },
6641 .block_erase = erase_sector_jedec,
6642 }, {
6643 .eraseblocks = { {128 * 1024, 1} },
6644 .block_erase = erase_chip_block_jedec,
6645 }
6646 },
Sean Nelson35727f72010-01-28 23:55:12 +00006647 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006648 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006649 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00006650 },
6651
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006652 {
6653 .vendor = "SST",
6654 .name = "SST39SF020A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006655 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006656 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006657 .model_id = SST_SST39SF020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006658 .total_size = 256,
6659 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00006660 .feature_bits = FEATURE_EITHER_RESET,
Uwe Hermann19f46f22011-06-18 22:56:14 +00006661 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006662 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00006663 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00006664 .block_erasers =
6665 {
6666 {
6667 .eraseblocks = { {4 * 1024, 64} },
6668 .block_erase = erase_sector_jedec,
6669 }, {
6670 .eraseblocks = { {256 * 1024, 1} },
6671 .block_erase = erase_chip_block_jedec,
6672 }
6673 },
Sean Nelson35727f72010-01-28 23:55:12 +00006674 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006675 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006676 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00006677 },
6678
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006679 {
6680 .vendor = "SST",
6681 .name = "SST39SF040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006682 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006683 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006684 .model_id = SST_SST39SF040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006685 .total_size = 512,
6686 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00006687 .feature_bits = FEATURE_EITHER_RESET,
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00006688 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006689 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00006690 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00006691 .block_erasers =
6692 {
6693 {
6694 .eraseblocks = { {4 * 1024, 128} },
6695 .block_erase = erase_sector_jedec,
6696 }, {
6697 .eraseblocks = { {512 * 1024, 1} },
6698 .block_erase = erase_chip_block_jedec,
6699 }
6700 },
Sean Nelson35727f72010-01-28 23:55:12 +00006701 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006702 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006703 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00006704 },
6705
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006706 {
6707 .vendor = "SST",
6708 .name = "SST39VF512",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006709 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006710 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006711 .model_id = SST_SST39VF512,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006712 .total_size = 64,
6713 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00006714 .feature_bits = FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00006715 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006716 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00006717 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00006718 .block_erasers =
6719 {
6720 {
6721 .eraseblocks = { {4 * 1024, 16} },
6722 .block_erase = erase_sector_jedec,
6723 }, {
6724 .eraseblocks = { {64 * 1024, 1} },
6725 .block_erase = erase_chip_block_jedec,
6726 }
6727 },
Sean Nelson35727f72010-01-28 23:55:12 +00006728 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006729 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006730 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006731 },
6732
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006733 {
6734 .vendor = "SST",
6735 .name = "SST39VF010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006736 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006737 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006738 .model_id = SST_SST39VF010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006739 .total_size = 128,
6740 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00006741 .feature_bits = FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00006742 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006743 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00006744 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00006745 .block_erasers =
6746 {
6747 {
6748 .eraseblocks = { {4 * 1024, 32} },
6749 .block_erase = erase_sector_jedec,
6750 }, {
6751 .eraseblocks = { {128 * 1024, 1} },
6752 .block_erase = erase_chip_block_jedec,
6753 }
6754 },
Sean Nelson35727f72010-01-28 23:55:12 +00006755 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006756 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006757 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006758 },
6759
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006760 {
6761 .vendor = "SST",
6762 .name = "SST39VF020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006763 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006764 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006765 .model_id = SST_SST39VF020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006766 .total_size = 256,
6767 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00006768 .feature_bits = FEATURE_EITHER_RESET,
6769 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006770 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00006771 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00006772 .block_erasers =
6773 {
6774 {
6775 .eraseblocks = { {4 * 1024, 64} },
6776 .block_erase = erase_sector_jedec,
6777 }, {
6778 .eraseblocks = { {256 * 1024, 1} },
6779 .block_erase = erase_chip_block_jedec,
6780 }
6781 },
Sean Nelson35727f72010-01-28 23:55:12 +00006782 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006783 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006784 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006785 },
6786
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006787 {
6788 .vendor = "SST",
6789 .name = "SST39VF040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006790 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006791 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006792 .model_id = SST_SST39VF040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006793 .total_size = 512,
6794 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00006795 .feature_bits = FEATURE_EITHER_RESET,
6796 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006797 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00006798 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00006799 .block_erasers =
6800 {
6801 {
6802 .eraseblocks = { {4 * 1024, 128} },
6803 .block_erase = erase_sector_jedec,
6804 }, {
6805 .eraseblocks = { {512 * 1024, 1} },
6806 .block_erase = erase_chip_block_jedec,
6807 }
6808 },
Sean Nelson35727f72010-01-28 23:55:12 +00006809 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006810 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006811 .voltage = {2700, 3600},
Carl-Daniel Hailfinger90eff152008-12-08 23:51:45 +00006812 },
FENG yu ningff692fb2008-12-08 18:15:10 +00006813
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006814 {
6815 .vendor = "SST",
Peter Stuge8440cc02009-01-25 23:55:12 +00006816 .name = "SST39VF080",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006817 .bustype = BUS_PARALLEL,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00006818 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006819 .model_id = SST_SST39VF080,
Peter Stuge8440cc02009-01-25 23:55:12 +00006820 .total_size = 1024,
6821 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00006822 .feature_bits = FEATURE_EITHER_RESET,
Peter Stuge8440cc02009-01-25 23:55:12 +00006823 .tested = TEST_UNTESTED,
6824 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00006825 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00006826 .block_erasers =
6827 {
6828 {
6829 .eraseblocks = { {4 * 1024, 256} },
6830 .block_erase = erase_sector_jedec,
6831 }, {
6832 .eraseblocks = { {64 * 1024, 16} },
6833 .block_erase = erase_block_jedec,
6834 }, {
6835 .eraseblocks = { {1024 * 1024, 1} },
6836 .block_erase = erase_chip_block_jedec,
6837 }
6838 },
Sean Nelson35727f72010-01-28 23:55:12 +00006839 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006840 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006841 .voltage = {2700, 3600},
Peter Stuge8440cc02009-01-25 23:55:12 +00006842 },
6843
6844 {
6845 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006846 .name = "SST49LF002A/B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006847 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006848 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006849 .model_id = SST_SST49LF002A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006850 .total_size = 256,
6851 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00006852 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Idwer Vollering67f28142011-03-06 22:26:23 +00006853 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00006854 .probe = probe_jedec,
6855 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00006856 .block_erasers =
6857 {
6858 {
6859 .eraseblocks = { {4 * 1024, 64} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00006860 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00006861 }, {
6862 .eraseblocks = { {16 * 1024, 16} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00006863 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00006864 }, {
6865 .eraseblocks = { {256 * 1024, 1} },
6866 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
6867 }
6868 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00006869 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00006870 .unlock = unlock_sst_fwhub,
6871 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006872 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006873 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006874 },
6875
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006876 {
6877 .vendor = "SST",
6878 .name = "SST49LF003A/B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006879 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006880 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006881 .model_id = SST_SST49LF003A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006882 .total_size = 384,
6883 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00006884 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Peter Lemenkov45835c42009-09-25 01:09:18 +00006885 .tested = TEST_OK_PR,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00006886 .probe = probe_jedec,
6887 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00006888 .block_erasers =
6889 {
6890 {
6891 .eraseblocks = { {4 * 1024, 96} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00006892 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00006893 }, {
6894 .eraseblocks = { {64 * 1024, 6} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00006895 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00006896 }, {
6897 .eraseblocks = { {384 * 1024, 1} },
6898 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
6899 }
6900 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00006901 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00006902 .unlock = unlock_sst_fwhub,
6903 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006904 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006905 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006906 },
6907
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006908 {
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00006909 /* Contrary to the data sheet, TBL# on the SST49LF004B affects the top 128kB (instead of 64kB)
6910 * and is only honored for 64k block erase, but not 4k sector erase.
6911 */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006912 .vendor = "SST",
6913 .name = "SST49LF004A/B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006914 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006915 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006916 .model_id = SST_SST49LF004A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006917 .total_size = 512,
6918 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00006919 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Idwer Vollering67f28142011-03-06 22:26:23 +00006920 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00006921 .probe = probe_jedec,
6922 .probe_timing = 1, /* 150 ns */
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00006923 .block_erasers =
6924 {
6925 {
6926 .eraseblocks = { {4 * 1024, 128} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00006927 .block_erase = erase_sector_jedec,
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00006928 }, {
6929 .eraseblocks = { {64 * 1024, 8} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00006930 .block_erase = erase_block_jedec,
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00006931 }, {
6932 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson51c83fb2010-01-20 20:55:53 +00006933 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00006934 },
6935 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00006936 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00006937 .unlock = unlock_sst_fwhub,
6938 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006939 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006940 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006941 },
6942
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006943 {
6944 .vendor = "SST",
6945 .name = "SST49LF004C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006946 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006947 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006948 .model_id = SST_SST49LF004C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006949 .total_size = 512,
6950 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00006951 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006952 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00006953 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00006954 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00006955 .block_erasers =
6956 {
6957 {
6958 .eraseblocks = { {4 * 1024, 128} },
6959 .block_erase = erase_sector_49lfxxxc,
6960 }, {
6961 .eraseblocks = {
6962 {64 * 1024, 7},
6963 {32 * 1024, 1},
6964 {8 * 1024, 2},
6965 {16 * 1024, 1},
6966 },
Sean Nelson69e58112010-03-23 17:10:28 +00006967 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +00006968 }
6969 },
Sean Nelson69e58112010-03-23 17:10:28 +00006970 .unlock = unlock_49lfxxxc,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00006971 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006972 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006973 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006974 },
6975
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006976 {
6977 .vendor = "SST",
6978 .name = "SST49LF008A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006979 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006980 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006981 .model_id = SST_SST49LF008A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006982 .total_size = 1024,
6983 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00006984 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00006985 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00006986 .probe = probe_jedec,
6987 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00006988 .block_erasers =
6989 {
6990 {
6991 .eraseblocks = { {4 * 1024, 256} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00006992 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00006993 }, {
6994 .eraseblocks = { {64 * 1024, 16} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00006995 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00006996 }, {
6997 .eraseblocks = { {1024 * 1024, 1} },
6998 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
6999 }
7000 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007001 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00007002 .unlock = unlock_sst_fwhub,
7003 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007004 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007005 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007006 },
7007
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007008 {
7009 .vendor = "SST",
7010 .name = "SST49LF008C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007011 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007012 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007013 .model_id = SST_SST49LF008C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007014 .total_size = 1024,
7015 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007016 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007017 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007018 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00007019 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00007020 .block_erasers =
7021 {
7022 {
7023 .eraseblocks = { {4 * 1024, 256} },
7024 .block_erase = erase_sector_49lfxxxc,
7025 }, {
7026 .eraseblocks = {
7027 {64 * 1024, 15},
7028 {32 * 1024, 1},
7029 {8 * 1024, 2},
7030 {16 * 1024, 1},
7031 },
Sean Nelson69e58112010-03-23 17:10:28 +00007032 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +00007033 }
7034 },
Sean Nelson69e58112010-03-23 17:10:28 +00007035 .unlock = unlock_49lfxxxc,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00007036 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007037 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007038 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007039 },
7040
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007041 {
7042 .vendor = "SST",
7043 .name = "SST49LF016C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007044 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007045 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007046 .model_id = SST_SST49LF016C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007047 .total_size = 2048,
7048 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007049 .feature_bits = FEATURE_REGISTERMAP,
Stefan Tauner2abab942012-04-27 20:41:23 +00007050 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007051 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00007052 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00007053 .block_erasers =
7054 {
7055 {
7056 .eraseblocks = { {4 * 1024, 512} },
7057 .block_erase = erase_sector_49lfxxxc,
7058 }, {
7059 .eraseblocks = {
7060 {64 * 1024, 31},
7061 {32 * 1024, 1},
7062 {8 * 1024, 2},
7063 {16 * 1024, 1},
7064 },
Sean Nelson69e58112010-03-23 17:10:28 +00007065 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +00007066 }
7067 },
Sean Nelson69e58112010-03-23 17:10:28 +00007068 .unlock = unlock_49lfxxxc,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00007069 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007070 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007071 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007072 },
7073
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007074 {
7075 .vendor = "SST",
7076 .name = "SST49LF020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007077 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007078 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007079 .model_id = SST_SST49LF020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007080 .total_size = 256,
7081 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007082 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner8179be52011-06-04 13:13:34 +00007083 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007084 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00007085 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00007086 .block_erasers =
7087 {
7088 {
7089 .eraseblocks = { {4 * 1024, 64} },
7090 .block_erase = erase_sector_jedec,
7091 }, {
7092 .eraseblocks = { {16 * 1024, 16} },
7093 .block_erase = erase_block_jedec,
7094 }, {
7095 .eraseblocks = { {256 * 1024, 1} },
7096 .block_erase = NULL,
7097 }
7098 },
Sean Nelson35727f72010-01-28 23:55:12 +00007099 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007100 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007101 .voltage = {3000, 3600},
Sven Schnellec208dfb2009-01-07 12:35:09 +00007102 },
7103
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007104 {
7105 .vendor = "SST",
7106 .name = "SST49LF020A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007107 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007108 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007109 .model_id = SST_SST49LF020A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007110 .total_size = 256,
Carl-Daniel Hailfingerda654322009-07-23 01:44:38 +00007111 .page_size = 4 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007112 .feature_bits = FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00007113 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007114 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00007115 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00007116 .block_erasers =
7117 {
7118 {
7119 .eraseblocks = { {4 * 1024, 64} },
7120 .block_erase = erase_sector_jedec,
7121 }, {
7122 .eraseblocks = { {16 * 1024, 16} },
7123 .block_erase = erase_block_jedec,
7124 }, {
7125 .eraseblocks = { {256 * 1024, 1} },
7126 .block_erase = NULL,
7127 }
7128 },
Sean Nelson35727f72010-01-28 23:55:12 +00007129 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007130 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007131 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007132 },
7133
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007134 {
7135 .vendor = "SST",
7136 .name = "SST49LF040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007137 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007138 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007139 .model_id = SST_SST49LF040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007140 .total_size = 512,
7141 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00007142 .feature_bits = FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00007143 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007144 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00007145 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00007146 .block_erasers =
7147 {
7148 {
7149 .eraseblocks = { {4 * 1024, 128} },
7150 .block_erase = erase_sector_jedec,
7151 }, {
7152 .eraseblocks = { {64 * 1024, 8} },
7153 .block_erase = erase_block_jedec,
7154 }, {
7155 .eraseblocks = { {512 * 1024, 1} },
7156 .block_erase = NULL,
7157 }
7158 },
Sean Nelson35727f72010-01-28 23:55:12 +00007159 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007160 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007161 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007162 },
7163
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007164 {
7165 .vendor = "SST",
7166 .name = "SST49LF040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007167 .bustype = BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007168 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007169 .model_id = SST_SST49LF040B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007170 .total_size = 512,
7171 .page_size = 64 * 1024,
Joshua Roysa84b0bd2010-08-16 22:12:39 +00007172 .feature_bits = FEATURE_EITHER_RESET | FEATURE_REGISTERMAP,
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00007173 .tested = TEST_OK_PREW,
Sean Nelson51c83fb2010-01-20 20:55:53 +00007174 .probe = probe_jedec,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007175 .probe_timing = 1, /* 150ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00007176 .block_erasers =
7177 {
7178 {
7179 .eraseblocks = { {4 * 1024, 128} },
7180 .block_erase = erase_sector_jedec,
7181 }, {
7182 .eraseblocks = { {64 * 1024, 8} },
7183 .block_erase = erase_block_jedec,
7184 }, {
7185 .eraseblocks = { {512 * 1024, 1} },
7186 .block_erase = NULL,
7187 }
7188 },
Joshua Roysa84b0bd2010-08-16 22:12:39 +00007189 .unlock = unlock_82802ab,
Sean Nelson35727f72010-01-28 23:55:12 +00007190 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007191 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007192 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007193 },
7194
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007195 {
7196 .vendor = "SST",
7197 .name = "SST49LF080A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007198 .bustype = BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007199 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007200 .model_id = SST_SST49LF080A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007201 .total_size = 1024,
7202 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00007203 .feature_bits = FEATURE_EITHER_RESET,
Brandon Dowdyf07bf322011-03-06 18:31:11 +00007204 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007205 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00007206 .probe_timing = TIMING_FIXME,
Sean Nelson51c83fb2010-01-20 20:55:53 +00007207 .block_erasers =
7208 {
7209 {
7210 .eraseblocks = { {4 * 1024, 256} },
7211 .block_erase = erase_sector_jedec,
7212 }, {
7213 .eraseblocks = { {64 * 1024, 16} },
7214 .block_erase = erase_block_jedec,
7215 }, {
7216 .eraseblocks = { {1024 * 1024, 1} },
7217 .block_erase = NULL,
7218 }
7219 },
Sean Nelson35727f72010-01-28 23:55:12 +00007220 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007221 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007222 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007223 },
7224
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007225 {
7226 .vendor = "SST",
7227 .name = "SST49LF160C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007228 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007229 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007230 .model_id = SST_SST49LF160C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007231 .total_size = 2048,
7232 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007233 .feature_bits = FEATURE_REGISTERMAP,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00007234 .tested = TEST_OK_PRE,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007235 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00007236 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00007237 .block_erasers =
7238 {
7239 {
7240 .eraseblocks = { {4 * 1024, 512} },
7241 .block_erase = erase_sector_49lfxxxc,
7242 }, {
7243 .eraseblocks = {
7244 {64 * 1024, 31},
7245 {32 * 1024, 1},
7246 {8 * 1024, 2},
7247 {16 * 1024, 1},
7248 },
Sean Nelson69e58112010-03-23 17:10:28 +00007249 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +00007250 }
7251 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00007252 .unlock = unlock_49lfxxxc,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00007253 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007254 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007255 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007256 },
7257
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007258 {
7259 .vendor = "ST",
7260 .name = "M25P05-A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007261 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007262 .manufacture_id = ST_ID,
7263 .model_id = ST_M25P05A,
7264 .total_size = 64,
7265 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007266 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007267 .tested = TEST_UNTESTED,
7268 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007269 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00007270 .block_erasers =
7271 {
7272 {
7273 .eraseblocks = { {32 * 1024, 2} },
7274 .block_erase = spi_block_erase_d8,
7275 }, {
7276 .eraseblocks = { {64 * 1024, 1} },
7277 .block_erase = spi_block_erase_c7,
7278 }
7279 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007280 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007281 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007282 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007283 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007284 },
7285
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00007286 /* The ST M25P05 is a bit of a problem. It has the same ID as the
7287 * ST M25P05-A in RES mode, but supports only 128 byte writes instead
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00007288 * of 256 byte writes. We rely heavily on the fact that probe_spi_res1
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00007289 * only is successful if RDID does not work.
7290 */
7291 {
7292 .vendor = "ST",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00007293 .name = "M25P05",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007294 .bustype = BUS_SPI,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00007295 .manufacture_id = 0, /* Not used. */
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00007296 .model_id = ST_M25P05_RES,
7297 .total_size = 64,
7298 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007299 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00007300 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00007301 .probe = probe_spi_res1,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00007302 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00007303 .block_erasers =
7304 {
7305 {
7306 .eraseblocks = { {32 * 1024, 2} },
7307 .block_erase = spi_block_erase_d8,
7308 }, {
7309 .eraseblocks = { {64 * 1024, 1} },
7310 .block_erase = spi_block_erase_c7,
7311 }
7312 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007313 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00007314 .write = spi_chip_write_1, /* 128 */
7315 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007316 .voltage = {2700, 3600},
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00007317 },
7318
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007319 {
7320 .vendor = "ST",
7321 .name = "M25P10-A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007322 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007323 .manufacture_id = ST_ID,
7324 .model_id = ST_M25P10A,
7325 .total_size = 128,
7326 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007327 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00007328 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007329 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007330 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00007331 .block_erasers =
7332 {
7333 {
7334 .eraseblocks = { {32 * 1024, 4} },
7335 .block_erase = spi_block_erase_d8,
7336 }, {
7337 .eraseblocks = { {128 * 1024, 1} },
7338 .block_erase = spi_block_erase_c7,
7339 }
7340 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007341 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007342 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007343 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007344 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007345 },
7346
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00007347 /* The ST M25P10 has the same problem as the M25P05. */
7348 {
7349 .vendor = "ST",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00007350 .name = "M25P10",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007351 .bustype = BUS_SPI,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00007352 .manufacture_id = 0, /* Not used. */
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00007353 .model_id = ST_M25P10_RES,
7354 .total_size = 128,
7355 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007356 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00007357 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00007358 .probe = probe_spi_res1,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00007359 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00007360 .block_erasers =
7361 {
7362 {
7363 .eraseblocks = { {32 * 1024, 4} },
7364 .block_erase = spi_block_erase_d8,
7365 }, {
7366 .eraseblocks = { {128 * 1024, 1} },
7367 .block_erase = spi_block_erase_c7,
7368 }
7369 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007370 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00007371 .write = spi_chip_write_1, /* 128 */
7372 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007373 .voltage = {2700, 3600},
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00007374 },
7375
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007376 {
7377 .vendor = "ST",
7378 .name = "M25P20",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007379 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007380 .manufacture_id = ST_ID,
7381 .model_id = ST_M25P20,
7382 .total_size = 256,
7383 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007384 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007385 .tested = TEST_UNTESTED,
7386 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007387 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00007388 .block_erasers =
7389 {
7390 {
7391 .eraseblocks = { {64 * 1024, 4} },
7392 .block_erase = spi_block_erase_d8,
7393 }, {
7394 .eraseblocks = { {256 * 1024, 1} },
7395 .block_erase = spi_block_erase_c7,
7396 }
7397 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007398 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007399 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007400 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007401 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007402 },
7403
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007404 {
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00007405 .vendor = "ST", /* Numonyx */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007406 .name = "M25P40",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007407 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007408 .manufacture_id = ST_ID,
7409 .model_id = ST_M25P40,
7410 .total_size = 512,
7411 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007412 .feature_bits = FEATURE_WRSR_WREN,
Paul Menzelac427b22012-02-16 21:07:07 +00007413 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007414 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007415 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00007416 .block_erasers =
7417 {
7418 {
7419 .eraseblocks = { {64 * 1024, 8} },
7420 .block_erase = spi_block_erase_d8,
7421 }, {
7422 .eraseblocks = { {512 * 1024, 1} },
7423 .block_erase = spi_block_erase_c7,
7424 }
7425 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007426 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007427 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007428 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007429 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007430 },
7431
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007432 {
7433 .vendor = "ST",
7434 .name = "M25P40-old",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007435 .bustype = BUS_SPI,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00007436 .manufacture_id = 0, /* Not used. */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007437 .model_id = ST_M25P40_RES,
7438 .total_size = 512,
7439 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007440 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007441 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00007442 .probe = probe_spi_res1,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007443 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00007444 .block_erasers =
7445 {
7446 {
7447 .eraseblocks = { {64 * 1024, 8} },
7448 .block_erase = spi_block_erase_d8,
7449 }, {
7450 .eraseblocks = { {512 * 1024, 1} },
7451 .block_erase = spi_block_erase_c7,
7452 }
7453 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007454 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007455 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007456 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00007457 },
7458
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007459 {
7460 .vendor = "ST",
7461 .name = "M25P80",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007462 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007463 .manufacture_id = ST_ID,
7464 .model_id = ST_M25P80,
7465 .total_size = 1024,
7466 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007467 .feature_bits = FEATURE_WRSR_WREN,
Uwe Hermann19f46f22011-06-18 22:56:14 +00007468 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007469 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007470 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00007471 .block_erasers =
7472 {
7473 {
7474 .eraseblocks = { {64 * 1024, 16} },
7475 .block_erase = spi_block_erase_d8,
7476 }, {
7477 .eraseblocks = { {1024 * 1024, 1} },
7478 .block_erase = spi_block_erase_c7,
7479 }
7480 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007481 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007482 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007483 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007484 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007485 },
7486
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007487 {
7488 .vendor = "ST",
7489 .name = "M25P16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007490 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007491 .manufacture_id = ST_ID,
7492 .model_id = ST_M25P16,
7493 .total_size = 2048,
7494 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007495 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00007496 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007497 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007498 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00007499 .block_erasers =
7500 {
7501 {
7502 .eraseblocks = { {64 * 1024, 32} },
7503 .block_erase = spi_block_erase_d8,
7504 }, {
7505 .eraseblocks = { {2 * 1024 * 1024, 1} },
7506 .block_erase = spi_block_erase_c7,
7507 }
7508 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007509 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007510 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007511 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007512 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007513 },
7514
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007515 {
7516 .vendor = "ST",
7517 .name = "M25P32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007518 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007519 .manufacture_id = ST_ID,
7520 .model_id = ST_M25P32,
7521 .total_size = 4096,
7522 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007523 .feature_bits = FEATURE_WRSR_WREN,
Antony Rheneus0fbba982011-05-26 14:28:51 +00007524 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007525 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007526 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00007527 .block_erasers =
7528 {
7529 {
7530 .eraseblocks = { {64 * 1024, 64} },
7531 .block_erase = spi_block_erase_d8,
7532 }, {
7533 .eraseblocks = { {4 * 1024 * 1024, 1} },
7534 .block_erase = spi_block_erase_c7,
7535 }
7536 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007537 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007538 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007539 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007540 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007541 },
7542
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007543 {
7544 .vendor = "ST",
7545 .name = "M25P64",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007546 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007547 .manufacture_id = ST_ID,
7548 .model_id = ST_M25P64,
7549 .total_size = 8192,
7550 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007551 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007552 .tested = TEST_UNTESTED,
7553 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007554 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00007555 .block_erasers =
7556 {
7557 {
7558 .eraseblocks = { {64 * 1024, 128} },
7559 .block_erase = spi_block_erase_d8,
7560 }, {
7561 .eraseblocks = { {8 * 1024 * 1024, 1} },
7562 .block_erase = spi_block_erase_c7,
7563 }
7564 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007565 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007566 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007567 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007568 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007569 },
7570
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007571 {
7572 .vendor = "ST",
7573 .name = "M25P128",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007574 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007575 .manufacture_id = ST_ID,
7576 .model_id = ST_M25P128,
7577 .total_size = 16384,
7578 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007579 .feature_bits = FEATURE_WRSR_WREN,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +00007580 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007581 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007582 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00007583 .block_erasers =
7584 {
7585 {
7586 .eraseblocks = { {256 * 1024, 64} },
7587 .block_erase = spi_block_erase_d8,
7588 }, {
7589 .eraseblocks = { {16 * 1024 * 1024, 1} },
7590 .block_erase = spi_block_erase_c7,
7591 }
7592 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007593 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007594 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007595 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007596 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007597 },
7598
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007599 {
7600 .vendor = "ST",
Carl Worthd1dd72c2011-03-06 18:45:40 +00007601 .name = "M25PX16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007602 .bustype = BUS_SPI,
Carl Worthd1dd72c2011-03-06 18:45:40 +00007603 .manufacture_id = ST_ID,
7604 .model_id = ST_M25PX16,
7605 .total_size = 2048,
7606 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00007607 /* OTP: 64B total; read 0x4B; write 0x42 */
Steven Zakulec3603a282012-05-02 20:07:57 +00007608 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Carl Worthd1dd72c2011-03-06 18:45:40 +00007609 .tested = TEST_OK_PREW,
7610 .probe = probe_spi_rdid,
7611 .probe_timing = TIMING_ZERO,
7612 .block_erasers =
7613 {
7614 {
7615 .eraseblocks = { { 4 * 1024, 512 } },
7616 .block_erase = spi_block_erase_20,
7617 }, {
7618 .eraseblocks = { {64 * 1024, 32} },
7619 .block_erase = spi_block_erase_d8,
7620 }, {
7621 .eraseblocks = { {2 * 1024 * 1024, 1} },
7622 .block_erase = spi_block_erase_c7,
7623 }
7624 },
7625 .unlock = spi_disable_blockprotect,
7626 .write = spi_chip_write_256,
7627 .read = spi_chip_read,
7628 },
7629
7630 {
7631 .vendor = "ST",
Jason Shriver4119e9b2010-09-14 13:16:01 +00007632 .name = "M25PX32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007633 .bustype = BUS_SPI,
Jason Shriver4119e9b2010-09-14 13:16:01 +00007634 .manufacture_id = ST_ID,
7635 .model_id = ST_M25PX32,
7636 .total_size = 4096,
7637 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007638 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00007639 .tested = TEST_OK_PRE,
Jason Shriver4119e9b2010-09-14 13:16:01 +00007640 .probe = probe_spi_rdid,
7641 .probe_timing = TIMING_ZERO,
7642 .block_erasers =
7643 {
7644 {
7645 .eraseblocks = { { 4 * 1024, 1024 } },
7646 .block_erase = spi_block_erase_20,
7647 }, {
7648 .eraseblocks = { {64 * 1024, 64} },
7649 .block_erase = spi_block_erase_d8,
7650 }, {
7651 .eraseblocks = { {4 * 1024 * 1024, 1} },
7652 .block_erase = spi_block_erase_c7,
7653 }
7654 },
7655 .unlock = spi_disable_blockprotect,
7656 .write = spi_chip_write_256,
7657 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00007658 .voltage = {2700, 3600},
Jason Shriver4119e9b2010-09-14 13:16:01 +00007659 },
7660
7661 {
7662 .vendor = "ST",
7663 .name = "M25PX64",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007664 .bustype = BUS_SPI,
Jason Shriver4119e9b2010-09-14 13:16:01 +00007665 .manufacture_id = ST_ID,
7666 .model_id = ST_M25PX64,
7667 .total_size = 8192,
7668 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007669 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00007670 .tested = TEST_OK_PRE,
Jason Shriver4119e9b2010-09-14 13:16:01 +00007671 .probe = probe_spi_rdid,
7672 .probe_timing = TIMING_ZERO,
7673 .block_erasers =
7674 {
7675 {
7676 .eraseblocks = { { 4 * 1024, 2048 } },
7677 .block_erase = spi_block_erase_20,
7678 }, {
7679 .eraseblocks = { {64 * 1024, 128} },
7680 .block_erase = spi_block_erase_d8,
7681 }, {
7682 .eraseblocks = { {8 * 1024 * 1024, 1} },
7683 .block_erase = spi_block_erase_c7,
7684 }
7685 },
7686 .unlock = spi_disable_blockprotect,
7687 .write = spi_chip_write_256,
7688 .read = spi_chip_read,
7689 },
7690
7691 {
7692 .vendor = "ST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007693 .name = "M29F002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007694 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007695 .manufacture_id = ST_ID,
7696 .model_id = ST_M29F002B,
7697 .total_size = 256,
7698 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007699 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007700 .tested = TEST_UNTESTED,
7701 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00007702 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00007703 .block_erasers =
7704 {
7705 {
7706 .eraseblocks = {
7707 {16 * 1024, 1},
7708 {8 * 1024, 2},
7709 {32 * 1024, 1},
7710 {64 * 1024, 3},
7711 },
7712 .block_erase = erase_sector_jedec,
7713 }, {
7714 .eraseblocks = { {256 * 1024, 1} },
7715 .block_erase = erase_chip_block_jedec,
7716 }
7717 },
Sean Nelson35727f72010-01-28 23:55:12 +00007718 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007719 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00007720 .voltage = {4750, 5250}, /* 4.75-5.25V for type -X, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +00007721 },
7722
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007723 {
7724 .vendor = "ST",
7725 .name = "M29F002T/NT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007726 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007727 .manufacture_id = ST_ID,
7728 .model_id = ST_M29F002T,
7729 .total_size = 256,
7730 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007731 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
7732 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007733 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00007734 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00007735 .block_erasers =
7736 {
7737 {
7738 .eraseblocks = {
7739 {64 * 1024, 3},
7740 {32 * 1024, 1},
7741 {8 * 1024, 2},
7742 {16 * 1024, 1},
7743 },
7744 .block_erase = erase_sector_jedec,
7745 }, {
7746 .eraseblocks = { {256 * 1024, 1} },
7747 .block_erase = erase_chip_block_jedec,
7748 }
7749 },
Sean Nelson35727f72010-01-28 23:55:12 +00007750 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007751 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00007752 .voltage = {4750, 5250}, /* 4.75-5.25V for type -X, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +00007753 },
7754
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007755 {
7756 .vendor = "ST",
7757 .name = "M29F040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007758 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007759 .manufacture_id = ST_ID,
7760 .model_id = ST_M29F040B,
7761 .total_size = 512,
7762 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007763 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
7764 .tested = TEST_UNTESTED,
7765 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00007766 .probe_timing = TIMING_ZERO, /* datasheet specifies no timing */
Sean Nelson56358aa2010-01-19 16:08:51 +00007767 .block_erasers =
7768 {
7769 {
7770 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson35727f72010-01-28 23:55:12 +00007771 .block_erase = erase_sector_jedec,
Sean Nelson56358aa2010-01-19 16:08:51 +00007772 }, {
7773 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00007774 .block_erase = erase_chip_block_jedec,
Sean Nelson56358aa2010-01-19 16:08:51 +00007775 }
7776 },
Sean Nelson35727f72010-01-28 23:55:12 +00007777 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007778 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007779 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00007780 },
7781
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007782 {
Sean Nelson35727f72010-01-28 23:55:12 +00007783 /* FIXME: this has WORD/BYTE sequences; 2AA for word, 555 for byte */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007784 .vendor = "ST",
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00007785 .name = "M29F400BB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007786 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00007787 .manufacture_id = ST_ID,
7788 .model_id = ST_M29F400BB,
7789 .total_size = 512,
7790 .page_size = 64 * 1024,
7791 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00007792 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00007793 .probe = probe_m29f400bt,
7794 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (m29f400bt.c) */
7795 .block_erasers =
7796 {
7797 {
7798 .eraseblocks = {
7799 {16 * 1024, 1},
7800 {8 * 1024, 2},
7801 {32 * 1024, 1},
7802 {64 * 1024, 7},
7803 },
7804 .block_erase = block_erase_m29f400bt,
7805 }, {
7806 .eraseblocks = { {512 * 1024, 1} },
7807 .block_erase = block_erase_chip_m29f400bt,
7808 }
7809 },
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00007810 .write = write_m29f400bt,
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00007811 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007812 .voltage = {4500, 5500},
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00007813 },
7814 {
7815 /* FIXME: this has WORD/BYTE sequences; 2AA for word, 555 for byte */
7816 .vendor = "ST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007817 .name = "M29F400BT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007818 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007819 .manufacture_id = ST_ID,
7820 .model_id = ST_M29F400BT,
7821 .total_size = 512,
7822 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007823 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007824 .tested = TEST_UNTESTED,
7825 .probe = probe_m29f400bt,
Paul Menzelc07a41c2011-06-19 17:23:55 +00007826 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (m29f400bt.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00007827 .block_erasers =
7828 {
7829 {
7830 .eraseblocks = {
7831 {64 * 1024, 7},
7832 {32 * 1024, 1},
7833 {8 * 1024, 2},
7834 {16 * 1024, 1},
7835 },
7836 .block_erase = block_erase_m29f400bt,
7837 }, {
7838 .eraseblocks = { {512 * 1024, 1} },
7839 .block_erase = block_erase_chip_m29f400bt,
7840 }
7841 },
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00007842 .write = write_m29f400bt,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007843 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007844 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00007845 },
7846
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007847 {
7848 .vendor = "ST",
7849 .name = "M29W010B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007850 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007851 .manufacture_id = ST_ID,
7852 .model_id = ST_M29W010B,
7853 .total_size = 128,
7854 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007855 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007856 .tested = TEST_UNTESTED,
7857 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00007858 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00007859 .block_erasers =
7860 {
7861 {
7862 .eraseblocks = { {16 * 1024, 8}, },
7863 .block_erase = erase_sector_jedec,
7864 }, {
7865 .eraseblocks = { {128 * 1024, 1} },
7866 .block_erase = erase_chip_block_jedec,
7867 }
7868 },
Sean Nelson35727f72010-01-28 23:55:12 +00007869 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007870 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007871 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007872 },
7873
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007874 {
7875 .vendor = "ST",
7876 .name = "M29W040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007877 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007878 .manufacture_id = ST_ID,
7879 .model_id = ST_M29W040B,
7880 .total_size = 512,
7881 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007882 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007883 .tested = TEST_UNTESTED,
7884 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00007885 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00007886 .block_erasers =
7887 {
7888 {
7889 .eraseblocks = { {64 * 1024, 8}, },
7890 .block_erase = erase_sector_jedec,
7891 }, {
7892 .eraseblocks = { {512 * 1024, 1} },
7893 .block_erase = erase_chip_block_jedec,
7894 }
7895 },
Sean Nelson35727f72010-01-28 23:55:12 +00007896 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007897 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007898 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007899 },
7900
Jeffrey A. Kentba7c9222010-02-01 05:49:46 +00007901 {
7902 .vendor = "ST",
7903 .name = "M29W512B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007904 .bustype = BUS_PARALLEL,
Jeffrey A. Kentba7c9222010-02-01 05:49:46 +00007905 .manufacture_id = ST_ID,
7906 .model_id = ST_M29W512B,
7907 .total_size = 64,
7908 .page_size = 64 * 1024,
7909 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00007910 .tested = TEST_OK_PRE,
Jeffrey A. Kentba7c9222010-02-01 05:49:46 +00007911 .probe = probe_jedec,
7912 .probe_timing = TIMING_ZERO,
Jeffrey A. Kentba7c9222010-02-01 05:49:46 +00007913 .block_erasers =
7914 {
7915 {
7916 .eraseblocks = { {64 * 1024, 1} },
7917 .block_erase = erase_chip_block_jedec,
7918 }
7919 },
7920 .write = write_jedec_1,
7921 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007922 .voltage = {2700, 3600},
Jeffrey A. Kentba7c9222010-02-01 05:49:46 +00007923 },
7924
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007925 {
7926 .vendor = "ST",
7927 .name = "M50FLW040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007928 .bustype = BUS_FWH | BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007929 .manufacture_id = ST_ID,
7930 .model_id = ST_M50FLW040A,
7931 .total_size = 512,
7932 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007933 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007934 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00007935 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00007936 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +00007937 .block_erasers =
7938 {
7939 {
Sean Nelson329bde72010-01-19 16:39:19 +00007940 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +00007941 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +00007942 {64 * 1024, 5}, /* block */
7943 {4 * 1024, 16}, /* sector */
7944 {4 * 1024, 16}, /* sector */
7945 },
7946 .block_erase = NULL,
7947 }, {
Sean Nelson56358aa2010-01-19 16:08:51 +00007948 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson28accc22010-03-19 18:47:06 +00007949 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00007950 }
7951 },
Sean Nelson28accc22010-03-19 18:47:06 +00007952 .unlock = unlock_stm50flw0x0x,
7953 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007954 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007955 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00007956 },
7957
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007958 {
7959 .vendor = "ST",
7960 .name = "M50FLW040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007961 .bustype = BUS_FWH | BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007962 .manufacture_id = ST_ID,
7963 .model_id = ST_M50FLW040B,
7964 .total_size = 512,
7965 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007966 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007967 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00007968 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00007969 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +00007970 .block_erasers =
7971 {
7972 {
Sean Nelson329bde72010-01-19 16:39:19 +00007973 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +00007974 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +00007975 {4 * 1024, 16}, /* sector */
7976 {64 * 1024, 5}, /* block */
7977 {4 * 1024, 16}, /* sector */
7978 },
7979 .block_erase = NULL,
7980 }, {
Sean Nelson56358aa2010-01-19 16:08:51 +00007981 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson28accc22010-03-19 18:47:06 +00007982 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00007983 }
7984 },
Sean Nelson28accc22010-03-19 18:47:06 +00007985 .unlock = unlock_stm50flw0x0x,
7986 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007987 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007988 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00007989 },
7990
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007991 {
7992 .vendor = "ST",
7993 .name = "M50FLW080A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007994 .bustype = BUS_FWH | BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007995 .manufacture_id = ST_ID,
7996 .model_id = ST_M50FLW080A,
7997 .total_size = 1024,
7998 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007999 .feature_bits = FEATURE_REGISTERMAP,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00008000 .tested = TEST_OK_PRE,
Sean Nelson35727f72010-01-28 23:55:12 +00008001 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00008002 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +00008003 .block_erasers =
8004 {
8005 {
Sean Nelson329bde72010-01-19 16:39:19 +00008006 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +00008007 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +00008008 {64 * 1024, 13}, /* block */
8009 {4 * 1024, 16}, /* sector */
8010 {4 * 1024, 16}, /* sector */
8011 },
8012 .block_erase = NULL,
8013 }, {
Sean Nelson56358aa2010-01-19 16:08:51 +00008014 .eraseblocks = { {64 * 1024, 16}, },
Sean Nelson28accc22010-03-19 18:47:06 +00008015 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00008016 }
8017 },
Sean Nelson28accc22010-03-19 18:47:06 +00008018 .unlock = unlock_stm50flw0x0x,
8019 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008020 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008021 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00008022 },
8023
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008024 {
8025 .vendor = "ST",
8026 .name = "M50FLW080B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008027 .bustype = BUS_FWH | BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008028 .manufacture_id = ST_ID,
8029 .model_id = ST_M50FLW080B,
8030 .total_size = 1024,
8031 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008032 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008033 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00008034 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00008035 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +00008036 .block_erasers =
8037 {
8038 {
Sean Nelson329bde72010-01-19 16:39:19 +00008039 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +00008040 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +00008041 {4 * 1024, 16}, /* sector */
8042 {64 * 1024, 13}, /* block */
8043 {4 * 1024, 16}, /* sector */
8044 },
8045 .block_erase = NULL,
8046 }, {
Sean Nelson56358aa2010-01-19 16:08:51 +00008047 .eraseblocks = { {64 * 1024, 16}, },
Sean Nelson28accc22010-03-19 18:47:06 +00008048 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00008049 }
8050 },
Sean Nelson28accc22010-03-19 18:47:06 +00008051 .unlock = unlock_stm50flw0x0x,
8052 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008053 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008054 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00008055 },
8056
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008057 {
8058 .vendor = "ST",
8059 .name = "M50FW002",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008060 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008061 .manufacture_id = ST_ID,
8062 .model_id = ST_M50FW002,
8063 .total_size = 256,
8064 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008065 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008066 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00008067 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00008068 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00008069 .block_erasers =
8070 {
8071 {
8072 .eraseblocks = {
8073 {64 * 1024, 3},
8074 {32 * 1024, 1},
8075 {8 * 1024, 2},
8076 {16 * 1024, 1},
8077 },
Sean Nelson28accc22010-03-19 18:47:06 +00008078 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00008079 }
8080 },
Sean Nelson28accc22010-03-19 18:47:06 +00008081 .unlock = unlock_stm50flw0x0x,
8082 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008083 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008084 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00008085 },
8086
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008087 {
8088 .vendor = "ST",
8089 .name = "M50FW016",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008090 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008091 .manufacture_id = ST_ID,
8092 .model_id = ST_M50FW016,
8093 .total_size = 2048,
8094 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008095 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008096 .tested = TEST_UNTESTED,
8097 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00008098 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00008099 .block_erasers =
8100 {
8101 {
8102 .eraseblocks = { {64 * 1024, 32}, },
Sean Nelson28accc22010-03-19 18:47:06 +00008103 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00008104 }
8105 },
Sean Nelson28accc22010-03-19 18:47:06 +00008106 .unlock = unlock_stm50flw0x0x,
8107 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008108 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008109 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00008110 },
8111
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008112 {
8113 .vendor = "ST",
8114 .name = "M50FW040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008115 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008116 .manufacture_id = ST_ID,
8117 .model_id = ST_M50FW040,
8118 .total_size = 512,
8119 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008120 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson28accc22010-03-19 18:47:06 +00008121 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008122 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00008123 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00008124 .block_erasers =
8125 {
8126 {
8127 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson28accc22010-03-19 18:47:06 +00008128 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00008129 }
8130 },
Sean Nelson28accc22010-03-19 18:47:06 +00008131 .unlock = unlock_stm50flw0x0x,
8132 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008133 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008134 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00008135 },
8136
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008137 {
8138 .vendor = "ST",
8139 .name = "M50FW080",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008140 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008141 .manufacture_id = ST_ID,
8142 .model_id = ST_M50FW080,
8143 .total_size = 1024,
8144 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008145 .feature_bits = FEATURE_REGISTERMAP,
Antony Rheneus0fbba982011-05-26 14:28:51 +00008146 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008147 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00008148 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00008149 .block_erasers =
8150 {
8151 {
8152 .eraseblocks = { {64 * 1024, 16}, },
Sean Nelson28accc22010-03-19 18:47:06 +00008153 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00008154 }
8155 },
Sean Nelson28accc22010-03-19 18:47:06 +00008156 .unlock = unlock_stm50flw0x0x,
8157 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008158 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008159 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00008160 },
8161
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008162 {
8163 .vendor = "ST",
8164 .name = "M50LPW116",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008165 .bustype = BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008166 .manufacture_id = ST_ID,
8167 .model_id = ST_M50LPW116,
8168 .total_size = 2048,
8169 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008170 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008171 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00008172 .probe = probe_82802ab,
Udu Ogahc04ee222009-09-05 01:31:32 +00008173 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00008174 .block_erasers =
8175 {
8176 {
8177 .eraseblocks = {
8178 {4 * 1024, 16},
8179 {64 * 1024, 30},
8180 {32 * 1024, 1},
8181 {8 * 1024, 2},
8182 {16 * 1024, 1},
8183 },
Sean Nelson28accc22010-03-19 18:47:06 +00008184 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00008185 }
8186 },
Sean Nelson28accc22010-03-19 18:47:06 +00008187 .unlock = unlock_stm50flw0x0x,
8188 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008189 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008190 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00008191 },
8192
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008193 {
Mattias Mattsson4c066502010-07-29 20:01:13 +00008194 .vendor = "SyncMOS/MoselVitelic",
8195 .name = "{F,S,V}29C51001B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008196 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00008197 .manufacture_id = SYNCMOS_MVC_ID,
8198 .model_id = SM_MVC_29C51001B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008199 .total_size = 128,
Mattias Mattsson4c066502010-07-29 20:01:13 +00008200 .page_size = 512,
Sean Nelson35727f72010-01-28 23:55:12 +00008201 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008202 .tested = TEST_UNTESTED,
8203 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00008204 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00008205 .block_erasers =
8206 {
8207 {
8208 .eraseblocks = { {512, 256} },
8209 .block_erase = erase_sector_jedec,
8210 }, {
8211 .eraseblocks = { {128 * 1024, 1} },
8212 .block_erase = erase_chip_block_jedec,
8213 },
8214 },
Sean Nelson35727f72010-01-28 23:55:12 +00008215 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008216 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008217 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00008218 },
8219
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008220 {
Mattias Mattsson4c066502010-07-29 20:01:13 +00008221 .vendor = "SyncMOS/MoselVitelic",
8222 .name = "{F,S,V}29C51001T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008223 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00008224 .manufacture_id = SYNCMOS_MVC_ID,
8225 .model_id = SM_MVC_29C51001T,
8226 .total_size = 128,
8227 .page_size = 512,
Sean Nelson35727f72010-01-28 23:55:12 +00008228 .feature_bits = FEATURE_EITHER_RESET,
Mattias Mattsson4c066502010-07-29 20:01:13 +00008229 .tested = TEST_UNTESTED,
8230 .probe = probe_jedec,
8231 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
8232 .block_erasers =
8233 {
8234 {
8235 .eraseblocks = { {512, 256} },
8236 .block_erase = erase_sector_jedec,
8237 }, {
8238 .eraseblocks = { {128 * 1024, 1} },
8239 .block_erase = erase_chip_block_jedec,
8240 },
8241 },
8242 .write = write_jedec_1,
8243 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008244 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00008245 },
8246
8247 {
8248 .vendor = "SyncMOS/MoselVitelic",
8249 .name = "{F,S,V}29C51002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008250 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00008251 .manufacture_id = SYNCMOS_MVC_ID,
8252 .model_id = SM_MVC_29C51002B,
8253 .total_size = 256,
8254 .page_size = 512,
8255 .feature_bits = FEATURE_EITHER_RESET,
8256 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008257 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00008258 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00008259 .block_erasers =
8260 {
8261 {
8262 .eraseblocks = { {512, 512} },
8263 .block_erase = erase_sector_jedec,
8264 }, {
8265 .eraseblocks = { {256 * 1024, 1} },
8266 .block_erase = erase_chip_block_jedec,
8267 },
8268 },
Sean Nelson35727f72010-01-28 23:55:12 +00008269 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008270 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00008271 },
8272
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008273 {
Mattias Mattsson4c066502010-07-29 20:01:13 +00008274 .vendor = "SyncMOS/MoselVitelic",
8275 .name = "{F,S,V}29C51002T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008276 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00008277 .manufacture_id = SYNCMOS_MVC_ID,
8278 .model_id = SM_MVC_29C51002T,
8279 .total_size = 256,
8280 .page_size = 512,
8281 .feature_bits = FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00008282 .tested = TEST_OK_PREW,
Mattias Mattsson4c066502010-07-29 20:01:13 +00008283 .probe = probe_jedec,
8284 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
8285 .block_erasers =
8286 {
8287 {
8288 .eraseblocks = { {512, 512} },
8289 .block_erase = erase_sector_jedec,
8290 }, {
8291 .eraseblocks = { {256 * 1024, 1} },
8292 .block_erase = erase_chip_block_jedec,
8293 },
8294 },
8295 .write = write_jedec_1,
8296 .read = read_memmapped,
8297 },
8298
8299 {
8300 .vendor = "SyncMOS/MoselVitelic",
8301 .name = "{F,S,V}29C51004B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008302 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00008303 .manufacture_id = SYNCMOS_MVC_ID,
8304 .model_id = SM_MVC_29C51004B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008305 .total_size = 512,
Mattias Mattsson4c066502010-07-29 20:01:13 +00008306 .page_size = 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00008307 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008308 .tested = TEST_UNTESTED,
8309 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00008310 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00008311 .block_erasers =
8312 {
8313 {
Mattias Mattsson4c066502010-07-29 20:01:13 +00008314 .eraseblocks = { {1024, 512} },
8315 .block_erase = erase_sector_jedec,
8316 }, {
8317 .eraseblocks = { {512 * 1024, 1} },
8318 .block_erase = erase_chip_block_jedec,
8319 },
8320 },
8321 .write = write_jedec_1,
8322 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008323 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00008324 },
8325
8326 {
8327 .vendor = "SyncMOS/MoselVitelic",
8328 .name = "{F,S,V}29C51004T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008329 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00008330 .manufacture_id = SYNCMOS_MVC_ID,
8331 .model_id = SM_MVC_29C51004T,
8332 .total_size = 512,
8333 .page_size = 1024,
8334 .feature_bits = FEATURE_EITHER_RESET,
8335 .tested = TEST_UNTESTED,
8336 .probe = probe_jedec,
8337 .probe_timing = TIMING_ZERO,
8338 .block_erasers =
8339 {
8340 {
8341 .eraseblocks = { {1024, 512} },
8342 .block_erase = erase_sector_jedec,
8343 }, {
8344 .eraseblocks = { {512 * 1024, 1} },
8345 .block_erase = erase_chip_block_jedec,
8346 },
8347 },
8348 .write = write_jedec_1,
8349 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008350 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00008351 },
8352
8353 {
8354 .vendor = "SyncMOS/MoselVitelic",
8355 .name = "{S,V}29C31004B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008356 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00008357 .manufacture_id = SYNCMOS_MVC_ID,
8358 .model_id = SM_MVC_29C31004B,
8359 .total_size = 512,
8360 .page_size = 1024,
8361 .feature_bits = FEATURE_EITHER_RESET,
8362 .tested = TEST_UNTESTED,
8363 .probe = probe_jedec,
8364 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
8365 .block_erasers =
8366 {
8367 {
8368 .eraseblocks = { {1024, 512} },
8369 .block_erase = erase_sector_jedec,
8370 }, {
8371 .eraseblocks = { {512 * 1024, 1} },
8372 .block_erase = erase_chip_block_jedec,
8373 },
8374 },
8375 .write = write_jedec_1,
8376 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008377 .voltage = {3000, 3600},
Mattias Mattsson4c066502010-07-29 20:01:13 +00008378 },
8379
8380 {
8381 .vendor = "SyncMOS/MoselVitelic",
8382 .name = "{S,V}29C31004T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008383 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00008384 .manufacture_id = SYNCMOS_MVC_ID,
8385 .model_id = SM_MVC_29C31004T,
8386 .total_size = 512,
8387 .page_size = 1024,
8388 .feature_bits = FEATURE_EITHER_RESET,
8389 .tested = TEST_UNTESTED,
8390 .probe = probe_jedec,
8391 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
8392 .block_erasers =
8393 {
8394 {
8395 .eraseblocks = { {1024, 512} },
Sean Nelson56358aa2010-01-19 16:08:51 +00008396 .block_erase = erase_sector_jedec,
8397 }, {
8398 .eraseblocks = { {512 * 1024, 1} },
8399 .block_erase = erase_chip_block_jedec,
8400 },
8401 },
Sean Nelson35727f72010-01-28 23:55:12 +00008402 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008403 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008404 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008405 },
8406
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008407 {
Uwe Hermanna106d152009-05-27 23:17:40 +00008408 .vendor = "TI",
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00008409 .name = "TMS29F002RB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008410 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00008411 .manufacture_id = TI_OLD_ID,
8412 .model_id = TI_TMS29F002RB,
8413 .total_size = 256,
8414 .page_size = 16384, /* Non-uniform sectors */
Sean Nelson35727f72010-01-28 23:55:12 +00008415 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00008416 .tested = TEST_UNTESTED,
8417 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00008418 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00008419 .block_erasers =
8420 {
8421 {
8422 .eraseblocks = {
8423 {16 * 1024, 1},
8424 {8 * 1024, 2},
8425 {32 * 1024, 1},
8426 {64 * 1024, 3},
8427 },
8428 .block_erase = erase_sector_jedec,
8429 }, {
8430 .eraseblocks = { {256 * 1024, 1} },
8431 .block_erase = erase_chip_block_jedec,
8432 },
8433 },
Sean Nelson35727f72010-01-28 23:55:12 +00008434 .write = write_jedec_1,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00008435 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008436 .voltage = {4500, 5500},
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00008437 },
8438
8439 {
Uwe Hermanna106d152009-05-27 23:17:40 +00008440 .vendor = "TI",
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00008441 .name = "TMS29F002RT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008442 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00008443 .manufacture_id = TI_OLD_ID,
8444 .model_id = TI_TMS29F002RT,
8445 .total_size = 256,
8446 .page_size = 16384, /* Non-uniform sectors */
Sean Nelson35727f72010-01-28 23:55:12 +00008447 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00008448 .tested = TEST_UNTESTED,
8449 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00008450 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00008451 .block_erasers =
8452 {
8453 {
8454 .eraseblocks = {
8455 {64 * 1024, 3},
8456 {32 * 1024, 1},
8457 {8 * 1024, 2},
8458 {16 * 1024, 1},
8459 },
8460 .block_erase = erase_sector_jedec,
8461 }, {
8462 .eraseblocks = { {256 * 1024, 1} },
8463 .block_erase = erase_chip_block_jedec,
8464 },
8465 },
Sean Nelson35727f72010-01-28 23:55:12 +00008466 .write = write_jedec_1,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00008467 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008468 .voltage = {4500, 5500},
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00008469 },
8470
8471 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008472 .vendor = "Winbond",
Rudolf Marekce1c7982010-04-20 19:34:31 +00008473 .name = "W25Q80",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008474 .bustype = BUS_SPI,
Rudolf Marekce1c7982010-04-20 19:34:31 +00008475 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00008476 .model_id = WINBOND_NEX_W25Q80,
Rudolf Marekce1c7982010-04-20 19:34:31 +00008477 .total_size = 1024,
8478 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00008479 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42 */
8480 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks22e05322010-12-13 23:54:59 +00008481 .tested = TEST_OK_PREW,
Rudolf Marekce1c7982010-04-20 19:34:31 +00008482 .probe = probe_spi_rdid,
8483 .probe_timing = TIMING_ZERO,
8484 .block_erasers =
8485 {
8486 {
8487 .eraseblocks = { {4 * 1024, 256} },
8488 .block_erase = spi_block_erase_20,
8489 }, {
8490 .eraseblocks = { {32 * 1024, 32} },
8491 .block_erase = spi_block_erase_52,
8492 }, {
8493 .eraseblocks = { {64 * 1024, 16} },
8494 .block_erase = spi_block_erase_d8,
8495 }, {
8496 .eraseblocks = { {1024 * 1024, 1} },
8497 .block_erase = spi_block_erase_60,
8498 }, {
8499 .eraseblocks = { {1024 * 1024, 1} },
8500 .block_erase = spi_block_erase_c7,
8501 }
8502 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008503 .unlock = spi_disable_blockprotect,
Rudolf Marekce1c7982010-04-20 19:34:31 +00008504 .write = spi_chip_write_256,
8505 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008506 .voltage = {2700, 3600},
Rudolf Marekce1c7982010-04-20 19:34:31 +00008507 },
8508
8509 {
8510 .vendor = "Winbond",
8511 .name = "W25Q16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008512 .bustype = BUS_SPI,
Rudolf Marekce1c7982010-04-20 19:34:31 +00008513 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00008514 .model_id = WINBOND_NEX_W25Q16,
Rudolf Marekce1c7982010-04-20 19:34:31 +00008515 .total_size = 2048,
8516 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00008517 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42 */
8518 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner716e0982011-07-25 20:38:52 +00008519 .tested = TEST_OK_PREW,
Rudolf Marekce1c7982010-04-20 19:34:31 +00008520 .probe = probe_spi_rdid,
8521 .probe_timing = TIMING_ZERO,
8522 .block_erasers =
8523 {
8524 {
8525 .eraseblocks = { {4 * 1024, 512} },
8526 .block_erase = spi_block_erase_20,
8527 }, {
8528 .eraseblocks = { {32 * 1024, 64} },
8529 .block_erase = spi_block_erase_52,
8530 }, {
8531 .eraseblocks = { {64 * 1024, 32} },
8532 .block_erase = spi_block_erase_d8,
8533 }, {
8534 .eraseblocks = { {2 * 1024 * 1024, 1} },
8535 .block_erase = spi_block_erase_60,
8536 }, {
8537 .eraseblocks = { {2 * 1024 * 1024, 1} },
8538 .block_erase = spi_block_erase_c7,
8539 }
8540 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008541 .unlock = spi_disable_blockprotect,
Rudolf Marekce1c7982010-04-20 19:34:31 +00008542 .write = spi_chip_write_256,
8543 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008544 .voltage = {2700, 3600},
Rudolf Marekce1c7982010-04-20 19:34:31 +00008545 },
8546
8547 {
8548 .vendor = "Winbond",
8549 .name = "W25Q32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008550 .bustype = BUS_SPI,
Rudolf Marekce1c7982010-04-20 19:34:31 +00008551 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00008552 .model_id = WINBOND_NEX_W25Q32,
Rudolf Marekce1c7982010-04-20 19:34:31 +00008553 .total_size = 4096,
8554 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00008555 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42 */
8556 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks22e05322010-12-13 23:54:59 +00008557 .tested = TEST_OK_PREW,
Rudolf Marekce1c7982010-04-20 19:34:31 +00008558 .probe = probe_spi_rdid,
8559 .probe_timing = TIMING_ZERO,
8560 .block_erasers =
8561 {
8562 {
8563 .eraseblocks = { {4 * 1024, 1024} },
8564 .block_erase = spi_block_erase_20,
8565 }, {
8566 .eraseblocks = { {32 * 1024, 128} },
8567 .block_erase = spi_block_erase_52,
8568 }, {
8569 .eraseblocks = { {64 * 1024, 64} },
8570 .block_erase = spi_block_erase_d8,
8571 }, {
8572 .eraseblocks = { {4 * 1024 * 1024, 1} },
8573 .block_erase = spi_block_erase_60,
8574 }, {
8575 .eraseblocks = { {4 * 1024 * 1024, 1} },
8576 .block_erase = spi_block_erase_c7,
8577 }
8578 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008579 .unlock = spi_disable_blockprotect,
Rudolf Marekce1c7982010-04-20 19:34:31 +00008580 .write = spi_chip_write_256,
8581 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008582 .voltage = {2700, 3600},
Rudolf Marekce1c7982010-04-20 19:34:31 +00008583 },
8584
8585 {
8586 .vendor = "Winbond",
David Hendricksc4acec92010-06-24 11:39:57 +00008587 .name = "W25Q64",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008588 .bustype = BUS_SPI,
David Hendricksc4acec92010-06-24 11:39:57 +00008589 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00008590 .model_id = WINBOND_NEX_W25Q64,
David Hendricksc4acec92010-06-24 11:39:57 +00008591 .total_size = 8192,
8592 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00008593 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42 */
8594 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks22e05322010-12-13 23:54:59 +00008595 .tested = TEST_OK_PREW,
David Hendricksc4acec92010-06-24 11:39:57 +00008596 .probe = probe_spi_rdid,
8597 .probe_timing = TIMING_ZERO,
8598 .block_erasers =
8599 {
8600 {
8601 .eraseblocks = { {4 * 1024, 2048} },
8602 .block_erase = spi_block_erase_20,
8603 }, {
8604 .eraseblocks = { {32 * 1024, 256} },
8605 .block_erase = spi_block_erase_52,
8606 }, {
8607 .eraseblocks = { {64 * 1024, 128} },
8608 .block_erase = spi_block_erase_d8,
8609 }, {
8610 .eraseblocks = { {8 * 1024 * 1024, 1} },
8611 .block_erase = spi_block_erase_60,
8612 }, {
8613 .eraseblocks = { {8 * 1024 * 1024, 1} },
8614 .block_erase = spi_block_erase_c7,
8615 }
8616 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008617 .unlock = spi_disable_blockprotect,
David Hendricksc4acec92010-06-24 11:39:57 +00008618 .write = spi_chip_write_256,
8619 .read = spi_chip_read,
8620 },
8621
8622 {
8623 .vendor = "Winbond",
Antony Rheneus0fbba982011-05-26 14:28:51 +00008624 .name = "W25Q128",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008625 .bustype = BUS_SPI,
Antony Rheneus0fbba982011-05-26 14:28:51 +00008626 .manufacture_id = WINBOND_NEX_ID,
8627 .model_id = WINBOND_NEX_W25Q128,
8628 .total_size = 16384,
8629 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00008630 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42 */
8631 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Antony Rheneus0fbba982011-05-26 14:28:51 +00008632 .tested = TEST_OK_PROBE,
8633 .probe = probe_spi_rdid,
8634 .probe_timing = TIMING_ZERO,
8635 .block_erasers =
8636 {
8637 {
8638 .eraseblocks = { {4 * 1024, 4096} },
8639 .block_erase = spi_block_erase_20,
8640 }, {
8641 .eraseblocks = { {32 * 1024, 512} },
8642 .block_erase = spi_block_erase_52,
8643 }, {
8644 .eraseblocks = { {64 * 1024, 256} },
8645 .block_erase = spi_block_erase_d8,
8646 }, {
8647 .eraseblocks = { {16 * 1024 * 1024, 1} },
8648 .block_erase = spi_block_erase_60,
8649 }, {
8650 .eraseblocks = { {16 * 1024 * 1024, 1} },
8651 .block_erase = spi_block_erase_c7,
8652 }
8653 },
8654 .unlock = spi_disable_blockprotect,
8655 .write = spi_chip_write_256,
8656 .read = spi_chip_read,
8657 },
8658
8659 {
8660 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +00008661 .name = "W25X10",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008662 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008663 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00008664 .model_id = WINBOND_NEX_W25X10,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008665 .total_size = 128,
8666 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +00008667 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008668 .tested = TEST_UNTESTED,
8669 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00008670 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00008671 .block_erasers =
8672 {
8673 {
8674 .eraseblocks = { {4 * 1024, 32} },
8675 .block_erase = spi_block_erase_20,
8676 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00008677 .eraseblocks = { {64 * 1024, 2} },
8678 .block_erase = spi_block_erase_d8,
8679 }, {
8680 .eraseblocks = { {128 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00008681 .block_erase = spi_block_erase_c7,
8682 }
8683 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008684 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00008685 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008686 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008687 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008688 },
8689
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008690 {
8691 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +00008692 .name = "W25X20",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008693 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008694 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00008695 .model_id = WINBOND_NEX_W25X20,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008696 .total_size = 256,
8697 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +00008698 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008699 .tested = TEST_UNTESTED,
8700 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00008701 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00008702 .block_erasers =
8703 {
8704 {
8705 .eraseblocks = { {4 * 1024, 64} },
8706 .block_erase = spi_block_erase_20,
8707 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00008708 .eraseblocks = { {64 * 1024, 4} },
8709 .block_erase = spi_block_erase_d8,
8710 }, {
8711 .eraseblocks = { {256 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00008712 .block_erase = spi_block_erase_c7,
8713 }
8714 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008715 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00008716 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008717 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008718 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008719 },
8720
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008721 {
8722 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +00008723 .name = "W25X40",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008724 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008725 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00008726 .model_id = WINBOND_NEX_W25X40,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008727 .total_size = 512,
8728 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +00008729 .feature_bits = FEATURE_WRSR_WREN,
David Hendricks567b7b82011-05-18 01:31:03 +00008730 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008731 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00008732 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00008733 .block_erasers =
8734 {
8735 {
8736 .eraseblocks = { {4 * 1024, 128} },
8737 .block_erase = spi_block_erase_20,
8738 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00008739 .eraseblocks = { {64 * 1024, 8} },
8740 .block_erase = spi_block_erase_d8,
8741 }, {
8742 .eraseblocks = { {512 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00008743 .block_erase = spi_block_erase_c7,
8744 }
8745 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008746 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00008747 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008748 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008749 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008750 },
8751
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008752 {
8753 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +00008754 .name = "W25X80",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008755 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008756 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00008757 .model_id = WINBOND_NEX_W25X80,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008758 .total_size = 1024,
8759 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +00008760 .feature_bits = FEATURE_WRSR_WREN,
Yul Rottmann6d6ab742011-03-05 16:31:57 +00008761 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008762 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00008763 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00008764 .block_erasers =
8765 {
8766 {
8767 .eraseblocks = { {4 * 1024, 256} },
8768 .block_erase = spi_block_erase_20,
8769 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00008770 .eraseblocks = { {64 * 1024, 16} },
8771 .block_erase = spi_block_erase_d8,
8772 }, {
8773 .eraseblocks = { {1024 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00008774 .block_erase = spi_block_erase_c7,
8775 }
8776 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008777 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00008778 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008779 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008780 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008781 },
8782
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008783 {
8784 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +00008785 .name = "W25X16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008786 .bustype = BUS_SPI,
Hector Martina721ae22009-07-11 19:39:11 +00008787 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00008788 .model_id = WINBOND_NEX_W25X16,
Hector Martina721ae22009-07-11 19:39:11 +00008789 .total_size = 2048,
8790 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +00008791 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner8179be52011-06-04 13:13:34 +00008792 .tested = TEST_OK_PREW,
Hector Martina721ae22009-07-11 19:39:11 +00008793 .probe = probe_spi_rdid,
8794 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00008795 .block_erasers =
8796 {
8797 {
8798 .eraseblocks = { {4 * 1024, 512} },
8799 .block_erase = spi_block_erase_20,
8800 }, {
8801 .eraseblocks = { {32 * 1024, 64} },
8802 .block_erase = spi_block_erase_52,
8803 }, {
8804 .eraseblocks = { {64 * 1024, 32} },
8805 .block_erase = spi_block_erase_d8,
8806 }, {
8807 .eraseblocks = { {2 * 1024 * 1024, 1} },
8808 .block_erase = spi_block_erase_60,
8809 }, {
8810 .eraseblocks = { {2 * 1024 * 1024, 1} },
8811 .block_erase = spi_block_erase_c7,
8812 }
8813 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008814 .unlock = spi_disable_blockprotect,
Hector Martina721ae22009-07-11 19:39:11 +00008815 .write = spi_chip_write_256,
8816 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008817 .voltage = {2700, 3600},
Hector Martina721ae22009-07-11 19:39:11 +00008818 },
8819
8820 {
8821 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +00008822 .name = "W25X32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008823 .bustype = BUS_SPI,
Zheng Bao1db2b752009-11-26 11:05:01 +00008824 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00008825 .model_id = WINBOND_NEX_W25X32,
Zheng Bao1db2b752009-11-26 11:05:01 +00008826 .total_size = 4096,
8827 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +00008828 .feature_bits = FEATURE_WRSR_WREN,
Zheng Bao1db2b752009-11-26 11:05:01 +00008829 .tested = TEST_OK_PROBE,
8830 .probe = probe_spi_rdid,
8831 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00008832 .block_erasers =
8833 {
8834 {
8835 .eraseblocks = { {4 * 1024, 1024} },
8836 .block_erase = spi_block_erase_20,
8837 }, {
8838 .eraseblocks = { {32 * 1024, 128} },
8839 .block_erase = spi_block_erase_52,
8840 }, {
8841 .eraseblocks = { {64 * 1024, 64} },
8842 .block_erase = spi_block_erase_d8,
8843 }, {
8844 .eraseblocks = { {4 * 1024 * 1024, 1} },
8845 .block_erase = spi_block_erase_60,
8846 }, {
8847 .eraseblocks = { {4 * 1024 * 1024, 1} },
8848 .block_erase = spi_block_erase_c7,
8849 }
8850 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008851 .unlock = spi_disable_blockprotect,
Zheng Bao1db2b752009-11-26 11:05:01 +00008852 .write = spi_chip_write_256,
8853 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008854 .voltage = {2700, 3600},
Zheng Bao1db2b752009-11-26 11:05:01 +00008855 },
8856
8857 {
8858 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +00008859 .name = "W25X64",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008860 .bustype = BUS_SPI,
Zheng Bao1db2b752009-11-26 11:05:01 +00008861 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00008862 .model_id = WINBOND_NEX_W25X64,
Zheng Bao1db2b752009-11-26 11:05:01 +00008863 .total_size = 8192,
8864 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +00008865 .feature_bits = FEATURE_WRSR_WREN,
Antony Rheneus0fbba982011-05-26 14:28:51 +00008866 .tested = TEST_OK_PROBE,
Zheng Bao1db2b752009-11-26 11:05:01 +00008867 .probe = probe_spi_rdid,
8868 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00008869 .block_erasers =
8870 {
8871 {
8872 .eraseblocks = { {4 * 1024, 2048} },
8873 .block_erase = spi_block_erase_20,
8874 }, {
8875 .eraseblocks = { {32 * 1024, 256} },
8876 .block_erase = spi_block_erase_52,
8877 }, {
8878 .eraseblocks = { {64 * 1024, 128} },
8879 .block_erase = spi_block_erase_d8,
8880 }, {
8881 .eraseblocks = { {8 * 1024 * 1024, 1} },
8882 .block_erase = spi_block_erase_60,
8883 }, {
8884 .eraseblocks = { {8 * 1024 * 1024, 1} },
8885 .block_erase = spi_block_erase_c7,
8886 }
8887 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008888 .unlock = spi_disable_blockprotect,
Zheng Bao1db2b752009-11-26 11:05:01 +00008889 .write = spi_chip_write_256,
8890 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008891 .voltage = {2700, 3600},
Zheng Bao1db2b752009-11-26 11:05:01 +00008892 },
8893
8894 {
8895 .vendor = "Winbond",
Carl-Daniel Hailfinger2e88a9f2011-07-26 14:18:52 +00008896 .name = "W29C010(M)/W29C011A/W29EE011/W29EE012-old",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008897 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfinger2e88a9f2011-07-26 14:18:52 +00008898 .manufacture_id = WINBOND_ID,
8899 .model_id = WINBOND_W29C010,
8900 .total_size = 128,
8901 .page_size = 128,
8902 .feature_bits = FEATURE_LONG_RESET,
8903 .tested = TEST_OK_PRE,
8904 .probe = probe_w29ee011,
8905 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (w29ee011.c) */
8906 .block_erasers =
8907 {
8908 {
8909 .eraseblocks = { {128 * 1024, 1} },
8910 .block_erase = erase_chip_block_jedec,
8911 }
8912 },
8913 .write = write_jedec,
8914 .read = read_memmapped,
8915 },
8916
8917 {/* W29EE011, W29EE012, W29C010M, W29C011A do not support probe_jedec according to the datasheet, but it works for newer(?) steppings. */
8918 .vendor = "Winbond",
Mattias Mattssona745cf42010-09-14 23:56:56 +00008919 .name = "W29C010(M)/W29C011A/W29EE011/W29EE012",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008920 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008921 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00008922 .model_id = WINBOND_W29C010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008923 .total_size = 128,
8924 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00008925 .feature_bits = FEATURE_LONG_RESET,
David Hendricks567b7b82011-05-18 01:31:03 +00008926 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008927 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00008928 .probe_timing = 10, /* used datasheet for the W29C011A */
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00008929 .block_erasers =
8930 {
8931 {
8932 .eraseblocks = { {128 * 1024, 1} },
8933 .block_erase = erase_chip_block_jedec,
8934 }
8935 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008936 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008937 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00008938 },
8939
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008940 {
8941 .vendor = "Winbond",
Mattias Mattssona745cf42010-09-14 23:56:56 +00008942 .name = "W29C020(C)/W29C022",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008943 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008944 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00008945 .model_id = WINBOND_W29C020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008946 .total_size = 256,
8947 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00008948 .feature_bits = FEATURE_LONG_RESET,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +00008949 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008950 .probe = probe_jedec,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +00008951 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00008952 .block_erasers =
8953 {
8954 {
8955 .eraseblocks = { {256 * 1024, 1} },
8956 .block_erase = erase_chip_block_jedec,
8957 }
8958 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008959 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008960 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008961 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00008962 },
8963
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008964 {
8965 .vendor = "Winbond",
Mattias Mattssona745cf42010-09-14 23:56:56 +00008966 .name = "W29C040/P",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008967 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008968 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00008969 .model_id = WINBOND_W29C040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008970 .total_size = 512,
8971 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00008972 .feature_bits = FEATURE_LONG_RESET,
8973 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008974 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00008975 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00008976 .block_erasers =
8977 {
8978 {
8979 .eraseblocks = { {512 * 1024, 1} },
8980 .block_erase = erase_chip_block_jedec,
8981 }
8982 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008983 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008984 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008985 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00008986 },
8987
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008988 {
8989 .vendor = "Winbond",
Michael Karcher19e0aac2011-03-06 17:58:05 +00008990 .name = "W39L040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008991 .bustype = BUS_PARALLEL,
Michael Karcher19e0aac2011-03-06 17:58:05 +00008992 .manufacture_id = WINBOND_ID,
8993 .model_id = WINBOND_W39L040,
8994 .total_size = 512,
8995 .page_size = 64 * 1024,
8996 .feature_bits = FEATURE_EITHER_RESET,
8997 .tested = TEST_OK_PR,
8998 .probe = probe_jedec,
8999 .probe_timing = 10,
9000 .block_erasers =
9001 {
9002 {
9003 .eraseblocks = { {4 * 1024, 128} },
9004 .block_erase = erase_block_jedec,
9005 }, {
9006 .eraseblocks = { {64 * 1024, 8} },
9007 .block_erase = erase_sector_jedec,
9008 }, {
9009 .eraseblocks = { {512 * 1024, 1} },
9010 .block_erase = erase_chip_block_jedec,
9011 }
9012 },
9013 .printlock = printlock_w39l040,
9014 .write = write_jedec_1,
9015 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00009016 .voltage = {3000, 3600},
Michael Karcher19e0aac2011-03-06 17:58:05 +00009017 },
9018
9019 {
9020 .vendor = "Winbond",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009021 .name = "W39V040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009022 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009023 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00009024 .model_id = WINBOND_W39V040A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009025 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +00009026 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009027 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner716e0982011-07-25 20:38:52 +00009028 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009029 .probe = probe_jedec,
Stefan Tauner716e0982011-07-25 20:38:52 +00009030 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00009031 .block_erasers =
9032 {
9033 {
9034 .eraseblocks = { {64 * 1024, 8} },
9035 .block_erase = erase_sector_jedec,
9036 }, {
9037 .eraseblocks = { {512 * 1024, 1} },
9038 .block_erase = erase_chip_block_jedec,
9039 }
9040 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009041 .printlock = printlock_w39v040a,
Sean Nelson35727f72010-01-28 23:55:12 +00009042 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009043 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009044 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009045 },
9046
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009047 {
9048 .vendor = "Winbond",
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009049 .name = "W39V040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009050 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009051 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00009052 .model_id = WINBOND_W39V040B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009053 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +00009054 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009055 .feature_bits = FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00009056 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009057 .probe = probe_jedec,
Paul Menzel018d4822011-10-21 12:33:07 +00009058 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00009059 .block_erasers =
9060 {
9061 {
9062 .eraseblocks = { {64 * 1024, 8} },
9063 .block_erase = erase_sector_jedec,
9064 }, {
9065 .eraseblocks = { {512 * 1024, 1} },
9066 .block_erase = erase_chip_block_jedec,
9067 }
9068 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009069 .printlock = printlock_w39v040b,
Sean Nelson35727f72010-01-28 23:55:12 +00009070 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009071 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009072 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009073 },
9074
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009075 {
9076 .vendor = "Winbond",
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009077 .name = "W39V040C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009078 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009079 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00009080 .model_id = WINBOND_W39V040C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009081 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +00009082 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009083 .feature_bits = FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00009084 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +00009085 .probe = probe_jedec,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009086 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00009087 .block_erasers =
9088 {
9089 {
9090 .eraseblocks = { {64 * 1024, 8} },
9091 .block_erase = erase_sector_jedec,
9092 }, {
9093 .eraseblocks = { {512 * 1024, 1} },
9094 .block_erase = erase_chip_block_jedec,
9095 }
9096 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00009097 .printlock = printlock_w39v040c,
Sean Nelson35727f72010-01-28 23:55:12 +00009098 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009099 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009100 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009101 },
9102
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009103 {
9104 .vendor = "Winbond",
9105 .name = "W39V040FA",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009106 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009107 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00009108 .model_id = WINBOND_W39V040FA,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009109 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +00009110 .page_size = 64 * 1024,
Michael Karcherc9b63412010-05-30 16:55:18 +00009111 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Antony Rheneus0fbba982011-05-26 14:28:51 +00009112 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009113 .probe = probe_jedec,
Antony Rheneus0fbba982011-05-26 14:28:51 +00009114 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00009115 .block_erasers =
9116 {
9117 {
9118 .eraseblocks = { {4 * 1024, 128} },
9119 .block_erase = erase_block_jedec,
9120 }, {
9121 .eraseblocks = { {64 * 1024, 8} },
9122 .block_erase = erase_sector_jedec,
9123 }, {
9124 .eraseblocks = { {512 * 1024, 1} },
9125 .block_erase = erase_chip_block_jedec,
9126 }
9127 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009128 .printlock = printlock_w39v040fa,
Michael Karcherc9b63412010-05-30 16:55:18 +00009129 .unlock = unlock_sst_fwhub,
Sean Nelson35727f72010-01-28 23:55:12 +00009130 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009131 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009132 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009133 },
9134
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009135 {
9136 .vendor = "Winbond",
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009137 .name = "W39V040FB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009138 .bustype = BUS_FWH,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009139 .manufacture_id = WINBOND_ID,
9140 .model_id = WINBOND_W39V040B,
9141 .total_size = 512,
9142 .page_size = 64 * 1024,
9143 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Idwer Vollering67f28142011-03-06 22:26:23 +00009144 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009145 .probe = probe_jedec,
9146 .probe_timing = 10,
9147 .block_erasers =
9148 {
9149 {
9150 .eraseblocks = { {64 * 1024, 8} },
9151 .block_erase = erase_sector_jedec,
9152 }, {
9153 .eraseblocks = { {512 * 1024, 1} },
9154 .block_erase = erase_chip_block_jedec,
9155 }
9156 },
9157 .printlock = printlock_w39v040fb,
Idwer Volleringecc67072010-12-26 23:55:12 +00009158 .unlock = unlock_w39v040fb,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009159 .write = write_jedec_1,
9160 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00009161 .voltage = {3000, 3600}, /* Also has 12V fast program */
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009162 },
9163
9164 {
9165 .vendor = "Winbond",
9166 .name = "W39V040FC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009167 .bustype = BUS_FWH,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009168 .manufacture_id = WINBOND_ID,
9169 .model_id = WINBOND_W39V040C,
9170 .total_size = 512,
9171 .page_size = 64 * 1024,
9172 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Tauneraf2db612011-12-02 21:48:17 +00009173 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009174 .probe = probe_jedec,
9175 .probe_timing = 10,
9176 .block_erasers =
9177 {
9178 {
9179 .eraseblocks = { {64 * 1024, 8} },
9180 .block_erase = erase_sector_jedec,
9181 }, {
9182 .eraseblocks = { {512 * 1024, 1} },
9183 .block_erase = erase_chip_block_jedec,
9184 }
9185 },
9186 .printlock = printlock_w39v040fc,
9187 .write = write_jedec_1,
9188 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00009189 .voltage = {3000, 3600}, /* Also has 12V fast program */
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009190 },
9191
9192 {
9193 .vendor = "Winbond",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009194 .name = "W39V080A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009195 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009196 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00009197 .model_id = WINBOND_W39V080A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009198 .total_size = 1024,
Sean Nelson72a9a022009-12-22 22:15:33 +00009199 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009200 .feature_bits = FEATURE_EITHER_RESET,
Paul Menzelac427b22012-02-16 21:07:07 +00009201 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009202 .probe = probe_jedec,
Paul Menzelac427b22012-02-16 21:07:07 +00009203 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00009204 .block_erasers =
9205 {
9206 {
9207 .eraseblocks = { {64 * 1024, 16} },
9208 .block_erase = erase_sector_jedec,
9209 }, {
9210 .eraseblocks = { {1024 * 1024, 1} },
9211 .block_erase = erase_chip_block_jedec,
9212 }
9213 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009214 .printlock = printlock_w39v080a,
Sean Nelson35727f72010-01-28 23:55:12 +00009215 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009216 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009217 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009218 },
9219
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009220 {
9221 .vendor = "Winbond",
Mattias Mattssona745cf42010-09-14 23:56:56 +00009222 .name = "W49F002U/N",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009223 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009224 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00009225 .model_id = WINBOND_W49F002U,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009226 .total_size = 256,
9227 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00009228 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner716e0982011-07-25 20:38:52 +00009229 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009230 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00009231 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00009232 .block_erasers =
9233 {
9234 {
9235 .eraseblocks = {
9236 {128 * 1024, 1},
9237 {96 * 1024, 1},
9238 {8 * 1024, 2},
9239 {16 * 1024, 1},
9240 },
9241 .block_erase = erase_sector_jedec,
9242 }, {
9243 .eraseblocks = { {256 * 1024, 1} },
9244 .block_erase = erase_chip_block_jedec,
9245 }
9246 },
Sean Nelson35727f72010-01-28 23:55:12 +00009247 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009248 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009249 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00009250 },
9251
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009252 {
9253 .vendor = "Winbond",
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +00009254 .name = "W49F020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009255 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +00009256 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00009257 .model_id = WINBOND_W49F020,
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +00009258 .total_size = 256,
9259 .page_size = 128,
9260 .feature_bits = FEATURE_EITHER_RESET,
9261 .tested = TEST_OK_PROBE,
9262 .probe = probe_jedec,
9263 .probe_timing = 10,
9264 .block_erasers =
9265 {
9266 {
9267 .eraseblocks = { {256 * 1024, 1} },
9268 .block_erase = erase_chip_block_jedec,
9269 }
9270 },
9271 .write = write_jedec_1,
9272 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009273 .voltage = {4500, 5500},
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +00009274 },
9275
9276 {
9277 .vendor = "Winbond",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009278 .name = "W49V002A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009279 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009280 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00009281 .model_id = WINBOND_W49V002A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009282 .total_size = 256,
9283 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00009284 .feature_bits = FEATURE_EITHER_RESET,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +00009285 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009286 .probe = probe_jedec,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +00009287 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00009288 .block_erasers =
9289 {
9290 {
9291 .eraseblocks = {
9292 {64 * 1024, 3},
9293 {32 * 1024, 1},
9294 {8 * 1024, 2},
9295 {16 * 1024, 1},
9296 },
9297 .block_erase = erase_sector_jedec,
9298 }, {
9299 .eraseblocks = { {256 * 1024, 1} },
9300 .block_erase = erase_chip_block_jedec,
9301 }
9302 },
Sean Nelson35727f72010-01-28 23:55:12 +00009303 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009304 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009305 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009306 },
9307
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009308 {
9309 .vendor = "Winbond",
9310 .name = "W49V002FA",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009311 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009312 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00009313 .model_id = WINBOND_W49V002FA,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009314 .total_size = 256,
9315 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00009316 .feature_bits = FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00009317 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009318 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00009319 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00009320 .block_erasers =
9321 {
9322 {
9323 .eraseblocks = {
9324 {64 * 1024, 3},
9325 {32 * 1024, 1},
9326 {8 * 1024, 2},
9327 {16 * 1024, 1},
9328 },
9329 .block_erase = erase_sector_jedec,
9330 }, {
9331 .eraseblocks = { {256 * 1024, 1} },
9332 .block_erase = erase_chip_block_jedec,
9333 }
9334 },
Sean Nelson35727f72010-01-28 23:55:12 +00009335 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009336 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009337 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009338 },
9339
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009340 {
9341 .vendor = "Winbond",
9342 .name = "W39V080FA",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009343 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009344 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00009345 .model_id = WINBOND_W39V080FA,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009346 .total_size = 1024,
Sean Nelson72a9a022009-12-22 22:15:33 +00009347 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009348 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Tauner716e0982011-07-25 20:38:52 +00009349 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00009350 .probe = probe_jedec,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009351 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00009352 .block_erasers =
9353 {
9354 {
9355 .eraseblocks = { {64 * 1024, 16}, },
9356 .block_erase = erase_sector_jedec,
9357 }, {
9358 .eraseblocks = { {1024 * 1024, 1} },
9359 .block_erase = erase_chip_block_jedec,
9360 }
9361 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009362 .printlock = printlock_w39v080fa,
9363 .unlock = unlock_w39v080fa,
Sean Nelson35727f72010-01-28 23:55:12 +00009364 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009365 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00009366 .voltage = {3000, 3600}, /* Also has 12V fast program */
FENG yu ningff692fb2008-12-08 18:15:10 +00009367 },
9368
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009369 {
9370 .vendor = "Winbond",
9371 .name = "W39V080FA (dual mode)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009372 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009373 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00009374 .model_id = WINBOND_W39V080FA_DM,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009375 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +00009376 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009377 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009378 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00009379 .probe = probe_jedec,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009380 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00009381 .block_erasers =
9382 {
9383 {
9384 .eraseblocks = { {64 * 1024, 8}, },
9385 .block_erase = erase_sector_jedec,
9386 }, {
9387 .eraseblocks = { {512 * 1024, 1} },
9388 .block_erase = erase_chip_block_jedec,
9389 }
9390 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009391 .printlock = printlock_w39v080fa_dual,
Sean Nelson35727f72010-01-28 23:55:12 +00009392 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009393 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00009394 .voltage = {3000, 3600}, /* Also has 12V fast program */
FENG yu ningff692fb2008-12-08 18:15:10 +00009395 },
Stefan Taunerac1b4c82012-02-17 14:51:04 +00009396
9397 {
9398 .vendor = "Unknown",
9399 .name = "SFDP-capable chip",
9400 .bustype = BUS_SPI,
9401 .manufacture_id = GENERIC_MANUF_ID,
9402 .model_id = SFDP_DEVICE_ID,
9403 /* We present our own "report this" text hence we do not
9404 * want the default "This flash part has status UNTESTED..."
9405 * text to be printed. */
9406 .tested = TEST_OK_PREW,
9407 .probe = probe_spi_sfdp,
9408 .unlock = spi_disable_blockprotect, /* is this safe? */
9409 .read = spi_chip_read,
9410 /* FIXME: some vendor extensions define this */
9411 .voltage = {},
9412 /* Everything below will be set by the probing function. */
9413 .write = NULL,
9414 .total_size = 0,
9415 .page_size = 0,
9416 .feature_bits = 0,
9417 .block_erasers = {},
9418 },
FENG yu ningff692fb2008-12-08 18:15:10 +00009419
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009420 {
Carl-Daniel Hailfinger532c7172011-11-04 21:35:26 +00009421 .vendor = "Programmer",
9422 .name = "Opaque flash chip",
9423 .bustype = BUS_PROG,
9424 .manufacture_id = PROGMANUF_ID,
9425 .model_id = PROGDEV_ID,
9426 .total_size = 0,
9427 .page_size = 256,
9428 /* probe is assumed to work, rest will be filled in by probe */
9429 .tested = TEST_OK_PROBE,
9430 .probe = probe_opaque,
9431 /* eraseblock sizes will be set by the probing function */
9432 .block_erasers =
9433 {
9434 {
9435 .block_erase = erase_opaque,
9436 }
9437 },
9438 .write = write_opaque,
9439 .read = read_opaque,
9440 },
9441
9442 {
Daniel Lenskidf90d3a2010-07-22 11:44:38 +00009443 .vendor = "AMIC",
9444 .name = "unknown AMIC SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009445 .bustype = BUS_SPI,
Daniel Lenskidf90d3a2010-07-22 11:44:38 +00009446 .manufacture_id = AMIC_ID,
9447 .model_id = GENERIC_DEVICE_ID,
9448 .total_size = 0,
9449 .page_size = 256,
9450 .tested = TEST_BAD_PREW,
9451 .probe = probe_spi_rdid4,
9452 .probe_timing = TIMING_ZERO,
9453 .write = NULL,
9454 .read = NULL,
9455 },
9456
9457 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009458 .vendor = "Atmel",
9459 .name = "unknown Atmel SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009460 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009461 .manufacture_id = ATMEL_ID,
9462 .model_id = GENERIC_DEVICE_ID,
9463 .total_size = 0,
9464 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +00009465 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009466 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009467 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009468 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009469 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +00009470 },
9471
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009472 {
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00009473 .vendor = "Eon",
9474 .name = "unknown Eon SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009475 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009476 .manufacture_id = EON_ID_NOPREFIX,
9477 .model_id = GENERIC_DEVICE_ID,
9478 .total_size = 0,
9479 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +00009480 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009481 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009482 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009483 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009484 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +00009485 },
9486
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009487 {
9488 .vendor = "Macronix",
9489 .name = "unknown Macronix SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009490 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00009491 .manufacture_id = MACRONIX_ID,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009492 .model_id = GENERIC_DEVICE_ID,
9493 .total_size = 0,
9494 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +00009495 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009496 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009497 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009498 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009499 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +00009500 },
9501
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009502 {
9503 .vendor = "PMC",
9504 .name = "unknown PMC SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009505 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009506 .manufacture_id = PMC_ID,
9507 .model_id = GENERIC_DEVICE_ID,
9508 .total_size = 0,
9509 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +00009510 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009511 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009512 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009513 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009514 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +00009515 },
9516
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009517 {
9518 .vendor = "SST",
9519 .name = "unknown SST SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009520 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009521 .manufacture_id = SST_ID,
9522 .model_id = GENERIC_DEVICE_ID,
9523 .total_size = 0,
9524 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +00009525 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009526 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009527 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009528 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009529 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +00009530 },
9531
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009532 {
9533 .vendor = "ST",
9534 .name = "unknown ST SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009535 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009536 .manufacture_id = ST_ID,
9537 .model_id = GENERIC_DEVICE_ID,
9538 .total_size = 0,
9539 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +00009540 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009541 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009542 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009543 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009544 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +00009545 },
Uwe Hermannfc425e82008-03-16 02:06:25 +00009546
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +00009547 {
Sean Nelson118e1d62009-11-24 02:08:11 +00009548 .vendor = "Sanyo",
9549 .name = "unknown Sanyo SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009550 .bustype = BUS_SPI,
Sean Nelson118e1d62009-11-24 02:08:11 +00009551 .manufacture_id = SANYO_ID,
9552 .model_id = GENERIC_DEVICE_ID,
9553 .total_size = 0,
9554 .page_size = 256,
9555 .tested = TEST_BAD_PREW,
9556 .probe = probe_spi_rdid,
9557 .probe_timing = TIMING_ZERO,
Sean Nelson118e1d62009-11-24 02:08:11 +00009558 .write = NULL,
9559 .read = NULL,
9560 },
9561
9562 {
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +00009563 .vendor = "Generic",
9564 .name = "unknown SPI chip (RDID)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009565 .bustype = BUS_SPI,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +00009566 .manufacture_id = GENERIC_MANUF_ID,
9567 .model_id = GENERIC_DEVICE_ID,
9568 .total_size = 0,
9569 .page_size = 256,
9570 .tested = TEST_BAD_PREW,
9571 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +00009572 .write = NULL,
9573 },
Stefan Tauneraf2db612011-12-02 21:48:17 +00009574
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +00009575 {
9576 .vendor = "Generic",
9577 .name = "unknown SPI chip (REMS)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009578 .bustype = BUS_SPI,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +00009579 .manufacture_id = GENERIC_MANUF_ID,
9580 .model_id = GENERIC_DEVICE_ID,
9581 .total_size = 0,
9582 .page_size = 256,
9583 .tested = TEST_BAD_PREW,
9584 .probe = probe_spi_rems,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +00009585 .write = NULL,
9586 },
9587
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009588 { NULL }
Stephan Guilloux72cf5652009-04-21 01:46:07 +00009589};