blob: c794afc8fd92818ad2dc47e167d4bc16b066807b [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,
Stefan Taunerd94d25d2012-07-28 03:17:15 +00001136 .tested = TEST_OK_PREW,
Dan Lenski11617122010-07-29 15:00:40 +00001137 .probe = probe_spi_rdid,
1138 .probe_timing = TIMING_ZERO,
1139 .block_erasers =
1140 {
1141 {
1142 .eraseblocks = { { 4 * 1024, 1024 } },
1143 .block_erase = spi_block_erase_20,
1144 }, {
1145 .eraseblocks = { { 64 * 1024, 64 } },
1146 .block_erase = spi_block_erase_52,
1147 }, {
1148 .eraseblocks = { { 64 * 1024, 64 } },
1149 .block_erase = spi_block_erase_d8,
1150 }, {
1151 .eraseblocks = { { 4096 * 1024, 1 } },
1152 .block_erase = spi_block_erase_60,
1153 }, {
1154 .eraseblocks = { { 4096 * 1024, 1 } },
1155 .block_erase = spi_block_erase_c7,
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,
Stefan Taunerd94d25d2012-07-28 03:17:15 +00001562 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001563 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001564 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001565 .block_erasers =
1566 {
1567 {
1568 .eraseblocks = { {4 * 1024, 1024} },
1569 .block_erase = spi_block_erase_20,
1570 }, {
1571 .eraseblocks = { {32 * 1024, 128} },
1572 .block_erase = spi_block_erase_52,
1573 }, {
1574 .eraseblocks = { {64 * 1024, 64} },
1575 .block_erase = spi_block_erase_d8,
1576 }, {
1577 .eraseblocks = { {4 * 1024 * 1024, 1} },
1578 .block_erase = spi_block_erase_60,
1579 }, {
1580 .eraseblocks = { {4 * 1024 * 1024, 1} },
1581 .block_erase = spi_block_erase_c7,
1582 }
1583 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001584 .printlock = spi_prettyprint_status_register_at25df_sec,
1585 .unlock = spi_disable_blockprotect_at25df_sec,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001586 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001587 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001588 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001589 },
1590
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001591 {
1592 .vendor = "Atmel",
Paul Menzelac427b22012-02-16 21:07:07 +00001593 .name = "AT25DF641(A)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001594 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001595 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001596 .model_id = ATMEL_AT25DF641,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001597 .total_size = 8192,
1598 .page_size = 256,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001599 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001600 .tested = TEST_UNTESTED,
1601 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001602 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001603 .block_erasers =
1604 {
1605 {
1606 .eraseblocks = { {4 * 1024, 2048} },
1607 .block_erase = spi_block_erase_20,
1608 }, {
1609 .eraseblocks = { {32 * 1024, 256} },
1610 .block_erase = spi_block_erase_52,
1611 }, {
1612 .eraseblocks = { {64 * 1024, 128} },
1613 .block_erase = spi_block_erase_d8,
1614 }, {
1615 .eraseblocks = { {8 * 1024 * 1024, 1} },
1616 .block_erase = spi_block_erase_60,
1617 }, {
1618 .eraseblocks = { {8 * 1024 * 1024, 1} },
1619 .block_erase = spi_block_erase_c7,
1620 }
1621 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001622 .printlock = spi_prettyprint_status_register_at25df_sec,
1623 .unlock = spi_disable_blockprotect_at25df_sec,
1624 .write = spi_chip_write_256,
1625 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001626 .voltage = {2700, 3600},
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001627 },
1628
1629 {
1630 .vendor = "Atmel",
1631 .name = "AT25DQ161",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001632 .bustype = BUS_SPI,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001633 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001634 .model_id = ATMEL_AT25DQ161,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001635 .total_size = 2048,
1636 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00001637 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
1638 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001639 .tested = TEST_UNTESTED,
1640 .probe = probe_spi_rdid,
1641 .probe_timing = TIMING_ZERO,
1642 .block_erasers =
1643 {
1644 {
1645 .eraseblocks = { {4 * 1024, 512} },
1646 .block_erase = spi_block_erase_20,
1647 }, {
1648 .eraseblocks = { {32 * 1024, 64} },
1649 .block_erase = spi_block_erase_52,
1650 }, {
1651 .eraseblocks = { {64 * 1024, 32} },
1652 .block_erase = spi_block_erase_d8,
1653 }, {
1654 .eraseblocks = { {2 * 1024 * 1024, 1} },
1655 .block_erase = spi_block_erase_60,
1656 }, {
1657 .eraseblocks = { {2 * 1024 * 1024, 1} },
1658 .block_erase = spi_block_erase_c7,
1659 }
1660 },
1661 .printlock = spi_prettyprint_status_register_at25df_sec,
1662 .unlock = spi_disable_blockprotect_at25df_sec,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001663 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001664 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001665 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001666 },
1667
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001668 {
1669 .vendor = "Atmel",
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,
Stefan Tauner3c0fcd02012-09-21 12:46:56 +00001698 }, {
1699 .eraseblocks = { {64 * 1024, 1} },
1700 .block_erase = spi_block_erase_62,
Sean Nelson89187292009-12-23 12:02:55 +00001701 }
1702 },
Stefan Tauner7bf4ed92012-08-26 21:04:27 +00001703 .printlock = spi_prettyprint_status_register_at25f512b,
1704 .unlock = spi_disable_blockprotect_at25f512b,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001705 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001706 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001707 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001708 },
1709
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001710 {
1711 .vendor = "Atmel",
1712 .name = "AT25FS010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001713 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001714 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001715 .model_id = ATMEL_AT25FS010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001716 .total_size = 128,
1717 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00001718 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001719 .tested = TEST_UNTESTED,
1720 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001721 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001722 .block_erasers =
1723 {
1724 {
1725 .eraseblocks = { {4 * 1024, 32} },
1726 .block_erase = spi_block_erase_20,
1727 }, {
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001728 .eraseblocks = { {4 * 1024, 32} },
1729 .block_erase = spi_block_erase_d7,
1730 }, {
Sean Nelson89187292009-12-23 12:02:55 +00001731 .eraseblocks = { {32 * 1024, 4} },
1732 .block_erase = spi_block_erase_52,
1733 }, {
1734 .eraseblocks = { {32 * 1024, 4} },
1735 .block_erase = spi_block_erase_d8,
1736 }, {
1737 .eraseblocks = { {128 * 1024, 1} },
1738 .block_erase = spi_block_erase_60,
1739 }, {
1740 .eraseblocks = { {128 * 1024, 1} },
1741 .block_erase = spi_block_erase_c7,
1742 }
1743 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001744 .printlock = spi_prettyprint_status_register_at25fs010,
1745 .unlock = spi_disable_blockprotect_at25fs010,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001746 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001747 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001748 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001749 },
1750
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001751 {
1752 .vendor = "Atmel",
1753 .name = "AT25FS040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001754 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001755 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001756 .model_id = ATMEL_AT25FS040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001757 .total_size = 512,
1758 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00001759 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001760 .tested = TEST_UNTESTED,
1761 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001762 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001763 .block_erasers =
1764 {
1765 {
1766 .eraseblocks = { {4 * 1024, 128} },
1767 .block_erase = spi_block_erase_20,
1768 }, {
1769 .eraseblocks = { {64 * 1024, 8} },
1770 .block_erase = spi_block_erase_52,
1771 }, {
1772 .eraseblocks = { {64 * 1024, 8} },
1773 .block_erase = spi_block_erase_d8,
1774 }, {
1775 .eraseblocks = { {512 * 1024, 1} },
1776 .block_erase = spi_block_erase_60,
1777 }, {
1778 .eraseblocks = { {512 * 1024, 1} },
1779 .block_erase = spi_block_erase_c7,
1780 }
1781 },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +00001782 .printlock = spi_prettyprint_status_register_at25fs040,
1783 .unlock = spi_disable_blockprotect_at25fs040,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001784 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001785 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001786 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001787 },
1788
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001789 {
1790 .vendor = "Atmel",
1791 .name = "AT26DF041",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001792 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001793 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001794 .model_id = ATMEL_AT26DF041,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001795 .total_size = 512,
1796 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00001797 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001798 .tested = TEST_UNTESTED,
1799 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001800 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001801 .block_erasers =
1802 {
1803 {
1804 .eraseblocks = { {4 * 1024, 128} },
1805 .block_erase = spi_block_erase_20,
1806 }
1807 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001808 .write = NULL /* Incompatible Page write */,
1809 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00001810 .voltage = {2700, 3600}, /* 3.0-3.6V for higher speed, 2.7-3.6V normal */
FENG yu ningff692fb2008-12-08 18:15:10 +00001811 },
1812
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001813 {
1814 .vendor = "Atmel",
1815 .name = "AT26DF081A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001816 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001817 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001818 .model_id = ATMEL_AT26DF081A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001819 .total_size = 1024,
1820 .page_size = 256,
Mathias Krause2c3afa32011-01-17 07:45:54 +00001821 .feature_bits = FEATURE_WRSR_WREN,
1822 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001823 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001824 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001825 .block_erasers =
1826 {
1827 {
1828 .eraseblocks = { {4 * 1024, 256} },
1829 .block_erase = spi_block_erase_20,
1830 }, {
1831 .eraseblocks = { {32 * 1024, 32} },
1832 .block_erase = spi_block_erase_52,
1833 }, {
1834 .eraseblocks = { {64 * 1024, 16} },
1835 .block_erase = spi_block_erase_d8,
1836 }, {
1837 .eraseblocks = { {1024 * 1024, 1} },
1838 .block_erase = spi_block_erase_60,
1839 }, {
1840 .eraseblocks = { {1024 * 1024, 1} },
1841 .block_erase = spi_block_erase_c7,
1842 }
1843 },
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +00001844 .printlock = spi_prettyprint_status_register_atmel_at26df081a,
Mathias Krause2c3afa32011-01-17 07:45:54 +00001845 .unlock = spi_disable_blockprotect_at25df,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001846 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001847 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001848 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001849 },
1850
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001851 {
1852 .vendor = "Atmel",
1853 .name = "AT26DF161",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001854 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001855 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001856 .model_id = ATMEL_AT26DF161,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001857 .total_size = 2048,
1858 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00001859 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerd94d25d2012-07-28 03:17:15 +00001860 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001861 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001862 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001863 .block_erasers =
1864 {
1865 {
1866 .eraseblocks = { {4 * 1024, 512} },
1867 .block_erase = spi_block_erase_20,
1868 }, {
1869 .eraseblocks = { {32 * 1024, 64} },
1870 .block_erase = spi_block_erase_52,
1871 }, {
1872 .eraseblocks = { {64 * 1024, 32} },
1873 .block_erase = spi_block_erase_d8,
1874 }, {
1875 .eraseblocks = { {2 * 1024 * 1024, 1} },
1876 .block_erase = spi_block_erase_60,
1877 }, {
1878 .eraseblocks = { {2 * 1024 * 1024, 1} },
1879 .block_erase = spi_block_erase_c7,
1880 }
1881 },
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +00001882 .printlock = spi_prettyprint_status_register_at25df,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00001883 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001884 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001885 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001886 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001887 },
1888
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001889 {
1890 .vendor = "Atmel",
1891 .name = "AT26DF161A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001892 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001893 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001894 .model_id = ATMEL_AT26DF161A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001895 .total_size = 2048,
1896 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00001897 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001898 .tested = TEST_UNTESTED,
1899 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001900 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001901 .block_erasers =
1902 {
1903 {
1904 .eraseblocks = { {4 * 1024, 512} },
1905 .block_erase = spi_block_erase_20,
1906 }, {
1907 .eraseblocks = { {32 * 1024, 64} },
1908 .block_erase = spi_block_erase_52,
1909 }, {
1910 .eraseblocks = { {64 * 1024, 32} },
1911 .block_erase = spi_block_erase_d8,
1912 }, {
1913 .eraseblocks = { {2 * 1024 * 1024, 1} },
1914 .block_erase = spi_block_erase_60,
1915 }, {
1916 .eraseblocks = { {2 * 1024 * 1024, 1} },
1917 .block_erase = spi_block_erase_c7,
1918 }
1919 },
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +00001920 .printlock = spi_prettyprint_status_register_atmel_at26df081a,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00001921 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001922 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001923 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001924 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001925 },
1926
1927 /*The AT26DF321 has the same ID as the AT25DF321. */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001928 /*{
1929 .vendor = "Atmel",
1930 .name = "AT26DF321",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001931 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001932 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001933 .model_id = ATMEL_AT26DF321,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001934 .total_size = 4096,
1935 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00001936 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001937 .tested = TEST_UNTESTED,
1938 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001939 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +00001940 .printlock = spi_prettyprint_status_register_atmel_at26df081a,
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00001941 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001942 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001943 .read = spi_chip_read,
1944 },*/
FENG yu ningff692fb2008-12-08 18:15:10 +00001945
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001946 {
1947 .vendor = "Atmel",
1948 .name = "AT26F004",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001949 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001950 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001951 .model_id = ATMEL_AT26F004,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001952 .total_size = 512,
1953 .page_size = 256,
1954 .tested = TEST_UNTESTED,
Steven Zakulec3603a282012-05-02 20:07:57 +00001955 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001956 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00001957 .probe_timing = TIMING_ZERO,
Sean Nelson89187292009-12-23 12:02:55 +00001958 .block_erasers =
1959 {
1960 {
1961 .eraseblocks = { {4 * 1024, 128} },
1962 .block_erase = spi_block_erase_20,
1963 }, {
1964 .eraseblocks = { {32 * 1024, 16} },
1965 .block_erase = spi_block_erase_52,
1966 }, {
1967 .eraseblocks = { {64 * 1024, 8} },
1968 .block_erase = spi_block_erase_d8,
1969 }, {
1970 .eraseblocks = { {512 * 1024, 1} },
1971 .block_erase = spi_block_erase_60,
1972 }, {
1973 .eraseblocks = { {512 * 1024, 1} },
1974 .block_erase = spi_block_erase_c7,
1975 }
1976 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001977 .write = NULL /* Incompatible Page write */,
1978 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00001979 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00001980 },
1981
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00001982 {
1983 .vendor = "Atmel",
Maciej Pijankabc2bbd22009-06-02 16:45:59 +00001984 .name = "AT29C512",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001985 .bustype = BUS_PARALLEL,
Maciej Pijankabc2bbd22009-06-02 16:45:59 +00001986 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00001987 .model_id = ATMEL_AT29C512,
Maciej Pijankabc2bbd22009-06-02 16:45:59 +00001988 .total_size = 64,
1989 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00001990 .feature_bits = FEATURE_LONG_RESET,
Paul Menzelac427b22012-02-16 21:07:07 +00001991 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00001992 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00001993 .probe_timing = 10000, /* 10mS, Enter=Exec */
Sean Nelson89187292009-12-23 12:02:55 +00001994 .block_erasers =
1995 {
1996 {
1997 .eraseblocks = { {64 * 1024, 1} },
1998 .block_erase = erase_chip_block_jedec,
1999 }
2000 },
Maciej Pijankabc2bbd22009-06-02 16:45:59 +00002001 .write = write_jedec,
2002 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002003 .voltage = {4500, 5500},
Maciej Pijankabc2bbd22009-06-02 16:45:59 +00002004 },
2005
2006 {
2007 .vendor = "Atmel",
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002008 .name = "AT29C010A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002009 .bustype = BUS_PARALLEL,
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002010 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002011 .model_id = ATMEL_AT29C010A,
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002012 .total_size = 128,
2013 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00002014 .feature_bits = FEATURE_LONG_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00002015 .tested = TEST_OK_PRE,
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002016 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00002017 .probe_timing = 10000, /* 10mS, Enter=Exec */
Sean Nelson89187292009-12-23 12:02:55 +00002018 .block_erasers =
2019 {
2020 {
2021 .eraseblocks = { {128 * 1024, 1} },
2022 .block_erase = erase_chip_block_jedec,
2023 }
2024 },
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002025 .write = write_jedec, /* FIXME */
2026 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002027 .voltage = {4500, 5500},
Uwe Hermann8403ccb2009-05-16 21:39:19 +00002028 },
2029
2030 {
2031 .vendor = "Atmel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002032 .name = "AT29C020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002033 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002034 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002035 .model_id = ATMEL_AT29C020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002036 .total_size = 256,
2037 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00002038 .feature_bits = FEATURE_LONG_RESET,
2039 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002040 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00002041 .probe_timing = 10000, /* 10ms */
Sean Nelson89187292009-12-23 12:02:55 +00002042 .block_erasers =
2043 {
2044 {
2045 .eraseblocks = { {256 * 1024, 1} },
2046 .block_erase = erase_chip_block_jedec,
2047 }
2048 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002049 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002050 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002051 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00002052 },
2053
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002054 {
2055 .vendor = "Atmel",
2056 .name = "AT29C040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002057 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002058 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002059 .model_id = ATMEL_AT29C040A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002060 .total_size = 512,
2061 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00002062 .feature_bits = FEATURE_LONG_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002063 .tested = TEST_UNTESTED,
2064 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00002065 .probe_timing = 10000, /* 10 ms */
Sean Nelson89187292009-12-23 12:02:55 +00002066 .block_erasers =
2067 {
2068 {
2069 .eraseblocks = { {512 * 1024, 1} },
2070 .block_erase = erase_chip_block_jedec,
2071 }
2072 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002073 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002074 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002075 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00002076 },
2077
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002078 {
2079 .vendor = "Atmel",
2080 .name = "AT45CS1282",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002081 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002082 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002083 .model_id = ATMEL_AT45CS1282,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002084 .total_size = 16896 /* No power of two sizes */,
2085 .page_size = 1056 /* No power of two sizes */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002086 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002087 .tested = TEST_BAD_READ,
2088 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002089 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002090 .write = NULL /* Incompatible Page write */,
2091 .read = NULL /* Incompatible read */,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002092 .voltage = {2700, 3600},
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002093 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002094
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002095 {
2096 .vendor = "Atmel",
2097 .name = "AT45DB011D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002098 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002099 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002100 .model_id = ATMEL_AT45DB011D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002101 .total_size = 128 /* Size can only be determined from status register */,
2102 .page_size = 256 /* Size can only be determined from status register */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002103 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002104 .tested = TEST_BAD_READ,
2105 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002106 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002107 .write = NULL,
2108 .read = NULL,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002109 .voltage = {2700, 3600},
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002110 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002111
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002112 {
2113 .vendor = "Atmel",
2114 .name = "AT45DB021D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002115 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002116 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002117 .model_id = ATMEL_AT45DB021D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002118 .total_size = 256 /* Size can only be determined from status register */,
2119 .page_size = 256 /* Size can only be determined from status register */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002120 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002121 .tested = TEST_BAD_READ,
2122 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002123 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002124 .write = NULL,
2125 .read = NULL,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002126 .voltage = {2700, 3600},
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002127 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002128
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002129 {
2130 .vendor = "Atmel",
2131 .name = "AT45DB041D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002132 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002133 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002134 .model_id = ATMEL_AT45DB041D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002135 .total_size = 512 /* Size can only be determined from status register */,
2136 .page_size = 256 /* Size can only be determined from status register */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002137 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002138 .tested = TEST_BAD_READ,
2139 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002140 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002141 .write = NULL,
2142 .read = NULL,
Steven Zakulec7d257b42011-07-19 08:50:18 +00002143 .voltage = {2500, 3600}, /* 2.5-3.6V & 2.7-3.6V models available */
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002144 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002145
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002146 {
2147 .vendor = "Atmel",
2148 .name = "AT45DB081D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002149 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002150 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002151 .model_id = ATMEL_AT45DB081D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002152 .total_size = 1024 /* Size can only be determined from status register */,
2153 .page_size = 256 /* Size can only be determined from status register */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002154 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002155 .tested = TEST_BAD_READ,
2156 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002157 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002158 .write = NULL,
2159 .read = NULL,
Steven Zakulec7d257b42011-07-19 08:50:18 +00002160 .voltage = {2700, 3600}, /* 2.5-3.6V & 2.7-3.6V models available */
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002161 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002162
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002163 {
2164 .vendor = "Atmel",
2165 .name = "AT45DB161D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002166 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002167 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002168 .model_id = ATMEL_AT45DB161D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002169 .total_size = 2048 /* Size can only be determined from status register */,
2170 .page_size = 512 /* Size can only be determined from status register */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002171 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002172 .tested = TEST_BAD_READ,
2173 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002174 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002175 .write = NULL,
2176 .read = NULL,
Steven Zakulec7d257b42011-07-19 08:50:18 +00002177 .voltage = {2700, 3600}, /* 2.5-3.6V & 2.7-3.6V models available */
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002178 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002179
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002180 {
2181 .vendor = "Atmel",
2182 .name = "AT45DB321C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002183 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002184 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002185 .model_id = ATMEL_AT45DB321C,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002186 .total_size = 4224 /* No power of two sizes */,
2187 .page_size = 528 /* No power of two sizes */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002188 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002189 .tested = TEST_BAD_READ,
2190 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002191 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002192 .write = NULL,
2193 .read = NULL /* Incompatible read */,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002194 .voltage = {2700, 3600},
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002195 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002196
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002197 {
2198 .vendor = "Atmel",
2199 .name = "AT45DB321D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002200 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002201 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002202 .model_id = ATMEL_AT45DB321D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002203 .total_size = 4096 /* Size can only be determined from status register */,
2204 .page_size = 512 /* Size can only be determined from status register */,
Daniel Lenski65922a32012-02-15 23:40:23 +00002205 /* OTP: 128B total, 64B pre-programmed; read 0x77; write 0x9B */
Steven Zakulec3603a282012-05-02 20:07:57 +00002206 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Daniel Lenski65922a32012-02-15 23:40:23 +00002207 .feature_bits = FEATURE_OTP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002208 .tested = TEST_BAD_READ,
2209 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002210 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002211 .write = NULL,
2212 .read = NULL,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002213 .voltage = {2700, 3600},
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002214 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002215
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002216 {
2217 .vendor = "Atmel",
2218 .name = "AT45DB642D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002219 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002220 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002221 .model_id = ATMEL_AT45DB642D,
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002222 .total_size = 8192 /* Size can only be determined from status register */,
2223 .page_size = 1024 /* Size can only be determined from status register */,
Steven Zakulec3603a282012-05-02 20:07:57 +00002224 /* does not support EWSR nor WREN and has no writable status register bits whatsoever */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002225 .tested = TEST_BAD_READ,
2226 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00002227 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002228 .write = NULL,
2229 .read = NULL,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002230 .voltage = {2700, 3600},
Carl-Daniel Hailfinger66afb362009-03-19 12:18:13 +00002231 },
FENG yu ningff692fb2008-12-08 18:15:10 +00002232
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002233 {
2234 .vendor = "Atmel",
Uwe Hermannb4dcb712009-05-13 11:36:06 +00002235 .name = "AT49BV512",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002236 .bustype = BUS_PARALLEL,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00002237 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002238 .model_id = ATMEL_AT49BV512,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00002239 .total_size = 64,
2240 .page_size = 64,
Sean Nelson35727f72010-01-28 23:55:12 +00002241 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner8179be52011-06-04 13:13:34 +00002242 .tested = TEST_OK_PREW,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00002243 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002244 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson89187292009-12-23 12:02:55 +00002245 .block_erasers =
2246 {
2247 {
2248 .eraseblocks = { {64 * 1024, 1} },
2249 .block_erase = erase_chip_block_jedec,
2250 }
2251 },
Sean Nelson35727f72010-01-28 23:55:12 +00002252 .write = write_jedec_1,
Uwe Hermannb4dcb712009-05-13 11:36:06 +00002253 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002254 .voltage = {2700, 3600},
Uwe Hermannb4dcb712009-05-13 11:36:06 +00002255 },
2256
2257 {
2258 .vendor = "Atmel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002259 .name = "AT49F002(N)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002260 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002261 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002262 .model_id = ATMEL_AT49F002N,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002263 .total_size = 256,
2264 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00002265 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002266 .tested = TEST_UNTESTED,
2267 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002268 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson89187292009-12-23 12:02:55 +00002269 .block_erasers =
2270 {
2271 {
2272 .eraseblocks = {
2273 {16 * 1024, 1},
2274 {8 * 1024, 2},
2275 {96 * 1024, 1},
2276 {128 * 1024, 1},
2277 },
2278 .block_erase = erase_sector_jedec,
2279 }, {
2280 .eraseblocks = { {256 * 1024, 1} },
2281 .block_erase = erase_chip_block_jedec,
2282 }
2283 },
Sean Nelson35727f72010-01-28 23:55:12 +00002284 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002285 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002286 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00002287 },
2288
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002289 {
2290 .vendor = "Atmel",
2291 .name = "AT49F002(N)T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002292 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002293 .manufacture_id = ATMEL_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002294 .model_id = ATMEL_AT49F002NT,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002295 .total_size = 256,
2296 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00002297 .feature_bits = FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00002298 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002299 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002300 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson89187292009-12-23 12:02:55 +00002301 .block_erasers =
2302 {
2303 {
2304 .eraseblocks = {
2305 {128 * 1024, 1},
2306 {96 * 1024, 1},
2307 {8 * 1024, 2},
2308 {16 * 1024, 1},
2309 },
2310 .block_erase = erase_sector_jedec,
2311 }, {
2312 .eraseblocks = { {256 * 1024, 1} },
2313 .block_erase = erase_chip_block_jedec,
2314 }
2315 },
Sean Nelson35727f72010-01-28 23:55:12 +00002316 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002317 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002318 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00002319 },
2320
Daniel Lenskidf90d3a2010-07-22 11:44:38 +00002321 {
Uwe Hermannc74e9772011-09-08 19:55:18 +00002322 .vendor = "Atmel",
Andrew Morgan8dd97f92012-08-13 23:43:46 +00002323 .name = "AT49(H)F010",
2324 .bustype = BUS_PARALLEL,
2325 .manufacture_id = ATMEL_ID,
2326 .model_id = ATMEL_AT49F010,
2327 .total_size = 128,
2328 .page_size = 0, /* unused */
2329 .feature_bits = FEATURE_EITHER_RESET,
2330 .tested = TEST_OK_PREW,
2331 .probe = probe_jedec,
2332 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
2333 .block_erasers =
2334 {
2335 {
2336 .eraseblocks = { {128 * 1024, 1} },
2337 .block_erase = erase_chip_block_jedec,
2338 }
2339 },
2340 .printlock = printlock_at49f,
2341 .write = write_jedec_1,
2342 .read = read_memmapped,
2343 .voltage = {4500, 5500},
2344 },
2345
2346 {
2347 .vendor = "Atmel",
David Borgf5a30f62012-04-15 13:16:32 +00002348 .name = "AT49F020",
2349 .bustype = BUS_PARALLEL,
2350 .manufacture_id = ATMEL_ID,
2351 .model_id = ATMEL_AT49F020,
2352 .total_size = 256,
Andrew Morgan8dd97f92012-08-13 23:43:46 +00002353 .page_size = 0, /* unused */
David Borgf5a30f62012-04-15 13:16:32 +00002354 .feature_bits = FEATURE_EITHER_RESET,
2355 .tested = TEST_OK_PRE,
2356 .probe = probe_jedec,
2357 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
2358 .block_erasers =
2359 {
2360 {
2361 .eraseblocks = { {256 * 1024, 1} },
2362 .block_erase = erase_chip_block_jedec,
2363 }
2364 /* Chip features an optional permanent write protection
2365 * of the first 8 kB. The erase function is the same as
2366 * above, but 00000H to 01FFFH will not be erased.
2367 * FIXME: add another eraser when partial erasers are
2368 * supported.
2369 */
2370 },
2371 .printlock = printlock_at49f,
2372 .write = write_jedec_1,
2373 .read = read_memmapped,
2374 .voltage = {4500, 5500},
2375 },
2376
2377 {
2378 .vendor = "Atmel",
2379 .name = "AT49F040",
2380 .bustype = BUS_PARALLEL,
2381 .manufacture_id = ATMEL_ID,
2382 .model_id = ATMEL_AT49F040,
2383 .total_size = 512,
Andrew Morgan8dd97f92012-08-13 23:43:46 +00002384 .page_size = 0, /* unused */
David Borgf5a30f62012-04-15 13:16:32 +00002385 .feature_bits = FEATURE_EITHER_RESET,
2386 .tested = TEST_UNTESTED,
2387 .probe = probe_jedec,
2388 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
2389 .block_erasers =
2390 {
2391 {
2392 .eraseblocks = { {512 * 1024, 1} },
2393 .block_erase = erase_chip_block_jedec,
2394 }
2395 /* Chip features an optional permanent write protection
2396 * of the first 16 kB. The erase function is the same as
2397 * above, but 00000H to 03FFFH will not be erased.
2398 * FIXME: add another eraser when partial erasers are
2399 * supported.
2400 */
2401 },
2402 .printlock = printlock_at49f,
2403 .write = write_jedec_1,
2404 .read = read_memmapped,
2405 .voltage = {4500, 5500},
2406 },
2407
2408 {
2409 .vendor = "Atmel",
Andrew Morgan8dd97f92012-08-13 23:43:46 +00002410 .name = "AT49F080",
2411 .bustype = BUS_PARALLEL,
2412 .manufacture_id = ATMEL_ID,
2413 .model_id = ATMEL_AT49F080,
2414 .total_size = 1024,
2415 .page_size = 0, /* unused */
2416 .feature_bits = FEATURE_EITHER_RESET,
2417 .tested = TEST_UNTESTED,
2418 .probe = probe_jedec,
2419 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
2420 .block_erasers =
2421 {
2422 {
2423 .eraseblocks = { {1024 * 1024, 1} },
2424 .block_erase = erase_chip_block_jedec,
2425 }
2426 /* Chip features an optional permanent write protection
2427 * of the first 16 kB. The erase function is the same as
2428 * above, but 00000H to 03FFFH will not be erased.
2429 * FIXME: add another eraser when partial erasers are
2430 * supported.
2431 */
2432 },
2433 .printlock = printlock_at49f,
2434 .write = write_jedec_1,
2435 .read = read_memmapped,
2436 .voltage = {4500, 5500},
2437 },
2438
2439 {
2440 /* 'top' version of AT49F080. equal in all aspects but the boot block address */
2441 .vendor = "Atmel",
2442 .name = "AT49F080T",
2443 .bustype = BUS_PARALLEL,
2444 .manufacture_id = ATMEL_ID,
2445 .model_id = ATMEL_AT49F080T,
2446 .total_size = 1024,
2447 .page_size = 0, /* unused */
2448 .feature_bits = FEATURE_EITHER_RESET,
2449 .tested = TEST_UNTESTED,
2450 .probe = probe_jedec,
2451 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
2452 .block_erasers =
2453 {
2454 {
2455 .eraseblocks = { {1024 * 1024, 1} },
2456 .block_erase = erase_chip_block_jedec,
2457 }
2458 /* Chip features an optional permanent write protection
2459 * of the first 16 kB. The erase function is the same as
2460 * above, but FC000H to FFFFFH will not be erased.
2461 * FIXME: add another eraser when partial erasers are
2462 * supported.
2463 */
2464 },
2465 .printlock = printlock_at49f,
2466 .write = write_jedec_1,
2467 .read = read_memmapped,
2468 .voltage = {4500, 5500},
2469 },
2470
2471 {
2472 .vendor = "Atmel",
Uwe Hermannc74e9772011-09-08 19:55:18 +00002473 .name = "AT49LH002",
2474 .bustype = BUS_LPC | BUS_FWH, /* A/A Mux */
2475 .manufacture_id = ATMEL_ID,
2476 .model_id = ATMEL_AT49LH002,
2477 .total_size = 256,
2478 .page_size = 0, /* unused */
2479 .feature_bits = FEATURE_REGISTERMAP, /* TODO: LPC OK too? */
2480 .tested = TEST_UNTESTED,
2481 .probe = probe_82802ab, /* TODO: 0xff cmd not documented? */
2482 .probe_timing = TIMING_FIXME,
2483 .block_erasers =
2484 {
2485 {
2486 .eraseblocks = {
2487 {64 * 1024, 3},
2488 {32 * 1024, 1},
2489 {8 * 1024, 2},
2490 {16 * 1024, 1},
2491 },
2492 .block_erase = erase_block_82802ab,
2493 }, {
2494 .eraseblocks = {
2495 {64 * 1024, 4},
2496 },
2497 .block_erase = NULL, /* TODO: Implement. */
2498 },
2499 },
2500 .printlock = NULL, /* TODO */
2501 .unlock = NULL, /* unlock_82802ab() not correct(?) */
2502 .write = write_82802ab,
2503 .read = read_memmapped,
2504 .voltage = {3000, 3600},
2505 },
2506
2507 {
Andrew Morganca081462011-09-13 22:05:44 +00002508 .vendor = "Catalyst",
2509 .name = "CAT28F512",
2510 .bustype = BUS_PARALLEL,
2511 .manufacture_id = CATALYST_ID,
2512 .model_id = CATALYST_CAT28F512,
2513 .total_size = 64,
2514 .page_size = 0, /* unused */
2515 .feature_bits = 0,
2516 .tested = TEST_OK_PR,
2517 .probe = probe_jedec, /* FIXME! */
2518 .probe_timing = TIMING_ZERO,
2519 .block_erasers =
2520 {
2521 {
2522 .eraseblocks = { {64 * 1024, 1} },
2523 .block_erase = NULL, /* TODO */
2524 },
2525 },
2526 .write = NULL, /* TODO */
2527 .read = read_memmapped,
2528 .voltage = {4500, 5500},
2529 },
2530
2531 {
Joshua Roysf1324e02010-09-16 00:51:51 +00002532 .vendor = "Bright",
2533 .name = "BM29F040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002534 .bustype = BUS_PARALLEL,
Joshua Roysf1324e02010-09-16 00:51:51 +00002535 .manufacture_id = BRIGHT_ID,
2536 .model_id = BRIGHT_BM29F040,
2537 .total_size = 512,
2538 .page_size = 64 * 1024,
2539 .feature_bits = FEATURE_EITHER_RESET,
2540 .tested = TEST_OK_PR,
2541 .probe = probe_jedec,
2542 .probe_timing = TIMING_ZERO,
2543 .block_erasers =
2544 {
2545 {
2546 .eraseblocks = { {64 * 1024, 8} },
2547 .block_erase = erase_sector_jedec,
2548 }, {
2549 .eraseblocks = { {512 * 1024, 1} },
2550 .block_erase = erase_chip_block_jedec,
2551 },
2552 },
2553 .write = write_jedec_1,
2554 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00002555 .voltage = {4500, 5500},
Joshua Roysf1324e02010-09-16 00:51:51 +00002556 },
2557
2558 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002559 .vendor = "EMST",
2560 .name = "F49B002UA",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002561 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002562 .manufacture_id = EMST_ID,
2563 .model_id = EMST_F49B002UA,
2564 .total_size = 256,
2565 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00002566 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002567 .tested = TEST_UNTESTED,
2568 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00002569 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson54596372010-01-09 05:30:14 +00002570 .block_erasers =
2571 {
2572 {
2573 .eraseblocks = {
2574 {128 * 1024, 1},
2575 {96 * 1024, 1},
2576 {8 * 1024, 2},
2577 {16 * 1024, 1},
2578 },
2579 .block_erase = erase_sector_jedec,
2580 }, {
2581 .eraseblocks = { {256 * 1024, 1} },
2582 .block_erase = erase_chip_block_jedec,
2583 }
2584 },
Sean Nelson35727f72010-01-28 23:55:12 +00002585 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00002586 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002587 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00002588 },
2589
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00002590 {
Michael Karcher80a59ea2010-06-19 22:06:35 +00002591 .vendor = "EMST",
2592 .name = "F25L008A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002593 .bustype = BUS_SPI,
Michael Karcher80a59ea2010-06-19 22:06:35 +00002594 .manufacture_id = EMST_ID,
2595 .model_id = EMST_F25L008A,
2596 .total_size = 1024,
2597 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002598 .feature_bits = FEATURE_WRSR_EITHER,
Michael Karcher80a59ea2010-06-19 22:06:35 +00002599 .tested = TEST_UNTESTED,
2600 .probe = probe_spi_rdid,
2601 .probe_timing = TIMING_ZERO,
2602 .block_erasers =
2603 {
2604 {
2605 .eraseblocks = { {4 * 1024, 256} },
2606 .block_erase = spi_block_erase_20,
2607 }, {
2608 .eraseblocks = { {64 * 1024, 16} },
2609 .block_erase = spi_block_erase_d8,
2610 }, {
2611 .eraseblocks = { {1024 * 1024, 1} },
2612 .block_erase = spi_block_erase_60,
2613 }, {
2614 .eraseblocks = { {1024 * 1024, 1} },
2615 .block_erase = spi_block_erase_c7,
2616 }
2617 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002618 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +00002619 .write = spi_chip_write_1,
Michael Karcher4497e862010-07-10 19:34:15 +00002620 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002621 .voltage = {2700, 3600},
Michael Karcher80a59ea2010-06-19 22:06:35 +00002622 },
2623
2624 {
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002625 .vendor = "Eon",
2626 .name = "EN25B05",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002627 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002628 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002629 .model_id = EON_EN25B05,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002630 .total_size = 64,
2631 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002632 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002633 .tested = TEST_UNTESTED,
2634 .probe = probe_spi_rdid,
2635 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002636 .block_erasers =
2637 {
2638 {
2639 .eraseblocks = {
2640 {4 * 1024, 2},
2641 {8 * 1024, 1},
2642 {16 * 1024, 1},
2643 {32 * 1024, 1},
2644 },
2645 .block_erase = spi_block_erase_d8,
2646 }, {
2647 .eraseblocks = { {64 * 1024, 1} },
2648 .block_erase = spi_block_erase_c7,
2649 }
2650 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002651 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00002652 .write = spi_chip_write_256,
2653 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002654 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00002655 },
2656
2657 {
2658 .vendor = "Eon",
2659 .name = "EN25B05T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002660 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00002661 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002662 .model_id = EON_EN25B05,
Sean Nelson54596372010-01-09 05:30:14 +00002663 .total_size = 64,
2664 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002665 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00002666 .tested = TEST_UNTESTED,
2667 .probe = probe_spi_rdid,
2668 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002669 .block_erasers =
2670 {
2671 {
2672 .eraseblocks = {
2673 {32 * 1024, 1},
2674 {16 * 1024, 1},
2675 {8 * 1024, 1},
2676 {4 * 1024, 2},
2677 },
2678 .block_erase = spi_block_erase_d8,
2679 }, {
2680 .eraseblocks = { {64 * 1024, 1} },
2681 .block_erase = spi_block_erase_c7,
2682 }
2683 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002684 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002685 .write = spi_chip_write_256,
2686 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002687 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002688 },
2689
2690 {
2691 .vendor = "Eon",
2692 .name = "EN25B10",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002693 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002694 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002695 .model_id = EON_EN25B10,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002696 .total_size = 128,
2697 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002698 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002699 .tested = TEST_UNTESTED,
2700 .probe = probe_spi_rdid,
2701 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002702 .block_erasers =
2703 {
2704 {
2705 .eraseblocks = {
2706 {4 * 1024, 2},
2707 {8 * 1024, 1},
2708 {16 * 1024, 1},
2709 {32 * 1024, 3},
2710 },
2711 .block_erase = spi_block_erase_d8,
2712 }, {
2713 .eraseblocks = { {128 * 1024, 1} },
2714 .block_erase = spi_block_erase_c7,
2715 }
2716 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002717 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00002718 .write = spi_chip_write_256,
2719 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002720 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00002721 },
2722
2723 {
2724 .vendor = "Eon",
2725 .name = "EN25B10T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002726 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00002727 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002728 .model_id = EON_EN25B10,
Sean Nelson54596372010-01-09 05:30:14 +00002729 .total_size = 128,
2730 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002731 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00002732 .tested = TEST_UNTESTED,
2733 .probe = probe_spi_rdid,
2734 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002735 .block_erasers =
2736 {
2737 {
2738 .eraseblocks = {
2739 {32 * 1024, 3},
2740 {16 * 1024, 1},
2741 {8 * 1024, 1},
2742 {4 * 1024, 2},
2743 },
2744 .block_erase = spi_block_erase_d8,
2745 }, {
2746 .eraseblocks = { {128 * 1024, 1} },
2747 .block_erase = spi_block_erase_c7,
2748 }
2749 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002750 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002751 .write = spi_chip_write_256,
2752 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002753 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002754 },
2755
2756 {
2757 .vendor = "Eon",
2758 .name = "EN25B20",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002759 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002760 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002761 .model_id = EON_EN25B20,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002762 .total_size = 256,
2763 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002764 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002765 .tested = TEST_UNTESTED,
2766 .probe = probe_spi_rdid,
2767 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002768 .block_erasers =
2769 {
2770 {
2771 .eraseblocks = {
2772 {4 * 1024, 2},
2773 {8 * 1024, 1},
2774 {16 * 1024, 1},
2775 {32 * 1024, 1},
2776 {64 * 1024, 3}
2777 },
2778 .block_erase = spi_block_erase_d8,
2779 }, {
2780 .eraseblocks = { {256 * 1024, 1} },
2781 .block_erase = spi_block_erase_c7,
2782 }
2783 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002784 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00002785 .write = spi_chip_write_256,
2786 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002787 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00002788 },
2789
2790 {
2791 .vendor = "Eon",
2792 .name = "EN25B20T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002793 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00002794 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002795 .model_id = EON_EN25B20,
Sean Nelson54596372010-01-09 05:30:14 +00002796 .total_size = 256,
2797 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002798 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00002799 .tested = TEST_UNTESTED,
2800 .probe = probe_spi_rdid,
2801 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002802 .block_erasers =
2803 {
2804 {
2805 .eraseblocks = {
2806 {64 * 1024, 3},
2807 {32 * 1024, 1},
2808 {16 * 1024, 1},
2809 {8 * 1024, 1},
2810 {4 * 1024, 2},
2811 },
2812 .block_erase = spi_block_erase_d8,
2813 }, {
2814 .eraseblocks = { {256 * 1024, 1} },
2815 .block_erase = spi_block_erase_c7,
2816 }
2817 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002818 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002819 .write = spi_chip_write_256,
2820 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002821 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002822 },
2823
2824 {
2825 .vendor = "Eon",
2826 .name = "EN25B40",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002827 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002828 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002829 .model_id = EON_EN25B40,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002830 .total_size = 512,
2831 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002832 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002833 .tested = TEST_UNTESTED,
2834 .probe = probe_spi_rdid,
2835 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002836 .block_erasers =
2837 {
2838 {
2839 .eraseblocks = {
2840 {4 * 1024, 2},
2841 {8 * 1024, 1},
2842 {16 * 1024, 1},
2843 {32 * 1024, 1},
2844 {64 * 1024, 7}
2845 },
2846 .block_erase = spi_block_erase_d8,
2847 }, {
2848 .eraseblocks = { {512 * 1024, 1} },
2849 .block_erase = spi_block_erase_c7,
2850 }
2851 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002852 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00002853 .write = spi_chip_write_256,
2854 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002855 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00002856 },
2857
2858 {
2859 .vendor = "Eon",
2860 .name = "EN25B40T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002861 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00002862 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002863 .model_id = EON_EN25B40,
Sean Nelson54596372010-01-09 05:30:14 +00002864 .total_size = 512,
2865 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002866 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00002867 .tested = TEST_UNTESTED,
2868 .probe = probe_spi_rdid,
2869 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002870 .block_erasers =
2871 {
2872 {
2873 .eraseblocks = {
2874 {64 * 1024, 7},
2875 {32 * 1024, 1},
2876 {16 * 1024, 1},
2877 {8 * 1024, 1},
2878 {4 * 1024, 2},
2879 },
2880 .block_erase = spi_block_erase_d8,
2881 }, {
2882 .eraseblocks = { {512 * 1024, 1} },
2883 .block_erase = spi_block_erase_c7,
2884 }
2885 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002886 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002887 .write = spi_chip_write_256,
2888 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002889 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002890 },
2891
2892 {
2893 .vendor = "Eon",
2894 .name = "EN25B80",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002895 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002896 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002897 .model_id = EON_EN25B80,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002898 .total_size = 1024,
2899 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002900 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002901 .tested = TEST_UNTESTED,
2902 .probe = probe_spi_rdid,
2903 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002904 .block_erasers =
2905 {
2906 {
2907 .eraseblocks = {
2908 {4 * 1024, 2},
2909 {8 * 1024, 1},
2910 {16 * 1024, 1},
2911 {32 * 1024, 1},
2912 {64 * 1024, 15}
2913 },
2914 .block_erase = spi_block_erase_d8,
2915 }, {
2916 .eraseblocks = { {1024 * 1024, 1} },
2917 .block_erase = spi_block_erase_c7,
2918 }
2919 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002920 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00002921 .write = spi_chip_write_256,
2922 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002923 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00002924 },
2925
2926 {
2927 .vendor = "Eon",
2928 .name = "EN25B80T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002929 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00002930 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002931 .model_id = EON_EN25B80,
Sean Nelson54596372010-01-09 05:30:14 +00002932 .total_size = 1024,
2933 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002934 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00002935 .tested = TEST_UNTESTED,
2936 .probe = probe_spi_rdid,
2937 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002938 .block_erasers =
2939 {
2940 {
2941 .eraseblocks = {
2942 {64 * 1024, 15},
2943 {32 * 1024, 1},
2944 {16 * 1024, 1},
2945 {8 * 1024, 1},
2946 {4 * 1024, 2},
2947 },
2948 .block_erase = spi_block_erase_d8,
2949 }, {
2950 .eraseblocks = { {1024 * 1024, 1} },
2951 .block_erase = spi_block_erase_c7,
2952 }
2953 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002954 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002955 .write = spi_chip_write_256,
2956 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002957 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002958 },
2959
2960 {
2961 .vendor = "Eon",
2962 .name = "EN25B16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002963 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00002964 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002965 .model_id = EON_EN25B16,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002966 .total_size = 2048,
2967 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00002968 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00002969 .tested = TEST_UNTESTED,
2970 .probe = probe_spi_rdid,
2971 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00002972 .block_erasers =
2973 {
2974 {
2975 .eraseblocks = {
2976 {4 * 1024, 2},
2977 {8 * 1024, 1},
2978 {16 * 1024, 1},
2979 {32 * 1024, 1},
2980 {64 * 1024, 31},
2981 },
2982 .block_erase = spi_block_erase_d8,
2983 }, {
2984 .eraseblocks = { {2 * 1024 * 1024, 1} },
2985 .block_erase = spi_block_erase_c7,
2986 }
2987 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00002988 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00002989 .write = spi_chip_write_256,
2990 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00002991 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00002992 },
2993
2994 {
2995 .vendor = "Eon",
2996 .name = "EN25B16T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00002997 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00002998 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00002999 .model_id = EON_EN25B16,
Sean Nelson54596372010-01-09 05:30:14 +00003000 .total_size = 2048,
3001 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003002 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00003003 .tested = TEST_UNTESTED,
3004 .probe = probe_spi_rdid,
3005 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003006 .block_erasers =
3007 {
3008 {
3009 .eraseblocks = {
3010 {64 * 1024, 31},
3011 {32 * 1024, 1},
3012 {16 * 1024, 1},
3013 {8 * 1024, 1},
3014 {4 * 1024, 2},
3015 },
3016 .block_erase = spi_block_erase_d8,
3017 }, {
3018 .eraseblocks = { {2 * 1024 * 1024, 1} },
3019 .block_erase = spi_block_erase_c7,
3020 }
3021 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003022 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003023 .write = spi_chip_write_256,
3024 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003025 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003026 },
3027
3028 {
3029 .vendor = "Eon",
3030 .name = "EN25B32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003031 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003032 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003033 .model_id = EON_EN25B32,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003034 .total_size = 4096,
3035 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003036 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003037 .tested = TEST_UNTESTED,
3038 .probe = probe_spi_rdid,
3039 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003040 .block_erasers =
3041 {
3042 {
3043 .eraseblocks = {
3044 {4 * 1024, 2},
3045 {8 * 1024, 1},
3046 {16 * 1024, 1},
3047 {32 * 1024, 1},
3048 {64 * 1024, 63},
3049 },
3050 .block_erase = spi_block_erase_d8,
3051 }, {
3052 .eraseblocks = { {4 * 1024 * 1024, 1} },
3053 .block_erase = spi_block_erase_c7,
3054 }
3055 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003056 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00003057 .write = spi_chip_write_256,
3058 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003059 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00003060 },
3061
3062 {
3063 .vendor = "Eon",
3064 .name = "EN25B32T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003065 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00003066 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003067 .model_id = EON_EN25B32,
Sean Nelson54596372010-01-09 05:30:14 +00003068 .total_size = 4096,
3069 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003070 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00003071 .tested = TEST_UNTESTED,
3072 .probe = probe_spi_rdid,
3073 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003074 .block_erasers =
3075 {
3076 {
3077 .eraseblocks = {
3078 {64 * 1024, 63},
3079 {32 * 1024, 1},
3080 {16 * 1024, 1},
3081 {8 * 1024, 1},
3082 {4 * 1024, 2},
3083 },
3084 .block_erase = spi_block_erase_d8,
3085 }, {
3086 .eraseblocks = { {4 * 1024 * 1024, 1} },
3087 .block_erase = spi_block_erase_c7,
3088 }
3089 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003090 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003091 .write = spi_chip_write_256,
3092 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003093 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003094 },
3095
3096 {
3097 .vendor = "Eon",
3098 .name = "EN25B64",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003099 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003100 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003101 .model_id = EON_EN25B64,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003102 .total_size = 8192,
3103 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00003104 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003105 .tested = TEST_UNTESTED,
3106 .probe = probe_spi_rdid,
3107 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003108 .block_erasers =
3109 {
3110 {
3111 .eraseblocks = {
3112 {4 * 1024, 2},
3113 {8 * 1024, 1},
3114 {16 * 1024, 1},
3115 {32 * 1024, 1},
3116 {64 * 1024, 127},
3117 },
3118 .block_erase = spi_block_erase_d8,
3119 }, {
3120 .eraseblocks = { {8 * 1024 * 1024, 1} },
3121 .block_erase = spi_block_erase_c7,
3122 }
3123 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003124 .unlock = spi_disable_blockprotect,
Sean Nelson54596372010-01-09 05:30:14 +00003125 .write = spi_chip_write_256,
3126 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003127 .voltage = {2700, 3600},
Sean Nelson54596372010-01-09 05:30:14 +00003128 },
3129
3130 {
3131 .vendor = "Eon",
3132 .name = "EN25B64T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003133 .bustype = BUS_SPI,
Sean Nelson54596372010-01-09 05:30:14 +00003134 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003135 .model_id = EON_EN25B64,
Sean Nelson54596372010-01-09 05:30:14 +00003136 .total_size = 8192,
3137 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00003138 .feature_bits = FEATURE_WRSR_WREN,
Sean Nelson54596372010-01-09 05:30:14 +00003139 .tested = TEST_UNTESTED,
3140 .probe = probe_spi_rdid,
3141 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003142 .block_erasers =
3143 {
3144 {
3145 .eraseblocks = {
3146 {64 * 1024, 127},
3147 {32 * 1024, 1},
3148 {16 * 1024, 1},
3149 {8 * 1024, 1},
3150 {4 * 1024, 2},
3151 },
3152 .block_erase = spi_block_erase_d8,
3153 }, {
3154 .eraseblocks = { {8 * 1024 * 1024, 1} },
3155 .block_erase = spi_block_erase_c7,
3156 }
3157 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003158 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003159 .write = spi_chip_write_256,
3160 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003161 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003162 },
3163
3164 {
3165 .vendor = "Eon",
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003166 .name = "EN25F05",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003167 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003168 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003169 .model_id = EON_EN25F05,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003170 .total_size = 64,
3171 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00003172 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003173 .tested = TEST_UNTESTED,
3174 .probe = probe_spi_rdid,
3175 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003176 .block_erasers =
3177 {
3178 {
3179 .eraseblocks = { {4 * 1024, 16} },
3180 .block_erase = spi_block_erase_20,
3181 }, {
3182 .eraseblocks = { {32 * 1024, 2} },
3183 .block_erase = spi_block_erase_d8,
3184 }, {
3185 .eraseblocks = { {32 * 1024, 2} },
3186 .block_erase = spi_block_erase_52,
3187 }, {
3188 .eraseblocks = { {64 * 1024, 1} },
3189 .block_erase = spi_block_erase_60,
3190 }, {
3191 .eraseblocks = { {64 * 1024, 1} },
3192 .block_erase = spi_block_erase_c7,
3193 }
3194 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003195 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003196 .write = spi_chip_write_256,
3197 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003198 .voltage = {2700, 3600},
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003199 },
3200
3201 {
3202 .vendor = "Eon",
3203 .name = "EN25F10",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003204 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003205 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003206 .model_id = EON_EN25F10,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003207 .total_size = 128,
3208 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00003209 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003210 .tested = TEST_UNTESTED,
3211 .probe = probe_spi_rdid,
3212 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003213 .block_erasers =
3214 {
3215 {
3216 .eraseblocks = { {4 * 1024, 32} },
3217 .block_erase = spi_block_erase_20,
3218 }, {
3219 .eraseblocks = { {32 * 1024, 4} },
3220 .block_erase = spi_block_erase_d8,
3221 }, {
3222 .eraseblocks = { {32 * 1024, 4} },
3223 .block_erase = spi_block_erase_52,
3224 }, {
3225 .eraseblocks = { {128 * 1024, 1} },
3226 .block_erase = spi_block_erase_60,
3227 }, {
3228 .eraseblocks = { {128 * 1024, 1} },
3229 .block_erase = spi_block_erase_c7,
3230 }
3231 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003232 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003233 .write = spi_chip_write_256,
3234 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003235 .voltage = {2700, 3600},
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003236 },
3237
3238 {
3239 .vendor = "Eon",
3240 .name = "EN25F20",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003241 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003242 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003243 .model_id = EON_EN25F20,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003244 .total_size = 256,
3245 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00003246 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003247 .tested = TEST_UNTESTED,
3248 .probe = probe_spi_rdid,
3249 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003250 .block_erasers =
3251 {
3252 {
3253 .eraseblocks = { {4 * 1024, 64} },
3254 .block_erase = spi_block_erase_20,
3255 }, {
3256 .eraseblocks = { {64 * 1024, 4} },
3257 .block_erase = spi_block_erase_d8,
3258 }, {
3259 .eraseblocks = { {64 * 1024, 4} },
3260 .block_erase = spi_block_erase_52,
3261 }, {
3262 .eraseblocks = { {256 * 1024, 1} },
3263 .block_erase = spi_block_erase_60,
3264 }, {
3265 .eraseblocks = { {256 * 1024, 1} },
3266 .block_erase = spi_block_erase_c7,
3267 }
3268 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003269 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003270 .write = spi_chip_write_256,
3271 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003272 .voltage = {2700, 3600},
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003273 },
3274
3275 {
3276 .vendor = "Eon",
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003277 .name = "EN25F40",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003278 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003279 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003280 .model_id = EON_EN25F40,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003281 .total_size = 512,
3282 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00003283 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerfaaa2b22009-06-22 10:06:28 +00003284 .tested = TEST_OK_PROBE,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003285 .probe = probe_spi_rdid,
3286 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00003287 .block_erasers =
3288 {
3289 {
Sean Nelson54596372010-01-09 05:30:14 +00003290 .eraseblocks = { {4 * 1024, 128} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00003291 .block_erase = spi_block_erase_20,
3292 }, {
Sean Nelson54596372010-01-09 05:30:14 +00003293 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00003294 .block_erase = spi_block_erase_d8,
3295 }, {
Sean Nelson54596372010-01-09 05:30:14 +00003296 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00003297 .block_erase = spi_block_erase_60,
3298 }, {
Sean Nelson54596372010-01-09 05:30:14 +00003299 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson6b11ad22009-12-23 17:05:59 +00003300 .block_erase = spi_block_erase_c7,
3301 },
3302 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003303 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003304 .write = spi_chip_write_256,
3305 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003306 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003307 },
3308
3309 {
3310 .vendor = "Eon",
3311 .name = "EN25F80",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003312 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003313 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003314 .model_id = EON_EN25F80,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003315 .total_size = 1024,
3316 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00003317 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner716e0982011-07-25 20:38:52 +00003318 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003319 .probe = probe_spi_rdid,
3320 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003321 .block_erasers =
3322 {
3323 {
3324 .eraseblocks = { {4 * 1024, 256} },
3325 .block_erase = spi_block_erase_20,
3326 }, {
3327 .eraseblocks = { {64 * 1024, 16} },
3328 .block_erase = spi_block_erase_d8,
3329 }, {
3330 .eraseblocks = { {1024 * 1024, 1} },
3331 .block_erase = spi_block_erase_60,
3332 }, {
3333 .eraseblocks = { {1024 * 1024, 1} },
3334 .block_erase = spi_block_erase_c7,
3335 }
3336 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003337 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003338 .write = spi_chip_write_256,
3339 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003340 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003341 },
3342
3343 {
3344 .vendor = "Eon",
3345 .name = "EN25F16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003346 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003347 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003348 .model_id = EON_EN25F16,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003349 .total_size = 2048,
3350 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00003351 .feature_bits = FEATURE_WRSR_WREN,
Paul Menzel018d4822011-10-21 12:33:07 +00003352 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003353 .probe = probe_spi_rdid,
3354 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003355 .block_erasers =
3356 {
3357 {
3358 .eraseblocks = { {4 * 1024, 512} },
3359 .block_erase = spi_block_erase_20,
3360 }, {
3361 .eraseblocks = { {64 * 1024, 32} },
3362 .block_erase = spi_block_erase_d8,
3363 }, {
3364 .eraseblocks = { {2 * 1024 * 1024, 1} },
3365 .block_erase = spi_block_erase_60,
3366 }, {
3367 .eraseblocks = { {2 * 1024 * 1024, 1} },
3368 .block_erase = spi_block_erase_c7,
3369 }
3370 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003371 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003372 .write = spi_chip_write_256,
3373 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003374 .voltage = {2700, 3600},
Carl-Daniel Hailfinger80243c92009-06-05 20:53:07 +00003375 },
3376
3377 {
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003378 .vendor = "Eon",
3379 .name = "EN25F32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003380 .bustype = BUS_SPI,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003381 .manufacture_id = EON_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003382 .model_id = EON_EN25F32,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003383 .total_size = 4096,
3384 .page_size = 256,
David Hendricksd6c5dfc2010-09-03 03:18:26 +00003385 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003386 .tested = TEST_UNTESTED,
3387 .probe = probe_spi_rdid,
3388 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00003389 .block_erasers =
3390 {
3391 {
3392 .eraseblocks = { {4 * 1024, 1024} },
3393 .block_erase = spi_block_erase_20,
3394 }, {
3395 .eraseblocks = { {64 * 1024, 64} },
3396 .block_erase = spi_block_erase_d8,
3397 }, {
3398 .eraseblocks = { {4 * 1024 * 1024, 1} },
3399 .block_erase = spi_block_erase_60,
3400 }, {
3401 .eraseblocks = { {4 * 1024 * 1024, 1} },
3402 .block_erase = spi_block_erase_c7,
3403 }
3404 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00003405 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003406 .write = spi_chip_write_256,
3407 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003408 .voltage = {2700, 3600},
Carl-Daniel Hailfingera0a6ae92009-06-15 12:10:57 +00003409 },
3410
3411 {
Russ Dill3cd5a122010-03-05 08:44:11 +00003412 .vendor = "Eon",
Stefan Taunerd932fd02012-09-06 17:37:16 +00003413 .name = "EN25F64",
3414 .bustype = BUS_SPI,
3415 .manufacture_id = EON_ID_NOPREFIX,
3416 .model_id = EON_EN25F32,
3417 .total_size = 8192,
3418 .page_size = 256,
3419 .feature_bits = FEATURE_WRSR_WREN,
3420 .tested = TEST_UNTESTED,
3421 .probe = probe_spi_rdid,
3422 .probe_timing = TIMING_ZERO,
3423 .block_erasers =
3424 {
3425 {
3426 .eraseblocks = { {4 * 1024, 2048} },
3427 .block_erase = spi_block_erase_20,
3428 }, {
3429 .eraseblocks = { {64 * 1024, 128} },
3430 .block_erase = spi_block_erase_d8,
3431 }, {
3432 .eraseblocks = { {8 * 1024 * 1024, 1} },
3433 .block_erase = spi_block_erase_60,
3434 }, {
3435 .eraseblocks = { {8 * 1024 * 1024, 1} },
3436 .block_erase = spi_block_erase_c7,
3437 }
3438 },
3439 .unlock = spi_disable_blockprotect,
3440 .write = spi_chip_write_256,
3441 .read = spi_chip_read,
3442 .voltage = {2700, 3600},
3443 },
3444
3445 {
3446 .vendor = "Eon",
David Hendricks6d715302011-07-24 22:21:57 +00003447 .name = "EN25Q40",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003448 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00003449 .manufacture_id = EON_ID_NOPREFIX,
3450 .model_id = EON_EN25Q40,
3451 .total_size = 512,
3452 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00003453 /* OTP: 256B total; enter 0x3A */
3454 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks6d715302011-07-24 22:21:57 +00003455 .tested = TEST_UNTESTED,
3456 .probe = probe_spi_rdid,
3457 .probe_timing = TIMING_ZERO,
3458 .block_erasers =
3459 {
3460 {
3461 .eraseblocks = { {4 * 1024, 128} },
3462 .block_erase = spi_block_erase_20,
3463 }, {
3464 .eraseblocks = { {64 * 1024, 8} },
3465 .block_erase = spi_block_erase_d8,
3466 }, {
3467 .eraseblocks = { {512 * 1024, 1} },
3468 .block_erase = spi_block_erase_60,
3469 }, {
3470 .eraseblocks = { {512 * 1024, 1} },
3471 .block_erase = spi_block_erase_c7,
3472 }
3473 },
3474 .unlock = spi_disable_blockprotect,
3475 .write = spi_chip_write_256,
3476 .read = spi_chip_read,
3477 .voltage = {2700, 3600},
3478 },
3479
3480 {
3481 .vendor = "Eon",
3482 .name = "EN25Q80(A)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003483 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00003484 .manufacture_id = EON_ID_NOPREFIX,
3485 .model_id = EON_EN25Q80,
3486 .total_size = 1024,
3487 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00003488 /* OTP: 256B total; enter 0x3A */
3489 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks6d715302011-07-24 22:21:57 +00003490 .tested = TEST_UNTESTED,
3491 .probe = probe_spi_rdid,
3492 .probe_timing = TIMING_ZERO,
3493 .block_erasers =
3494 {
3495 {
3496 .eraseblocks = { {4 * 1024, 256} },
3497 .block_erase = spi_block_erase_20,
3498 }, {
3499 .eraseblocks = { {64 * 1024, 16} },
3500 .block_erase = spi_block_erase_d8,
3501 }, {
3502 .eraseblocks = { {1024 * 1024, 1} },
3503 .block_erase = spi_block_erase_60,
3504 }, {
3505 .eraseblocks = { {1024 * 1024, 1} },
3506 .block_erase = spi_block_erase_c7,
3507 }
3508 },
3509 .unlock = spi_disable_blockprotect,
3510 .write = spi_chip_write_256,
3511 .read = spi_chip_read,
3512 .voltage = {2700, 3600},
3513 },
3514
3515 {
3516 /* Note: EN25D16 is an evil twin which shares the model ID
3517 but has different write protection capabilities */
3518 .vendor = "Eon",
3519 .name = "EN25Q16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003520 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00003521 .manufacture_id = EON_ID_NOPREFIX,
3522 .model_id = EON_EN25Q16,
3523 .total_size = 2048,
3524 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00003525 /* OTP: D16 512B/Q16 128B total; enter 0x3A */
3526 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks6d715302011-07-24 22:21:57 +00003527 .tested = TEST_UNTESTED,
3528 .probe = probe_spi_rdid,
3529 .probe_timing = TIMING_ZERO,
3530 .block_erasers =
3531 {
3532 {
3533 .eraseblocks = { {4 * 1024, 512} },
3534 .block_erase = spi_block_erase_20,
3535 }, {
3536 .eraseblocks = { {64 * 1024, 32} },
3537 .block_erase = spi_block_erase_d8,
3538 }, {
3539 /* not supported by Q16 version */
3540 .eraseblocks = { {64 * 1024, 32} },
3541 .block_erase = spi_block_erase_52,
3542 }, {
3543 .eraseblocks = { {2 * 1024 * 1024, 1} },
3544 .block_erase = spi_block_erase_60,
3545 }, {
3546 .eraseblocks = { {2 * 1024 * 1024, 1} },
3547 .block_erase = spi_block_erase_c7,
3548 }
3549 },
3550 .unlock = spi_disable_blockprotect,
3551 .write = spi_chip_write_256,
3552 .read = spi_chip_read,
3553 .voltage = {2700, 3600},
3554 },
3555
3556 {
3557 .vendor = "Eon",
3558 .name = "EN25Q32(A/B)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003559 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00003560 .manufacture_id = EON_ID_NOPREFIX,
3561 .model_id = EON_EN25Q32,
3562 .total_size = 4096,
3563 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00003564 /* OTP: 512B total; enter 0x3A */
3565 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner2abab942012-04-27 20:41:23 +00003566 .tested = TEST_OK_PROBE,
David Hendricks6d715302011-07-24 22:21:57 +00003567 .probe = probe_spi_rdid,
3568 .probe_timing = TIMING_ZERO,
3569 .block_erasers =
3570 {
3571 {
3572 .eraseblocks = { {4 * 1024, 1024} },
3573 .block_erase = spi_block_erase_20,
3574 }, {
3575 .eraseblocks = { {64 * 1024, 64} },
3576 .block_erase = spi_block_erase_d8,
3577 }, {
3578 .eraseblocks = { {4 * 1024 * 1024, 1} },
3579 .block_erase = spi_block_erase_60,
3580 }, {
3581 .eraseblocks = { {4 * 1024 * 1024, 1} },
3582 .block_erase = spi_block_erase_c7,
3583 }
3584 },
3585 .unlock = spi_disable_blockprotect,
3586 .write = spi_chip_write_256,
3587 .read = spi_chip_read,
3588 .voltage = {2700, 3600},
3589 },
3590
3591 {
3592 .vendor = "Eon",
3593 .name = "EN25Q64",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003594 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00003595 .manufacture_id = EON_ID_NOPREFIX,
3596 .model_id = EON_EN25Q64,
3597 .total_size = 8192,
3598 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00003599 /* OTP: 512B total; enter 0x3A */
3600 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks6d715302011-07-24 22:21:57 +00003601 .tested = TEST_UNTESTED,
3602 .probe = probe_spi_rdid,
3603 .probe_timing = TIMING_ZERO,
3604 .block_erasers =
3605 {
3606 {
3607 .eraseblocks = { {4 * 1024, 2048} },
3608 .block_erase = spi_block_erase_20,
3609 }, {
3610 .eraseblocks = { {64 * 1024, 128} },
3611 .block_erase = spi_block_erase_d8,
3612 }, {
3613 .eraseblocks = { {8 * 1024 * 1024, 1} },
3614 .block_erase = spi_block_erase_60,
3615 }, {
3616 .eraseblocks = { {8 * 1024 * 1024, 1} },
3617 .block_erase = spi_block_erase_c7,
3618 }
3619 },
3620 .unlock = spi_disable_blockprotect,
3621 .write = spi_chip_write_256,
3622 .read = spi_chip_read,
3623 .voltage = {2700, 3600},
3624 },
3625
3626 {
3627 .vendor = "Eon",
3628 .name = "EN25Q128",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003629 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00003630 .manufacture_id = EON_ID_NOPREFIX,
3631 .model_id = EON_EN25Q128,
3632 .total_size = 16384,
3633 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00003634 /* OTP: 512B total; enter 0x3A */
3635 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks6d715302011-07-24 22:21:57 +00003636 .tested = TEST_UNTESTED,
3637 .probe = probe_spi_rdid,
3638 .probe_timing = TIMING_ZERO,
3639 .block_erasers =
3640 {
3641 {
3642 .eraseblocks = { {4 * 1024, 4096} },
3643 .block_erase = spi_block_erase_20,
3644 }, {
3645 .eraseblocks = { {64 * 1024, 256} },
3646 .block_erase = spi_block_erase_d8,
3647 }, {
3648 .eraseblocks = { {16 * 1024 * 1024, 1} },
3649 .block_erase = spi_block_erase_60,
3650 }, {
3651 .eraseblocks = { {16 * 1024 * 1024, 1} },
3652 .block_erase = spi_block_erase_c7,
3653 }
3654 },
3655 .unlock = spi_disable_blockprotect,
3656 .write = spi_chip_write_256,
3657 .read = spi_chip_read,
3658 },
3659
3660 {
3661 .vendor = "Eon",
3662 .name = "EN25QH16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003663 .bustype = BUS_SPI,
David Hendricks6d715302011-07-24 22:21:57 +00003664 .manufacture_id = EON_ID_NOPREFIX,
3665 .model_id = EON_EN25QH16,
3666 .total_size = 2048,
3667 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00003668 /* supports SFDP */
3669 /* OTP: 512B total; enter 0x3A */
3670 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Taunerd94d25d2012-07-28 03:17:15 +00003671 .tested = TEST_OK_PR,
David Hendricks6d715302011-07-24 22:21:57 +00003672 .probe = probe_spi_rdid,
3673 .probe_timing = TIMING_ZERO,
3674 .block_erasers =
3675 {
3676 {
3677 .eraseblocks = { {4 * 1024, 512} },
3678 .block_erase = spi_block_erase_20,
3679 }, {
3680 .eraseblocks = { {64 * 1024, 32} },
3681 .block_erase = spi_block_erase_d8,
3682 }, {
3683 .eraseblocks = { {1024 * 2048, 1} },
3684 .block_erase = spi_block_erase_60,
3685 }, {
3686 .eraseblocks = { {1024 * 2048, 1} },
3687 .block_erase = spi_block_erase_c7,
3688 }
3689 },
3690 .unlock = spi_disable_blockprotect,
3691 .write = spi_chip_write_256,
3692 .read = spi_chip_read,
Stefan Tauner2cef9162012-05-14 01:51:46 +00003693 .voltage = {2700, 3600},
3694 },
3695
3696 {
3697 .vendor = "Eon",
3698 .name = "EN25QH32",
3699 .bustype = BUS_SPI,
3700 .manufacture_id = EON_ID_NOPREFIX,
3701 .model_id = EON_EN25QH32,
3702 .total_size = 4096,
3703 .page_size = 256,
3704 /* supports SFDP */
3705 /* OTP: 512B total; enter 0x3A */
3706 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
3707 .tested = TEST_UNTESTED,
3708 .probe = probe_spi_rdid,
3709 .probe_timing = TIMING_ZERO,
3710 .block_erasers =
3711 {
3712 {
3713 .eraseblocks = { {4 * 1024, 1024} },
3714 .block_erase = spi_block_erase_20,
3715 }, {
3716 .eraseblocks = { {64 * 1024, 64} },
3717 .block_erase = spi_block_erase_d8,
3718 }, {
3719 .eraseblocks = { {1024 * 4096, 1} },
3720 .block_erase = spi_block_erase_60,
3721 }, {
3722 .eraseblocks = { {1024 * 4096, 1} },
3723 .block_erase = spi_block_erase_c7,
3724 }
3725 },
3726 .unlock = spi_disable_blockprotect,
3727 .write = spi_chip_write_256,
3728 .read = spi_chip_read,
3729 .voltage = {2700, 3600},
David Hendricks6d715302011-07-24 22:21:57 +00003730 },
3731
3732 {
3733 .vendor = "Eon",
Russ Dill3cd5a122010-03-05 08:44:11 +00003734 .name = "EN29F010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003735 .bustype = BUS_PARALLEL,
Russ Dill3cd5a122010-03-05 08:44:11 +00003736 .manufacture_id = EON_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003737 .model_id = EON_EN29F010,
Russ Dill3cd5a122010-03-05 08:44:11 +00003738 .total_size = 128,
3739 .page_size = 128,
3740 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00003741 .tested = TEST_OK_PRE,
Russ Dill3cd5a122010-03-05 08:44:11 +00003742 .probe = probe_jedec,
3743 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
3744 .block_erasers =
3745 {
3746 {
3747 .eraseblocks = { {16 * 1024, 8} },
3748 .block_erase = erase_sector_jedec,
3749 },
3750 {
3751 .eraseblocks = { {128 * 1024, 1} },
3752 .block_erase = erase_chip_block_jedec,
3753 },
3754 },
3755 .write = write_jedec_1,
3756 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003757 .voltage = {4500, 5500},
Russ Dill3cd5a122010-03-05 08:44:11 +00003758 },
3759
3760 {
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00003761 .vendor = "Eon",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003762 .name = "EN29F002(A)(N)B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003763 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003764 .manufacture_id = EON_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003765 .model_id = EON_EN29F002B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003766 .total_size = 256,
3767 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00003768 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00003769 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003770 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00003771 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00003772 .block_erasers =
3773 {
3774 {
Rudolf Marek47eff6b2012-04-14 22:51:40 +00003775 .eraseblocks = {
Sean Nelson6b11ad22009-12-23 17:05:59 +00003776 {16 * 1024, 1},
Michael Karchere3cb0a12010-03-13 23:47:09 +00003777 {8 * 1024, 2},
3778 {32 * 1024, 1},
3779 {64 * 1024, 3},
Sean Nelson6b11ad22009-12-23 17:05:59 +00003780 },
3781 .block_erase = erase_sector_jedec,
3782 }, {
3783 .eraseblocks = { {256 * 1024, 1} },
3784 .block_erase = erase_chip_block_jedec,
3785 },
3786 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00003787 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003788 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003789 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00003790 },
3791
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003792 {
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00003793 .vendor = "Eon",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003794 .name = "EN29F002(A)(N)T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003795 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003796 .manufacture_id = EON_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003797 .model_id = EON_EN29F002T,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003798 .total_size = 256,
3799 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00003800 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00003801 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003802 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00003803 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00003804 .block_erasers =
3805 {
3806 {
Rudolf Marek47eff6b2012-04-14 22:51:40 +00003807 .eraseblocks = {
Sean Nelson6b11ad22009-12-23 17:05:59 +00003808 {64 * 1024, 3},
Michael Karchere3cb0a12010-03-13 23:47:09 +00003809 {32 * 1024, 1},
3810 {8 * 1024, 2},
3811 {16 * 1024, 1},
Sean Nelson6b11ad22009-12-23 17:05:59 +00003812 },
3813 .block_erase = erase_sector_jedec,
3814 }, {
3815 .eraseblocks = { {256 * 1024, 1} },
3816 .block_erase = erase_chip_block_jedec,
3817 },
3818 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00003819 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003820 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003821 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00003822 },
3823
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003824 {
Rudolf Marek47eff6b2012-04-14 22:51:40 +00003825 .vendor = "Eon",
3826 .name = "EN29LV640B",
3827 .bustype = BUS_PARALLEL,
3828 .manufacture_id = EON_ID,
3829 .model_id = EON_EN29LV640B,
3830 .total_size = 8192,
3831 .page_size = 8192,
3832 .feature_bits = 0,
3833 .tested = TEST_OK_PREW,
3834 .probe = probe_en29lv640b,
3835 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
3836 .block_erasers =
3837 {
3838 {
3839 .eraseblocks = {
3840 {8 * 1024, 8},
3841 {64 * 1024, 127},
3842 },
3843 .block_erase = block_erase_en29lv640b,
3844 }, {
3845 .eraseblocks = { {8 * 1024 * 1024, 1} },
3846 .block_erase = block_erase_chip_en29lv640b,
3847 },
3848 },
3849 .write = write_en29lv640b,
3850 .read = read_memmapped,
3851 .voltage = {2700, 3600},
3852 },
3853
3854 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003855 .vendor = "Fujitsu",
3856 .name = "MBM29F004BC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003857 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003858 .manufacture_id = FUJITSU_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003859 .model_id = FUJITSU_MBM29F004BC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003860 .total_size = 512,
3861 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00003862 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003863 .tested = TEST_UNTESTED,
3864 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00003865 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00003866 .block_erasers =
3867 {
3868 {
3869 .eraseblocks = {
3870 {16 * 1024, 1},
3871 {8 * 1024, 2},
3872 {32 * 1024, 1},
3873 {64 * 1024, 7},
3874 },
Sean Nelson35727f72010-01-28 23:55:12 +00003875 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00003876 }, {
3877 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00003878 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00003879 },
3880 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003881 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003882 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003883 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00003884 },
3885
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003886 {
3887 .vendor = "Fujitsu",
3888 .name = "MBM29F004TC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003889 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003890 .manufacture_id = FUJITSU_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003891 .model_id = FUJITSU_MBM29F004TC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003892 .total_size = 512,
3893 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00003894 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003895 .tested = TEST_UNTESTED,
3896 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00003897 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson6b11ad22009-12-23 17:05:59 +00003898 .block_erasers =
3899 {
3900 {
3901 .eraseblocks = {
3902 {64 * 1024, 7},
3903 {32 * 1024, 1},
3904 {8 * 1024, 2},
3905 {16 * 1024, 1},
3906 },
Sean Nelson35727f72010-01-28 23:55:12 +00003907 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00003908 }, {
3909 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00003910 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00003911 },
3912 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003913 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003914 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00003915 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00003916 },
3917
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003918 {
Sean Nelson35727f72010-01-28 23:55:12 +00003919 /* FIXME: this has WORD/BYTE sequences; 2AA for word, 555 for byte */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003920 .vendor = "Fujitsu",
3921 .name = "MBM29F400BC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003922 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003923 .manufacture_id = FUJITSU_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003924 .model_id = FUJITSU_MBM29F400BC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003925 .total_size = 512,
3926 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00003927 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00003928 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003929 .probe = probe_m29f400bt,
Paul Menzelc07a41c2011-06-19 17:23:55 +00003930 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (m29f400bt.c) */
Sean Nelson6b11ad22009-12-23 17:05:59 +00003931 .block_erasers =
3932 {
3933 {
3934 .eraseblocks = {
3935 {16 * 1024, 1},
3936 {8 * 1024, 2},
3937 {32 * 1024, 1},
3938 {64 * 1024, 7},
3939 },
3940 .block_erase = block_erase_m29f400bt,
3941 }, {
3942 .eraseblocks = { {512 * 1024, 1} },
3943 .block_erase = block_erase_chip_m29f400bt,
3944 },
3945 },
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00003946 .write = write_m29f400bt,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003947 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00003948 .voltage = {4750, 5250}, /* 4.75-5.25V for type -55, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +00003949 },
3950
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003951 {
3952 .vendor = "Fujitsu",
3953 .name = "MBM29F400TC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00003954 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003955 .manufacture_id = FUJITSU_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00003956 .model_id = FUJITSU_MBM29F400TC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003957 .total_size = 512,
3958 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00003959 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003960 .tested = TEST_UNTESTED,
3961 .probe = probe_m29f400bt,
Paul Menzelc07a41c2011-06-19 17:23:55 +00003962 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (m29f400bt.c) */
Sean Nelson6b11ad22009-12-23 17:05:59 +00003963 .block_erasers =
3964 {
3965 {
3966 .eraseblocks = {
3967 {64 * 1024, 7},
3968 {32 * 1024, 1},
3969 {8 * 1024, 2},
3970 {16 * 1024, 1},
3971 },
3972 .block_erase = block_erase_m29f400bt,
3973 }, {
3974 .eraseblocks = { {512 * 1024, 1} },
3975 .block_erase = block_erase_chip_m29f400bt,
3976 },
3977 },
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00003978 .write = write_m29f400bt,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00003979 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00003980 .voltage = {4750, 5250}, /* 4.75-5.25V for type -55, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +00003981 },
3982
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00003983 {
Justin Chevrier1525b2a2012-04-14 21:59:23 +00003984 .vendor = "GigaDevice",
3985 .name = "GD25Q20",
3986 .bustype = BUS_SPI,
3987 .manufacture_id = GIGADEVICE_ID,
3988 .model_id = GIGADEVICE_GD25Q20,
3989 .total_size = 256,
3990 .page_size = 256,
3991 .feature_bits = FEATURE_WRSR_WREN,
3992 .tested = TEST_UNTESTED,
3993 .probe = probe_spi_rdid,
3994 .probe_timing = TIMING_ZERO,
3995 .block_erasers =
3996 {
3997 {
3998 .eraseblocks = { {4 * 1024, 64} },
3999 .block_erase = spi_block_erase_20,
4000 }, {
4001 .eraseblocks = { {32 * 1024, 8} },
4002 .block_erase = spi_block_erase_52,
4003 }, {
4004 .eraseblocks = { {64 * 1024, 4} },
4005 .block_erase = spi_block_erase_d8,
4006 }, {
4007 .eraseblocks = { {256 * 1024, 1} },
4008 .block_erase = spi_block_erase_60,
4009 }, {
4010 .eraseblocks = { {256 * 1024, 1} },
4011 .block_erase = spi_block_erase_c7,
4012 }
4013 },
4014 .unlock = spi_disable_blockprotect,
4015 .write = spi_chip_write_256,
4016 .read = spi_chip_read,
4017 .voltage = {2700, 3600},
4018 },
4019
4020 {
4021 .vendor = "GigaDevice",
4022 .name = "GD25Q40",
4023 .bustype = BUS_SPI,
4024 .manufacture_id = GIGADEVICE_ID,
4025 .model_id = GIGADEVICE_GD25Q40,
4026 .total_size = 512,
4027 .page_size = 256,
4028 .feature_bits = FEATURE_WRSR_WREN,
4029 .tested = TEST_UNTESTED,
4030 .probe = probe_spi_rdid,
4031 .probe_timing = TIMING_ZERO,
4032 .block_erasers =
4033 {
4034 {
4035 .eraseblocks = { {4 * 1024, 128} },
4036 .block_erase = spi_block_erase_20,
4037 }, {
4038 .eraseblocks = { {32 * 1024, 16} },
4039 .block_erase = spi_block_erase_52,
4040 }, {
4041 .eraseblocks = { {64 * 1024, 8} },
4042 .block_erase = spi_block_erase_d8,
4043 }, {
4044 .eraseblocks = { {512 * 1024, 1} },
4045 .block_erase = spi_block_erase_60,
4046 }, {
4047 .eraseblocks = { {512 * 1024, 1} },
4048 .block_erase = spi_block_erase_c7,
4049 }
4050 },
4051 .unlock = spi_disable_blockprotect,
4052 .write = spi_chip_write_256,
4053 .read = spi_chip_read,
4054 .voltage = {2700, 3600},
4055 },
4056
4057 {
4058 .vendor = "GigaDevice",
4059 .name = "GD25Q80",
4060 .bustype = BUS_SPI,
4061 .manufacture_id = GIGADEVICE_ID,
4062 .model_id = GIGADEVICE_GD25Q80,
4063 .total_size = 1024,
4064 .page_size = 256,
4065 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42 */
4066 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4067 .tested = TEST_OK_PREW,
4068 .probe = probe_spi_rdid,
4069 .probe_timing = TIMING_ZERO,
4070 .block_erasers =
4071 {
4072 {
4073 .eraseblocks = { {4 * 1024, 256} },
4074 .block_erase = spi_block_erase_20,
4075 }, {
4076 .eraseblocks = { {32 * 1024, 32} },
4077 .block_erase = spi_block_erase_52,
4078 }, {
4079 .eraseblocks = { {64 * 1024, 16} },
4080 .block_erase = spi_block_erase_d8,
4081 }, {
4082 .eraseblocks = { {1024 * 1024, 1} },
4083 .block_erase = spi_block_erase_60,
4084 }, {
4085 .eraseblocks = { {1024 * 1024, 1} },
4086 .block_erase = spi_block_erase_c7,
4087 }
4088 },
4089 .unlock = spi_disable_blockprotect,
4090 .write = spi_chip_write_256,
4091 .read = spi_chip_read,
4092 .voltage = {2700, 3600},
4093 },
4094
4095 {
4096 .vendor = "GigaDevice",
4097 .name = "GD25Q16",
4098 .bustype = BUS_SPI,
4099 .manufacture_id = GIGADEVICE_ID,
4100 .model_id = GIGADEVICE_GD25Q16,
4101 .total_size = 2048,
4102 .page_size = 256,
4103 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42 */
4104 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4105 .tested = TEST_UNTESTED,
4106 .probe = probe_spi_rdid,
4107 .probe_timing = TIMING_ZERO,
4108 .block_erasers =
4109 {
4110 {
4111 .eraseblocks = { {4 * 1024, 512} },
4112 .block_erase = spi_block_erase_20,
4113 }, {
4114 .eraseblocks = { {32 * 1024, 64} },
4115 .block_erase = spi_block_erase_52,
4116 }, {
4117 .eraseblocks = { {64 * 1024, 32} },
4118 .block_erase = spi_block_erase_d8,
4119 }, {
4120 .eraseblocks = { {2 * 1024 * 1024, 1} },
4121 .block_erase = spi_block_erase_60,
4122 }, {
4123 .eraseblocks = { {2 * 1024 * 1024, 1} },
4124 .block_erase = spi_block_erase_c7,
4125 }
4126 },
4127 .unlock = spi_disable_blockprotect,
4128 .write = spi_chip_write_256,
4129 .read = spi_chip_read,
4130 .voltage = {2700, 3600},
4131 },
4132
4133 {
4134 .vendor = "GigaDevice",
4135 .name = "GD25Q32",
4136 .bustype = BUS_SPI,
4137 .manufacture_id = GIGADEVICE_ID,
4138 .model_id = GIGADEVICE_GD25Q32,
4139 .total_size = 4096,
4140 .page_size = 256,
4141 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42 */
4142 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4143 .tested = TEST_UNTESTED,
4144 .probe = probe_spi_rdid,
4145 .probe_timing = TIMING_ZERO,
4146 .block_erasers =
4147 {
4148 {
4149 .eraseblocks = { {4 * 1024, 1024} },
4150 .block_erase = spi_block_erase_20,
4151 }, {
4152 .eraseblocks = { {32 * 1024, 128} },
4153 .block_erase = spi_block_erase_52,
4154 }, {
4155 .eraseblocks = { {64 * 1024, 64} },
4156 .block_erase = spi_block_erase_d8,
4157 }, {
4158 .eraseblocks = { {4 * 1024 * 1024, 1} },
4159 .block_erase = spi_block_erase_60,
4160 }, {
4161 .eraseblocks = { {4 * 1024 * 1024, 1} },
4162 .block_erase = spi_block_erase_c7,
4163 }
4164 },
4165 .unlock = spi_disable_blockprotect,
4166 .write = spi_chip_write_256,
4167 .read = spi_chip_read,
4168 .voltage = {2700, 3600},
4169 },
4170
4171 {
4172 .vendor = "GigaDevice",
4173 .name = "GD25Q64",
4174 .bustype = BUS_SPI,
4175 .manufacture_id = GIGADEVICE_ID,
4176 .model_id = GIGADEVICE_GD25Q64,
4177 .total_size = 8192,
4178 .page_size = 256,
4179 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42 */
4180 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4181 .tested = TEST_UNTESTED,
4182 .probe = probe_spi_rdid,
4183 .probe_timing = TIMING_ZERO,
4184 .block_erasers =
4185 {
4186 {
4187 .eraseblocks = { {4 * 1024, 2048} },
4188 .block_erase = spi_block_erase_20,
4189 }, {
4190 .eraseblocks = { {32 * 1024, 256} },
4191 .block_erase = spi_block_erase_52,
4192 }, {
4193 .eraseblocks = { {64 * 1024, 128} },
4194 .block_erase = spi_block_erase_d8,
4195 }, {
4196 .eraseblocks = { {8 * 1024 * 1024, 1} },
4197 .block_erase = spi_block_erase_60,
4198 }, {
4199 .eraseblocks = { {8 * 1024 * 1024, 1} },
4200 .block_erase = spi_block_erase_c7,
4201 }
4202 },
4203 .unlock = spi_disable_blockprotect,
4204 .write = spi_chip_write_256,
4205 .read = spi_chip_read,
4206 },
4207
4208 {
4209 .vendor = "GigaDevice",
4210 .name = "GD25Q128",
4211 .bustype = BUS_SPI,
4212 .manufacture_id = GIGADEVICE_ID,
4213 .model_id = GIGADEVICE_GD25Q128,
4214 .total_size = 16384,
4215 .page_size = 256,
4216 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42 */
4217 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
4218 .tested = TEST_UNTESTED,
4219 .probe = probe_spi_rdid,
4220 .probe_timing = TIMING_ZERO,
4221 .block_erasers =
4222 {
4223 {
4224 .eraseblocks = { {4 * 1024, 4096} },
4225 .block_erase = spi_block_erase_20,
4226 }, {
4227 .eraseblocks = { {32 * 1024, 512} },
4228 .block_erase = spi_block_erase_52,
4229 }, {
4230 .eraseblocks = { {64 * 1024, 256} },
4231 .block_erase = spi_block_erase_d8,
4232 }, {
4233 .eraseblocks = { {16 * 1024 * 1024, 1} },
4234 .block_erase = spi_block_erase_60,
4235 }, {
4236 .eraseblocks = { {16 * 1024 * 1024, 1} },
4237 .block_erase = spi_block_erase_c7,
4238 }
4239 },
4240 .unlock = spi_disable_blockprotect,
4241 .write = spi_chip_write_256,
4242 .read = spi_chip_read,
4243 },
4244
4245 {
Bryan Freed5bfef9d2012-09-17 00:05:44 +00004246 .vendor = "GigaDevice",
4247 .name = "GD25LQ32",
4248 .bustype = BUS_SPI,
4249 .manufacture_id = GIGADEVICE_ID,
4250 .model_id = GIGADEVICE_GD25LQ32,
4251 .total_size = 4096,
4252 .page_size = 256,
4253 .feature_bits = FEATURE_WRSR_WREN,
4254 .tested = TEST_OK_PREW,
4255 .probe = probe_spi_rdid,
4256 .probe_timing = TIMING_ZERO,
4257 .block_erasers =
4258 {
4259 {
4260 .eraseblocks = { {4 * 1024, 1024} },
4261 .block_erase = spi_block_erase_20,
4262 }, {
4263 .eraseblocks = { {32 * 1024, 128} },
4264 .block_erase = spi_block_erase_52,
4265 }, {
4266 .eraseblocks = { {64 * 1024, 64} },
4267 .block_erase = spi_block_erase_d8,
4268 }, {
4269 .eraseblocks = { {4 * 1024 * 1024, 1} },
4270 .block_erase = spi_block_erase_60,
4271 }, {
4272 .eraseblocks = { {4 * 1024 * 1024, 1} },
4273 .block_erase = spi_block_erase_c7,
4274 }
4275 },
4276 .unlock = spi_disable_blockprotect,
4277 .write = spi_chip_write_256,
4278 .read = spi_chip_read,
4279 .voltage = {1700, 1950},
4280 },
4281
4282 {
David Borgc96a8bd2010-06-21 16:12:22 +00004283 .vendor = "Hyundai",
4284 .name = "HY29F002T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004285 .bustype = BUS_PARALLEL,
David Borgc96a8bd2010-06-21 16:12:22 +00004286 .manufacture_id = HYUNDAI_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004287 .model_id = HYUNDAI_HY29F002T,
David Borgc96a8bd2010-06-21 16:12:22 +00004288 .total_size = 256,
4289 .page_size = 256 * 1024,
4290 .feature_bits = FEATURE_EITHER_RESET, /* Some revisions may need FEATURE_ADDR_2AA */
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00004291 .tested = TEST_OK_PRE,
David Borgc96a8bd2010-06-21 16:12:22 +00004292 .probe = probe_jedec,
4293 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
4294 .block_erasers =
4295 {
4296 {
4297 .eraseblocks = {
4298 {64 * 1024, 3},
4299 {32 * 1024, 1},
4300 {8 * 1024, 2},
4301 {16 * 1024, 1},
4302 },
4303 .block_erase = erase_sector_jedec,
4304 }, {
4305 .eraseblocks = { {256 * 1024, 1} },
4306 .block_erase = erase_chip_block_jedec,
4307 },
4308 },
4309 .write = write_jedec_1,
4310 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00004311 .voltage = {4750, 5250}, /* 4.75-5.25V for type -45, others 4.5-5.5V */
David Borgc96a8bd2010-06-21 16:12:22 +00004312 },
4313
4314 {
4315 .vendor = "Hyundai",
4316 .name = "HY29F002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004317 .bustype = BUS_PARALLEL,
David Borgc96a8bd2010-06-21 16:12:22 +00004318 .manufacture_id = HYUNDAI_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004319 .model_id = HYUNDAI_HY29F002B,
David Borgc96a8bd2010-06-21 16:12:22 +00004320 .total_size = 256,
4321 .page_size = 256 * 1024,
4322 .feature_bits = FEATURE_EITHER_RESET, /* Some revisions may need FEATURE_ADDR_2AA */
4323 .tested = TEST_UNTESTED,
4324 .probe = probe_jedec,
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 {32 * 1024, 1},
4333 {64 * 1024, 3},
4334 },
4335 .block_erase = erase_sector_jedec,
4336 }, {
4337 .eraseblocks = { {256 * 1024, 1} },
4338 .block_erase = erase_chip_block_jedec,
4339 },
4340 },
4341 .write = write_jedec_1,
4342 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00004343 .voltage = {4750, 5250}, /* 4.75-5.25V for type -45, others 4.5-5.5V */
David Borgc96a8bd2010-06-21 16:12:22 +00004344 },
4345
4346 {
Joshua Roysf1324e02010-09-16 00:51:51 +00004347 .vendor = "Hyundai",
4348 .name = "HY29F040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004349 .bustype = BUS_PARALLEL,
Joshua Roysf1324e02010-09-16 00:51:51 +00004350 .manufacture_id = HYUNDAI_ID,
4351 .model_id = HYUNDAI_HY29F040A,
4352 .total_size = 512,
4353 .page_size = 64 * 1024,
4354 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
4355 .tested = TEST_UNTESTED,
4356 .probe = probe_jedec,
4357 .probe_timing = TIMING_ZERO,
4358 .block_erasers =
4359 {
4360 {
4361 .eraseblocks = { {64 * 1024, 8} },
4362 .block_erase = erase_sector_jedec,
4363 }, {
4364 .eraseblocks = { {512 * 1024, 1} },
4365 .block_erase = erase_chip_block_jedec,
4366 },
4367 },
4368 .write = write_jedec_1,
4369 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00004370 .voltage = {4500, 5500},
Joshua Roysf1324e02010-09-16 00:51:51 +00004371 },
4372
4373 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004374 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004375 .name = "28F001BN/BX-B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004376 .bustype = BUS_PARALLEL,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004377 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004378 .model_id = INTEL_28F001B,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004379 .total_size = 128,
4380 .page_size = 128 * 1024, /* 8k + 2x4k + 112k */
Sean Nelsondee4a832010-03-22 04:39:31 +00004381 .tested = TEST_UNTESTED,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004382 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00004383 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson54596372010-01-09 05:30:14 +00004384 .block_erasers =
4385 {
4386 {
4387 .eraseblocks = {
4388 {8 * 1024, 1},
4389 {4 * 1024, 2},
4390 {112 * 1024, 1},
4391 },
Sean Nelson28accc22010-03-19 18:47:06 +00004392 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00004393 },
4394 },
Sean Nelsondee4a832010-03-22 04:39:31 +00004395 .write = write_82802ab,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004396 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004397 .voltage = {4500, 5500},
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004398 },
4399
4400 {
4401 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004402 .name = "28F001BN/BX-T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004403 .bustype = BUS_PARALLEL,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004404 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004405 .model_id = INTEL_28F001T,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004406 .total_size = 128,
4407 .page_size = 128 * 1024, /* 112k + 2x4k + 8k */
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00004408 .tested = TEST_OK_PR,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004409 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00004410 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson54596372010-01-09 05:30:14 +00004411 .block_erasers =
4412 {
4413 {
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00004414 .eraseblocks = {
Sean Nelson54596372010-01-09 05:30:14 +00004415 {112 * 1024, 1},
4416 {4 * 1024, 2},
4417 {8 * 1024, 1},
4418 },
Sean Nelson28accc22010-03-19 18:47:06 +00004419 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00004420 },
4421 },
Sean Nelsondee4a832010-03-22 04:39:31 +00004422 .write = write_82802ab,
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004423 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004424 .voltage = {4500, 5500},
Urja Rannikkoebd7b832009-05-29 12:55:31 +00004425 },
4426
4427 {
4428 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004429 .name = "28F002BC/BL/BV/BX-T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004430 .bustype = BUS_PARALLEL,
Joshua Roysd97c0e02010-07-22 15:20:43 +00004431 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004432 .model_id = INTEL_28F002T,
Joshua Roysd97c0e02010-07-22 15:20:43 +00004433 .total_size = 256,
4434 .page_size = 256 * 1024,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00004435 .tested = TEST_OK_PRE,
Joshua Roysd97c0e02010-07-22 15:20:43 +00004436 .probe = probe_82802ab,
4437 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
4438 .block_erasers =
4439 {
4440 {
4441 .eraseblocks = {
4442 {128 * 1024, 1},
4443 {96 * 1024, 1},
4444 {8 * 1024, 2},
4445 {16 * 1024, 1},
4446 },
4447 .block_erase = erase_block_82802ab,
4448 },
4449 },
4450 .write = write_82802ab,
4451 .read = read_memmapped,
4452 },
4453
4454 {
4455 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004456 .name = "28F008S3/S5/SC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004457 .bustype = BUS_PARALLEL,
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00004458 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004459 .model_id = INTEL_28F004S3,
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00004460 .total_size = 512,
4461 .page_size = 256,
4462 .tested = TEST_UNTESTED,
4463 .probe = probe_82802ab,
4464 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00004465 .block_erasers =
4466 {
4467 {
4468 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson28accc22010-03-19 18:47:06 +00004469 .block_erase = erase_block_82802ab,
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00004470 },
4471 },
Sean Nelsondee4a832010-03-22 04:39:31 +00004472 .unlock = unlock_28f004s5,
Sean Nelsonf5ae4d42010-02-13 18:41:53 +00004473 .write = write_82802ab,
4474 .read = read_memmapped,
4475 },
4476
4477 {
4478 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004479 .name = "28F004B5/BE/BV/BX-B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004480 .bustype = BUS_PARALLEL,
Michael Karcherad0010a2010-04-03 10:27:08 +00004481 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004482 .model_id = INTEL_28F004B,
Michael Karcherad0010a2010-04-03 10:27:08 +00004483 .total_size = 512,
4484 .page_size = 128 * 1024, /* maximal block size */
4485 .tested = TEST_UNTESTED,
4486 .probe = probe_82802ab,
4487 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
4488 .block_erasers =
4489 {
4490 {
4491 .eraseblocks = {
4492 {16 * 1024, 1},
4493 {8 * 1024, 2},
4494 {96 * 1024, 1},
4495 {128 * 1024, 3},
4496 },
4497 .block_erase = erase_block_82802ab,
4498 },
4499 },
4500 .write = write_82802ab,
4501 .read = read_memmapped,
4502 },
4503
4504 {
4505 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004506 .name = "28F004B5/BE/BV/BX-T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004507 .bustype = BUS_PARALLEL,
Michael Karcherad0010a2010-04-03 10:27:08 +00004508 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004509 .model_id = INTEL_28F004T,
Michael Karcherad0010a2010-04-03 10:27:08 +00004510 .total_size = 512,
4511 .page_size = 128 * 1024, /* maximal block size */
4512 .tested = TEST_UNTESTED,
4513 .probe = probe_82802ab,
4514 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
4515 .block_erasers =
4516 {
4517 {
4518 .eraseblocks = {
4519 {128 * 1024, 3},
4520 {96 * 1024, 1},
4521 {8 * 1024, 2},
4522 {16 * 1024, 1},
4523 },
4524 .block_erase = erase_block_82802ab,
4525 },
4526 },
4527 .write = write_82802ab,
4528 .read = read_memmapped,
4529 },
4530
4531 {
4532 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004533 .name = "28F400BV/BX/CE/CV-B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004534 .bustype = BUS_PARALLEL,
Michael Karcherad0010a2010-04-03 10:27:08 +00004535 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004536 .model_id = INTEL_28F400B,
Michael Karcherad0010a2010-04-03 10:27:08 +00004537 .total_size = 512,
4538 .page_size = 128 * 1024, /* maximal block size */
4539 .feature_bits = FEATURE_ADDR_SHIFTED,
4540 .tested = TEST_UNTESTED,
4541 .probe = probe_82802ab,
4542 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
4543 .block_erasers =
4544 {
4545 {
4546 .eraseblocks = {
4547 {16 * 1024, 1},
4548 {8 * 1024, 2},
4549 {96 * 1024, 1},
4550 {128 * 1024, 3},
4551 },
4552 .block_erase = erase_block_82802ab,
4553 },
4554 },
4555 .write = write_82802ab,
4556 .read = read_memmapped,
4557 },
4558
4559 {
4560 .vendor = "Intel",
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004561 .name = "28F400BV/BX/CE/CV-T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004562 .bustype = BUS_PARALLEL,
Michael Karcherad0010a2010-04-03 10:27:08 +00004563 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004564 .model_id = INTEL_28F400T,
Michael Karcherad0010a2010-04-03 10:27:08 +00004565 .total_size = 512,
4566 .page_size = 128 * 1024, /* maximal block size */
4567 .feature_bits = FEATURE_ADDR_SHIFTED,
4568 .tested = TEST_UNTESTED,
4569 .probe = probe_82802ab,
4570 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
4571 .block_erasers =
4572 {
4573 {
4574 .eraseblocks = {
4575 {128 * 1024, 3},
4576 {96 * 1024, 1},
4577 {8 * 1024, 2},
4578 {16 * 1024, 1},
4579 },
4580 .block_erase = erase_block_82802ab,
4581 },
4582 },
4583 .write = write_82802ab,
4584 .read = read_memmapped,
4585 },
4586
4587 {
4588 .vendor = "Intel",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004589 .name = "82802AB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004590 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004591 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004592 .model_id = INTEL_82802AB,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004593 .total_size = 512,
4594 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004595 .feature_bits = FEATURE_REGISTERMAP,
Stefan Taunerd06d9412011-06-12 19:47:55 +00004596 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004597 .probe = probe_82802ab,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004598 .probe_timing = TIMING_IGNORED, /* routine does not use probe_timing (82802ab.c) */
Sean Nelson54596372010-01-09 05:30:14 +00004599 .block_erasers =
4600 {
4601 {
4602 .eraseblocks = { {64 * 1024, 8} },
Sean Nelson28accc22010-03-19 18:47:06 +00004603 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00004604 },
4605 },
Sean Nelson28accc22010-03-19 18:47:06 +00004606 .unlock = unlock_82802ab,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004607 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004608 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004609 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00004610 },
4611
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004612 {
4613 .vendor = "Intel",
4614 .name = "82802AC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004615 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004616 .manufacture_id = INTEL_ID,
Mattias Mattssoncbee4a72010-10-05 20:28:36 +00004617 .model_id = INTEL_82802AC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004618 .total_size = 1024,
4619 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00004620 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson28accc22010-03-19 18:47:06 +00004621 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004622 .probe = probe_82802ab,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004623 .probe_timing = TIMING_IGNORED, /* routine does not use probe_timing (82802ab.c) */
Sean Nelson54596372010-01-09 05:30:14 +00004624 .block_erasers =
4625 {
4626 {
4627 .eraseblocks = { {64 * 1024, 16} },
Sean Nelson28accc22010-03-19 18:47:06 +00004628 .block_erase = erase_block_82802ab,
Sean Nelson54596372010-01-09 05:30:14 +00004629 },
4630 },
Sean Nelson28accc22010-03-19 18:47:06 +00004631 .unlock = unlock_82802ab,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004632 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00004633 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004634 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00004635 },
4636
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004637 {
4638 .vendor = "Macronix",
4639 .name = "MX25L512",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004640 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004641 .manufacture_id = MACRONIX_ID,
4642 .model_id = MACRONIX_MX25L512,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004643 .total_size = 64,
4644 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00004645 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004646 .tested = TEST_UNTESTED,
4647 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004648 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00004649 .block_erasers =
4650 {
4651 {
4652 .eraseblocks = { {4 * 1024, 16} },
4653 .block_erase = spi_block_erase_20,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00004654 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00004655 .eraseblocks = { {64 * 1024, 1} },
4656 .block_erase = spi_block_erase_52,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00004657 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00004658 .eraseblocks = { {64 * 1024, 1} },
4659 .block_erase = spi_block_erase_d8,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00004660 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00004661 .eraseblocks = { {64 * 1024, 1} },
4662 .block_erase = spi_block_erase_60,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00004663 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00004664 .eraseblocks = { {64 * 1024, 1} },
4665 .block_erase = spi_block_erase_c7,
4666 },
4667 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004668 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004669 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004670 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004671 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00004672 },
4673
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004674 {
4675 .vendor = "Macronix",
4676 .name = "MX25L1005",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004677 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004678 .manufacture_id = MACRONIX_ID,
4679 .model_id = MACRONIX_MX25L1005,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004680 .total_size = 128,
4681 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00004682 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004683 .tested = TEST_UNTESTED,
4684 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004685 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00004686 .block_erasers =
4687 {
4688 {
4689 .eraseblocks = { {4 * 1024, 32} },
4690 .block_erase = spi_block_erase_20,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00004691 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00004692 .eraseblocks = { {64 * 1024, 2} },
4693 .block_erase = spi_block_erase_d8,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00004694 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00004695 .eraseblocks = { {128 * 1024, 1} },
4696 .block_erase = spi_block_erase_60,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00004697 }, {
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00004698 .eraseblocks = { {128 * 1024, 1} },
4699 .block_erase = spi_block_erase_c7,
4700 },
4701 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004702 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004703 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004704 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004705 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00004706 },
4707
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004708 {
4709 .vendor = "Macronix",
4710 .name = "MX25L2005",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004711 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004712 .manufacture_id = MACRONIX_ID,
4713 .model_id = MACRONIX_MX25L2005,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004714 .total_size = 256,
4715 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00004716 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004717 .tested = TEST_UNTESTED,
4718 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004719 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00004720 .block_erasers =
4721 {
4722 {
4723 .eraseblocks = { {4 * 1024, 64} },
4724 .block_erase = spi_block_erase_20,
4725 }, {
4726 .eraseblocks = { {64 * 1024, 4} },
4727 .block_erase = spi_block_erase_52,
4728 }, {
4729 .eraseblocks = { {64 * 1024, 4} },
4730 .block_erase = spi_block_erase_d8,
4731 }, {
4732 .eraseblocks = { {256 * 1024, 1} },
4733 .block_erase = spi_block_erase_60,
4734 }, {
4735 .eraseblocks = { {256 * 1024, 1} },
4736 .block_erase = spi_block_erase_c7,
4737 },
4738 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004739 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004740 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004741 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004742 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00004743 },
4744
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004745 {
4746 .vendor = "Macronix",
4747 .name = "MX25L4005",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004748 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004749 .manufacture_id = MACRONIX_ID,
4750 .model_id = MACRONIX_MX25L4005,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004751 .total_size = 512,
4752 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00004753 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner8179be52011-06-04 13:13:34 +00004754 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004755 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004756 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00004757 .block_erasers =
4758 {
4759 {
4760 .eraseblocks = { {4 * 1024, 128} },
4761 .block_erase = spi_block_erase_20,
4762 }, {
4763 .eraseblocks = { {64 * 1024, 8} },
4764 .block_erase = spi_block_erase_52,
4765 }, {
4766 .eraseblocks = { {64 * 1024, 8} },
4767 .block_erase = spi_block_erase_d8,
4768 }, {
4769 .eraseblocks = { {512 * 1024, 1} },
4770 .block_erase = spi_block_erase_60,
4771 }, {
4772 .eraseblocks = { {512 * 1024, 1} },
4773 .block_erase = spi_block_erase_c7,
4774 },
4775 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004776 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004777 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004778 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004779 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00004780 },
4781
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004782 {
4783 .vendor = "Macronix",
4784 .name = "MX25L8005",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004785 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004786 .manufacture_id = MACRONIX_ID,
4787 .model_id = MACRONIX_MX25L8005,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004788 .total_size = 1024,
4789 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00004790 .feature_bits = FEATURE_WRSR_WREN,
David Hendricks567b7b82011-05-18 01:31:03 +00004791 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004792 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004793 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00004794 .block_erasers =
4795 {
4796 {
4797 .eraseblocks = { {4 * 1024, 256} },
4798 .block_erase = spi_block_erase_20,
4799 }, {
4800 .eraseblocks = { {64 * 1024, 16} },
4801 .block_erase = spi_block_erase_52,
4802 }, {
4803 .eraseblocks = { {64 * 1024, 16} },
4804 .block_erase = spi_block_erase_d8,
4805 }, {
4806 .eraseblocks = { {1024 * 1024, 1} },
4807 .block_erase = spi_block_erase_60,
4808 }, {
4809 .eraseblocks = { {1024 * 1024, 1} },
4810 .block_erase = spi_block_erase_c7,
4811 },
4812 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004813 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004814 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004815 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004816 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00004817 },
4818
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004819 {
4820 .vendor = "Macronix",
4821 .name = "MX25L1605",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004822 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004823 .manufacture_id = MACRONIX_ID,
4824 .model_id = MACRONIX_MX25L1605,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004825 .total_size = 2048,
4826 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00004827 .feature_bits = FEATURE_WRSR_WREN,
Sven Schnelle4bd8a402011-03-07 10:59:06 +00004828 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004829 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004830 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfinger40107122009-10-01 13:15:01 +00004831 .block_erasers =
4832 {
4833 {
4834 .eraseblocks = { {4 * 1024, 512} },
4835 .block_erase = spi_block_erase_20, /* This erase function has 64k blocksize for eLiteFlash */
4836 }, {
4837 .eraseblocks = { {64 * 1024, 32} }, /* Not supported in MX25L1605 (eLiteFlash) and MX25L1605D */
4838 .block_erase = spi_block_erase_52,
4839 }, {
4840 .eraseblocks = { {64 * 1024, 32} },
4841 .block_erase = spi_block_erase_d8,
4842 }, {
4843 .eraseblocks = { {2 * 1024 * 1024, 1} },
4844 .block_erase = spi_block_erase_60,
4845 }, {
4846 .eraseblocks = { {2 * 1024 * 1024, 1} },
4847 .block_erase = spi_block_erase_c7,
4848 },
4849 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004850 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004851 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004852 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004853 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00004854 },
4855
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004856 {
4857 .vendor = "Macronix",
Stephan Guillouxf5c70902009-04-19 23:04:00 +00004858 .name = "MX25L1635D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004859 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004860 .manufacture_id = MACRONIX_ID,
4861 .model_id = MACRONIX_MX25L1635D,
Stephan Guillouxf5c70902009-04-19 23:04:00 +00004862 .total_size = 2048,
4863 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00004864 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guillouxf5c70902009-04-19 23:04:00 +00004865 .tested = TEST_UNTESTED,
4866 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004867 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00004868 .block_erasers =
4869 {
4870 {
4871 .eraseblocks = { {4 * 1024, 512} },
4872 .block_erase = spi_block_erase_20,
4873 }, {
4874 .eraseblocks = { {64 * 1024, 32} },
4875 .block_erase = spi_block_erase_d8,
4876 }, {
4877 .eraseblocks = { {2 * 1024 * 1024, 1} },
4878 .block_erase = spi_block_erase_60,
4879 }, {
4880 .eraseblocks = { {2 * 1024 * 1024, 1} },
4881 .block_erase = spi_block_erase_c7,
4882 }
4883 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004884 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004885 .write = spi_chip_write_256,
Stephan Guillouxf5c70902009-04-19 23:04:00 +00004886 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004887 .voltage = {2700, 3600},
Stephan Guillouxf5c70902009-04-19 23:04:00 +00004888 },
Stephan Guillouxfd315502009-04-20 22:54:13 +00004889
Stephan Guillouxf5c70902009-04-19 23:04:00 +00004890 {
4891 .vendor = "Macronix",
Stephan Guilloux3611b802010-09-13 19:59:28 +00004892 .name = "MX25L1635E",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004893 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004894 .manufacture_id = MACRONIX_ID,
4895 .model_id = MACRONIX_MX25L1635E,
Stephan Guilloux3611b802010-09-13 19:59:28 +00004896 .total_size = 2048,
4897 .page_size = 256,
4898 .feature_bits = FEATURE_WRSR_WREN,
4899 .tested = TEST_UNTESTED,
4900 .probe = probe_spi_rdid,
4901 .probe_timing = TIMING_ZERO,
4902 .block_erasers =
4903 {
4904 {
4905 .eraseblocks = { {4 * 1024, 512} },
4906 .block_erase = spi_block_erase_20,
4907 }, {
4908 .eraseblocks = { {64 * 1024, 32} },
4909 .block_erase = spi_block_erase_d8,
4910 }, {
4911 .eraseblocks = { {2 * 1024 * 1024, 1} },
4912 .block_erase = spi_block_erase_60,
4913 }, {
4914 .eraseblocks = { {2 * 1024 * 1024, 1} },
4915 .block_erase = spi_block_erase_c7,
4916 }
4917 },
4918 .unlock = spi_disable_blockprotect,
4919 .write = spi_chip_write_256,
4920 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00004921 .voltage = {2700, 3600},
Stephan Guilloux3611b802010-09-13 19:59:28 +00004922 },
4923
4924 {
4925 .vendor = "Macronix",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004926 .name = "MX25L3205",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004927 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004928 .manufacture_id = MACRONIX_ID,
4929 .model_id = MACRONIX_MX25L3205,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004930 .total_size = 4096,
4931 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00004932 .feature_bits = FEATURE_WRSR_WREN,
David Hendricks22e05322010-12-13 23:54:59 +00004933 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004934 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004935 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00004936 .block_erasers =
4937 {
4938 {
4939 .eraseblocks = { {4 * 1024, 1024} },
4940 .block_erase = spi_block_erase_20,
4941 }, {
4942 .eraseblocks = { {4 * 1024, 1024} },
4943 .block_erase = spi_block_erase_d8,
4944 }, {
4945 .eraseblocks = { {4 * 1024 * 1024, 1} },
4946 .block_erase = spi_block_erase_60,
4947 }, {
4948 .eraseblocks = { {4 * 1024 * 1024, 1} },
4949 .block_erase = spi_block_erase_c7,
4950 },
4951 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004952 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004953 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004954 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004955 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00004956 },
4957
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004958 {
4959 .vendor = "Macronix",
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00004960 .name = "MX25L3235D",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004961 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004962 .manufacture_id = MACRONIX_ID,
4963 .model_id = MACRONIX_MX25L3235D,
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00004964 .total_size = 4096,
4965 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00004966 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00004967 .tested = TEST_UNTESTED,
4968 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00004969 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00004970 .block_erasers =
4971 {
4972 {
4973 .eraseblocks = { {4 * 1024, 1024} },
4974 .block_erase = spi_block_erase_20,
4975 }, {
4976 .eraseblocks = { {64 * 1024, 64} },
4977 .block_erase = spi_block_erase_d8,
4978 }, {
4979 .eraseblocks = { {4 * 1024 * 1024, 1} },
4980 .block_erase = spi_block_erase_60,
4981 }, {
4982 .eraseblocks = { {4 * 1024 * 1024, 1} },
4983 .block_erase = spi_block_erase_c7,
4984 }
4985 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00004986 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00004987 .write = spi_chip_write_256,
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00004988 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00004989 .voltage = {2700, 3600},
Stephan Guilloux70ea9a32009-04-23 22:51:56 +00004990 },
4991
4992 {
4993 .vendor = "Macronix",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004994 .name = "MX25L6405",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00004995 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00004996 .manufacture_id = MACRONIX_ID,
4997 .model_id = MACRONIX_MX25L6405,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00004998 .total_size = 8192,
4999 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00005000 .feature_bits = FEATURE_WRSR_WREN,
Paul Menzelac427b22012-02-16 21:07:07 +00005001 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005002 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005003 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00005004 .block_erasers =
5005 {
5006 {
5007 .eraseblocks = { {64 * 1024, 128} },
5008 .block_erase = spi_block_erase_20,
5009 }, {
5010 .eraseblocks = { {64 * 1024, 128} },
5011 .block_erase = spi_block_erase_d8,
5012 }, {
5013 .eraseblocks = { {8 * 1024 * 1024, 1} },
5014 .block_erase = spi_block_erase_60,
5015 }, {
5016 .eraseblocks = { {8 * 1024 * 1024, 1} },
5017 .block_erase = spi_block_erase_c7,
5018 }
5019 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005020 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005021 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005022 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005023 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005024 },
5025
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005026 {
5027 .vendor = "Macronix",
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00005028 .name = "MX25L12805",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005029 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005030 .manufacture_id = MACRONIX_ID,
5031 .model_id = MACRONIX_MX25L12805,
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00005032 .total_size = 16384,
5033 .page_size = 256,
David Hendricks67db2eb2010-09-03 03:35:48 +00005034 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00005035 .tested = TEST_UNTESTED,
5036 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005037 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00005038 .block_erasers =
5039 {
5040 {
5041 .eraseblocks = { {4 * 1024, 4096} },
5042 .block_erase = spi_block_erase_20,
5043 }, {
5044 .eraseblocks = { {64 * 1024, 256} },
5045 .block_erase = spi_block_erase_d8,
5046 }, {
5047 .eraseblocks = { {16 * 1024 * 1024, 1} },
5048 .block_erase = spi_block_erase_60,
5049 }, {
5050 .eraseblocks = { {16 * 1024 * 1024, 1} },
5051 .block_erase = spi_block_erase_c7,
5052 }
5053 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005054 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005055 .write = spi_chip_write_256,
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00005056 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005057 .voltage = {2700, 3600},
Stephan Guilloux2f132fe2009-04-21 01:47:16 +00005058 },
5059
5060 {
5061 .vendor = "Macronix",
Mark Panajotovic502a9132009-08-24 01:42:24 +00005062 .name = "MX29F001B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005063 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005064 .manufacture_id = MACRONIX_ID,
5065 .model_id = MACRONIX_MX29F001B,
Mark Panajotovic502a9132009-08-24 01:42:24 +00005066 .total_size = 128,
5067 .page_size = 32 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005068 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
5069 .tested = TEST_UNTESTED,
5070 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00005071 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00005072 .block_erasers =
5073 {
5074 {
5075 .eraseblocks = {
5076 {8 * 1024, 1},
5077 {4 * 1024, 2},
5078 {8 * 1024, 2},
5079 {32 * 1024, 1},
5080 {64 * 1024, 1},
5081 },
Sean Nelson35727f72010-01-28 23:55:12 +00005082 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00005083 }, {
5084 .eraseblocks = { {128 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00005085 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00005086 }
5087 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00005088 .write = write_jedec_1,
Mark Panajotovic502a9132009-08-24 01:42:24 +00005089 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005090 .voltage = {4500, 5500},
Mark Panajotovic502a9132009-08-24 01:42:24 +00005091 },
5092
5093 {
5094 .vendor = "Macronix",
5095 .name = "MX29F001T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005096 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005097 .manufacture_id = MACRONIX_ID,
5098 .model_id = MACRONIX_MX29F001T,
Mark Panajotovic502a9132009-08-24 01:42:24 +00005099 .total_size = 128,
5100 .page_size = 32 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005101 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Stefan Tauner74c6ec62011-05-18 01:31:46 +00005102 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +00005103 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00005104 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00005105 .block_erasers =
5106 {
5107 {
5108 .eraseblocks = {
5109 {64 * 1024, 1},
5110 {32 * 1024, 1},
5111 {8 * 1024, 2},
5112 {4 * 1024, 2},
5113 {8 * 1024, 1},
5114 },
Sean Nelson35727f72010-01-28 23:55:12 +00005115 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00005116 }, {
5117 .eraseblocks = { {128 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00005118 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00005119 }
5120 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00005121 .write = write_jedec_1,
Mark Panajotovic502a9132009-08-24 01:42:24 +00005122 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005123 .voltage = {4500, 5500},
Mark Panajotovic502a9132009-08-24 01:42:24 +00005124 },
5125
5126 {
5127 .vendor = "Macronix",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00005128 .name = "MX29F002(N)B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005129 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005130 .manufacture_id = MACRONIX_ID,
5131 .model_id = MACRONIX_MX29F002B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005132 .total_size = 256,
5133 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005134 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005135 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00005136 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00005137 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005138 .block_erasers =
5139 {
5140 {
5141 .eraseblocks = {
5142 {16 * 1024, 1},
5143 {8 * 1024, 2},
5144 {32 * 1024, 1},
5145 {64 * 1024, 3},
5146 },
Sean Nelson35727f72010-01-28 23:55:12 +00005147 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005148 }, {
5149 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00005150 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005151 },
5152 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00005153 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005154 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005155 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00005156 },
5157
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005158 {
5159 .vendor = "Macronix",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00005160 .name = "MX29F002(N)T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005161 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005162 .manufacture_id = MACRONIX_ID,
5163 .model_id = MACRONIX_MX29F002T,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005164 .total_size = 256,
5165 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005166 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00005167 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +00005168 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00005169 .probe_timing = TIMING_ZERO,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005170 .block_erasers =
5171 {
5172 {
5173 .eraseblocks = {
5174 {64 * 1024, 3},
5175 {32 * 1024, 1},
5176 {8 * 1024, 2},
5177 {16 * 1024, 1},
5178 },
Sean Nelson35727f72010-01-28 23:55:12 +00005179 .block_erase = erase_sector_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005180 }, {
5181 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00005182 .block_erase = erase_chip_block_jedec,
Sean Nelson6b11ad22009-12-23 17:05:59 +00005183 },
5184 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00005185 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005186 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005187 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00005188 },
5189
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005190 {
5191 .vendor = "Macronix",
Joshua Roysf1324e02010-09-16 00:51:51 +00005192 .name = "MX29F040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005193 .bustype = BUS_PARALLEL,
Joshua Roysf1324e02010-09-16 00:51:51 +00005194 .manufacture_id = MACRONIX_ID,
5195 .model_id = MACRONIX_MX29F040,
5196 .total_size = 512,
5197 .page_size = 64 * 1024,
5198 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
5199 .tested = TEST_UNTESTED,
5200 .probe = probe_jedec,
5201 .probe_timing = TIMING_ZERO,
5202 .block_erasers =
5203 {
5204 {
5205 .eraseblocks = { {64 * 1024, 8} },
5206 .block_erase = erase_sector_jedec,
5207 }, {
5208 .eraseblocks = { {512 * 1024, 1} },
5209 .block_erase = erase_chip_block_jedec,
5210 },
5211 },
5212 .write = write_jedec_1,
5213 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00005214 .voltage = {4500, 5500},
Joshua Roysf1324e02010-09-16 00:51:51 +00005215 },
5216
5217 {
5218 .vendor = "Macronix",
Carl-Daniel Hailfinger350a0c32009-07-24 13:59:27 +00005219 .name = "MX29LV040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005220 .bustype = BUS_PARALLEL,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005221 .manufacture_id = MACRONIX_ID,
5222 .model_id = MACRONIX_MX29LV040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005223 .total_size = 512,
5224 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005225 .feature_bits = FEATURE_ADDR_2AA | FEATURE_SHORT_RESET,
5226 .tested = TEST_UNTESTED,
5227 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00005228 .probe_timing = TIMING_ZERO,
Sean Nelson54596372010-01-09 05:30:14 +00005229 .block_erasers =
5230 {
5231 {
5232 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson35727f72010-01-28 23:55:12 +00005233 .block_erase = erase_sector_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00005234 }, {
5235 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00005236 .block_erase = erase_chip_block_jedec,
Sean Nelson54596372010-01-09 05:30:14 +00005237 },
5238 },
Michael Karcher1c296ca2009-11-27 17:49:42 +00005239 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00005240 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005241 .voltage = {2700, 3600},
Carl-Daniel Hailfinger7de86392008-12-10 10:32:05 +00005242 },
5243
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005244 {
Mattias Mattsson4c066502010-07-29 20:01:13 +00005245 .vendor = "MoselVitelic",
5246 .name = "V29C51000B",
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_V29C51000B,
5250 .total_size = 64,
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, 128} },
5260 .block_erase = erase_sector_jedec,
5261 }, {
5262 .eraseblocks = { {64 * 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 {
5272 .vendor = "MoselVitelic",
5273 .name = "V29C51000T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005274 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00005275 .manufacture_id = SYNCMOS_MVC_ID,
5276 .model_id = MVC_V29C51000T,
5277 .total_size = 64,
5278 .page_size = 512,
5279 .feature_bits = FEATURE_EITHER_RESET,
5280 .tested = TEST_UNTESTED,
5281 .probe = probe_jedec,
5282 .probe_timing = TIMING_ZERO,
5283 .block_erasers =
5284 {
5285 {
5286 .eraseblocks = { {512, 128} },
5287 .block_erase = erase_sector_jedec,
5288 }, {
5289 .eraseblocks = { {64 * 1024, 1} },
5290 .block_erase = erase_chip_block_jedec,
5291 },
5292 },
5293 .write = write_jedec_1,
5294 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005295 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00005296 },
5297
5298 {
5299 .vendor = "MoselVitelic",
5300 .name = "V29C51400B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005301 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00005302 .manufacture_id = SYNCMOS_MVC_ID,
5303 .model_id = MVC_V29C51400B,
5304 .total_size = 512,
5305 .page_size = 1024,
5306 .feature_bits = FEATURE_EITHER_RESET,
5307 .tested = TEST_UNTESTED,
5308 .probe = probe_jedec,
5309 .probe_timing = TIMING_ZERO,
5310 .block_erasers =
5311 {
5312 {
5313 .eraseblocks = { {1024, 512} },
5314 .block_erase = erase_sector_jedec,
5315 }, {
5316 .eraseblocks = { {512 * 1024, 1} },
5317 .block_erase = erase_chip_block_jedec,
5318 },
5319 },
5320 .write = write_jedec_1,
5321 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005322 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00005323 },
5324
5325 {
5326 .vendor = "MoselVitelic",
5327 .name = "V29C51400T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005328 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00005329 .manufacture_id = SYNCMOS_MVC_ID,
5330 .model_id = MVC_V29C51400T,
5331 .total_size = 512,
5332 .page_size = 1024,
5333 .feature_bits = FEATURE_EITHER_RESET,
5334 .tested = TEST_UNTESTED,
5335 .probe = probe_jedec,
5336 .probe_timing = TIMING_ZERO,
5337 .block_erasers =
5338 {
5339 {
5340 .eraseblocks = { {1024, 512} },
5341 .block_erase = erase_sector_jedec,
5342 }, {
5343 .eraseblocks = { {512 * 1024, 1} },
5344 .block_erase = erase_chip_block_jedec,
5345 },
5346 },
5347 .write = write_jedec_1,
5348 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005349 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00005350 },
5351
5352 {
5353 .vendor = "MoselVitelic",
5354 .name = "V29LC51000",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005355 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00005356 .manufacture_id = SYNCMOS_MVC_ID,
5357 .model_id = MVC_V29LC51000,
5358 .total_size = 64,
5359 .page_size = 512,
5360 .feature_bits = FEATURE_EITHER_RESET,
5361 .tested = TEST_UNTESTED,
5362 .probe = probe_jedec,
5363 .probe_timing = TIMING_ZERO,
5364 .block_erasers =
5365 {
5366 {
5367 .eraseblocks = { {512, 128} },
5368 .block_erase = erase_sector_jedec,
5369 }, {
5370 .eraseblocks = { {64 * 1024, 1} },
5371 .block_erase = erase_chip_block_jedec,
5372 },
5373 },
5374 .write = write_jedec_1,
5375 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005376 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00005377 },
5378
5379 {
5380 .vendor = "MoselVitelic",
5381 .name = "V29LC51001",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005382 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00005383 .manufacture_id = SYNCMOS_MVC_ID,
5384 .model_id = MVC_V29LC51001,
5385 .total_size = 128,
5386 .page_size = 512,
5387 .feature_bits = FEATURE_EITHER_RESET,
5388 .tested = TEST_UNTESTED,
5389 .probe = probe_jedec,
5390 .probe_timing = TIMING_ZERO,
5391 .block_erasers =
5392 {
5393 {
5394 .eraseblocks = { {512, 256} },
5395 .block_erase = erase_sector_jedec,
5396 }, {
5397 .eraseblocks = { {128 * 1024, 1} },
5398 .block_erase = erase_chip_block_jedec,
5399 },
5400 },
5401 .write = write_jedec_1,
5402 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005403 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00005404 },
5405
5406 {
5407 .vendor = "MoselVitelic",
5408 .name = "V29LC51002",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005409 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00005410 .manufacture_id = SYNCMOS_MVC_ID,
5411 .model_id = MVC_V29LC51002,
5412 .total_size = 256,
5413 .page_size = 512,
5414 .feature_bits = FEATURE_EITHER_RESET,
5415 .tested = TEST_UNTESTED,
5416 .probe = probe_jedec,
5417 .probe_timing = TIMING_ZERO,
5418 .block_erasers =
5419 {
5420 {
5421 .eraseblocks = { {512, 512} },
5422 .block_erase = erase_sector_jedec,
5423 }, {
5424 .eraseblocks = { {256 * 1024, 1} },
5425 .block_erase = erase_chip_block_jedec,
5426 },
5427 },
5428 .write = write_jedec_1,
5429 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005430 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00005431 },
5432
5433 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005434 .vendor = "Numonyx",
5435 .name = "M25PE10",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005436 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005437 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00005438 .model_id = ST_M25PE10,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005439 .total_size = 128,
5440 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00005441 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005442 .tested = TEST_UNTESTED,
5443 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005444 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00005445 .block_erasers =
5446 {
5447 {
5448 .eraseblocks = { {4 * 1024, 32} },
5449 .block_erase = spi_block_erase_20,
5450 }, {
5451 .eraseblocks = { {64 * 1024, 2} },
5452 .block_erase = spi_block_erase_d8,
5453 }, {
5454 .eraseblocks = { {128 * 1024, 1} },
5455 .block_erase = spi_block_erase_c7,
5456 }
5457 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005458 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005459 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005460 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005461 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005462 },
5463
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005464 {
5465 .vendor = "Numonyx",
5466 .name = "M25PE20",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005467 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005468 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00005469 .model_id = ST_M25PE20,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005470 .total_size = 256,
5471 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00005472 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005473 .tested = TEST_UNTESTED,
5474 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005475 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00005476 .block_erasers =
5477 {
5478 {
5479 .eraseblocks = { {4 * 1024, 64} },
5480 .block_erase = spi_block_erase_20,
5481 }, {
5482 .eraseblocks = { {64 * 1024, 4} },
5483 .block_erase = spi_block_erase_d8,
5484 }, {
5485 .eraseblocks = { {256 * 1024, 1} },
5486 .block_erase = spi_block_erase_c7,
5487 }
5488 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005489 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005490 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005491 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005492 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005493 },
5494
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005495 {
5496 .vendor = "Numonyx",
5497 .name = "M25PE40",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005498 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005499 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00005500 .model_id = ST_M25PE40,
Sean Nelson5643c072010-01-19 03:23:07 +00005501 .total_size = 512,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005502 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00005503 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005504 .tested = TEST_UNTESTED,
5505 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005506 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00005507 .block_erasers =
5508 {
5509 {
5510 .eraseblocks = { {4 * 1024, 128} },
5511 .block_erase = spi_block_erase_20,
5512 }, {
5513 .eraseblocks = { {64 * 1024, 8} },
5514 .block_erase = spi_block_erase_d8,
5515 }, {
5516 .eraseblocks = { {512 * 1024, 1} },
5517 .block_erase = spi_block_erase_c7,
5518 }
5519 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005520 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005521 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005522 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005523 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005524 },
5525
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005526 {
5527 .vendor = "Numonyx",
5528 .name = "M25PE80",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005529 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005530 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00005531 .model_id = ST_M25PE80,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005532 .total_size = 1024,
5533 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00005534 .feature_bits = FEATURE_WRSR_WREN,
Paul Menzelac427b22012-02-16 21:07:07 +00005535 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005536 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005537 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00005538 .block_erasers =
5539 {
5540 {
5541 .eraseblocks = { {4 * 1024, 256} },
5542 .block_erase = spi_block_erase_20,
5543 }, {
5544 .eraseblocks = { {64 * 1024, 16} },
5545 .block_erase = spi_block_erase_d8,
5546 }, {
5547 .eraseblocks = { {1024 * 1024, 1} },
5548 .block_erase = spi_block_erase_c7,
5549 }
5550 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005551 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005552 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005553 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005554 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005555 },
5556
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005557 {
5558 .vendor = "Numonyx",
5559 .name = "M25PE16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005560 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005561 .manufacture_id = ST_ID,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00005562 .model_id = ST_M25PE16,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005563 .total_size = 2048,
5564 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00005565 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005566 .tested = TEST_UNTESTED,
5567 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005568 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00005569 .block_erasers =
5570 {
5571 {
5572 .eraseblocks = { {4 * 1024, 512} },
5573 .block_erase = spi_block_erase_20,
5574 }, {
5575 .eraseblocks = { {64 * 1024, 32} },
5576 .block_erase = spi_block_erase_d8,
5577 }, {
5578 .eraseblocks = { {2 * 1024 * 1024, 1} },
5579 .block_erase = spi_block_erase_c7,
5580 }
5581 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005582 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005583 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005584 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005585 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005586 },
5587
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005588 {
Niklas Söderlundae4294f2012-04-14 21:04:03 +00005589 .vendor = "Numonyx",
5590 .name = "N25Q064",
5591 .bustype = BUS_SPI,
5592 .manufacture_id = ST_ID,
5593 .model_id = ST_N25Q064,
5594 .total_size = 8192,
5595 .page_size = 256,
5596 .tested = TEST_OK_PREW,
5597 .probe = probe_spi_rdid,
5598 .probe_timing = TIMING_ZERO,
5599 .block_erasers =
5600 {
5601 {
5602 .eraseblocks = { {4 * 1024, 2048 } },
5603 .block_erase = spi_block_erase_20,
5604 }, {
5605 .eraseblocks = { {64 * 1024, 128} },
5606 .block_erase = spi_block_erase_d8,
5607 }, {
5608 .eraseblocks = { {8 * 1024 * 1024, 1} },
5609 .block_erase = spi_block_erase_c7,
5610 }
5611 },
5612 .unlock = spi_disable_blockprotect,
5613 .write = spi_chip_write_256,
5614 .read = spi_chip_read,
5615 },
5616
5617 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005618 .vendor = "PMC",
5619 .name = "Pm25LV010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005620 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005621 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005622 .model_id = PMC_PM25LV010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005623 .total_size = 128,
5624 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00005625 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005626 .tested = TEST_UNTESTED,
5627 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005628 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00005629 .block_erasers =
5630 {
5631 {
5632 .eraseblocks = { {4 * 1024, 32} },
5633 .block_erase = spi_block_erase_d7,
5634 }, {
5635 .eraseblocks = { {32 * 1024, 4} },
5636 .block_erase = spi_block_erase_d8,
5637 }, {
5638 .eraseblocks = { {128 * 1024, 1} },
5639 .block_erase = spi_block_erase_c7,
5640 }
5641 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005642 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005643 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005644 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005645 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005646 },
5647
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005648 {
5649 .vendor = "PMC",
5650 .name = "Pm25LV016B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005651 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005652 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005653 .model_id = PMC_PM25LV016B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005654 .total_size = 2048,
5655 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00005656 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005657 .tested = TEST_UNTESTED,
5658 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005659 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00005660 .block_erasers =
5661 {
5662 {
5663 .eraseblocks = { {4 * 1024, 512} },
5664 .block_erase = spi_block_erase_d7,
5665 }, {
5666 .eraseblocks = { {4 * 1024, 512} },
5667 .block_erase = spi_block_erase_20,
5668 }, {
5669 .eraseblocks = { {64 * 1024, 32} },
5670 .block_erase = spi_block_erase_d8,
5671 }, {
5672 .eraseblocks = { {2 * 1024 * 1024, 1} },
5673 .block_erase = spi_block_erase_60,
5674 }, {
5675 .eraseblocks = { {2 * 1024 * 1024, 1} },
5676 .block_erase = spi_block_erase_c7,
5677 }
5678 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005679 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005680 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005681 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00005682 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005683 },
5684
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005685 {
5686 .vendor = "PMC",
5687 .name = "Pm25LV020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005688 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005689 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005690 .model_id = PMC_PM25LV020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005691 .total_size = 256,
5692 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00005693 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005694 .tested = TEST_UNTESTED,
5695 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005696 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00005697 .block_erasers =
5698 {
5699 {
5700 .eraseblocks = { {4 * 1024, 64} },
5701 .block_erase = spi_block_erase_d7,
5702 }, {
5703 .eraseblocks = { {64 * 1024, 4} },
5704 .block_erase = spi_block_erase_d8,
5705 }, {
5706 .eraseblocks = { {256 * 1024, 1} },
5707 .block_erase = spi_block_erase_c7,
5708 }
5709 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005710 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005711 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005712 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005713 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005714 },
5715
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005716 {
5717 .vendor = "PMC",
5718 .name = "Pm25LV040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005719 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005720 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005721 .model_id = PMC_PM25LV040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005722 .total_size = 512,
5723 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00005724 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner716e0982011-07-25 20:38:52 +00005725 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005726 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005727 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00005728 .block_erasers =
5729 {
5730 {
5731 .eraseblocks = { {4 * 1024, 128} },
5732 .block_erase = spi_block_erase_d7,
5733 }, {
5734 .eraseblocks = { {64 * 1024, 8} },
5735 .block_erase = spi_block_erase_d8,
5736 }, {
5737 .eraseblocks = { {512 * 1024, 1} },
5738 .block_erase = spi_block_erase_c7,
5739 }
5740 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005741 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005742 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005743 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005744 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005745 },
5746
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005747 {
5748 .vendor = "PMC",
5749 .name = "Pm25LV080B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005750 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005751 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005752 .model_id = PMC_PM25LV080B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005753 .total_size = 1024,
5754 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00005755 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005756 .tested = TEST_UNTESTED,
5757 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005758 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00005759 .block_erasers =
5760 {
5761 {
5762 .eraseblocks = { {4 * 1024, 256} },
5763 .block_erase = spi_block_erase_d7,
5764 }, {
5765 .eraseblocks = { {4 * 1024, 256} },
5766 .block_erase = spi_block_erase_20,
5767 }, {
5768 .eraseblocks = { {64 * 1024, 16} },
5769 .block_erase = spi_block_erase_d8,
5770 }, {
5771 .eraseblocks = { {1024 * 1024, 1} },
5772 .block_erase = spi_block_erase_60,
5773 }, {
5774 .eraseblocks = { {1024 * 1024, 1} },
5775 .block_erase = spi_block_erase_c7,
5776 }
5777 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005778 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005779 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005780 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005781 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005782 },
5783
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005784 {
5785 .vendor = "PMC",
5786 .name = "Pm25LV512",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005787 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005788 .manufacture_id = PMC_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005789 .model_id = PMC_PM25LV512,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005790 .total_size = 64,
5791 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00005792 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005793 .tested = TEST_UNTESTED,
5794 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00005795 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00005796 .block_erasers =
5797 {
5798 {
5799 .eraseblocks = { {4 * 1024, 16} },
5800 .block_erase = spi_block_erase_d7,
5801 }, {
5802 .eraseblocks = { {32 * 1024, 2} },
5803 .block_erase = spi_block_erase_d8,
5804 }, {
5805 .eraseblocks = { {64 * 1024, 1} },
5806 .block_erase = spi_block_erase_c7,
5807 }
5808 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00005809 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00005810 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005811 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00005812 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00005813 },
5814
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00005815 {
5816 .vendor = "PMC",
Sean Nelson72a9a022009-12-22 22:15:33 +00005817 .name = "Pm29F002T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005818 .bustype = BUS_PARALLEL,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00005819 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005820 .model_id = PMC_PM29F002T,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00005821 .total_size = 256,
Sean Nelson72a9a022009-12-22 22:15:33 +00005822 .page_size = 8 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005823 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stefan Tauneraf2db612011-12-02 21:48:17 +00005824 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +00005825 .probe = probe_jedec,
Stefan Tauneraf2db612011-12-02 21:48:17 +00005826 .probe_timing = TIMING_FIXME,
Sean Nelson72a9a022009-12-22 22:15:33 +00005827 .block_erasers =
5828 {
5829 {
5830 .eraseblocks = {
5831 {128 * 1024, 1},
5832 {96 * 1024, 1},
5833 {8 * 1024, 2},
5834 {16 * 1024, 1},
5835 },
Sean Nelson35727f72010-01-28 23:55:12 +00005836 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00005837 }, {
5838 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00005839 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00005840 },
5841 },
Sean Nelson35727f72010-01-28 23:55:12 +00005842 .write = write_jedec_1,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00005843 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005844 .voltage = {4500, 5500},
Uwe Hermannf983d9f2009-06-14 21:53:26 +00005845 },
5846
5847 {
5848 .vendor = "PMC",
Sean Nelson72a9a022009-12-22 22:15:33 +00005849 .name = "Pm29F002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005850 .bustype = BUS_PARALLEL,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00005851 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005852 .model_id = PMC_PM29F002B,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00005853 .total_size = 256,
Sean Nelson72a9a022009-12-22 22:15:33 +00005854 .page_size = 8 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00005855 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00005856 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00005857 .probe = probe_jedec,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00005858 .probe_timing = TIMING_FIXME,
Sean Nelson72a9a022009-12-22 22:15:33 +00005859 .block_erasers =
5860 {
5861 {
5862 .eraseblocks = {
5863 {16 * 1024, 1},
5864 {8 * 1024, 2},
5865 {96 * 1024, 1},
5866 {128 * 1024, 1},
5867 },
Sean Nelson35727f72010-01-28 23:55:12 +00005868 .block_erase = erase_sector_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00005869 }, {
5870 .eraseblocks = { {256 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00005871 .block_erase = erase_chip_block_jedec,
Sean Nelson72a9a022009-12-22 22:15:33 +00005872 },
5873 },
Sean Nelson35727f72010-01-28 23:55:12 +00005874 .write = write_jedec_1,
Uwe Hermannf983d9f2009-06-14 21:53:26 +00005875 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005876 .voltage = {4500, 5500},
Uwe Hermannf983d9f2009-06-14 21:53:26 +00005877 },
5878
5879 {
5880 .vendor = "PMC",
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00005881 .name = "Pm39LV010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005882 .bustype = BUS_PARALLEL,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00005883 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005884 .model_id = PMC_PM39F010, /* Pm39LV010 and Pm39F010 have identical IDs but different voltage */
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00005885 .total_size = 128,
5886 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00005887 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00005888 .tested = TEST_OK_PREW,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00005889 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00005890 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson5643c072010-01-19 03:23:07 +00005891 .block_erasers =
5892 {
5893 {
5894 .eraseblocks = { {4 * 1024, 32} },
5895 .block_erase = erase_sector_jedec,
5896 }, {
5897 .eraseblocks = { {64 * 1024, 2} },
5898 .block_erase = erase_block_jedec,
5899 }, {
5900 .eraseblocks = { {128 * 1024, 1} },
5901 .block_erase = erase_chip_block_jedec,
5902 }
5903 },
Sean Nelson35727f72010-01-28 23:55:12 +00005904 .write = write_jedec_1,
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00005905 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005906 .voltage = {2700, 3600},
Rudolf Marek50fdf3b2009-05-17 17:02:07 +00005907 },
5908
5909 {
5910 .vendor = "PMC",
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00005911 .name = "Pm39LV020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005912 .bustype = BUS_PARALLEL,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00005913 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005914 .model_id = PMC_PM39LV020,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00005915 .total_size = 256,
5916 .page_size = 4096,
5917 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
5918 .tested = TEST_UNTESTED,
5919 .probe = probe_jedec,
5920 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
5921 .block_erasers =
5922 {
5923 {
5924 .eraseblocks = { {4 * 1024, 64} },
5925 .block_erase = erase_sector_jedec,
5926 }, {
5927 .eraseblocks = { {64 * 1024, 4} },
5928 .block_erase = erase_block_jedec,
5929 }, {
5930 .eraseblocks = { {256 * 1024, 1} },
5931 .block_erase = erase_chip_block_jedec,
5932 }
5933 },
5934 .write = write_jedec_1,
5935 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005936 .voltage = {2700, 3600},
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00005937 },
5938
5939 {
5940 .vendor = "PMC",
5941 .name = "Pm39LV040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00005942 .bustype = BUS_PARALLEL,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00005943 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00005944 .model_id = PMC_PM39LV040,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00005945 .total_size = 512,
5946 .page_size = 4096,
5947 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00005948 .tested = TEST_OK_PR,
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00005949 .probe = probe_jedec,
5950 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
5951 .block_erasers =
5952 {
5953 {
5954 .eraseblocks = { {4 * 1024, 128} },
5955 .block_erase = erase_sector_jedec,
5956 }, {
5957 .eraseblocks = { {64 * 1024, 8} },
5958 .block_erase = erase_block_jedec,
5959 }, {
5960 .eraseblocks = { {512 * 1024, 1} },
5961 .block_erase = erase_chip_block_jedec,
5962 }
5963 },
5964 .write = write_jedec_1,
5965 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00005966 .voltage = {2700, 3600},
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00005967 },
Kyösti Mälkkiedab1d22012-05-20 23:32:33 +00005968
5969 {
5970 .vendor = "PMC",
5971 .name = "Pm39LV512",
5972 .bustype = BUS_PARALLEL,
5973 .manufacture_id = PMC_ID_NOPREFIX,
5974 .model_id = PMC_PM39LV512,
5975 .total_size = 64,
5976 .page_size = 4096,
5977 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
5978 .tested = TEST_OK_PREW,
5979 .probe = probe_jedec,
5980 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
5981 .block_erasers =
5982 {
5983 {
5984 .eraseblocks = { {4 * 1024, 16} },
5985 .block_erase = erase_sector_jedec,
5986 }, {
5987 .eraseblocks = { {64 * 1024, 1} },
5988 .block_erase = erase_block_jedec,
5989 }, {
5990 .eraseblocks = { {64 * 1024, 1} },
5991 .block_erase = erase_chip_block_jedec,
5992 }
5993 },
5994 .write = write_jedec_1,
5995 .read = read_memmapped,
5996 .voltage = {2700, 3600},
5997 },
5998
Anders Juel Jensendfdc56f2010-03-27 23:25:14 +00005999 {
6000 .vendor = "PMC",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006001 .name = "Pm49FL002",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006002 .bustype = BUS_LPC | BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006003 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006004 .model_id = PMC_PM49FL002,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006005 .total_size = 256,
6006 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00006007 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Taunerd06d9412011-06-12 19:47:55 +00006008 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00006009 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00006010 .probe_timing = TIMING_ZERO, /* routine is wrapper to probe_jedec (pm49fl00x.c) */
Sean Nelson5643c072010-01-19 03:23:07 +00006011 .block_erasers =
6012 {
6013 {
6014 .eraseblocks = { {4 * 1024, 64} },
6015 .block_erase = erase_sector_jedec,
6016 }, {
6017 .eraseblocks = { {16 * 1024, 16} },
6018 .block_erase = erase_block_jedec,
6019 }, {
6020 .eraseblocks = { {256 * 1024, 1} },
6021 .block_erase = erase_chip_block_jedec,
6022 }
6023 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00006024 .unlock = unlock_49fl00x,
Sean Nelson36172342010-02-27 18:01:15 +00006025 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006026 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006027 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006028 },
6029
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006030 {
6031 .vendor = "PMC",
6032 .name = "Pm49FL004",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006033 .bustype = BUS_LPC | BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006034 .manufacture_id = PMC_ID_NOPREFIX,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006035 .model_id = PMC_PM49FL004,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006036 .total_size = 512,
6037 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00006038 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Idwer Vollering67f28142011-03-06 22:26:23 +00006039 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00006040 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00006041 .probe_timing = TIMING_ZERO, /* routine is wrapper to probe_jedec (pm49fl00x.c) */
Sean Nelson5643c072010-01-19 03:23:07 +00006042 .block_erasers =
6043 {
6044 {
6045 .eraseblocks = { {4 * 1024, 128} },
6046 .block_erase = erase_sector_jedec,
6047 }, {
6048 .eraseblocks = { {64 * 1024, 8} },
6049 .block_erase = erase_block_jedec,
6050 }, {
6051 .eraseblocks = { {512 * 1024, 1} },
6052 .block_erase = erase_chip_block_jedec,
6053 }
6054 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00006055 .unlock = unlock_49fl00x,
Sean Nelson36172342010-02-27 18:01:15 +00006056 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006057 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006058 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006059 },
6060
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006061 {
Sean Nelsond70b09c2009-11-24 02:11:08 +00006062 .vendor = "Sanyo",
6063 .name = "LF25FW203A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006064 .bustype = BUS_SPI,
Sean Nelsond70b09c2009-11-24 02:11:08 +00006065 .manufacture_id = SANYO_ID,
6066 .model_id = SANYO_LE25FW203A,
6067 .total_size = 2048,
6068 .page_size = 256,
6069 .tested = TEST_UNTESTED,
6070 .probe = probe_spi_rdid,
6071 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00006072 .block_erasers =
6073 {
6074 {
6075 .eraseblocks = { {64 * 1024, 32} },
6076 .block_erase = spi_block_erase_d8,
6077 }, {
6078 .eraseblocks = { {2 * 1024 * 1024, 1} },
6079 .block_erase = spi_block_erase_c7,
6080 }
6081 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006082 .unlock = spi_disable_blockprotect,
Sean Nelsond70b09c2009-11-24 02:11:08 +00006083 .write = spi_chip_write_256,
6084 .read = spi_chip_read,
6085 },
6086
6087 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006088 .vendor = "Sharp",
Mattias Mattssonfca3b012011-08-25 22:44:11 +00006089 .name = "LH28F008BJT-BTLZ1",
6090 .bustype = BUS_PARALLEL,
6091 .manufacture_id = SHARP_ID,
6092 .model_id = SHARP_LH28F008BJxxPB,
6093 .total_size = 1024,
6094 .page_size = 64 * 1024,
6095 .tested = TEST_OK_PREW,
6096 .probe = probe_82802ab,
6097 .probe_timing = TIMING_ZERO,
6098 .block_erasers =
6099 {
6100 {
6101 .eraseblocks = {
6102 {8 * 1024, 8},
6103 {64 * 1024, 15}
6104 },
6105 .block_erase = erase_block_82802ab,
6106 }, {
6107 .eraseblocks = { {1024 * 1024, 1} },
6108 .block_erase = erase_sector_49lfxxxc,
6109 }
6110 },
6111 .unlock = unlock_lh28f008bjt,
6112 .write = write_82802ab,
6113 .read = read_memmapped,
6114 .voltage = {2700, 3600},
6115 },
6116
6117 {
6118 .vendor = "Sharp",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006119 .name = "LHF00L04",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006120 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006121 .manufacture_id = SHARP_ID,
6122 .model_id = SHARP_LHF00L04,
6123 .total_size = 1024,
6124 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00006125 .feature_bits = FEATURE_EITHER_RESET | FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006126 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00006127 .probe = probe_82802ab,
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +00006128 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +00006129 .block_erasers =
6130 {
6131 {
6132 .eraseblocks = {
6133 {64 * 1024, 15},
6134 {8 * 1024, 8}
6135 },
Sean Nelson28accc22010-03-19 18:47:06 +00006136 .block_erase = erase_block_82802ab,
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +00006137 }, {
6138 .eraseblocks = {
6139 {1024 * 1024, 1}
6140 },
Sean Nelson51c83fb2010-01-20 20:55:53 +00006141 .block_erase = NULL, /* 30 D0, only in A/A mux mode */
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +00006142 },
6143 },
Sean Nelson28accc22010-03-19 18:47:06 +00006144 .unlock = unlock_82802ab,
6145 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006146 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006147 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006148 },
6149
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006150 {
6151 .vendor = "Spansion",
Rudy Hostf4e57772010-11-29 00:37:49 +00006152 .name = "S25FL004A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006153 .bustype = BUS_SPI,
Rudy Hostf4e57772010-11-29 00:37:49 +00006154 .manufacture_id = SPANSION_ID,
6155 .model_id = SPANSION_S25FL004A,
6156 .total_size = 512,
6157 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006158 .feature_bits = FEATURE_WRSR_WREN,
Rudy Hostf4e57772010-11-29 00:37:49 +00006159 .tested = TEST_UNTESTED,
6160 .probe = probe_spi_rdid,
6161 .probe_timing = TIMING_ZERO,
6162 .block_erasers =
6163 {
6164 {
6165 .eraseblocks = { {64 * 1024, 8} },
6166 .block_erase = spi_block_erase_d8,
6167 }, {
6168 .eraseblocks = { {512 * 1024, 1} },
6169 .block_erase = spi_block_erase_c7,
6170 }
6171 },
6172 .unlock = spi_disable_blockprotect,
6173 .write = spi_chip_write_256,
6174 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00006175 .voltage = {2700, 3600},
Rudy Hostf4e57772010-11-29 00:37:49 +00006176 },
6177
6178 {
6179 .vendor = "Spansion",
Michael Karcher23ff4602010-01-12 23:29:30 +00006180 .name = "S25FL008A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006181 .bustype = BUS_SPI,
Michael Karcher23ff4602010-01-12 23:29:30 +00006182 .manufacture_id = SPANSION_ID,
6183 .model_id = SPANSION_S25FL008A,
6184 .total_size = 1024,
6185 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006186 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00006187 .tested = TEST_OK_PRE,
Michael Karcher23ff4602010-01-12 23:29:30 +00006188 .probe = probe_spi_rdid,
6189 .probe_timing = TIMING_ZERO,
Michael Karcher23ff4602010-01-12 23:29:30 +00006190 .block_erasers =
6191 {
6192 {
6193 .eraseblocks = { {64 * 1024, 16} },
6194 .block_erase = spi_block_erase_d8,
6195 }, {
6196 .eraseblocks = { {1024 * 1024, 1} },
6197 .block_erase = spi_block_erase_c7,
6198 }
6199 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006200 .unlock = spi_disable_blockprotect,
Michael Karcher23ff4602010-01-12 23:29:30 +00006201 .write = spi_chip_write_256,
6202 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006203 .voltage = {2700, 3600},
Michael Karcher23ff4602010-01-12 23:29:30 +00006204 },
6205
6206 {
6207 .vendor = "Spansion",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006208 .name = "S25FL016A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006209 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006210 .manufacture_id = SPANSION_ID,
6211 .model_id = SPANSION_S25FL016A,
6212 .total_size = 2048,
6213 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006214 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00006215 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006216 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006217 .probe_timing = TIMING_ZERO,
Sean Nelson5643c072010-01-19 03:23:07 +00006218 .block_erasers =
6219 {
6220 {
6221 .eraseblocks = { {64 * 1024, 32} },
6222 .block_erase = spi_block_erase_d8,
6223 }, {
6224 .eraseblocks = { {2 * 1024 * 1024, 1} },
6225 .block_erase = spi_block_erase_c7,
6226 }
6227 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006228 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00006229 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006230 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006231 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006232 },
6233
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006234 {
Rudy Hostf4e57772010-11-29 00:37:49 +00006235 .vendor = "Spansion",
6236 .name = "S25FL032A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006237 .bustype = BUS_SPI,
Rudy Hostf4e57772010-11-29 00:37:49 +00006238 .manufacture_id = SPANSION_ID,
6239 .model_id = SPANSION_S25FL032A,
6240 .total_size = 4096,
6241 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006242 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner2abab942012-04-27 20:41:23 +00006243 .tested = TEST_OK_PR,
Rudy Hostf4e57772010-11-29 00:37:49 +00006244 .probe = probe_spi_rdid,
6245 .probe_timing = TIMING_ZERO,
6246 .block_erasers =
6247 {
6248 {
6249 .eraseblocks = { {64 * 1024, 64} },
6250 .block_erase = spi_block_erase_d8,
6251 }, {
6252 .eraseblocks = { {4 * 1024 * 1024, 1} },
6253 .block_erase = spi_block_erase_c7,
6254 }
6255 },
6256 .unlock = spi_disable_blockprotect,
6257 .write = spi_chip_write_256,
6258 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00006259 .voltage = {2700, 3600},
Rudy Hostf4e57772010-11-29 00:37:49 +00006260 },
6261
6262 {
6263 .vendor = "Spansion",
6264 .name = "S25FL064A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006265 .bustype = BUS_SPI,
Rudy Hostf4e57772010-11-29 00:37:49 +00006266 .manufacture_id = SPANSION_ID,
6267 .model_id = SPANSION_S25FL064A,
6268 .total_size = 8192,
6269 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006270 .feature_bits = FEATURE_WRSR_WREN,
Rudy Hostf4e57772010-11-29 00:37:49 +00006271 .tested = TEST_OK_PREW,
6272 .probe = probe_spi_rdid,
6273 .probe_timing = TIMING_ZERO,
6274 .block_erasers =
6275 {
6276 {
6277 .eraseblocks = { {64 * 1024, 128} },
6278 .block_erase = spi_block_erase_d8,
6279 }, {
6280 .eraseblocks = { {8 * 1024 * 1024, 1} },
6281 .block_erase = spi_block_erase_c7,
6282 }
6283 },
6284 .unlock = spi_disable_blockprotect,
6285 .write = spi_chip_write_256,
6286 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00006287 .voltage = {2700, 3600},
Rudy Hostf4e57772010-11-29 00:37:49 +00006288 },
6289
6290 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006291 .vendor = "SST",
Zeus Castro33670ba2011-08-17 09:50:11 +00006292 .name = "SST25LF040A",
6293 .bustype = BUS_SPI,
6294 .manufacture_id = SST_ID,
6295 .model_id = SST_SST25VF040_REMS,
6296 .total_size = 512,
6297 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006298 .feature_bits = FEATURE_WRSR_EWSR,
Uwe Hermann4335ec82011-09-07 20:20:25 +00006299 .tested = TEST_OK_PREW,
Zeus Castro33670ba2011-08-17 09:50:11 +00006300 .probe = probe_spi_res2,
6301 .probe_timing = TIMING_ZERO,
6302 .block_erasers =
6303 {
6304 {
6305 .eraseblocks = { {4 * 1024, 128} },
6306 .block_erase = spi_block_erase_20,
6307 }, {
6308 .eraseblocks = { {32 * 1024, 16} },
6309 .block_erase = spi_block_erase_52,
6310 }, {
6311 .eraseblocks = { {512 * 1024, 1} },
6312 .block_erase = spi_block_erase_60,
6313 },
6314 },
6315 .unlock = spi_disable_blockprotect,
6316 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
6317 .read = spi_chip_read,
6318 .voltage = {3000, 3600},
6319 },
6320
6321 {
6322 .vendor = "SST",
6323 .name = "SST25LF080A",
6324 .bustype = BUS_SPI,
6325 .manufacture_id = SST_ID,
6326 .model_id = SST_SST25VF080_REMS,
6327 .total_size = 1024,
6328 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006329 .feature_bits = FEATURE_WRSR_EWSR,
Zeus Castro33670ba2011-08-17 09:50:11 +00006330 .tested = TEST_UNTESTED,
6331 .probe = probe_spi_res2,
6332 .probe_timing = TIMING_ZERO,
6333 .block_erasers =
6334 {
6335 {
6336 .eraseblocks = { {4 * 1024, 256} },
6337 .block_erase = spi_block_erase_20,
6338 }, {
6339 .eraseblocks = { {32 * 1024, 32} },
6340 .block_erase = spi_block_erase_52,
6341 }, {
6342 .eraseblocks = { {1024 * 1024, 1} },
6343 .block_erase = spi_block_erase_60,
6344 },
6345 },
6346 .unlock = spi_disable_blockprotect,
6347 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
6348 .read = spi_chip_read,
6349 .voltage = {3000, 3600},
6350 },
6351
6352 {
6353 .vendor = "SST",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00006354 .name = "SST25VF010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006355 .bustype = BUS_SPI,
Mark Marshall90021f22010-12-03 14:48:11 +00006356 .manufacture_id = SST_ID,
6357 .model_id = SST_SST25VF010_REMS,
6358 .total_size = 128,
6359 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006360 .feature_bits = FEATURE_WRSR_EWSR,
Mark Marshall90021f22010-12-03 14:48:11 +00006361 .tested = TEST_OK_PREW,
6362 .probe = probe_spi_rems,
6363 .probe_timing = TIMING_ZERO,
6364 .block_erasers =
6365 {
6366 {
6367 .eraseblocks = { {4 * 1024, 32} },
6368 .block_erase = spi_block_erase_20,
6369 }, {
6370 .eraseblocks = { {32 * 1024, 4} },
6371 .block_erase = spi_block_erase_52,
6372 }, {
6373 .eraseblocks = { {128 * 1024, 1} },
6374 .block_erase = spi_block_erase_60,
6375 },
6376 },
6377 .unlock = spi_disable_blockprotect,
6378 .write = spi_chip_write_1,
6379 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00006380 .voltage = {2700, 3600},
Mark Marshall90021f22010-12-03 14:48:11 +00006381 },
6382
6383 {
6384 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006385 .name = "SST25VF016B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006386 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006387 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006388 .model_id = SST_SST25VF016B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006389 .total_size = 2048,
6390 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006391 .feature_bits = FEATURE_WRSR_EWSR,
Mark Marshall90021f22010-12-03 14:48:11 +00006392 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006393 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006394 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00006395 .block_erasers =
6396 {
6397 {
6398 .eraseblocks = { {4 * 1024, 512} },
6399 .block_erase = spi_block_erase_20,
6400 }, {
6401 .eraseblocks = { {32 * 1024, 64} },
6402 .block_erase = spi_block_erase_52,
6403 }, {
6404 .eraseblocks = { {64 * 1024, 32} },
6405 .block_erase = spi_block_erase_d8,
6406 }, {
6407 .eraseblocks = { {2 * 1024 * 1024, 1} },
6408 .block_erase = spi_block_erase_60,
6409 }, {
6410 .eraseblocks = { {2 * 1024 * 1024, 1} },
6411 .block_erase = spi_block_erase_c7,
6412 },
6413 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006414 .unlock = spi_disable_blockprotect,
Joshua Roys87955bf2011-08-01 18:39:28 +00006415 .write = spi_aai_write,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006416 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006417 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006418 },
6419
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006420 {
6421 .vendor = "SST",
6422 .name = "SST25VF032B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006423 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006424 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006425 .model_id = SST_SST25VF032B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006426 .total_size = 4096,
6427 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006428 .feature_bits = FEATURE_WRSR_EWSR,
Stefan Taunerfcf6a8c2011-05-18 01:32:00 +00006429 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006430 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006431 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00006432 .block_erasers =
6433 {
6434 {
6435 .eraseblocks = { {4 * 1024, 1024} },
6436 .block_erase = spi_block_erase_20,
6437 }, {
6438 .eraseblocks = { {32 * 1024, 128} },
6439 .block_erase = spi_block_erase_52,
6440 }, {
6441 .eraseblocks = { {64 * 1024, 64} },
6442 .block_erase = spi_block_erase_d8,
6443 }, {
6444 .eraseblocks = { {4 * 1024 * 1024, 1} },
6445 .block_erase = spi_block_erase_60,
6446 }, {
6447 .eraseblocks = { {4 * 1024 * 1024, 1} },
6448 .block_erase = spi_block_erase_c7,
6449 },
6450 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006451 .unlock = spi_disable_blockprotect,
Helge Wagner1db7a442010-10-05 22:29:08 +00006452 .write = spi_aai_write,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00006453 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006454 .voltage = {2700, 3600},
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00006455 },
6456
6457 {
6458 .vendor = "SST",
Ed Swierk86f4e6d2010-07-21 15:02:22 +00006459 .name = "SST25VF064C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006460 .bustype = BUS_SPI,
Ed Swierk86f4e6d2010-07-21 15:02:22 +00006461 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006462 .model_id = SST_SST25VF064C,
Ed Swierk86f4e6d2010-07-21 15:02:22 +00006463 .total_size = 8192,
6464 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006465 .feature_bits = FEATURE_WRSR_EWSR,
Stefan Tauner8179be52011-06-04 13:13:34 +00006466 .tested = TEST_OK_PREW,
Ed Swierk86f4e6d2010-07-21 15:02:22 +00006467 .probe = probe_spi_rdid,
6468 .probe_timing = TIMING_ZERO,
6469 .block_erasers =
6470 {
6471 {
6472 .eraseblocks = { {4 * 1024, 2048} },
6473 .block_erase = spi_block_erase_20,
6474 }, {
6475 .eraseblocks = { {32 * 1024, 256} },
6476 .block_erase = spi_block_erase_52,
6477 }, {
6478 .eraseblocks = { {64 * 1024, 128} },
6479 .block_erase = spi_block_erase_d8,
6480 }, {
6481 .eraseblocks = { {8 * 1024 * 1024, 1} },
6482 .block_erase = spi_block_erase_60,
6483 }, {
6484 .eraseblocks = { {8 * 1024 * 1024, 1} },
6485 .block_erase = spi_block_erase_c7,
6486 },
6487 },
6488 .unlock = spi_disable_blockprotect,
Helge Wagner1db7a442010-10-05 22:29:08 +00006489 .write = spi_chip_write_256,
Ed Swierk86f4e6d2010-07-21 15:02:22 +00006490 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006491 .voltage = {2700, 3600},
Ed Swierk86f4e6d2010-07-21 15:02:22 +00006492 },
6493
6494 {
6495 .vendor = "SST",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00006496 .name = "SST25VF040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006497 .bustype = BUS_SPI,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00006498 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006499 .model_id = SST_SST25VF040_REMS,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00006500 .total_size = 512,
6501 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006502 .feature_bits = FEATURE_WRSR_EWSR,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00006503 .tested = TEST_OK_PR,
6504 .probe = probe_spi_rems,
6505 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00006506 .block_erasers =
6507 {
6508 {
6509 .eraseblocks = { {4 * 1024, 128} },
6510 .block_erase = spi_block_erase_20,
6511 }, {
6512 .eraseblocks = { {32 * 1024, 16} },
6513 .block_erase = spi_block_erase_52,
6514 }, {
6515 .eraseblocks = { {512 * 1024, 1} },
6516 .block_erase = spi_block_erase_60,
6517 },
6518 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006519 .unlock = spi_disable_blockprotect,
Joshua Roys87955bf2011-08-01 18:39:28 +00006520 .write = spi_chip_write_1, /* AAI supported, but opcode is 0xAF */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006521 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00006522 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006523 },
6524
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006525 {
6526 .vendor = "SST",
6527 .name = "SST25VF040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006528 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006529 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006530 .model_id = SST_SST25VF040B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006531 .total_size = 512,
6532 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006533 .feature_bits = FEATURE_WRSR_EWSR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006534 .tested = TEST_UNTESTED,
6535 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006536 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00006537 .block_erasers =
6538 {
6539 {
6540 .eraseblocks = { {4 * 1024, 128} },
6541 .block_erase = spi_block_erase_20,
6542 }, {
6543 .eraseblocks = { {32 * 1024, 16} },
6544 .block_erase = spi_block_erase_52,
6545 }, {
6546 .eraseblocks = { {64 * 1024, 8} },
6547 .block_erase = spi_block_erase_d8,
6548 }, {
6549 .eraseblocks = { {512 * 1024, 1} },
6550 .block_erase = spi_block_erase_60,
6551 }, {
6552 .eraseblocks = { {512 * 1024, 1} },
6553 .block_erase = spi_block_erase_c7,
6554 },
6555 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006556 .unlock = spi_disable_blockprotect,
Joshua Roys87955bf2011-08-01 18:39:28 +00006557 .write = spi_aai_write,
Zheng Bao0677dff2009-02-25 08:07:33 +00006558 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006559 .voltage = {2700, 3600},
Zheng Bao0677dff2009-02-25 08:07:33 +00006560 },
6561
6562 {
6563 .vendor = "SST",
Peter Stugefd9217d2009-01-26 03:37:40 +00006564 .name = "SST25VF040B.REMS",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006565 .bustype = BUS_SPI,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00006566 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006567 .model_id = SST_SST25VF040B_REMS,
Peter Stugefd9217d2009-01-26 03:37:40 +00006568 .total_size = 512,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00006569 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006570 .feature_bits = FEATURE_WRSR_EWSR,
Peter Stugefd9217d2009-01-26 03:37:40 +00006571 .tested = TEST_OK_PR,
6572 .probe = probe_spi_rems,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006573 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00006574 .block_erasers =
6575 {
6576 {
6577 .eraseblocks = { {4 * 1024, 128} },
6578 .block_erase = spi_block_erase_20,
6579 }, {
6580 .eraseblocks = { {32 * 1024, 16} },
6581 .block_erase = spi_block_erase_52,
6582 }, {
6583 .eraseblocks = { {64 * 1024, 8} },
6584 .block_erase = spi_block_erase_d8,
6585 }, {
6586 .eraseblocks = { {512 * 1024, 1} },
6587 .block_erase = spi_block_erase_60,
6588 }, {
6589 .eraseblocks = { {512 * 1024, 1} },
6590 .block_erase = spi_block_erase_c7,
6591 },
6592 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006593 .unlock = spi_disable_blockprotect,
Joshua Roys87955bf2011-08-01 18:39:28 +00006594 .write = spi_aai_write,
Peter Stugefd9217d2009-01-26 03:37:40 +00006595 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00006596 .voltage = {2700, 3600},
Peter Stugefd9217d2009-01-26 03:37:40 +00006597 },
6598
6599 {
6600 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006601 .name = "SST25VF080B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006602 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006603 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006604 .model_id = SST_SST25VF080B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006605 .total_size = 1024,
6606 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00006607 .feature_bits = FEATURE_WRSR_EWSR,
John Schmergec965c2d2011-05-18 11:28:47 +00006608 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006609 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00006610 .probe_timing = TIMING_ZERO,
Carl-Daniel Hailfingerbbfeb702009-12-23 12:16:47 +00006611 .block_erasers =
6612 {
6613 {
6614 .eraseblocks = { {4 * 1024, 256} },
6615 .block_erase = spi_block_erase_20,
6616 }, {
6617 .eraseblocks = { {32 * 1024, 32} },
6618 .block_erase = spi_block_erase_52,
6619 }, {
6620 .eraseblocks = { {64 * 1024, 16} },
6621 .block_erase = spi_block_erase_d8,
6622 }, {
6623 .eraseblocks = { {1024 * 1024, 1} },
6624 .block_erase = spi_block_erase_60,
6625 }, {
6626 .eraseblocks = { {1024 * 1024, 1} },
6627 .block_erase = spi_block_erase_c7,
6628 },
6629 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00006630 .unlock = spi_disable_blockprotect,
Joshua Roys87955bf2011-08-01 18:39:28 +00006631 .write = spi_aai_write,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006632 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006633 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006634 },
6635
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006636 {
6637 .vendor = "SST",
6638 .name = "SST28SF040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006639 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006640 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006641 .model_id = SST_SST28SF040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006642 .total_size = 512,
6643 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00006644 .feature_bits = 0,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006645 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00006646 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00006647 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst28sf040.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00006648 .block_erasers =
6649 {
6650 {
6651 .eraseblocks = { {128, 4096} },
6652 .block_erase = erase_sector_28sf040,
6653 }, {
6654 .eraseblocks = { {512 * 1024, 1} },
6655 .block_erase = erase_chip_28sf040,
6656 }
6657 },
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00006658 .unlock = unprotect_28sf040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006659 .write = write_28sf040,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006660 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006661 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00006662 },
6663
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006664 {
6665 .vendor = "SST",
6666 .name = "SST29EE010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006667 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006668 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006669 .model_id = SST_SST29EE010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006670 .total_size = 128,
6671 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00006672 .feature_bits = FEATURE_LONG_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00006673 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006674 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00006675 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +00006676 .block_erasers =
6677 {
6678 {
6679 .eraseblocks = { {128 * 1024, 1} },
6680 .block_erase = erase_chip_block_jedec,
6681 }
6682 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006683 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006684 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006685 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00006686 },
6687
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006688 {
6689 .vendor = "SST",
6690 .name = "SST29LE010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006691 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006692 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006693 .model_id = SST_SST29LE010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006694 .total_size = 128,
6695 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00006696 .feature_bits = FEATURE_LONG_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006697 .tested = TEST_UNTESTED,
6698 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00006699 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +00006700 .block_erasers =
6701 {
6702 {
6703 .eraseblocks = { {128 * 1024, 1} },
6704 .block_erase = erase_chip_block_jedec,
6705 }
6706 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006707 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006708 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006709 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006710 },
6711
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006712 {
6713 .vendor = "SST",
6714 .name = "SST29EE020A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006715 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006716 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006717 .model_id = SST_SST29EE020A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006718 .total_size = 256,
6719 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00006720 .feature_bits = FEATURE_LONG_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00006721 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006722 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00006723 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +00006724 .block_erasers =
6725 {
6726 {
6727 .eraseblocks = { {256 * 1024, 1} },
6728 .block_erase = erase_chip_block_jedec,
6729 }
6730 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006731 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006732 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006733 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00006734 },
6735
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006736 {
6737 .vendor = "SST",
6738 .name = "SST29LE020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006739 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006740 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006741 .model_id = SST_SST29LE020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006742 .total_size = 256,
6743 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00006744 .feature_bits = FEATURE_LONG_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00006745 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006746 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00006747 .probe_timing = 10,
Sean Nelson51c83fb2010-01-20 20:55:53 +00006748 .block_erasers =
6749 {
6750 {
6751 .eraseblocks = { {256 * 1024, 1} },
6752 .block_erase = erase_chip_block_jedec,
6753 }
6754 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006755 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006756 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006757 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006758 },
6759
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006760 {
6761 .vendor = "SST",
Uwe Hermann48da3f92010-01-23 15:15:19 +00006762 .name = "SST39SF512",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006763 .bustype = BUS_PARALLEL,
Uwe Hermann48da3f92010-01-23 15:15:19 +00006764 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006765 .model_id = SST_SST39SF512,
Uwe Hermann48da3f92010-01-23 15:15:19 +00006766 .total_size = 64,
6767 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00006768 .feature_bits = FEATURE_EITHER_RESET,
Idwer Vollering7913fb42011-03-07 15:32:58 +00006769 .tested = TEST_OK_PREW,
Uwe Hermann48da3f92010-01-23 15:15:19 +00006770 .probe = probe_jedec,
6771 .probe_timing = 1, /* 150 ns */
Uwe Hermann48da3f92010-01-23 15:15:19 +00006772 .block_erasers =
6773 {
6774 {
6775 .eraseblocks = { {4 * 1024, 16} },
6776 .block_erase = erase_sector_jedec,
6777 }, {
6778 .eraseblocks = { {64 * 1024, 1} },
6779 .block_erase = erase_chip_block_jedec,
6780 }
6781 },
Sean Nelson35727f72010-01-28 23:55:12 +00006782 .write = write_jedec_1,
Uwe Hermann48da3f92010-01-23 15:15:19 +00006783 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006784 .voltage = {4500, 5500},
Uwe Hermann48da3f92010-01-23 15:15:19 +00006785 },
6786
6787 {
6788 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006789 .name = "SST39SF010A",
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_SST39SF010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006793 .total_size = 128,
6794 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00006795 .feature_bits = FEATURE_EITHER_RESET,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +00006796 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006797 .probe = probe_jedec,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00006798 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00006799 .block_erasers =
6800 {
6801 {
6802 .eraseblocks = { {4 * 1024, 32} },
6803 .block_erase = erase_sector_jedec,
6804 }, {
6805 .eraseblocks = { {128 * 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 = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00006812 },
6813
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006814 {
6815 .vendor = "SST",
6816 .name = "SST39SF020A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006817 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006818 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006819 .model_id = SST_SST39SF020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006820 .total_size = 256,
6821 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00006822 .feature_bits = FEATURE_EITHER_RESET,
Uwe Hermann19f46f22011-06-18 22:56:14 +00006823 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006824 .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, 64} },
6830 .block_erase = erase_sector_jedec,
6831 }, {
6832 .eraseblocks = { {256 * 1024, 1} },
6833 .block_erase = erase_chip_block_jedec,
6834 }
6835 },
Sean Nelson35727f72010-01-28 23:55:12 +00006836 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006837 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006838 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00006839 },
6840
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006841 {
6842 .vendor = "SST",
6843 .name = "SST39SF040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006844 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006845 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006846 .model_id = SST_SST39SF040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006847 .total_size = 512,
6848 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00006849 .feature_bits = FEATURE_EITHER_RESET,
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00006850 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006851 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00006852 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00006853 .block_erasers =
6854 {
6855 {
6856 .eraseblocks = { {4 * 1024, 128} },
6857 .block_erase = erase_sector_jedec,
6858 }, {
6859 .eraseblocks = { {512 * 1024, 1} },
6860 .block_erase = erase_chip_block_jedec,
6861 }
6862 },
Sean Nelson35727f72010-01-28 23:55:12 +00006863 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006864 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006865 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00006866 },
6867
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006868 {
6869 .vendor = "SST",
6870 .name = "SST39VF512",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006871 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006872 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006873 .model_id = SST_SST39VF512,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006874 .total_size = 64,
6875 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00006876 .feature_bits = FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00006877 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006878 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00006879 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00006880 .block_erasers =
6881 {
6882 {
6883 .eraseblocks = { {4 * 1024, 16} },
6884 .block_erase = erase_sector_jedec,
6885 }, {
6886 .eraseblocks = { {64 * 1024, 1} },
6887 .block_erase = erase_chip_block_jedec,
6888 }
6889 },
Sean Nelson35727f72010-01-28 23:55:12 +00006890 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006891 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006892 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006893 },
6894
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006895 {
6896 .vendor = "SST",
6897 .name = "SST39VF010",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006898 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006899 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006900 .model_id = SST_SST39VF010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006901 .total_size = 128,
6902 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00006903 .feature_bits = FEATURE_EITHER_RESET,
Stefan Taunerd94d25d2012-07-28 03:17:15 +00006904 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006905 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00006906 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00006907 .block_erasers =
6908 {
6909 {
6910 .eraseblocks = { {4 * 1024, 32} },
6911 .block_erase = erase_sector_jedec,
6912 }, {
6913 .eraseblocks = { {128 * 1024, 1} },
6914 .block_erase = erase_chip_block_jedec,
6915 }
6916 },
Sean Nelson35727f72010-01-28 23:55:12 +00006917 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006918 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006919 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006920 },
6921
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006922 {
6923 .vendor = "SST",
6924 .name = "SST39VF020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006925 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006926 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006927 .model_id = SST_SST39VF020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006928 .total_size = 256,
6929 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00006930 .feature_bits = FEATURE_EITHER_RESET,
6931 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006932 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00006933 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00006934 .block_erasers =
6935 {
6936 {
6937 .eraseblocks = { {4 * 1024, 64} },
6938 .block_erase = erase_sector_jedec,
6939 }, {
6940 .eraseblocks = { {256 * 1024, 1} },
6941 .block_erase = erase_chip_block_jedec,
6942 }
6943 },
Sean Nelson35727f72010-01-28 23:55:12 +00006944 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006945 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006946 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00006947 },
6948
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006949 {
6950 .vendor = "SST",
6951 .name = "SST39VF040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006952 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006953 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006954 .model_id = SST_SST39VF040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006955 .total_size = 512,
6956 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00006957 .feature_bits = FEATURE_EITHER_RESET,
6958 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006959 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00006960 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00006961 .block_erasers =
6962 {
6963 {
6964 .eraseblocks = { {4 * 1024, 128} },
6965 .block_erase = erase_sector_jedec,
6966 }, {
6967 .eraseblocks = { {512 * 1024, 1} },
6968 .block_erase = erase_chip_block_jedec,
6969 }
6970 },
Sean Nelson35727f72010-01-28 23:55:12 +00006971 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00006972 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00006973 .voltage = {2700, 3600},
Carl-Daniel Hailfinger90eff152008-12-08 23:51:45 +00006974 },
FENG yu ningff692fb2008-12-08 18:15:10 +00006975
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00006976 {
6977 .vendor = "SST",
Peter Stuge8440cc02009-01-25 23:55:12 +00006978 .name = "SST39VF080",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00006979 .bustype = BUS_PARALLEL,
Mateusz Murawskie33890d2009-06-12 11:45:10 +00006980 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00006981 .model_id = SST_SST39VF080,
Peter Stuge8440cc02009-01-25 23:55:12 +00006982 .total_size = 1024,
6983 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00006984 .feature_bits = FEATURE_EITHER_RESET,
Peter Stuge8440cc02009-01-25 23:55:12 +00006985 .tested = TEST_UNTESTED,
6986 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00006987 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00006988 .block_erasers =
6989 {
6990 {
6991 .eraseblocks = { {4 * 1024, 256} },
6992 .block_erase = erase_sector_jedec,
6993 }, {
6994 .eraseblocks = { {64 * 1024, 16} },
6995 .block_erase = erase_block_jedec,
6996 }, {
6997 .eraseblocks = { {1024 * 1024, 1} },
6998 .block_erase = erase_chip_block_jedec,
6999 }
7000 },
Sean Nelson35727f72010-01-28 23:55:12 +00007001 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007002 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007003 .voltage = {2700, 3600},
Peter Stuge8440cc02009-01-25 23:55:12 +00007004 },
7005
7006 {
7007 .vendor = "SST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007008 .name = "SST49LF002A/B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007009 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007010 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007011 .model_id = SST_SST49LF002A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007012 .total_size = 256,
7013 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007014 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Idwer Vollering67f28142011-03-06 22:26:23 +00007015 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007016 .probe = probe_jedec,
7017 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00007018 .block_erasers =
7019 {
7020 {
7021 .eraseblocks = { {4 * 1024, 64} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00007022 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00007023 }, {
7024 .eraseblocks = { {16 * 1024, 16} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00007025 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00007026 }, {
7027 .eraseblocks = { {256 * 1024, 1} },
7028 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
7029 }
7030 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007031 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00007032 .unlock = unlock_sst_fwhub,
7033 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007034 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007035 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007036 },
7037
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007038 {
7039 .vendor = "SST",
7040 .name = "SST49LF003A/B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007041 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007042 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007043 .model_id = SST_SST49LF003A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007044 .total_size = 384,
7045 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007046 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Peter Lemenkov45835c42009-09-25 01:09:18 +00007047 .tested = TEST_OK_PR,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007048 .probe = probe_jedec,
7049 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00007050 .block_erasers =
7051 {
7052 {
7053 .eraseblocks = { {4 * 1024, 96} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00007054 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00007055 }, {
7056 .eraseblocks = { {64 * 1024, 6} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00007057 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00007058 }, {
7059 .eraseblocks = { {384 * 1024, 1} },
7060 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
7061 }
7062 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007063 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00007064 .unlock = unlock_sst_fwhub,
7065 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007066 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007067 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007068 },
7069
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007070 {
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00007071 /* Contrary to the data sheet, TBL# on the SST49LF004B affects the top 128kB (instead of 64kB)
7072 * and is only honored for 64k block erase, but not 4k sector erase.
7073 */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007074 .vendor = "SST",
7075 .name = "SST49LF004A/B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007076 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007077 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007078 .model_id = SST_SST49LF004A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007079 .total_size = 512,
7080 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007081 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Idwer Vollering67f28142011-03-06 22:26:23 +00007082 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007083 .probe = probe_jedec,
7084 .probe_timing = 1, /* 150 ns */
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00007085 .block_erasers =
7086 {
7087 {
7088 .eraseblocks = { {4 * 1024, 128} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00007089 .block_erase = erase_sector_jedec,
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00007090 }, {
7091 .eraseblocks = { {64 * 1024, 8} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00007092 .block_erase = erase_block_jedec,
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00007093 }, {
7094 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson51c83fb2010-01-20 20:55:53 +00007095 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
Carl-Daniel Hailfingera06287c2009-09-23 22:01:33 +00007096 },
7097 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007098 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00007099 .unlock = unlock_sst_fwhub,
7100 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007101 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007102 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007103 },
7104
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007105 {
7106 .vendor = "SST",
7107 .name = "SST49LF004C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007108 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007109 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007110 .model_id = SST_SST49LF004C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007111 .total_size = 512,
7112 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007113 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007114 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007115 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00007116 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00007117 .block_erasers =
7118 {
7119 {
7120 .eraseblocks = { {4 * 1024, 128} },
7121 .block_erase = erase_sector_49lfxxxc,
7122 }, {
7123 .eraseblocks = {
7124 {64 * 1024, 7},
7125 {32 * 1024, 1},
7126 {8 * 1024, 2},
7127 {16 * 1024, 1},
7128 },
Sean Nelson69e58112010-03-23 17:10:28 +00007129 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +00007130 }
7131 },
Sean Nelson69e58112010-03-23 17:10:28 +00007132 .unlock = unlock_49lfxxxc,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00007133 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007134 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007135 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007136 },
7137
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007138 {
7139 .vendor = "SST",
7140 .name = "SST49LF008A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007141 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007142 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007143 .model_id = SST_SST49LF008A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007144 .total_size = 1024,
7145 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007146 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00007147 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007148 .probe = probe_jedec,
7149 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00007150 .block_erasers =
7151 {
7152 {
7153 .eraseblocks = { {4 * 1024, 256} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00007154 .block_erase = erase_sector_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00007155 }, {
7156 .eraseblocks = { {64 * 1024, 16} },
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00007157 .block_erase = erase_block_jedec,
Sean Nelson51c83fb2010-01-20 20:55:53 +00007158 }, {
7159 .eraseblocks = { {1024 * 1024, 1} },
7160 .block_erase = NULL, /* AA 55 80 AA 55 10, only in A/A mux mode */
7161 }
7162 },
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007163 .printlock = printlock_sst_fwhub,
Sean Nelsonccf7a2a2010-03-16 03:09:10 +00007164 .unlock = unlock_sst_fwhub,
7165 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007166 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007167 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007168 },
7169
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007170 {
7171 .vendor = "SST",
7172 .name = "SST49LF008C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007173 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007174 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007175 .model_id = SST_SST49LF008C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007176 .total_size = 1024,
7177 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007178 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007179 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007180 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00007181 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00007182 .block_erasers =
7183 {
7184 {
7185 .eraseblocks = { {4 * 1024, 256} },
7186 .block_erase = erase_sector_49lfxxxc,
7187 }, {
7188 .eraseblocks = {
7189 {64 * 1024, 15},
7190 {32 * 1024, 1},
7191 {8 * 1024, 2},
7192 {16 * 1024, 1},
7193 },
Sean Nelson69e58112010-03-23 17:10:28 +00007194 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +00007195 }
7196 },
Sean Nelson69e58112010-03-23 17:10:28 +00007197 .unlock = unlock_49lfxxxc,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00007198 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007199 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007200 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007201 },
7202
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007203 {
7204 .vendor = "SST",
7205 .name = "SST49LF016C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007206 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007207 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007208 .model_id = SST_SST49LF016C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007209 .total_size = 2048,
7210 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007211 .feature_bits = FEATURE_REGISTERMAP,
Stefan Tauner2abab942012-04-27 20:41:23 +00007212 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007213 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00007214 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00007215 .block_erasers =
7216 {
7217 {
7218 .eraseblocks = { {4 * 1024, 512} },
7219 .block_erase = erase_sector_49lfxxxc,
7220 }, {
7221 .eraseblocks = {
7222 {64 * 1024, 31},
7223 {32 * 1024, 1},
7224 {8 * 1024, 2},
7225 {16 * 1024, 1},
7226 },
Sean Nelson69e58112010-03-23 17:10:28 +00007227 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +00007228 }
7229 },
Sean Nelson69e58112010-03-23 17:10:28 +00007230 .unlock = unlock_49lfxxxc,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00007231 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007232 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007233 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007234 },
7235
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007236 {
7237 .vendor = "SST",
7238 .name = "SST49LF020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007239 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007240 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007241 .model_id = SST_SST49LF020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007242 .total_size = 256,
7243 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007244 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner8179be52011-06-04 13:13:34 +00007245 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007246 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00007247 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00007248 .block_erasers =
7249 {
7250 {
7251 .eraseblocks = { {4 * 1024, 64} },
7252 .block_erase = erase_sector_jedec,
7253 }, {
7254 .eraseblocks = { {16 * 1024, 16} },
7255 .block_erase = erase_block_jedec,
7256 }, {
7257 .eraseblocks = { {256 * 1024, 1} },
7258 .block_erase = NULL,
7259 }
7260 },
Sean Nelson35727f72010-01-28 23:55:12 +00007261 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007262 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007263 .voltage = {3000, 3600},
Sven Schnellec208dfb2009-01-07 12:35:09 +00007264 },
7265
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007266 {
7267 .vendor = "SST",
7268 .name = "SST49LF020A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007269 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007270 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007271 .model_id = SST_SST49LF020A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007272 .total_size = 256,
Carl-Daniel Hailfingerda654322009-07-23 01:44:38 +00007273 .page_size = 4 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007274 .feature_bits = FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00007275 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007276 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00007277 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00007278 .block_erasers =
7279 {
7280 {
7281 .eraseblocks = { {4 * 1024, 64} },
7282 .block_erase = erase_sector_jedec,
7283 }, {
7284 .eraseblocks = { {16 * 1024, 16} },
7285 .block_erase = erase_block_jedec,
7286 }, {
7287 .eraseblocks = { {256 * 1024, 1} },
7288 .block_erase = NULL,
7289 }
7290 },
Sean Nelson35727f72010-01-28 23:55:12 +00007291 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007292 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007293 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007294 },
7295
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007296 {
7297 .vendor = "SST",
7298 .name = "SST49LF040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007299 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007300 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007301 .model_id = SST_SST49LF040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007302 .total_size = 512,
7303 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00007304 .feature_bits = FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00007305 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007306 .probe = probe_jedec,
Uwe Hermann431f4f72010-09-05 12:41:25 +00007307 .probe_timing = 1, /* 150 ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00007308 .block_erasers =
7309 {
7310 {
7311 .eraseblocks = { {4 * 1024, 128} },
7312 .block_erase = erase_sector_jedec,
7313 }, {
7314 .eraseblocks = { {64 * 1024, 8} },
7315 .block_erase = erase_block_jedec,
7316 }, {
7317 .eraseblocks = { {512 * 1024, 1} },
7318 .block_erase = NULL,
7319 }
7320 },
Sean Nelson35727f72010-01-28 23:55:12 +00007321 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007322 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007323 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007324 },
7325
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007326 {
7327 .vendor = "SST",
7328 .name = "SST49LF040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007329 .bustype = BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007330 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007331 .model_id = SST_SST49LF040B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007332 .total_size = 512,
7333 .page_size = 64 * 1024,
Joshua Roysa84b0bd2010-08-16 22:12:39 +00007334 .feature_bits = FEATURE_EITHER_RESET | FEATURE_REGISTERMAP,
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00007335 .tested = TEST_OK_PREW,
Sean Nelson51c83fb2010-01-20 20:55:53 +00007336 .probe = probe_jedec,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007337 .probe_timing = 1, /* 150ns */
Sean Nelson51c83fb2010-01-20 20:55:53 +00007338 .block_erasers =
7339 {
7340 {
7341 .eraseblocks = { {4 * 1024, 128} },
7342 .block_erase = erase_sector_jedec,
7343 }, {
7344 .eraseblocks = { {64 * 1024, 8} },
7345 .block_erase = erase_block_jedec,
7346 }, {
7347 .eraseblocks = { {512 * 1024, 1} },
7348 .block_erase = NULL,
7349 }
7350 },
Joshua Roysa84b0bd2010-08-16 22:12:39 +00007351 .unlock = unlock_82802ab,
Sean Nelson35727f72010-01-28 23:55:12 +00007352 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007353 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007354 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007355 },
7356
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007357 {
7358 .vendor = "SST",
7359 .name = "SST49LF080A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007360 .bustype = BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007361 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007362 .model_id = SST_SST49LF080A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007363 .total_size = 1024,
7364 .page_size = 4096,
Sean Nelson35727f72010-01-28 23:55:12 +00007365 .feature_bits = FEATURE_EITHER_RESET,
Brandon Dowdyf07bf322011-03-06 18:31:11 +00007366 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007367 .probe = probe_jedec,
Maciej Pijankac6e11112009-06-03 14:46:22 +00007368 .probe_timing = TIMING_FIXME,
Sean Nelson51c83fb2010-01-20 20:55:53 +00007369 .block_erasers =
7370 {
7371 {
7372 .eraseblocks = { {4 * 1024, 256} },
7373 .block_erase = erase_sector_jedec,
7374 }, {
7375 .eraseblocks = { {64 * 1024, 16} },
7376 .block_erase = erase_block_jedec,
7377 }, {
7378 .eraseblocks = { {1024 * 1024, 1} },
7379 .block_erase = NULL,
7380 }
7381 },
Sean Nelson35727f72010-01-28 23:55:12 +00007382 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007383 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007384 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007385 },
7386
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007387 {
7388 .vendor = "SST",
7389 .name = "SST49LF160C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007390 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007391 .manufacture_id = SST_ID,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00007392 .model_id = SST_SST49LF160C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007393 .total_size = 2048,
7394 .page_size = 4 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007395 .feature_bits = FEATURE_REGISTERMAP,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00007396 .tested = TEST_OK_PRE,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00007397 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00007398 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson51c83fb2010-01-20 20:55:53 +00007399 .block_erasers =
7400 {
7401 {
7402 .eraseblocks = { {4 * 1024, 512} },
7403 .block_erase = erase_sector_49lfxxxc,
7404 }, {
7405 .eraseblocks = {
7406 {64 * 1024, 31},
7407 {32 * 1024, 1},
7408 {8 * 1024, 2},
7409 {16 * 1024, 1},
7410 },
Sean Nelson69e58112010-03-23 17:10:28 +00007411 .block_erase = erase_block_82802ab,
Sean Nelson51c83fb2010-01-20 20:55:53 +00007412 }
7413 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00007414 .unlock = unlock_49lfxxxc,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00007415 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007416 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007417 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007418 },
7419
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007420 {
7421 .vendor = "ST",
7422 .name = "M25P05-A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007423 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007424 .manufacture_id = ST_ID,
7425 .model_id = ST_M25P05A,
7426 .total_size = 64,
7427 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007428 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007429 .tested = TEST_UNTESTED,
7430 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007431 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00007432 .block_erasers =
7433 {
7434 {
7435 .eraseblocks = { {32 * 1024, 2} },
7436 .block_erase = spi_block_erase_d8,
7437 }, {
7438 .eraseblocks = { {64 * 1024, 1} },
7439 .block_erase = spi_block_erase_c7,
7440 }
7441 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007442 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007443 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007444 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007445 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007446 },
7447
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00007448 /* The ST M25P05 is a bit of a problem. It has the same ID as the
7449 * ST M25P05-A in RES mode, but supports only 128 byte writes instead
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00007450 * of 256 byte writes. We rely heavily on the fact that probe_spi_res1
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00007451 * only is successful if RDID does not work.
7452 */
7453 {
7454 .vendor = "ST",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00007455 .name = "M25P05",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007456 .bustype = BUS_SPI,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00007457 .manufacture_id = 0, /* Not used. */
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00007458 .model_id = ST_M25P05_RES,
7459 .total_size = 64,
7460 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007461 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00007462 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00007463 .probe = probe_spi_res1,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00007464 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00007465 .block_erasers =
7466 {
7467 {
7468 .eraseblocks = { {32 * 1024, 2} },
7469 .block_erase = spi_block_erase_d8,
7470 }, {
7471 .eraseblocks = { {64 * 1024, 1} },
7472 .block_erase = spi_block_erase_c7,
7473 }
7474 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007475 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00007476 .write = spi_chip_write_1, /* 128 */
7477 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007478 .voltage = {2700, 3600},
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00007479 },
7480
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007481 {
7482 .vendor = "ST",
7483 .name = "M25P10-A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007484 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007485 .manufacture_id = ST_ID,
7486 .model_id = ST_M25P10A,
7487 .total_size = 128,
7488 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007489 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00007490 .tested = TEST_OK_PRE,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007491 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007492 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00007493 .block_erasers =
7494 {
7495 {
7496 .eraseblocks = { {32 * 1024, 4} },
7497 .block_erase = spi_block_erase_d8,
7498 }, {
7499 .eraseblocks = { {128 * 1024, 1} },
7500 .block_erase = spi_block_erase_c7,
7501 }
7502 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007503 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007504 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007505 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007506 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007507 },
7508
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00007509 /* The ST M25P10 has the same problem as the M25P05. */
7510 {
7511 .vendor = "ST",
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00007512 .name = "M25P10",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007513 .bustype = BUS_SPI,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00007514 .manufacture_id = 0, /* Not used. */
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00007515 .model_id = ST_M25P10_RES,
7516 .total_size = 128,
7517 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007518 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00007519 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00007520 .probe = probe_spi_res1,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00007521 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00007522 .block_erasers =
7523 {
7524 {
7525 .eraseblocks = { {32 * 1024, 4} },
7526 .block_erase = spi_block_erase_d8,
7527 }, {
7528 .eraseblocks = { {128 * 1024, 1} },
7529 .block_erase = spi_block_erase_c7,
7530 }
7531 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007532 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00007533 .write = spi_chip_write_1, /* 128 */
7534 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007535 .voltage = {2700, 3600},
Carl-Daniel Hailfinger32961be2009-07-23 01:40:20 +00007536 },
7537
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007538 {
7539 .vendor = "ST",
7540 .name = "M25P20",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007541 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007542 .manufacture_id = ST_ID,
7543 .model_id = ST_M25P20,
7544 .total_size = 256,
7545 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007546 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007547 .tested = TEST_UNTESTED,
7548 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007549 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00007550 .block_erasers =
7551 {
7552 {
7553 .eraseblocks = { {64 * 1024, 4} },
7554 .block_erase = spi_block_erase_d8,
7555 }, {
7556 .eraseblocks = { {256 * 1024, 1} },
7557 .block_erase = spi_block_erase_c7,
7558 }
7559 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007560 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007561 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007562 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007563 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007564 },
7565
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007566 {
Sylvain "ythier" Hitier3093f8f2011-09-03 11:22:27 +00007567 .vendor = "ST", /* Numonyx */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007568 .name = "M25P40",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007569 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007570 .manufacture_id = ST_ID,
7571 .model_id = ST_M25P40,
7572 .total_size = 512,
7573 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007574 .feature_bits = FEATURE_WRSR_WREN,
Paul Menzelac427b22012-02-16 21:07:07 +00007575 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007576 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007577 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00007578 .block_erasers =
7579 {
7580 {
7581 .eraseblocks = { {64 * 1024, 8} },
7582 .block_erase = spi_block_erase_d8,
7583 }, {
7584 .eraseblocks = { {512 * 1024, 1} },
7585 .block_erase = spi_block_erase_c7,
7586 }
7587 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007588 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007589 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007590 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007591 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007592 },
7593
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007594 {
7595 .vendor = "ST",
7596 .name = "M25P40-old",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007597 .bustype = BUS_SPI,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00007598 .manufacture_id = 0, /* Not used. */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007599 .model_id = ST_M25P40_RES,
7600 .total_size = 512,
7601 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007602 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007603 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +00007604 .probe = probe_spi_res1,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007605 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00007606 .block_erasers =
7607 {
7608 {
7609 .eraseblocks = { {64 * 1024, 8} },
7610 .block_erase = spi_block_erase_d8,
7611 }, {
7612 .eraseblocks = { {512 * 1024, 1} },
7613 .block_erase = spi_block_erase_c7,
7614 }
7615 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007616 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007617 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007618 .read = spi_chip_read,
FENG yu ningff692fb2008-12-08 18:15:10 +00007619 },
7620
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007621 {
7622 .vendor = "ST",
7623 .name = "M25P80",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007624 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007625 .manufacture_id = ST_ID,
7626 .model_id = ST_M25P80,
7627 .total_size = 1024,
7628 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007629 .feature_bits = FEATURE_WRSR_WREN,
Uwe Hermann19f46f22011-06-18 22:56:14 +00007630 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007631 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007632 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00007633 .block_erasers =
7634 {
7635 {
7636 .eraseblocks = { {64 * 1024, 16} },
7637 .block_erase = spi_block_erase_d8,
7638 }, {
7639 .eraseblocks = { {1024 * 1024, 1} },
7640 .block_erase = spi_block_erase_c7,
7641 }
7642 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007643 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007644 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007645 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007646 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007647 },
7648
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007649 {
7650 .vendor = "ST",
7651 .name = "M25P16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007652 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007653 .manufacture_id = ST_ID,
7654 .model_id = ST_M25P16,
7655 .total_size = 2048,
7656 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007657 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00007658 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007659 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007660 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00007661 .block_erasers =
7662 {
7663 {
7664 .eraseblocks = { {64 * 1024, 32} },
7665 .block_erase = spi_block_erase_d8,
7666 }, {
7667 .eraseblocks = { {2 * 1024 * 1024, 1} },
7668 .block_erase = spi_block_erase_c7,
7669 }
7670 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007671 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007672 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007673 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007674 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007675 },
7676
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007677 {
7678 .vendor = "ST",
7679 .name = "M25P32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007680 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007681 .manufacture_id = ST_ID,
7682 .model_id = ST_M25P32,
7683 .total_size = 4096,
7684 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007685 .feature_bits = FEATURE_WRSR_WREN,
Antony Rheneus0fbba982011-05-26 14:28:51 +00007686 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007687 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007688 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00007689 .block_erasers =
7690 {
7691 {
7692 .eraseblocks = { {64 * 1024, 64} },
7693 .block_erase = spi_block_erase_d8,
7694 }, {
7695 .eraseblocks = { {4 * 1024 * 1024, 1} },
7696 .block_erase = spi_block_erase_c7,
7697 }
7698 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007699 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007700 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007701 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007702 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007703 },
7704
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007705 {
7706 .vendor = "ST",
7707 .name = "M25P64",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007708 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007709 .manufacture_id = ST_ID,
7710 .model_id = ST_M25P64,
7711 .total_size = 8192,
7712 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007713 .feature_bits = FEATURE_WRSR_WREN,
Stefan Taunerd94d25d2012-07-28 03:17:15 +00007714 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007715 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007716 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00007717 .block_erasers =
7718 {
7719 {
7720 .eraseblocks = { {64 * 1024, 128} },
7721 .block_erase = spi_block_erase_d8,
7722 }, {
7723 .eraseblocks = { {8 * 1024 * 1024, 1} },
7724 .block_erase = spi_block_erase_c7,
7725 }
7726 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007727 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007728 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007729 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007730 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007731 },
7732
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007733 {
7734 .vendor = "ST",
7735 .name = "M25P128",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007736 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007737 .manufacture_id = ST_ID,
7738 .model_id = ST_M25P128,
7739 .total_size = 16384,
7740 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007741 .feature_bits = FEATURE_WRSR_WREN,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +00007742 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007743 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00007744 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00007745 .block_erasers =
7746 {
7747 {
7748 .eraseblocks = { {256 * 1024, 64} },
7749 .block_erase = spi_block_erase_d8,
7750 }, {
7751 .eraseblocks = { {16 * 1024 * 1024, 1} },
7752 .block_erase = spi_block_erase_c7,
7753 }
7754 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00007755 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00007756 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007757 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007758 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00007759 },
7760
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007761 {
7762 .vendor = "ST",
Carl Worthd1dd72c2011-03-06 18:45:40 +00007763 .name = "M25PX16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007764 .bustype = BUS_SPI,
Carl Worthd1dd72c2011-03-06 18:45:40 +00007765 .manufacture_id = ST_ID,
7766 .model_id = ST_M25PX16,
7767 .total_size = 2048,
7768 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00007769 /* OTP: 64B total; read 0x4B; write 0x42 */
Steven Zakulec3603a282012-05-02 20:07:57 +00007770 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Carl Worthd1dd72c2011-03-06 18:45:40 +00007771 .tested = TEST_OK_PREW,
7772 .probe = probe_spi_rdid,
7773 .probe_timing = TIMING_ZERO,
7774 .block_erasers =
7775 {
7776 {
7777 .eraseblocks = { { 4 * 1024, 512 } },
7778 .block_erase = spi_block_erase_20,
7779 }, {
7780 .eraseblocks = { {64 * 1024, 32} },
7781 .block_erase = spi_block_erase_d8,
7782 }, {
7783 .eraseblocks = { {2 * 1024 * 1024, 1} },
7784 .block_erase = spi_block_erase_c7,
7785 }
7786 },
7787 .unlock = spi_disable_blockprotect,
7788 .write = spi_chip_write_256,
7789 .read = spi_chip_read,
7790 },
7791
7792 {
7793 .vendor = "ST",
Jason Shriver4119e9b2010-09-14 13:16:01 +00007794 .name = "M25PX32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007795 .bustype = BUS_SPI,
Jason Shriver4119e9b2010-09-14 13:16:01 +00007796 .manufacture_id = ST_ID,
7797 .model_id = ST_M25PX32,
7798 .total_size = 4096,
7799 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007800 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00007801 .tested = TEST_OK_PRE,
Jason Shriver4119e9b2010-09-14 13:16:01 +00007802 .probe = probe_spi_rdid,
7803 .probe_timing = TIMING_ZERO,
7804 .block_erasers =
7805 {
7806 {
7807 .eraseblocks = { { 4 * 1024, 1024 } },
7808 .block_erase = spi_block_erase_20,
7809 }, {
7810 .eraseblocks = { {64 * 1024, 64} },
7811 .block_erase = spi_block_erase_d8,
7812 }, {
7813 .eraseblocks = { {4 * 1024 * 1024, 1} },
7814 .block_erase = spi_block_erase_c7,
7815 }
7816 },
7817 .unlock = spi_disable_blockprotect,
7818 .write = spi_chip_write_256,
7819 .read = spi_chip_read,
Steven Zakulec7d257b42011-07-19 08:50:18 +00007820 .voltage = {2700, 3600},
Jason Shriver4119e9b2010-09-14 13:16:01 +00007821 },
7822
7823 {
7824 .vendor = "ST",
7825 .name = "M25PX64",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007826 .bustype = BUS_SPI,
Jason Shriver4119e9b2010-09-14 13:16:01 +00007827 .manufacture_id = ST_ID,
7828 .model_id = ST_M25PX64,
7829 .total_size = 8192,
7830 .page_size = 256,
Steven Zakulec3603a282012-05-02 20:07:57 +00007831 .feature_bits = FEATURE_WRSR_WREN,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00007832 .tested = TEST_OK_PRE,
Jason Shriver4119e9b2010-09-14 13:16:01 +00007833 .probe = probe_spi_rdid,
7834 .probe_timing = TIMING_ZERO,
7835 .block_erasers =
7836 {
7837 {
7838 .eraseblocks = { { 4 * 1024, 2048 } },
7839 .block_erase = spi_block_erase_20,
7840 }, {
7841 .eraseblocks = { {64 * 1024, 128} },
7842 .block_erase = spi_block_erase_d8,
7843 }, {
7844 .eraseblocks = { {8 * 1024 * 1024, 1} },
7845 .block_erase = spi_block_erase_c7,
7846 }
7847 },
7848 .unlock = spi_disable_blockprotect,
7849 .write = spi_chip_write_256,
7850 .read = spi_chip_read,
7851 },
7852
7853 {
7854 .vendor = "ST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007855 .name = "M29F002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007856 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007857 .manufacture_id = ST_ID,
7858 .model_id = ST_M29F002B,
7859 .total_size = 256,
7860 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007861 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007862 .tested = TEST_UNTESTED,
7863 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00007864 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00007865 .block_erasers =
7866 {
7867 {
7868 .eraseblocks = {
7869 {16 * 1024, 1},
7870 {8 * 1024, 2},
7871 {32 * 1024, 1},
7872 {64 * 1024, 3},
7873 },
7874 .block_erase = erase_sector_jedec,
7875 }, {
7876 .eraseblocks = { {256 * 1024, 1} },
7877 .block_erase = erase_chip_block_jedec,
7878 }
7879 },
Sean Nelson35727f72010-01-28 23:55:12 +00007880 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007881 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00007882 .voltage = {4750, 5250}, /* 4.75-5.25V for type -X, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +00007883 },
7884
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007885 {
7886 .vendor = "ST",
7887 .name = "M29F002T/NT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007888 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007889 .manufacture_id = ST_ID,
7890 .model_id = ST_M29F002T,
7891 .total_size = 256,
7892 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007893 .feature_bits = FEATURE_ADDR_AAA | FEATURE_EITHER_RESET,
7894 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007895 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00007896 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00007897 .block_erasers =
7898 {
7899 {
7900 .eraseblocks = {
7901 {64 * 1024, 3},
7902 {32 * 1024, 1},
7903 {8 * 1024, 2},
7904 {16 * 1024, 1},
7905 },
7906 .block_erase = erase_sector_jedec,
7907 }, {
7908 .eraseblocks = { {256 * 1024, 1} },
7909 .block_erase = erase_chip_block_jedec,
7910 }
7911 },
Sean Nelson35727f72010-01-28 23:55:12 +00007912 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007913 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00007914 .voltage = {4750, 5250}, /* 4.75-5.25V for type -X, others 4.5-5.5V */
FENG yu ningff692fb2008-12-08 18:15:10 +00007915 },
7916
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007917 {
7918 .vendor = "ST",
7919 .name = "M29F040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007920 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007921 .manufacture_id = ST_ID,
7922 .model_id = ST_M29F040B,
7923 .total_size = 512,
7924 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007925 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
7926 .tested = TEST_UNTESTED,
7927 .probe = probe_jedec,
David Borg204f4652010-12-04 03:26:40 +00007928 .probe_timing = TIMING_ZERO, /* datasheet specifies no timing */
Sean Nelson56358aa2010-01-19 16:08:51 +00007929 .block_erasers =
7930 {
7931 {
7932 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson35727f72010-01-28 23:55:12 +00007933 .block_erase = erase_sector_jedec,
Sean Nelson56358aa2010-01-19 16:08:51 +00007934 }, {
7935 .eraseblocks = { {512 * 1024, 1} },
Sean Nelson35727f72010-01-28 23:55:12 +00007936 .block_erase = erase_chip_block_jedec,
Sean Nelson56358aa2010-01-19 16:08:51 +00007937 }
7938 },
Sean Nelson35727f72010-01-28 23:55:12 +00007939 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00007940 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007941 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00007942 },
7943
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007944 {
Sean Nelson35727f72010-01-28 23:55:12 +00007945 /* FIXME: this has WORD/BYTE sequences; 2AA for word, 555 for byte */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007946 .vendor = "ST",
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00007947 .name = "M29F400BB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007948 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00007949 .manufacture_id = ST_ID,
7950 .model_id = ST_M29F400BB,
7951 .total_size = 512,
7952 .page_size = 64 * 1024,
7953 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00007954 .tested = TEST_UNTESTED,
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00007955 .probe = probe_m29f400bt,
7956 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (m29f400bt.c) */
7957 .block_erasers =
7958 {
7959 {
7960 .eraseblocks = {
7961 {16 * 1024, 1},
7962 {8 * 1024, 2},
7963 {32 * 1024, 1},
7964 {64 * 1024, 7},
7965 },
7966 .block_erase = block_erase_m29f400bt,
7967 }, {
7968 .eraseblocks = { {512 * 1024, 1} },
7969 .block_erase = block_erase_chip_m29f400bt,
7970 }
7971 },
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +00007972 .write = write_m29f400bt,
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00007973 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00007974 .voltage = {4500, 5500},
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00007975 },
7976 {
7977 /* FIXME: this has WORD/BYTE sequences; 2AA for word, 555 for byte */
7978 .vendor = "ST",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007979 .name = "M29F400BT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00007980 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007981 .manufacture_id = ST_ID,
7982 .model_id = ST_M29F400BT,
7983 .total_size = 512,
7984 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00007985 .feature_bits = FEATURE_ADDR_SHIFTED | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00007986 .tested = TEST_UNTESTED,
7987 .probe = probe_m29f400bt,
Paul Menzelc07a41c2011-06-19 17:23:55 +00007988 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (m29f400bt.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00007989 .block_erasers =
7990 {
7991 {
7992 .eraseblocks = {
7993 {64 * 1024, 7},
7994 {32 * 1024, 1},
7995 {8 * 1024, 2},
7996 {16 * 1024, 1},
7997 },
7998 .block_erase = block_erase_m29f400bt,
7999 }, {
8000 .eraseblocks = { {512 * 1024, 1} },
8001 .block_erase = block_erase_chip_m29f400bt,
8002 }
8003 },
Carl-Daniel Hailfinger420cf6f2010-07-16 22:07:20 +00008004 .write = write_m29f400bt,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008005 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008006 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00008007 },
8008
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008009 {
8010 .vendor = "ST",
8011 .name = "M29W010B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008012 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008013 .manufacture_id = ST_ID,
8014 .model_id = ST_M29W010B,
8015 .total_size = 128,
8016 .page_size = 16 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00008017 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008018 .tested = TEST_UNTESTED,
8019 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00008020 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00008021 .block_erasers =
8022 {
8023 {
8024 .eraseblocks = { {16 * 1024, 8}, },
8025 .block_erase = erase_sector_jedec,
8026 }, {
8027 .eraseblocks = { {128 * 1024, 1} },
8028 .block_erase = erase_chip_block_jedec,
8029 }
8030 },
Sean Nelson35727f72010-01-28 23:55:12 +00008031 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008032 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008033 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008034 },
8035
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008036 {
8037 .vendor = "ST",
8038 .name = "M29W040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008039 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008040 .manufacture_id = ST_ID,
8041 .model_id = ST_M29W040B,
8042 .total_size = 512,
8043 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00008044 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008045 .tested = TEST_UNTESTED,
8046 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00008047 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00008048 .block_erasers =
8049 {
8050 {
8051 .eraseblocks = { {64 * 1024, 8}, },
8052 .block_erase = erase_sector_jedec,
8053 }, {
8054 .eraseblocks = { {512 * 1024, 1} },
8055 .block_erase = erase_chip_block_jedec,
8056 }
8057 },
Sean Nelson35727f72010-01-28 23:55:12 +00008058 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008059 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008060 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008061 },
8062
Jeffrey A. Kentba7c9222010-02-01 05:49:46 +00008063 {
8064 .vendor = "ST",
8065 .name = "M29W512B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008066 .bustype = BUS_PARALLEL,
Jeffrey A. Kentba7c9222010-02-01 05:49:46 +00008067 .manufacture_id = ST_ID,
8068 .model_id = ST_M29W512B,
8069 .total_size = 64,
8070 .page_size = 64 * 1024,
8071 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00008072 .tested = TEST_OK_PRE,
Jeffrey A. Kentba7c9222010-02-01 05:49:46 +00008073 .probe = probe_jedec,
8074 .probe_timing = TIMING_ZERO,
Jeffrey A. Kentba7c9222010-02-01 05:49:46 +00008075 .block_erasers =
8076 {
8077 {
8078 .eraseblocks = { {64 * 1024, 1} },
8079 .block_erase = erase_chip_block_jedec,
8080 }
8081 },
8082 .write = write_jedec_1,
8083 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008084 .voltage = {2700, 3600},
Jeffrey A. Kentba7c9222010-02-01 05:49:46 +00008085 },
8086
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008087 {
8088 .vendor = "ST",
8089 .name = "M50FLW040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008090 .bustype = BUS_FWH | BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008091 .manufacture_id = ST_ID,
8092 .model_id = ST_M50FLW040A,
8093 .total_size = 512,
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,
Sean Nelson35727f72010-01-28 23:55:12 +00008097 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00008098 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +00008099 .block_erasers =
8100 {
8101 {
Sean Nelson329bde72010-01-19 16:39:19 +00008102 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +00008103 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +00008104 {64 * 1024, 5}, /* block */
8105 {4 * 1024, 16}, /* sector */
8106 {4 * 1024, 16}, /* sector */
8107 },
8108 .block_erase = NULL,
8109 }, {
Sean Nelson56358aa2010-01-19 16:08:51 +00008110 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson28accc22010-03-19 18:47:06 +00008111 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00008112 }
8113 },
Sean Nelson28accc22010-03-19 18:47:06 +00008114 .unlock = unlock_stm50flw0x0x,
8115 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008116 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008117 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00008118 },
8119
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008120 {
8121 .vendor = "ST",
8122 .name = "M50FLW040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008123 .bustype = BUS_FWH | BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008124 .manufacture_id = ST_ID,
8125 .model_id = ST_M50FLW040B,
8126 .total_size = 512,
8127 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008128 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008129 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00008130 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00008131 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +00008132 .block_erasers =
8133 {
8134 {
Sean Nelson329bde72010-01-19 16:39:19 +00008135 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +00008136 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +00008137 {4 * 1024, 16}, /* sector */
8138 {64 * 1024, 5}, /* block */
8139 {4 * 1024, 16}, /* sector */
8140 },
8141 .block_erase = NULL,
8142 }, {
Sean Nelson56358aa2010-01-19 16:08:51 +00008143 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson28accc22010-03-19 18:47:06 +00008144 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00008145 }
8146 },
Sean Nelson28accc22010-03-19 18:47:06 +00008147 .unlock = unlock_stm50flw0x0x,
8148 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008149 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008150 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00008151 },
8152
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008153 {
8154 .vendor = "ST",
8155 .name = "M50FLW080A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008156 .bustype = BUS_FWH | BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008157 .manufacture_id = ST_ID,
8158 .model_id = ST_M50FLW080A,
8159 .total_size = 1024,
8160 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008161 .feature_bits = FEATURE_REGISTERMAP,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00008162 .tested = TEST_OK_PRE,
Sean Nelson35727f72010-01-28 23:55:12 +00008163 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00008164 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +00008165 .block_erasers =
8166 {
8167 {
Sean Nelson329bde72010-01-19 16:39:19 +00008168 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +00008169 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +00008170 {64 * 1024, 13}, /* block */
8171 {4 * 1024, 16}, /* sector */
8172 {4 * 1024, 16}, /* sector */
8173 },
8174 .block_erase = NULL,
8175 }, {
Sean Nelson56358aa2010-01-19 16:08:51 +00008176 .eraseblocks = { {64 * 1024, 16}, },
Sean Nelson28accc22010-03-19 18:47:06 +00008177 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00008178 }
8179 },
Sean Nelson28accc22010-03-19 18:47:06 +00008180 .unlock = unlock_stm50flw0x0x,
8181 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008182 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008183 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00008184 },
8185
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008186 {
8187 .vendor = "ST",
8188 .name = "M50FLW080B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008189 .bustype = BUS_FWH | BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008190 .manufacture_id = ST_ID,
8191 .model_id = ST_M50FLW080B,
8192 .total_size = 1024,
8193 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008194 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008195 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00008196 .probe = probe_82802ab,
Carl-Daniel Hailfinger08fa2f32010-01-10 01:34:00 +00008197 .probe_timing = TIMING_FIXME,
Sean Nelson56358aa2010-01-19 16:08:51 +00008198 .block_erasers =
8199 {
8200 {
Sean Nelson329bde72010-01-19 16:39:19 +00008201 .eraseblocks = {
Uwe Hermann431f4f72010-09-05 12:41:25 +00008202 {4 * 1024, 16}, /* sector */
Sean Nelson329bde72010-01-19 16:39:19 +00008203 {4 * 1024, 16}, /* sector */
8204 {64 * 1024, 13}, /* block */
8205 {4 * 1024, 16}, /* sector */
8206 },
8207 .block_erase = NULL,
8208 }, {
Sean Nelson56358aa2010-01-19 16:08:51 +00008209 .eraseblocks = { {64 * 1024, 16}, },
Sean Nelson28accc22010-03-19 18:47:06 +00008210 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00008211 }
8212 },
Sean Nelson28accc22010-03-19 18:47:06 +00008213 .unlock = unlock_stm50flw0x0x,
8214 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008215 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008216 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00008217 },
8218
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008219 {
8220 .vendor = "ST",
8221 .name = "M50FW002",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008222 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008223 .manufacture_id = ST_ID,
8224 .model_id = ST_M50FW002,
8225 .total_size = 256,
8226 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008227 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008228 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00008229 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00008230 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (sst49lfxxxc.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00008231 .block_erasers =
8232 {
8233 {
8234 .eraseblocks = {
8235 {64 * 1024, 3},
8236 {32 * 1024, 1},
8237 {8 * 1024, 2},
8238 {16 * 1024, 1},
8239 },
Sean Nelson28accc22010-03-19 18:47:06 +00008240 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00008241 }
8242 },
Sean Nelson28accc22010-03-19 18:47:06 +00008243 .unlock = unlock_stm50flw0x0x,
8244 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008245 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008246 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00008247 },
8248
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008249 {
8250 .vendor = "ST",
8251 .name = "M50FW016",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008252 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008253 .manufacture_id = ST_ID,
8254 .model_id = ST_M50FW016,
8255 .total_size = 2048,
8256 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008257 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008258 .tested = TEST_UNTESTED,
8259 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00008260 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00008261 .block_erasers =
8262 {
8263 {
8264 .eraseblocks = { {64 * 1024, 32}, },
Sean Nelson28accc22010-03-19 18:47:06 +00008265 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00008266 }
8267 },
Sean Nelson28accc22010-03-19 18:47:06 +00008268 .unlock = unlock_stm50flw0x0x,
8269 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008270 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008271 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00008272 },
8273
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008274 {
8275 .vendor = "ST",
8276 .name = "M50FW040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008277 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008278 .manufacture_id = ST_ID,
8279 .model_id = ST_M50FW040,
8280 .total_size = 512,
8281 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008282 .feature_bits = FEATURE_REGISTERMAP,
Sean Nelson28accc22010-03-19 18:47:06 +00008283 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008284 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00008285 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00008286 .block_erasers =
8287 {
8288 {
8289 .eraseblocks = { {64 * 1024, 8}, },
Sean Nelson28accc22010-03-19 18:47:06 +00008290 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00008291 }
8292 },
Sean Nelson28accc22010-03-19 18:47:06 +00008293 .unlock = unlock_stm50flw0x0x,
8294 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008295 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008296 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00008297 },
8298
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008299 {
8300 .vendor = "ST",
8301 .name = "M50FW080",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008302 .bustype = BUS_FWH, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008303 .manufacture_id = ST_ID,
8304 .model_id = ST_M50FW080,
8305 .total_size = 1024,
8306 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008307 .feature_bits = FEATURE_REGISTERMAP,
Antony Rheneus0fbba982011-05-26 14:28:51 +00008308 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008309 .probe = probe_82802ab,
Paul Menzelc07a41c2011-06-19 17:23:55 +00008310 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (82802ab.c) */
Sean Nelson56358aa2010-01-19 16:08:51 +00008311 .block_erasers =
8312 {
8313 {
8314 .eraseblocks = { {64 * 1024, 16}, },
Sean Nelson28accc22010-03-19 18:47:06 +00008315 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00008316 }
8317 },
Sean Nelson28accc22010-03-19 18:47:06 +00008318 .unlock = unlock_stm50flw0x0x,
8319 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008320 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008321 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00008322 },
8323
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008324 {
8325 .vendor = "ST",
8326 .name = "M50LPW116",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008327 .bustype = BUS_LPC, /* A/A Mux */
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008328 .manufacture_id = ST_ID,
8329 .model_id = ST_M50LPW116,
8330 .total_size = 2048,
8331 .page_size = 64 * 1024,
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +00008332 .feature_bits = FEATURE_REGISTERMAP,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008333 .tested = TEST_UNTESTED,
Sean Nelson35727f72010-01-28 23:55:12 +00008334 .probe = probe_82802ab,
Udu Ogahc04ee222009-09-05 01:31:32 +00008335 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00008336 .block_erasers =
8337 {
8338 {
8339 .eraseblocks = {
8340 {4 * 1024, 16},
8341 {64 * 1024, 30},
8342 {32 * 1024, 1},
8343 {8 * 1024, 2},
8344 {16 * 1024, 1},
8345 },
Sean Nelson28accc22010-03-19 18:47:06 +00008346 .block_erase = erase_block_82802ab,
Sean Nelson56358aa2010-01-19 16:08:51 +00008347 }
8348 },
Sean Nelson28accc22010-03-19 18:47:06 +00008349 .unlock = unlock_stm50flw0x0x,
8350 .write = write_82802ab,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008351 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008352 .voltage = {3000, 3600}, /* Also has 12V fast program & erase */
FENG yu ningff692fb2008-12-08 18:15:10 +00008353 },
8354
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008355 {
Mattias Mattsson4c066502010-07-29 20:01:13 +00008356 .vendor = "SyncMOS/MoselVitelic",
8357 .name = "{F,S,V}29C51001B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008358 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00008359 .manufacture_id = SYNCMOS_MVC_ID,
8360 .model_id = SM_MVC_29C51001B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008361 .total_size = 128,
Mattias Mattsson4c066502010-07-29 20:01:13 +00008362 .page_size = 512,
Sean Nelson35727f72010-01-28 23:55:12 +00008363 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008364 .tested = TEST_UNTESTED,
8365 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00008366 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00008367 .block_erasers =
8368 {
8369 {
8370 .eraseblocks = { {512, 256} },
8371 .block_erase = erase_sector_jedec,
8372 }, {
8373 .eraseblocks = { {128 * 1024, 1} },
8374 .block_erase = erase_chip_block_jedec,
8375 },
8376 },
Sean Nelson35727f72010-01-28 23:55:12 +00008377 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008378 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008379 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00008380 },
8381
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008382 {
Mattias Mattsson4c066502010-07-29 20:01:13 +00008383 .vendor = "SyncMOS/MoselVitelic",
8384 .name = "{F,S,V}29C51001T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008385 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00008386 .manufacture_id = SYNCMOS_MVC_ID,
8387 .model_id = SM_MVC_29C51001T,
8388 .total_size = 128,
8389 .page_size = 512,
Sean Nelson35727f72010-01-28 23:55:12 +00008390 .feature_bits = FEATURE_EITHER_RESET,
Mattias Mattsson4c066502010-07-29 20:01:13 +00008391 .tested = TEST_UNTESTED,
8392 .probe = probe_jedec,
8393 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
8394 .block_erasers =
8395 {
8396 {
8397 .eraseblocks = { {512, 256} },
8398 .block_erase = erase_sector_jedec,
8399 }, {
8400 .eraseblocks = { {128 * 1024, 1} },
8401 .block_erase = erase_chip_block_jedec,
8402 },
8403 },
8404 .write = write_jedec_1,
8405 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008406 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00008407 },
8408
8409 {
8410 .vendor = "SyncMOS/MoselVitelic",
8411 .name = "{F,S,V}29C51002B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008412 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00008413 .manufacture_id = SYNCMOS_MVC_ID,
8414 .model_id = SM_MVC_29C51002B,
8415 .total_size = 256,
8416 .page_size = 512,
8417 .feature_bits = FEATURE_EITHER_RESET,
8418 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008419 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00008420 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00008421 .block_erasers =
8422 {
8423 {
8424 .eraseblocks = { {512, 512} },
8425 .block_erase = erase_sector_jedec,
8426 }, {
8427 .eraseblocks = { {256 * 1024, 1} },
8428 .block_erase = erase_chip_block_jedec,
8429 },
8430 },
Sean Nelson35727f72010-01-28 23:55:12 +00008431 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008432 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00008433 },
8434
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008435 {
Mattias Mattsson4c066502010-07-29 20:01:13 +00008436 .vendor = "SyncMOS/MoselVitelic",
8437 .name = "{F,S,V}29C51002T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008438 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00008439 .manufacture_id = SYNCMOS_MVC_ID,
8440 .model_id = SM_MVC_29C51002T,
8441 .total_size = 256,
8442 .page_size = 512,
8443 .feature_bits = FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00008444 .tested = TEST_OK_PREW,
Mattias Mattsson4c066502010-07-29 20:01:13 +00008445 .probe = probe_jedec,
8446 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
8447 .block_erasers =
8448 {
8449 {
8450 .eraseblocks = { {512, 512} },
8451 .block_erase = erase_sector_jedec,
8452 }, {
8453 .eraseblocks = { {256 * 1024, 1} },
8454 .block_erase = erase_chip_block_jedec,
8455 },
8456 },
8457 .write = write_jedec_1,
8458 .read = read_memmapped,
8459 },
8460
8461 {
8462 .vendor = "SyncMOS/MoselVitelic",
8463 .name = "{F,S,V}29C51004B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008464 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00008465 .manufacture_id = SYNCMOS_MVC_ID,
8466 .model_id = SM_MVC_29C51004B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008467 .total_size = 512,
Mattias Mattsson4c066502010-07-29 20:01:13 +00008468 .page_size = 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00008469 .feature_bits = FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008470 .tested = TEST_UNTESTED,
8471 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00008472 .probe_timing = TIMING_ZERO,
Sean Nelson56358aa2010-01-19 16:08:51 +00008473 .block_erasers =
8474 {
8475 {
Mattias Mattsson4c066502010-07-29 20:01:13 +00008476 .eraseblocks = { {1024, 512} },
8477 .block_erase = erase_sector_jedec,
8478 }, {
8479 .eraseblocks = { {512 * 1024, 1} },
8480 .block_erase = erase_chip_block_jedec,
8481 },
8482 },
8483 .write = write_jedec_1,
8484 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008485 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00008486 },
8487
8488 {
8489 .vendor = "SyncMOS/MoselVitelic",
8490 .name = "{F,S,V}29C51004T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008491 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00008492 .manufacture_id = SYNCMOS_MVC_ID,
8493 .model_id = SM_MVC_29C51004T,
8494 .total_size = 512,
8495 .page_size = 1024,
8496 .feature_bits = FEATURE_EITHER_RESET,
8497 .tested = TEST_UNTESTED,
8498 .probe = probe_jedec,
8499 .probe_timing = TIMING_ZERO,
8500 .block_erasers =
8501 {
8502 {
8503 .eraseblocks = { {1024, 512} },
8504 .block_erase = erase_sector_jedec,
8505 }, {
8506 .eraseblocks = { {512 * 1024, 1} },
8507 .block_erase = erase_chip_block_jedec,
8508 },
8509 },
8510 .write = write_jedec_1,
8511 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008512 .voltage = {4500, 5500},
Mattias Mattsson4c066502010-07-29 20:01:13 +00008513 },
8514
8515 {
8516 .vendor = "SyncMOS/MoselVitelic",
8517 .name = "{S,V}29C31004B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008518 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00008519 .manufacture_id = SYNCMOS_MVC_ID,
8520 .model_id = SM_MVC_29C31004B,
8521 .total_size = 512,
8522 .page_size = 1024,
8523 .feature_bits = FEATURE_EITHER_RESET,
8524 .tested = TEST_UNTESTED,
8525 .probe = probe_jedec,
8526 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
8527 .block_erasers =
8528 {
8529 {
8530 .eraseblocks = { {1024, 512} },
8531 .block_erase = erase_sector_jedec,
8532 }, {
8533 .eraseblocks = { {512 * 1024, 1} },
8534 .block_erase = erase_chip_block_jedec,
8535 },
8536 },
8537 .write = write_jedec_1,
8538 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008539 .voltage = {3000, 3600},
Mattias Mattsson4c066502010-07-29 20:01:13 +00008540 },
8541
8542 {
8543 .vendor = "SyncMOS/MoselVitelic",
8544 .name = "{S,V}29C31004T",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008545 .bustype = BUS_PARALLEL,
Mattias Mattsson4c066502010-07-29 20:01:13 +00008546 .manufacture_id = SYNCMOS_MVC_ID,
8547 .model_id = SM_MVC_29C31004T,
8548 .total_size = 512,
8549 .page_size = 1024,
8550 .feature_bits = FEATURE_EITHER_RESET,
8551 .tested = TEST_UNTESTED,
8552 .probe = probe_jedec,
8553 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
8554 .block_erasers =
8555 {
8556 {
8557 .eraseblocks = { {1024, 512} },
Sean Nelson56358aa2010-01-19 16:08:51 +00008558 .block_erase = erase_sector_jedec,
8559 }, {
8560 .eraseblocks = { {512 * 1024, 1} },
8561 .block_erase = erase_chip_block_jedec,
8562 },
8563 },
Sean Nelson35727f72010-01-28 23:55:12 +00008564 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00008565 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008566 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008567 },
8568
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008569 {
Uwe Hermanna106d152009-05-27 23:17:40 +00008570 .vendor = "TI",
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00008571 .name = "TMS29F002RB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008572 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00008573 .manufacture_id = TI_OLD_ID,
8574 .model_id = TI_TMS29F002RB,
8575 .total_size = 256,
8576 .page_size = 16384, /* Non-uniform sectors */
Sean Nelson35727f72010-01-28 23:55:12 +00008577 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00008578 .tested = TEST_UNTESTED,
8579 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00008580 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00008581 .block_erasers =
8582 {
8583 {
8584 .eraseblocks = {
8585 {16 * 1024, 1},
8586 {8 * 1024, 2},
8587 {32 * 1024, 1},
8588 {64 * 1024, 3},
8589 },
8590 .block_erase = erase_sector_jedec,
8591 }, {
8592 .eraseblocks = { {256 * 1024, 1} },
8593 .block_erase = erase_chip_block_jedec,
8594 },
8595 },
Sean Nelson35727f72010-01-28 23:55:12 +00008596 .write = write_jedec_1,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00008597 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008598 .voltage = {4500, 5500},
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00008599 },
8600
8601 {
Uwe Hermanna106d152009-05-27 23:17:40 +00008602 .vendor = "TI",
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00008603 .name = "TMS29F002RT",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008604 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00008605 .manufacture_id = TI_OLD_ID,
8606 .model_id = TI_TMS29F002RT,
8607 .total_size = 256,
8608 .page_size = 16384, /* Non-uniform sectors */
Sean Nelson35727f72010-01-28 23:55:12 +00008609 .feature_bits = FEATURE_ADDR_2AA | FEATURE_EITHER_RESET,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00008610 .tested = TEST_UNTESTED,
8611 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00008612 .probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
Sean Nelson56358aa2010-01-19 16:08:51 +00008613 .block_erasers =
8614 {
8615 {
8616 .eraseblocks = {
8617 {64 * 1024, 3},
8618 {32 * 1024, 1},
8619 {8 * 1024, 2},
8620 {16 * 1024, 1},
8621 },
8622 .block_erase = erase_sector_jedec,
8623 }, {
8624 .eraseblocks = { {256 * 1024, 1} },
8625 .block_erase = erase_chip_block_jedec,
8626 },
8627 },
Sean Nelson35727f72010-01-28 23:55:12 +00008628 .write = write_jedec_1,
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00008629 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008630 .voltage = {4500, 5500},
Carl-Daniel Hailfinger09b4fb72009-05-26 21:26:23 +00008631 },
8632
8633 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008634 .vendor = "Winbond",
Rudolf Marekce1c7982010-04-20 19:34:31 +00008635 .name = "W25Q80",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008636 .bustype = BUS_SPI,
Rudolf Marekce1c7982010-04-20 19:34:31 +00008637 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00008638 .model_id = WINBOND_NEX_W25Q80,
Rudolf Marekce1c7982010-04-20 19:34:31 +00008639 .total_size = 1024,
8640 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00008641 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42 */
8642 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks22e05322010-12-13 23:54:59 +00008643 .tested = TEST_OK_PREW,
Rudolf Marekce1c7982010-04-20 19:34:31 +00008644 .probe = probe_spi_rdid,
8645 .probe_timing = TIMING_ZERO,
8646 .block_erasers =
8647 {
8648 {
8649 .eraseblocks = { {4 * 1024, 256} },
8650 .block_erase = spi_block_erase_20,
8651 }, {
8652 .eraseblocks = { {32 * 1024, 32} },
8653 .block_erase = spi_block_erase_52,
8654 }, {
8655 .eraseblocks = { {64 * 1024, 16} },
8656 .block_erase = spi_block_erase_d8,
8657 }, {
8658 .eraseblocks = { {1024 * 1024, 1} },
8659 .block_erase = spi_block_erase_60,
8660 }, {
8661 .eraseblocks = { {1024 * 1024, 1} },
8662 .block_erase = spi_block_erase_c7,
8663 }
8664 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008665 .unlock = spi_disable_blockprotect,
Rudolf Marekce1c7982010-04-20 19:34:31 +00008666 .write = spi_chip_write_256,
8667 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008668 .voltage = {2700, 3600},
Rudolf Marekce1c7982010-04-20 19:34:31 +00008669 },
8670
8671 {
8672 .vendor = "Winbond",
8673 .name = "W25Q16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008674 .bustype = BUS_SPI,
Rudolf Marekce1c7982010-04-20 19:34:31 +00008675 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00008676 .model_id = WINBOND_NEX_W25Q16,
Rudolf Marekce1c7982010-04-20 19:34:31 +00008677 .total_size = 2048,
8678 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00008679 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42 */
8680 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Stefan Tauner716e0982011-07-25 20:38:52 +00008681 .tested = TEST_OK_PREW,
Rudolf Marekce1c7982010-04-20 19:34:31 +00008682 .probe = probe_spi_rdid,
8683 .probe_timing = TIMING_ZERO,
8684 .block_erasers =
8685 {
8686 {
8687 .eraseblocks = { {4 * 1024, 512} },
8688 .block_erase = spi_block_erase_20,
8689 }, {
8690 .eraseblocks = { {32 * 1024, 64} },
8691 .block_erase = spi_block_erase_52,
8692 }, {
8693 .eraseblocks = { {64 * 1024, 32} },
8694 .block_erase = spi_block_erase_d8,
8695 }, {
8696 .eraseblocks = { {2 * 1024 * 1024, 1} },
8697 .block_erase = spi_block_erase_60,
8698 }, {
8699 .eraseblocks = { {2 * 1024 * 1024, 1} },
8700 .block_erase = spi_block_erase_c7,
8701 }
8702 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008703 .unlock = spi_disable_blockprotect,
Rudolf Marekce1c7982010-04-20 19:34:31 +00008704 .write = spi_chip_write_256,
8705 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008706 .voltage = {2700, 3600},
Rudolf Marekce1c7982010-04-20 19:34:31 +00008707 },
8708
8709 {
8710 .vendor = "Winbond",
8711 .name = "W25Q32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008712 .bustype = BUS_SPI,
Rudolf Marekce1c7982010-04-20 19:34:31 +00008713 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00008714 .model_id = WINBOND_NEX_W25Q32,
Rudolf Marekce1c7982010-04-20 19:34:31 +00008715 .total_size = 4096,
8716 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00008717 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42 */
8718 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks22e05322010-12-13 23:54:59 +00008719 .tested = TEST_OK_PREW,
Rudolf Marekce1c7982010-04-20 19:34:31 +00008720 .probe = probe_spi_rdid,
8721 .probe_timing = TIMING_ZERO,
8722 .block_erasers =
8723 {
8724 {
8725 .eraseblocks = { {4 * 1024, 1024} },
8726 .block_erase = spi_block_erase_20,
8727 }, {
8728 .eraseblocks = { {32 * 1024, 128} },
8729 .block_erase = spi_block_erase_52,
8730 }, {
8731 .eraseblocks = { {64 * 1024, 64} },
8732 .block_erase = spi_block_erase_d8,
8733 }, {
8734 .eraseblocks = { {4 * 1024 * 1024, 1} },
8735 .block_erase = spi_block_erase_60,
8736 }, {
8737 .eraseblocks = { {4 * 1024 * 1024, 1} },
8738 .block_erase = spi_block_erase_c7,
8739 }
8740 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008741 .unlock = spi_disable_blockprotect,
Rudolf Marekce1c7982010-04-20 19:34:31 +00008742 .write = spi_chip_write_256,
8743 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008744 .voltage = {2700, 3600},
Rudolf Marekce1c7982010-04-20 19:34:31 +00008745 },
8746
8747 {
8748 .vendor = "Winbond",
David Hendricksc4acec92010-06-24 11:39:57 +00008749 .name = "W25Q64",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008750 .bustype = BUS_SPI,
David Hendricksc4acec92010-06-24 11:39:57 +00008751 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00008752 .model_id = WINBOND_NEX_W25Q64,
David Hendricksc4acec92010-06-24 11:39:57 +00008753 .total_size = 8192,
8754 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00008755 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42 */
8756 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
David Hendricks22e05322010-12-13 23:54:59 +00008757 .tested = TEST_OK_PREW,
David Hendricksc4acec92010-06-24 11:39:57 +00008758 .probe = probe_spi_rdid,
8759 .probe_timing = TIMING_ZERO,
8760 .block_erasers =
8761 {
8762 {
8763 .eraseblocks = { {4 * 1024, 2048} },
8764 .block_erase = spi_block_erase_20,
8765 }, {
8766 .eraseblocks = { {32 * 1024, 256} },
8767 .block_erase = spi_block_erase_52,
8768 }, {
8769 .eraseblocks = { {64 * 1024, 128} },
8770 .block_erase = spi_block_erase_d8,
8771 }, {
8772 .eraseblocks = { {8 * 1024 * 1024, 1} },
8773 .block_erase = spi_block_erase_60,
8774 }, {
8775 .eraseblocks = { {8 * 1024 * 1024, 1} },
8776 .block_erase = spi_block_erase_c7,
8777 }
8778 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008779 .unlock = spi_disable_blockprotect,
David Hendricksc4acec92010-06-24 11:39:57 +00008780 .write = spi_chip_write_256,
8781 .read = spi_chip_read,
8782 },
8783
8784 {
8785 .vendor = "Winbond",
Antony Rheneus0fbba982011-05-26 14:28:51 +00008786 .name = "W25Q128",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008787 .bustype = BUS_SPI,
Antony Rheneus0fbba982011-05-26 14:28:51 +00008788 .manufacture_id = WINBOND_NEX_ID,
8789 .model_id = WINBOND_NEX_W25Q128,
8790 .total_size = 16384,
8791 .page_size = 256,
Daniel Lenski65922a32012-02-15 23:40:23 +00008792 /* OTP: 1024B total, 256B reserved; read 0x48; write 0x42 */
8793 .feature_bits = FEATURE_WRSR_WREN | FEATURE_OTP,
Antony Rheneus0fbba982011-05-26 14:28:51 +00008794 .tested = TEST_OK_PROBE,
8795 .probe = probe_spi_rdid,
8796 .probe_timing = TIMING_ZERO,
8797 .block_erasers =
8798 {
8799 {
8800 .eraseblocks = { {4 * 1024, 4096} },
8801 .block_erase = spi_block_erase_20,
8802 }, {
8803 .eraseblocks = { {32 * 1024, 512} },
8804 .block_erase = spi_block_erase_52,
8805 }, {
8806 .eraseblocks = { {64 * 1024, 256} },
8807 .block_erase = spi_block_erase_d8,
8808 }, {
8809 .eraseblocks = { {16 * 1024 * 1024, 1} },
8810 .block_erase = spi_block_erase_60,
8811 }, {
8812 .eraseblocks = { {16 * 1024 * 1024, 1} },
8813 .block_erase = spi_block_erase_c7,
8814 }
8815 },
8816 .unlock = spi_disable_blockprotect,
8817 .write = spi_chip_write_256,
8818 .read = spi_chip_read,
8819 },
8820
8821 {
8822 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +00008823 .name = "W25X10",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008824 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008825 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00008826 .model_id = WINBOND_NEX_W25X10,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008827 .total_size = 128,
8828 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +00008829 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008830 .tested = TEST_UNTESTED,
8831 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00008832 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00008833 .block_erasers =
8834 {
8835 {
8836 .eraseblocks = { {4 * 1024, 32} },
8837 .block_erase = spi_block_erase_20,
8838 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00008839 .eraseblocks = { {64 * 1024, 2} },
8840 .block_erase = spi_block_erase_d8,
8841 }, {
8842 .eraseblocks = { {128 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00008843 .block_erase = spi_block_erase_c7,
8844 }
8845 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008846 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00008847 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008848 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008849 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008850 },
8851
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008852 {
8853 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +00008854 .name = "W25X20",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008855 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008856 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00008857 .model_id = WINBOND_NEX_W25X20,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008858 .total_size = 256,
8859 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +00008860 .feature_bits = FEATURE_WRSR_WREN,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008861 .tested = TEST_UNTESTED,
8862 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00008863 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00008864 .block_erasers =
8865 {
8866 {
8867 .eraseblocks = { {4 * 1024, 64} },
8868 .block_erase = spi_block_erase_20,
8869 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00008870 .eraseblocks = { {64 * 1024, 4} },
8871 .block_erase = spi_block_erase_d8,
8872 }, {
8873 .eraseblocks = { {256 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00008874 .block_erase = spi_block_erase_c7,
8875 }
8876 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008877 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00008878 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008879 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008880 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008881 },
8882
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008883 {
8884 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +00008885 .name = "W25X40",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008886 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008887 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00008888 .model_id = WINBOND_NEX_W25X40,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008889 .total_size = 512,
8890 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +00008891 .feature_bits = FEATURE_WRSR_WREN,
David Hendricks567b7b82011-05-18 01:31:03 +00008892 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008893 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00008894 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00008895 .block_erasers =
8896 {
8897 {
8898 .eraseblocks = { {4 * 1024, 128} },
8899 .block_erase = spi_block_erase_20,
8900 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00008901 .eraseblocks = { {64 * 1024, 8} },
8902 .block_erase = spi_block_erase_d8,
8903 }, {
8904 .eraseblocks = { {512 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00008905 .block_erase = spi_block_erase_c7,
8906 }
8907 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008908 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00008909 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008910 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008911 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008912 },
8913
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008914 {
8915 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +00008916 .name = "W25X80",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008917 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008918 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00008919 .model_id = WINBOND_NEX_W25X80,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008920 .total_size = 1024,
8921 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +00008922 .feature_bits = FEATURE_WRSR_WREN,
Yul Rottmann6d6ab742011-03-05 16:31:57 +00008923 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008924 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00008925 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00008926 .block_erasers =
8927 {
8928 {
8929 .eraseblocks = { {4 * 1024, 256} },
8930 .block_erase = spi_block_erase_20,
8931 }, {
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00008932 .eraseblocks = { {64 * 1024, 16} },
8933 .block_erase = spi_block_erase_d8,
8934 }, {
8935 .eraseblocks = { {1024 * 1024, 1} },
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00008936 .block_erase = spi_block_erase_c7,
8937 }
8938 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008939 .unlock = spi_disable_blockprotect,
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00008940 .write = spi_chip_write_256,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008941 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008942 .voltage = {2700, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00008943 },
8944
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00008945 {
8946 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +00008947 .name = "W25X16",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008948 .bustype = BUS_SPI,
Hector Martina721ae22009-07-11 19:39:11 +00008949 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00008950 .model_id = WINBOND_NEX_W25X16,
Hector Martina721ae22009-07-11 19:39:11 +00008951 .total_size = 2048,
8952 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +00008953 .feature_bits = FEATURE_WRSR_WREN,
Stefan Tauner8179be52011-06-04 13:13:34 +00008954 .tested = TEST_OK_PREW,
Hector Martina721ae22009-07-11 19:39:11 +00008955 .probe = probe_spi_rdid,
8956 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00008957 .block_erasers =
8958 {
8959 {
8960 .eraseblocks = { {4 * 1024, 512} },
8961 .block_erase = spi_block_erase_20,
8962 }, {
8963 .eraseblocks = { {32 * 1024, 64} },
8964 .block_erase = spi_block_erase_52,
8965 }, {
8966 .eraseblocks = { {64 * 1024, 32} },
8967 .block_erase = spi_block_erase_d8,
8968 }, {
8969 .eraseblocks = { {2 * 1024 * 1024, 1} },
8970 .block_erase = spi_block_erase_60,
8971 }, {
8972 .eraseblocks = { {2 * 1024 * 1024, 1} },
8973 .block_erase = spi_block_erase_c7,
8974 }
8975 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00008976 .unlock = spi_disable_blockprotect,
Hector Martina721ae22009-07-11 19:39:11 +00008977 .write = spi_chip_write_256,
8978 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00008979 .voltage = {2700, 3600},
Hector Martina721ae22009-07-11 19:39:11 +00008980 },
8981
8982 {
8983 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +00008984 .name = "W25X32",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00008985 .bustype = BUS_SPI,
Zheng Bao1db2b752009-11-26 11:05:01 +00008986 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00008987 .model_id = WINBOND_NEX_W25X32,
Zheng Bao1db2b752009-11-26 11:05:01 +00008988 .total_size = 4096,
8989 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +00008990 .feature_bits = FEATURE_WRSR_WREN,
Zheng Bao1db2b752009-11-26 11:05:01 +00008991 .tested = TEST_OK_PROBE,
8992 .probe = probe_spi_rdid,
8993 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00008994 .block_erasers =
8995 {
8996 {
8997 .eraseblocks = { {4 * 1024, 1024} },
8998 .block_erase = spi_block_erase_20,
8999 }, {
9000 .eraseblocks = { {32 * 1024, 128} },
9001 .block_erase = spi_block_erase_52,
9002 }, {
9003 .eraseblocks = { {64 * 1024, 64} },
9004 .block_erase = spi_block_erase_d8,
9005 }, {
9006 .eraseblocks = { {4 * 1024 * 1024, 1} },
9007 .block_erase = spi_block_erase_60,
9008 }, {
9009 .eraseblocks = { {4 * 1024 * 1024, 1} },
9010 .block_erase = spi_block_erase_c7,
9011 }
9012 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00009013 .unlock = spi_disable_blockprotect,
Zheng Bao1db2b752009-11-26 11:05:01 +00009014 .write = spi_chip_write_256,
9015 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009016 .voltage = {2700, 3600},
Zheng Bao1db2b752009-11-26 11:05:01 +00009017 },
9018
9019 {
9020 .vendor = "Winbond",
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +00009021 .name = "W25X64",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009022 .bustype = BUS_SPI,
Zheng Bao1db2b752009-11-26 11:05:01 +00009023 .manufacture_id = WINBOND_NEX_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00009024 .model_id = WINBOND_NEX_W25X64,
Zheng Bao1db2b752009-11-26 11:05:01 +00009025 .total_size = 8192,
9026 .page_size = 256,
David Hendricks2cbb7222010-09-03 03:06:07 +00009027 .feature_bits = FEATURE_WRSR_WREN,
Antony Rheneus0fbba982011-05-26 14:28:51 +00009028 .tested = TEST_OK_PROBE,
Zheng Bao1db2b752009-11-26 11:05:01 +00009029 .probe = probe_spi_rdid,
9030 .probe_timing = TIMING_ZERO,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00009031 .block_erasers =
9032 {
9033 {
9034 .eraseblocks = { {4 * 1024, 2048} },
9035 .block_erase = spi_block_erase_20,
9036 }, {
9037 .eraseblocks = { {32 * 1024, 256} },
9038 .block_erase = spi_block_erase_52,
9039 }, {
9040 .eraseblocks = { {64 * 1024, 128} },
9041 .block_erase = spi_block_erase_d8,
9042 }, {
9043 .eraseblocks = { {8 * 1024 * 1024, 1} },
9044 .block_erase = spi_block_erase_60,
9045 }, {
9046 .eraseblocks = { {8 * 1024 * 1024, 1} },
9047 .block_erase = spi_block_erase_c7,
9048 }
9049 },
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +00009050 .unlock = spi_disable_blockprotect,
Zheng Bao1db2b752009-11-26 11:05:01 +00009051 .write = spi_chip_write_256,
9052 .read = spi_chip_read,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009053 .voltage = {2700, 3600},
Zheng Bao1db2b752009-11-26 11:05:01 +00009054 },
9055
9056 {
9057 .vendor = "Winbond",
Carl-Daniel Hailfinger2e88a9f2011-07-26 14:18:52 +00009058 .name = "W29C010(M)/W29C011A/W29EE011/W29EE012-old",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009059 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfinger2e88a9f2011-07-26 14:18:52 +00009060 .manufacture_id = WINBOND_ID,
9061 .model_id = WINBOND_W29C010,
9062 .total_size = 128,
9063 .page_size = 128,
9064 .feature_bits = FEATURE_LONG_RESET,
9065 .tested = TEST_OK_PRE,
9066 .probe = probe_w29ee011,
9067 .probe_timing = TIMING_IGNORED, /* routine doesn't use probe_timing (w29ee011.c) */
9068 .block_erasers =
9069 {
9070 {
9071 .eraseblocks = { {128 * 1024, 1} },
9072 .block_erase = erase_chip_block_jedec,
9073 }
9074 },
9075 .write = write_jedec,
9076 .read = read_memmapped,
9077 },
9078
9079 {/* W29EE011, W29EE012, W29C010M, W29C011A do not support probe_jedec according to the datasheet, but it works for newer(?) steppings. */
9080 .vendor = "Winbond",
Mattias Mattssona745cf42010-09-14 23:56:56 +00009081 .name = "W29C010(M)/W29C011A/W29EE011/W29EE012",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009082 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009083 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00009084 .model_id = WINBOND_W29C010,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009085 .total_size = 128,
9086 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00009087 .feature_bits = FEATURE_LONG_RESET,
David Hendricks567b7b82011-05-18 01:31:03 +00009088 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009089 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00009090 .probe_timing = 10, /* used datasheet for the W29C011A */
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00009091 .block_erasers =
9092 {
9093 {
9094 .eraseblocks = { {128 * 1024, 1} },
9095 .block_erase = erase_chip_block_jedec,
9096 }
9097 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009098 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009099 .read = read_memmapped,
FENG yu ningff692fb2008-12-08 18:15:10 +00009100 },
9101
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009102 {
9103 .vendor = "Winbond",
Mattias Mattssona745cf42010-09-14 23:56:56 +00009104 .name = "W29C020(C)/W29C022",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009105 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009106 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00009107 .model_id = WINBOND_W29C020,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009108 .total_size = 256,
9109 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00009110 .feature_bits = FEATURE_LONG_RESET,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +00009111 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009112 .probe = probe_jedec,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +00009113 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00009114 .block_erasers =
9115 {
9116 {
9117 .eraseblocks = { {256 * 1024, 1} },
9118 .block_erase = erase_chip_block_jedec,
9119 }
9120 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009121 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009122 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009123 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00009124 },
9125
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009126 {
9127 .vendor = "Winbond",
Mattias Mattssona745cf42010-09-14 23:56:56 +00009128 .name = "W29C040/P",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009129 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009130 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00009131 .model_id = WINBOND_W29C040,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009132 .total_size = 512,
9133 .page_size = 256,
Sean Nelson35727f72010-01-28 23:55:12 +00009134 .feature_bits = FEATURE_LONG_RESET,
9135 .tested = TEST_UNTESTED,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009136 .probe = probe_jedec,
Mateusz Murawski8b2f46b2009-06-12 21:29:36 +00009137 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00009138 .block_erasers =
9139 {
9140 {
9141 .eraseblocks = { {512 * 1024, 1} },
9142 .block_erase = erase_chip_block_jedec,
9143 }
9144 },
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009145 .write = write_jedec,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009146 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009147 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00009148 },
9149
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009150 {
9151 .vendor = "Winbond",
Michael Karcher19e0aac2011-03-06 17:58:05 +00009152 .name = "W39L040",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009153 .bustype = BUS_PARALLEL,
Michael Karcher19e0aac2011-03-06 17:58:05 +00009154 .manufacture_id = WINBOND_ID,
9155 .model_id = WINBOND_W39L040,
9156 .total_size = 512,
9157 .page_size = 64 * 1024,
9158 .feature_bits = FEATURE_EITHER_RESET,
9159 .tested = TEST_OK_PR,
9160 .probe = probe_jedec,
9161 .probe_timing = 10,
9162 .block_erasers =
9163 {
9164 {
9165 .eraseblocks = { {4 * 1024, 128} },
9166 .block_erase = erase_block_jedec,
9167 }, {
9168 .eraseblocks = { {64 * 1024, 8} },
9169 .block_erase = erase_sector_jedec,
9170 }, {
9171 .eraseblocks = { {512 * 1024, 1} },
9172 .block_erase = erase_chip_block_jedec,
9173 }
9174 },
9175 .printlock = printlock_w39l040,
9176 .write = write_jedec_1,
9177 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00009178 .voltage = {3000, 3600},
Michael Karcher19e0aac2011-03-06 17:58:05 +00009179 },
9180
9181 {
9182 .vendor = "Winbond",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009183 .name = "W39V040A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009184 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009185 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00009186 .model_id = WINBOND_W39V040A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009187 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +00009188 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009189 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner716e0982011-07-25 20:38:52 +00009190 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009191 .probe = probe_jedec,
Stefan Tauner716e0982011-07-25 20:38:52 +00009192 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00009193 .block_erasers =
9194 {
9195 {
9196 .eraseblocks = { {64 * 1024, 8} },
9197 .block_erase = erase_sector_jedec,
9198 }, {
9199 .eraseblocks = { {512 * 1024, 1} },
9200 .block_erase = erase_chip_block_jedec,
9201 }
9202 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009203 .printlock = printlock_w39v040a,
Sean Nelson35727f72010-01-28 23:55:12 +00009204 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009205 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009206 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009207 },
9208
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009209 {
9210 .vendor = "Winbond",
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009211 .name = "W39V040B",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009212 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009213 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00009214 .model_id = WINBOND_W39V040B,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009215 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +00009216 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009217 .feature_bits = FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00009218 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009219 .probe = probe_jedec,
Paul Menzel018d4822011-10-21 12:33:07 +00009220 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00009221 .block_erasers =
9222 {
9223 {
9224 .eraseblocks = { {64 * 1024, 8} },
9225 .block_erase = erase_sector_jedec,
9226 }, {
9227 .eraseblocks = { {512 * 1024, 1} },
9228 .block_erase = erase_chip_block_jedec,
9229 }
9230 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009231 .printlock = printlock_w39v040b,
Sean Nelson35727f72010-01-28 23:55:12 +00009232 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009233 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009234 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009235 },
9236
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009237 {
9238 .vendor = "Winbond",
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009239 .name = "W39V040C",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009240 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009241 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00009242 .model_id = WINBOND_W39V040C,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009243 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +00009244 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009245 .feature_bits = FEATURE_EITHER_RESET,
Paul Menzel018d4822011-10-21 12:33:07 +00009246 .tested = TEST_OK_PREW,
Sean Nelson35727f72010-01-28 23:55:12 +00009247 .probe = probe_jedec,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009248 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00009249 .block_erasers =
9250 {
9251 {
9252 .eraseblocks = { {64 * 1024, 8} },
9253 .block_erase = erase_sector_jedec,
9254 }, {
9255 .eraseblocks = { {512 * 1024, 1} },
9256 .block_erase = erase_chip_block_jedec,
9257 }
9258 },
Sean Nelson6e0b9122010-02-19 00:52:10 +00009259 .printlock = printlock_w39v040c,
Sean Nelson35727f72010-01-28 23:55:12 +00009260 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009261 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009262 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009263 },
9264
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009265 {
9266 .vendor = "Winbond",
9267 .name = "W39V040FA",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009268 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009269 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00009270 .model_id = WINBOND_W39V040FA,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009271 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +00009272 .page_size = 64 * 1024,
Michael Karcherc9b63412010-05-30 16:55:18 +00009273 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Antony Rheneus0fbba982011-05-26 14:28:51 +00009274 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009275 .probe = probe_jedec,
Antony Rheneus0fbba982011-05-26 14:28:51 +00009276 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00009277 .block_erasers =
9278 {
9279 {
9280 .eraseblocks = { {4 * 1024, 128} },
9281 .block_erase = erase_block_jedec,
9282 }, {
9283 .eraseblocks = { {64 * 1024, 8} },
9284 .block_erase = erase_sector_jedec,
9285 }, {
9286 .eraseblocks = { {512 * 1024, 1} },
9287 .block_erase = erase_chip_block_jedec,
9288 }
9289 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009290 .printlock = printlock_w39v040fa,
Michael Karcherc9b63412010-05-30 16:55:18 +00009291 .unlock = unlock_sst_fwhub,
Sean Nelson35727f72010-01-28 23:55:12 +00009292 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009293 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009294 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009295 },
9296
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009297 {
9298 .vendor = "Winbond",
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009299 .name = "W39V040FB",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009300 .bustype = BUS_FWH,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009301 .manufacture_id = WINBOND_ID,
9302 .model_id = WINBOND_W39V040B,
9303 .total_size = 512,
9304 .page_size = 64 * 1024,
9305 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Idwer Vollering67f28142011-03-06 22:26:23 +00009306 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009307 .probe = probe_jedec,
9308 .probe_timing = 10,
9309 .block_erasers =
9310 {
9311 {
9312 .eraseblocks = { {64 * 1024, 8} },
9313 .block_erase = erase_sector_jedec,
9314 }, {
9315 .eraseblocks = { {512 * 1024, 1} },
9316 .block_erase = erase_chip_block_jedec,
9317 }
9318 },
9319 .printlock = printlock_w39v040fb,
Idwer Volleringecc67072010-12-26 23:55:12 +00009320 .unlock = unlock_w39v040fb,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009321 .write = write_jedec_1,
9322 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00009323 .voltage = {3000, 3600}, /* Also has 12V fast program */
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009324 },
9325
9326 {
9327 .vendor = "Winbond",
9328 .name = "W39V040FC",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009329 .bustype = BUS_FWH,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009330 .manufacture_id = WINBOND_ID,
9331 .model_id = WINBOND_W39V040C,
9332 .total_size = 512,
9333 .page_size = 64 * 1024,
9334 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Tauneraf2db612011-12-02 21:48:17 +00009335 .tested = TEST_OK_PREW,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009336 .probe = probe_jedec,
9337 .probe_timing = 10,
9338 .block_erasers =
9339 {
9340 {
9341 .eraseblocks = { {64 * 1024, 8} },
9342 .block_erase = erase_sector_jedec,
9343 }, {
9344 .eraseblocks = { {512 * 1024, 1} },
9345 .block_erase = erase_chip_block_jedec,
9346 }
9347 },
9348 .printlock = printlock_w39v040fc,
9349 .write = write_jedec_1,
9350 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00009351 .voltage = {3000, 3600}, /* Also has 12V fast program */
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009352 },
9353
9354 {
9355 .vendor = "Winbond",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009356 .name = "W39V080A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009357 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009358 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00009359 .model_id = WINBOND_W39V080A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009360 .total_size = 1024,
Sean Nelson72a9a022009-12-22 22:15:33 +00009361 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009362 .feature_bits = FEATURE_EITHER_RESET,
Paul Menzelac427b22012-02-16 21:07:07 +00009363 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009364 .probe = probe_jedec,
Paul Menzelac427b22012-02-16 21:07:07 +00009365 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00009366 .block_erasers =
9367 {
9368 {
9369 .eraseblocks = { {64 * 1024, 16} },
9370 .block_erase = erase_sector_jedec,
9371 }, {
9372 .eraseblocks = { {1024 * 1024, 1} },
9373 .block_erase = erase_chip_block_jedec,
9374 }
9375 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009376 .printlock = printlock_w39v080a,
Sean Nelson35727f72010-01-28 23:55:12 +00009377 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009378 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009379 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009380 },
9381
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009382 {
9383 .vendor = "Winbond",
Mattias Mattssona745cf42010-09-14 23:56:56 +00009384 .name = "W49F002U/N",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009385 .bustype = BUS_PARALLEL,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009386 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00009387 .model_id = WINBOND_W49F002U,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009388 .total_size = 256,
9389 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00009390 .feature_bits = FEATURE_EITHER_RESET,
Stefan Tauner716e0982011-07-25 20:38:52 +00009391 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009392 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00009393 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00009394 .block_erasers =
9395 {
9396 {
9397 .eraseblocks = {
9398 {128 * 1024, 1},
9399 {96 * 1024, 1},
9400 {8 * 1024, 2},
9401 {16 * 1024, 1},
9402 },
9403 .block_erase = erase_sector_jedec,
9404 }, {
9405 .eraseblocks = { {256 * 1024, 1} },
9406 .block_erase = erase_chip_block_jedec,
9407 }
9408 },
Sean Nelson35727f72010-01-28 23:55:12 +00009409 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009410 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009411 .voltage = {4500, 5500},
FENG yu ningff692fb2008-12-08 18:15:10 +00009412 },
9413
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009414 {
9415 .vendor = "Winbond",
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +00009416 .name = "W49F020",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009417 .bustype = BUS_PARALLEL,
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +00009418 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00009419 .model_id = WINBOND_W49F020,
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +00009420 .total_size = 256,
9421 .page_size = 128,
9422 .feature_bits = FEATURE_EITHER_RESET,
9423 .tested = TEST_OK_PROBE,
9424 .probe = probe_jedec,
9425 .probe_timing = 10,
9426 .block_erasers =
9427 {
9428 {
9429 .eraseblocks = { {256 * 1024, 1} },
9430 .block_erase = erase_chip_block_jedec,
9431 }
9432 },
9433 .write = write_jedec_1,
9434 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009435 .voltage = {4500, 5500},
Carl-Daniel Hailfingerabebe6b2010-07-17 13:45:42 +00009436 },
9437
9438 {
9439 .vendor = "Winbond",
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009440 .name = "W49V002A",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009441 .bustype = BUS_LPC,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009442 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00009443 .model_id = WINBOND_W49V002A,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009444 .total_size = 256,
9445 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00009446 .feature_bits = FEATURE_EITHER_RESET,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +00009447 .tested = TEST_OK_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009448 .probe = probe_jedec,
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +00009449 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00009450 .block_erasers =
9451 {
9452 {
9453 .eraseblocks = {
9454 {64 * 1024, 3},
9455 {32 * 1024, 1},
9456 {8 * 1024, 2},
9457 {16 * 1024, 1},
9458 },
9459 .block_erase = erase_sector_jedec,
9460 }, {
9461 .eraseblocks = { {256 * 1024, 1} },
9462 .block_erase = erase_chip_block_jedec,
9463 }
9464 },
Sean Nelson35727f72010-01-28 23:55:12 +00009465 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009466 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009467 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009468 },
9469
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009470 {
9471 .vendor = "Winbond",
9472 .name = "W49V002FA",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009473 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009474 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00009475 .model_id = WINBOND_W49V002FA,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009476 .total_size = 256,
9477 .page_size = 128,
Sean Nelson35727f72010-01-28 23:55:12 +00009478 .feature_bits = FEATURE_EITHER_RESET,
Carl-Daniel Hailfingerf52f7842010-10-08 18:52:29 +00009479 .tested = TEST_OK_PR,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009480 .probe = probe_jedec,
Udu Ogahc04ee222009-09-05 01:31:32 +00009481 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00009482 .block_erasers =
9483 {
9484 {
9485 .eraseblocks = {
9486 {64 * 1024, 3},
9487 {32 * 1024, 1},
9488 {8 * 1024, 2},
9489 {16 * 1024, 1},
9490 },
9491 .block_erase = erase_sector_jedec,
9492 }, {
9493 .eraseblocks = { {256 * 1024, 1} },
9494 .block_erase = erase_chip_block_jedec,
9495 }
9496 },
Sean Nelson35727f72010-01-28 23:55:12 +00009497 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009498 .read = read_memmapped,
Steven Zakuleccbe370e2011-06-03 07:26:31 +00009499 .voltage = {3000, 3600},
FENG yu ningff692fb2008-12-08 18:15:10 +00009500 },
9501
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009502 {
9503 .vendor = "Winbond",
9504 .name = "W39V080FA",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009505 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009506 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00009507 .model_id = WINBOND_W39V080FA,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009508 .total_size = 1024,
Sean Nelson72a9a022009-12-22 22:15:33 +00009509 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009510 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stefan Tauner716e0982011-07-25 20:38:52 +00009511 .tested = TEST_OK_PREW,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00009512 .probe = probe_jedec,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009513 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00009514 .block_erasers =
9515 {
9516 {
9517 .eraseblocks = { {64 * 1024, 16}, },
9518 .block_erase = erase_sector_jedec,
9519 }, {
9520 .eraseblocks = { {1024 * 1024, 1} },
9521 .block_erase = erase_chip_block_jedec,
9522 }
9523 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009524 .printlock = printlock_w39v080fa,
9525 .unlock = unlock_w39v080fa,
Sean Nelson35727f72010-01-28 23:55:12 +00009526 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009527 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00009528 .voltage = {3000, 3600}, /* Also has 12V fast program */
FENG yu ningff692fb2008-12-08 18:15:10 +00009529 },
9530
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009531 {
9532 .vendor = "Winbond",
9533 .name = "W39V080FA (dual mode)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009534 .bustype = BUS_FWH,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009535 .manufacture_id = WINBOND_ID,
Mattias Mattssona745cf42010-09-14 23:56:56 +00009536 .model_id = WINBOND_W39V080FA_DM,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009537 .total_size = 512,
Sean Nelson72a9a022009-12-22 22:15:33 +00009538 .page_size = 64 * 1024,
Sean Nelson35727f72010-01-28 23:55:12 +00009539 .feature_bits = FEATURE_REGISTERMAP | FEATURE_EITHER_RESET,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009540 .tested = TEST_UNTESTED,
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +00009541 .probe = probe_jedec,
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009542 .probe_timing = 10,
Sean Nelsoncfc35cd2010-01-19 03:24:55 +00009543 .block_erasers =
9544 {
9545 {
9546 .eraseblocks = { {64 * 1024, 8}, },
9547 .block_erase = erase_sector_jedec,
9548 }, {
9549 .eraseblocks = { {512 * 1024, 1} },
9550 .block_erase = erase_chip_block_jedec,
9551 }
9552 },
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00009553 .printlock = printlock_w39v080fa_dual,
Sean Nelson35727f72010-01-28 23:55:12 +00009554 .write = write_jedec_1,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009555 .read = read_memmapped,
Steven Zakulec7d257b42011-07-19 08:50:18 +00009556 .voltage = {3000, 3600}, /* Also has 12V fast program */
FENG yu ningff692fb2008-12-08 18:15:10 +00009557 },
Stefan Taunerac1b4c82012-02-17 14:51:04 +00009558
9559 {
9560 .vendor = "Unknown",
9561 .name = "SFDP-capable chip",
9562 .bustype = BUS_SPI,
9563 .manufacture_id = GENERIC_MANUF_ID,
9564 .model_id = SFDP_DEVICE_ID,
9565 /* We present our own "report this" text hence we do not
9566 * want the default "This flash part has status UNTESTED..."
9567 * text to be printed. */
9568 .tested = TEST_OK_PREW,
9569 .probe = probe_spi_sfdp,
9570 .unlock = spi_disable_blockprotect, /* is this safe? */
9571 .read = spi_chip_read,
9572 /* FIXME: some vendor extensions define this */
Carl-Daniel Hailfinger1c6d2ff2012-08-27 00:44:42 +00009573 .voltage = {0},
Stefan Taunerac1b4c82012-02-17 14:51:04 +00009574 /* Everything below will be set by the probing function. */
9575 .write = NULL,
9576 .total_size = 0,
9577 .page_size = 0,
9578 .feature_bits = 0,
9579 .block_erasers = {},
9580 },
FENG yu ningff692fb2008-12-08 18:15:10 +00009581
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009582 {
Carl-Daniel Hailfinger532c7172011-11-04 21:35:26 +00009583 .vendor = "Programmer",
9584 .name = "Opaque flash chip",
9585 .bustype = BUS_PROG,
9586 .manufacture_id = PROGMANUF_ID,
9587 .model_id = PROGDEV_ID,
9588 .total_size = 0,
9589 .page_size = 256,
9590 /* probe is assumed to work, rest will be filled in by probe */
9591 .tested = TEST_OK_PROBE,
9592 .probe = probe_opaque,
9593 /* eraseblock sizes will be set by the probing function */
9594 .block_erasers =
9595 {
9596 {
9597 .block_erase = erase_opaque,
9598 }
9599 },
9600 .write = write_opaque,
9601 .read = read_opaque,
9602 },
9603
9604 {
Daniel Lenskidf90d3a2010-07-22 11:44:38 +00009605 .vendor = "AMIC",
9606 .name = "unknown AMIC SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009607 .bustype = BUS_SPI,
Daniel Lenskidf90d3a2010-07-22 11:44:38 +00009608 .manufacture_id = AMIC_ID,
9609 .model_id = GENERIC_DEVICE_ID,
9610 .total_size = 0,
9611 .page_size = 256,
9612 .tested = TEST_BAD_PREW,
9613 .probe = probe_spi_rdid4,
9614 .probe_timing = TIMING_ZERO,
9615 .write = NULL,
9616 .read = NULL,
9617 },
9618
9619 {
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009620 .vendor = "Atmel",
9621 .name = "unknown Atmel SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009622 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009623 .manufacture_id = ATMEL_ID,
9624 .model_id = GENERIC_DEVICE_ID,
9625 .total_size = 0,
9626 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +00009627 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009628 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009629 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009630 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009631 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +00009632 },
9633
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009634 {
Carl-Daniel Hailfingerf792c7d2010-07-28 22:20:20 +00009635 .vendor = "Eon",
9636 .name = "unknown Eon SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009637 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009638 .manufacture_id = EON_ID_NOPREFIX,
9639 .model_id = GENERIC_DEVICE_ID,
9640 .total_size = 0,
9641 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +00009642 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009643 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009644 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009645 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009646 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +00009647 },
9648
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009649 {
9650 .vendor = "Macronix",
9651 .name = "unknown Macronix SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009652 .bustype = BUS_SPI,
Mattias Mattsson6eabe282010-09-15 23:31:03 +00009653 .manufacture_id = MACRONIX_ID,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009654 .model_id = GENERIC_DEVICE_ID,
9655 .total_size = 0,
9656 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +00009657 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009658 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009659 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009660 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009661 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +00009662 },
9663
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009664 {
9665 .vendor = "PMC",
9666 .name = "unknown PMC SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009667 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009668 .manufacture_id = PMC_ID,
9669 .model_id = GENERIC_DEVICE_ID,
9670 .total_size = 0,
9671 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +00009672 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009673 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009674 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009675 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009676 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +00009677 },
9678
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009679 {
9680 .vendor = "SST",
9681 .name = "unknown SST SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009682 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009683 .manufacture_id = SST_ID,
9684 .model_id = GENERIC_DEVICE_ID,
9685 .total_size = 0,
9686 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +00009687 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009688 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009689 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009690 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009691 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +00009692 },
9693
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009694 {
9695 .vendor = "ST",
9696 .name = "unknown ST SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009697 .bustype = BUS_SPI,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009698 .manufacture_id = ST_ID,
9699 .model_id = GENERIC_DEVICE_ID,
9700 .total_size = 0,
9701 .page_size = 256,
Carl-Daniel Hailfinger42882fd2009-04-22 13:33:43 +00009702 .tested = TEST_BAD_PREW,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009703 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger2bc020b2009-06-05 13:46:17 +00009704 .probe_timing = TIMING_ZERO,
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009705 .write = NULL,
Carl-Daniel Hailfinger03b4e712009-05-08 12:49:03 +00009706 .read = NULL,
FENG yu ningff692fb2008-12-08 18:15:10 +00009707 },
Uwe Hermannfc425e82008-03-16 02:06:25 +00009708
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +00009709 {
Sean Nelson118e1d62009-11-24 02:08:11 +00009710 .vendor = "Sanyo",
9711 .name = "unknown Sanyo SPI chip",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009712 .bustype = BUS_SPI,
Sean Nelson118e1d62009-11-24 02:08:11 +00009713 .manufacture_id = SANYO_ID,
9714 .model_id = GENERIC_DEVICE_ID,
9715 .total_size = 0,
9716 .page_size = 256,
9717 .tested = TEST_BAD_PREW,
9718 .probe = probe_spi_rdid,
9719 .probe_timing = TIMING_ZERO,
Sean Nelson118e1d62009-11-24 02:08:11 +00009720 .write = NULL,
9721 .read = NULL,
9722 },
9723
9724 {
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +00009725 .vendor = "Generic",
9726 .name = "unknown SPI chip (RDID)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009727 .bustype = BUS_SPI,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +00009728 .manufacture_id = GENERIC_MANUF_ID,
9729 .model_id = GENERIC_DEVICE_ID,
9730 .total_size = 0,
9731 .page_size = 256,
9732 .tested = TEST_BAD_PREW,
9733 .probe = probe_spi_rdid,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +00009734 .write = NULL,
9735 },
Stefan Tauneraf2db612011-12-02 21:48:17 +00009736
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +00009737 {
9738 .vendor = "Generic",
9739 .name = "unknown SPI chip (REMS)",
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00009740 .bustype = BUS_SPI,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +00009741 .manufacture_id = GENERIC_MANUF_ID,
9742 .model_id = GENERIC_DEVICE_ID,
9743 .total_size = 0,
9744 .page_size = 256,
9745 .tested = TEST_BAD_PREW,
9746 .probe = probe_spi_rems,
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +00009747 .write = NULL,
9748 },
9749
Stephan Guilloux5c5b5252009-01-08 03:40:17 +00009750 { NULL }
Stephan Guilloux72cf5652009-04-21 01:46:07 +00009751};