blob: aaf7d88b5cb15b00174d55cff7fbdfff7e881284 [file] [log] [blame]
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +00001/*
2 * This file is part of the flashrom project.
3 *
Carl-Daniel Hailfinger3431bb72009-06-24 08:28:39 +00004 * Copyright (C) 2007, 2008, 2009 Carl-Daniel Hailfinger
Stefan Reinauera9424d52008-06-27 16:28:34 +00005 * Copyright (C) 2008 coresystems GmbH
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +00006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21/*
22 * Contains the generic SPI framework
23 */
24
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +000025#include <string.h>
26#include "flash.h"
Carl-Daniel Hailfinger08454642009-06-15 14:14:48 +000027#include "flashchips.h"
Carl-Daniel Hailfingerd6cbf762008-05-13 14:58:23 +000028#include "spi.h"
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +000029
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +000030enum spi_controller spi_controller = SPI_CONTROLLER_NONE;
31void *spibar = NULL;
32
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +000033void spi_prettyprint_status_register(struct flashchip *flash);
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +000034
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +000035const struct spi_programmer spi_programmer[] = {
36 { /* SPI_CONTROLLER_NONE */
37 .command = NULL,
38 .multicommand = NULL,
39 .read = NULL,
40 .write_256 = NULL,
41 },
42
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +000043#if INTERNAL_SUPPORT == 1
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +000044 { /* SPI_CONTROLLER_ICH7 */
45 .command = ich_spi_send_command,
46 .multicommand = ich_spi_send_multicommand,
47 .read = ich_spi_read,
48 .write_256 = ich_spi_write_256,
49 },
50
51 { /* SPI_CONTROLLER_ICH9 */
52 .command = ich_spi_send_command,
53 .multicommand = ich_spi_send_multicommand,
54 .read = ich_spi_read,
55 .write_256 = ich_spi_write_256,
56 },
57
58 { /* SPI_CONTROLLER_IT87XX */
59 .command = it8716f_spi_send_command,
60 .multicommand = default_spi_send_multicommand,
61 .read = it8716f_spi_chip_read,
62 .write_256 = it8716f_spi_chip_write_256,
63 },
64
65 { /* SPI_CONTROLLER_SB600 */
66 .command = sb600_spi_send_command,
67 .multicommand = default_spi_send_multicommand,
68 .read = sb600_spi_read,
69 .write_256 = sb600_spi_write_1,
70 },
71
72 { /* SPI_CONTROLLER_VIA */
73 .command = ich_spi_send_command,
74 .multicommand = ich_spi_send_multicommand,
75 .read = ich_spi_read,
76 .write_256 = ich_spi_write_256,
77 },
78
79 { /* SPI_CONTROLLER_WBSIO */
80 .command = wbsio_spi_send_command,
81 .multicommand = default_spi_send_multicommand,
82 .read = wbsio_spi_read,
83 .write_256 = wbsio_spi_write_1,
84 },
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +000085#endif
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +000086
Carl-Daniel Hailfinger3426ef62009-08-19 13:27:58 +000087#if FT2232_SPI_SUPPORT == 1
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +000088 { /* SPI_CONTROLLER_FT2232 */
89 .command = ft2232_spi_send_command,
90 .multicommand = default_spi_send_multicommand,
91 .read = ft2232_spi_read,
92 .write_256 = ft2232_spi_write_256,
93 },
Carl-Daniel Hailfinger3426ef62009-08-19 13:27:58 +000094#endif
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +000095
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +000096#if DUMMY_SUPPORT == 1
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +000097 { /* SPI_CONTROLLER_DUMMY */
98 .command = dummy_spi_send_command,
99 .multicommand = default_spi_send_multicommand,
100 .read = NULL,
101 .write_256 = NULL,
102 },
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000103#endif
Carl-Daniel Hailfinger3426ef62009-08-19 13:27:58 +0000104
Carl-Daniel Hailfinger5cca01f2009-11-24 00:20:03 +0000105#if BUSPIRATE_SPI_SUPPORT == 1
106 { /* SPI_CONTROLLER_BUSPIRATE */
107 .command = buspirate_spi_send_command,
108 .multicommand = default_spi_send_multicommand,
109 .read = buspirate_spi_read,
110 .write_256 = spi_chip_write_1,
111 },
112#endif
113
Carl-Daniel Hailfingerd38fac82010-01-19 11:15:48 +0000114#if DEDIPROG_SUPPORT == 1
115 { /* SPI_CONTROLLER_DEDIPROG */
116 .command = dediprog_spi_send_command,
117 .multicommand = default_spi_send_multicommand,
118 .read = dediprog_spi_read,
119 .write_256 = spi_chip_write_1,
120 },
121#endif
122
Carl-Daniel Hailfinger3426ef62009-08-19 13:27:58 +0000123 {}, /* This entry corresponds to SPI_CONTROLLER_INVALID. */
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +0000124};
125
Carl-Daniel Hailfinger3426ef62009-08-19 13:27:58 +0000126const int spi_programmer_count = ARRAY_SIZE(spi_programmer);
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +0000127
Carl-Daniel Hailfingerd0478292009-07-10 21:08:55 +0000128int spi_send_command(unsigned int writecnt, unsigned int readcnt,
Uwe Hermann394131e2008-10-18 21:14:13 +0000129 const unsigned char *writearr, unsigned char *readarr)
Carl-Daniel Hailfinger3d94a0e2007-10-16 21:09:06 +0000130{
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +0000131 if (!spi_programmer[spi_controller].command) {
132 fprintf(stderr, "%s called, but SPI is unsupported on this "
133 "hardware. Please report a bug.\n", __func__);
134 return 1;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000135 }
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +0000136
137 return spi_programmer[spi_controller].command(writecnt, readcnt,
138 writearr, readarr);
Carl-Daniel Hailfinger3d94a0e2007-10-16 21:09:06 +0000139}
140
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000141int spi_send_multicommand(struct spi_command *cmds)
Carl-Daniel Hailfingerd0478292009-07-10 21:08:55 +0000142{
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +0000143 if (!spi_programmer[spi_controller].multicommand) {
144 fprintf(stderr, "%s called, but SPI is unsupported on this "
145 "hardware. Please report a bug.\n", __func__);
146 return 1;
Carl-Daniel Hailfingerd0478292009-07-10 21:08:55 +0000147 }
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +0000148
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000149 return spi_programmer[spi_controller].multicommand(cmds);
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +0000150}
151
152int default_spi_send_command(unsigned int writecnt, unsigned int readcnt,
153 const unsigned char *writearr, unsigned char *readarr)
154{
155 struct spi_command cmd[] = {
156 {
157 .writecnt = writecnt,
158 .readcnt = readcnt,
159 .writearr = writearr,
160 .readarr = readarr,
161 }, {
162 .writecnt = 0,
163 .writearr = NULL,
164 .readcnt = 0,
165 .readarr = NULL,
166 }};
167
168 return spi_send_multicommand(cmd);
169}
170
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000171int default_spi_send_multicommand(struct spi_command *cmds)
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +0000172{
173 int result = 0;
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000174 for (; (cmds->writecnt || cmds->readcnt) && !result; cmds++) {
175 result = spi_send_command(cmds->writecnt, cmds->readcnt,
176 cmds->writearr, cmds->readarr);
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +0000177 }
178 return result;
Carl-Daniel Hailfingerd0478292009-07-10 21:08:55 +0000179}
180
Rudolf Marek48a85e42008-06-30 21:45:17 +0000181static int spi_rdid(unsigned char *readarr, int bytes)
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000182{
Uwe Hermann394131e2008-10-18 21:14:13 +0000183 const unsigned char cmd[JEDEC_RDID_OUTSIZE] = { JEDEC_RDID };
Carl-Daniel Hailfinger3e9dbea2009-05-13 11:40:08 +0000184 int ret;
Carl-Daniel Hailfingerbfe2e0c2009-05-14 12:59:36 +0000185 int i;
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000186
Carl-Daniel Hailfingerd0478292009-07-10 21:08:55 +0000187 ret = spi_send_command(sizeof(cmd), bytes, cmd, readarr);
Carl-Daniel Hailfinger3e9dbea2009-05-13 11:40:08 +0000188 if (ret)
189 return ret;
Carl-Daniel Hailfingerbfe2e0c2009-05-14 12:59:36 +0000190 printf_debug("RDID returned");
191 for (i = 0; i < bytes; i++)
192 printf_debug(" 0x%02x", readarr[i]);
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000193 printf_debug(". ");
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000194 return 0;
195}
196
Carl-Daniel Hailfinger14e50ac2008-11-28 01:25:00 +0000197static int spi_rems(unsigned char *readarr)
198{
Carl-Daniel Hailfinger3e9dbea2009-05-13 11:40:08 +0000199 unsigned char cmd[JEDEC_REMS_OUTSIZE] = { JEDEC_REMS, 0, 0, 0 };
200 uint32_t readaddr;
201 int ret;
Carl-Daniel Hailfinger14e50ac2008-11-28 01:25:00 +0000202
Carl-Daniel Hailfingerd0478292009-07-10 21:08:55 +0000203 ret = spi_send_command(sizeof(cmd), JEDEC_REMS_INSIZE, cmd, readarr);
Carl-Daniel Hailfinger3e9dbea2009-05-13 11:40:08 +0000204 if (ret == SPI_INVALID_ADDRESS) {
205 /* Find the lowest even address allowed for reads. */
206 readaddr = (spi_get_valid_read_addr() + 1) & ~1;
207 cmd[1] = (readaddr >> 16) & 0xff,
208 cmd[2] = (readaddr >> 8) & 0xff,
209 cmd[3] = (readaddr >> 0) & 0xff,
Carl-Daniel Hailfingerd0478292009-07-10 21:08:55 +0000210 ret = spi_send_command(sizeof(cmd), JEDEC_REMS_INSIZE, cmd, readarr);
Carl-Daniel Hailfinger3e9dbea2009-05-13 11:40:08 +0000211 }
212 if (ret)
213 return ret;
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000214 printf_debug("REMS returned %02x %02x. ", readarr[0], readarr[1]);
Carl-Daniel Hailfinger14e50ac2008-11-28 01:25:00 +0000215 return 0;
216}
217
Carl-Daniel Hailfinger42c54972008-05-15 03:19:49 +0000218static int spi_res(unsigned char *readarr)
219{
Carl-Daniel Hailfinger3e9dbea2009-05-13 11:40:08 +0000220 unsigned char cmd[JEDEC_RES_OUTSIZE] = { JEDEC_RES, 0, 0, 0 };
221 uint32_t readaddr;
222 int ret;
Carl-Daniel Hailfinger42c54972008-05-15 03:19:49 +0000223
Carl-Daniel Hailfingerd0478292009-07-10 21:08:55 +0000224 ret = spi_send_command(sizeof(cmd), JEDEC_RES_INSIZE, cmd, readarr);
Carl-Daniel Hailfinger3e9dbea2009-05-13 11:40:08 +0000225 if (ret == SPI_INVALID_ADDRESS) {
226 /* Find the lowest even address allowed for reads. */
227 readaddr = (spi_get_valid_read_addr() + 1) & ~1;
228 cmd[1] = (readaddr >> 16) & 0xff,
229 cmd[2] = (readaddr >> 8) & 0xff,
230 cmd[3] = (readaddr >> 0) & 0xff,
Carl-Daniel Hailfingerd0478292009-07-10 21:08:55 +0000231 ret = spi_send_command(sizeof(cmd), JEDEC_RES_INSIZE, cmd, readarr);
Carl-Daniel Hailfinger3e9dbea2009-05-13 11:40:08 +0000232 }
233 if (ret)
234 return ret;
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000235 printf_debug("RES returned %02x. ", readarr[0]);
Carl-Daniel Hailfinger42c54972008-05-15 03:19:49 +0000236 return 0;
237}
238
Uwe Hermann7b2969b2009-04-15 10:52:49 +0000239int spi_write_enable(void)
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000240{
Uwe Hermann394131e2008-10-18 21:14:13 +0000241 const unsigned char cmd[JEDEC_WREN_OUTSIZE] = { JEDEC_WREN };
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +0000242 int result;
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000243
244 /* Send WREN (Write Enable) */
Carl-Daniel Hailfingerd0478292009-07-10 21:08:55 +0000245 result = spi_send_command(sizeof(cmd), 0, cmd, NULL);
Carl-Daniel Hailfinger1e637842009-05-15 00:56:22 +0000246
247 if (result)
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000248 fprintf(stderr, "%s failed\n", __func__);
Carl-Daniel Hailfinger1e637842009-05-15 00:56:22 +0000249
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +0000250 return result;
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000251}
252
Uwe Hermann7b2969b2009-04-15 10:52:49 +0000253int spi_write_disable(void)
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000254{
Uwe Hermann394131e2008-10-18 21:14:13 +0000255 const unsigned char cmd[JEDEC_WRDI_OUTSIZE] = { JEDEC_WRDI };
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000256
257 /* Send WRDI (Write Disable) */
Carl-Daniel Hailfingerd0478292009-07-10 21:08:55 +0000258 return spi_send_command(sizeof(cmd), 0, cmd, NULL);
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000259}
260
Rudolf Marek48a85e42008-06-30 21:45:17 +0000261static int probe_spi_rdid_generic(struct flashchip *flash, int bytes)
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000262{
Rudolf Marek48a85e42008-06-30 21:45:17 +0000263 unsigned char readarr[4];
Carl-Daniel Hailfinger2ad267d2009-05-27 11:40:08 +0000264 uint32_t id1;
265 uint32_t id2;
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000266
Rudolf Marek48a85e42008-06-30 21:45:17 +0000267 if (spi_rdid(readarr, bytes))
Peter Stugeda4e5f32008-06-24 01:22:03 +0000268 return 0;
269
270 if (!oddparity(readarr[0]))
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000271 printf_debug("RDID byte 0 parity violation. ");
Peter Stugeda4e5f32008-06-24 01:22:03 +0000272
273 /* Check if this is a continuation vendor ID */
274 if (readarr[0] == 0x7f) {
275 if (!oddparity(readarr[1]))
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000276 printf_debug("RDID byte 1 parity violation. ");
Carl-Daniel Hailfinger2ad267d2009-05-27 11:40:08 +0000277 id1 = (readarr[0] << 8) | readarr[1];
278 id2 = readarr[2];
Rudolf Marek48a85e42008-06-30 21:45:17 +0000279 if (bytes > 3) {
Carl-Daniel Hailfinger2ad267d2009-05-27 11:40:08 +0000280 id2 <<= 8;
281 id2 |= readarr[3];
Rudolf Marek48a85e42008-06-30 21:45:17 +0000282 }
Peter Stugeda4e5f32008-06-24 01:22:03 +0000283 } else {
Carl-Daniel Hailfinger2ad267d2009-05-27 11:40:08 +0000284 id1 = readarr[0];
285 id2 = (readarr[1] << 8) | readarr[2];
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000286 }
287
Uwe Hermann04aa59a2009-09-02 22:09:00 +0000288 printf_debug("%s: id1 0x%02x, id2 0x%02x\n", __func__, id1, id2);
Peter Stugeda4e5f32008-06-24 01:22:03 +0000289
Carl-Daniel Hailfinger2ad267d2009-05-27 11:40:08 +0000290 if (id1 == flash->manufacture_id && id2 == flash->model_id) {
Peter Stugeda4e5f32008-06-24 01:22:03 +0000291 /* Print the status register to tell the
292 * user about possible write protection.
293 */
294 spi_prettyprint_status_register(flash);
295
296 return 1;
297 }
298
299 /* Test if this is a pure vendor match. */
Carl-Daniel Hailfinger2ad267d2009-05-27 11:40:08 +0000300 if (id1 == flash->manufacture_id &&
Peter Stugeda4e5f32008-06-24 01:22:03 +0000301 GENERIC_DEVICE_ID == flash->model_id)
302 return 1;
303
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +0000304 /* Test if there is any vendor ID. */
305 if (GENERIC_MANUF_ID == flash->manufacture_id &&
306 id1 != 0xff)
307 return 1;
308
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000309 return 0;
310}
311
Uwe Hermann394131e2008-10-18 21:14:13 +0000312int probe_spi_rdid(struct flashchip *flash)
313{
Rudolf Marek48a85e42008-06-30 21:45:17 +0000314 return probe_spi_rdid_generic(flash, 3);
315}
316
317/* support 4 bytes flash ID */
Uwe Hermann394131e2008-10-18 21:14:13 +0000318int probe_spi_rdid4(struct flashchip *flash)
319{
Rudolf Marek48a85e42008-06-30 21:45:17 +0000320 /* only some SPI chipsets support 4 bytes commands */
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000321 switch (spi_controller) {
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000322#if INTERNAL_SUPPORT == 1
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000323 case SPI_CONTROLLER_ICH7:
324 case SPI_CONTROLLER_ICH9:
325 case SPI_CONTROLLER_VIA:
326 case SPI_CONTROLLER_SB600:
327 case SPI_CONTROLLER_WBSIO:
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +0000328#endif
Carl-Daniel Hailfinger3426ef62009-08-19 13:27:58 +0000329#if FT2232_SPI_SUPPORT == 1
Paul Fox05dfbe62009-06-16 21:08:06 +0000330 case SPI_CONTROLLER_FT2232:
Carl-Daniel Hailfinger3426ef62009-08-19 13:27:58 +0000331#endif
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000332#if DUMMY_SUPPORT == 1
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000333 case SPI_CONTROLLER_DUMMY:
Carl-Daniel Hailfinger4740c6f2009-09-16 10:09:21 +0000334#endif
Carl-Daniel Hailfingerd5b28fa2009-11-24 18:27:10 +0000335#if BUSPIRATE_SPI_SUPPORT == 1
336 case SPI_CONTROLLER_BUSPIRATE:
337#endif
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000338 return probe_spi_rdid_generic(flash, 4);
339 default:
340 printf_debug("4b ID not supported on this SPI controller\n");
341 }
342
343 return 0;
Rudolf Marek48a85e42008-06-30 21:45:17 +0000344}
345
Carl-Daniel Hailfinger14e50ac2008-11-28 01:25:00 +0000346int probe_spi_rems(struct flashchip *flash)
347{
348 unsigned char readarr[JEDEC_REMS_INSIZE];
Carl-Daniel Hailfinger2ad267d2009-05-27 11:40:08 +0000349 uint32_t id1, id2;
Carl-Daniel Hailfinger14e50ac2008-11-28 01:25:00 +0000350
351 if (spi_rems(readarr))
352 return 0;
353
Carl-Daniel Hailfinger2ad267d2009-05-27 11:40:08 +0000354 id1 = readarr[0];
355 id2 = readarr[1];
Carl-Daniel Hailfinger14e50ac2008-11-28 01:25:00 +0000356
Uwe Hermann04aa59a2009-09-02 22:09:00 +0000357 printf_debug("%s: id1 0x%x, id2 0x%x\n", __func__, id1, id2);
Carl-Daniel Hailfinger14e50ac2008-11-28 01:25:00 +0000358
Carl-Daniel Hailfinger2ad267d2009-05-27 11:40:08 +0000359 if (id1 == flash->manufacture_id && id2 == flash->model_id) {
Carl-Daniel Hailfinger14e50ac2008-11-28 01:25:00 +0000360 /* Print the status register to tell the
361 * user about possible write protection.
362 */
363 spi_prettyprint_status_register(flash);
364
365 return 1;
366 }
367
368 /* Test if this is a pure vendor match. */
Carl-Daniel Hailfinger2ad267d2009-05-27 11:40:08 +0000369 if (id1 == flash->manufacture_id &&
Carl-Daniel Hailfinger14e50ac2008-11-28 01:25:00 +0000370 GENERIC_DEVICE_ID == flash->model_id)
371 return 1;
372
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +0000373 /* Test if there is any vendor ID. */
374 if (GENERIC_MANUF_ID == flash->manufacture_id &&
375 id1 != 0xff)
376 return 1;
377
Carl-Daniel Hailfinger14e50ac2008-11-28 01:25:00 +0000378 return 0;
379}
380
Carl-Daniel Hailfinger42c54972008-05-15 03:19:49 +0000381int probe_spi_res(struct flashchip *flash)
382{
383 unsigned char readarr[3];
Carl-Daniel Hailfinger2ad267d2009-05-27 11:40:08 +0000384 uint32_t id2;
Peter Stugeda4e5f32008-06-24 01:22:03 +0000385
Carl-Daniel Hailfinger92a54ca2008-11-27 22:48:48 +0000386 /* Check if RDID was successful and did not return 0xff 0xff 0xff.
387 * In that case, RES is pointless.
388 */
389 if (!spi_rdid(readarr, 3) && ((readarr[0] != 0xff) ||
390 (readarr[1] != 0xff) || (readarr[2] != 0xff)))
Peter Stugeda4e5f32008-06-24 01:22:03 +0000391 return 0;
Carl-Daniel Hailfinger42c54972008-05-15 03:19:49 +0000392
Peter Stugeda4e5f32008-06-24 01:22:03 +0000393 if (spi_res(readarr))
394 return 0;
395
Carl-Daniel Hailfinger2ad267d2009-05-27 11:40:08 +0000396 id2 = readarr[0];
Uwe Hermann04aa59a2009-09-02 22:09:00 +0000397 printf_debug("%s: id 0x%x\n", __func__, id2);
Carl-Daniel Hailfinger2ad267d2009-05-27 11:40:08 +0000398 if (id2 != flash->model_id)
Peter Stugeda4e5f32008-06-24 01:22:03 +0000399 return 0;
400
401 /* Print the status register to tell the
402 * user about possible write protection.
403 */
404 spi_prettyprint_status_register(flash);
405 return 1;
Carl-Daniel Hailfinger42c54972008-05-15 03:19:49 +0000406}
407
Uwe Hermann7b2969b2009-04-15 10:52:49 +0000408uint8_t spi_read_status_register(void)
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000409{
Uwe Hermann394131e2008-10-18 21:14:13 +0000410 const unsigned char cmd[JEDEC_RDSR_OUTSIZE] = { JEDEC_RDSR };
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +0000411 /* FIXME: No workarounds for driver/hardware bugs in generic code. */
Peter Stugebf196e92009-01-26 03:08:45 +0000412 unsigned char readarr[2]; /* JEDEC_RDSR_INSIZE=1 but wbsio needs 2 */
Carl-Daniel Hailfinger3e9dbea2009-05-13 11:40:08 +0000413 int ret;
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000414
415 /* Read Status Register */
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +0000416 ret = spi_send_command(sizeof(cmd), sizeof(readarr), cmd, readarr);
417 if (ret)
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000418 fprintf(stderr, "RDSR failed!\n");
Jason Wanga3f04be2008-11-28 21:36:51 +0000419
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000420 return readarr[0];
421}
422
Uwe Hermann7b2969b2009-04-15 10:52:49 +0000423/* Prettyprint the status register. Common definitions. */
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000424void spi_prettyprint_status_register_common(uint8_t status)
425{
426 printf_debug("Chip status register: Bit 5 / Block Protect 3 (BP3) is "
Uwe Hermann394131e2008-10-18 21:14:13 +0000427 "%sset\n", (status & (1 << 5)) ? "" : "not ");
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000428 printf_debug("Chip status register: Bit 4 / Block Protect 2 (BP2) is "
Uwe Hermann394131e2008-10-18 21:14:13 +0000429 "%sset\n", (status & (1 << 4)) ? "" : "not ");
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000430 printf_debug("Chip status register: Bit 3 / Block Protect 1 (BP1) is "
Uwe Hermann394131e2008-10-18 21:14:13 +0000431 "%sset\n", (status & (1 << 3)) ? "" : "not ");
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000432 printf_debug("Chip status register: Bit 2 / Block Protect 0 (BP0) is "
Uwe Hermann394131e2008-10-18 21:14:13 +0000433 "%sset\n", (status & (1 << 2)) ? "" : "not ");
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000434 printf_debug("Chip status register: Write Enable Latch (WEL) is "
Uwe Hermann394131e2008-10-18 21:14:13 +0000435 "%sset\n", (status & (1 << 1)) ? "" : "not ");
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000436 printf_debug("Chip status register: Write In Progress (WIP/BUSY) is "
Uwe Hermann394131e2008-10-18 21:14:13 +0000437 "%sset\n", (status & (1 << 0)) ? "" : "not ");
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000438}
439
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000440/* Prettyprint the status register. Works for
441 * ST M25P series
442 * MX MX25L series
443 */
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000444void spi_prettyprint_status_register_st_m25p(uint8_t status)
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000445{
446 printf_debug("Chip status register: Status Register Write Disable "
Uwe Hermann394131e2008-10-18 21:14:13 +0000447 "(SRWD) is %sset\n", (status & (1 << 7)) ? "" : "not ");
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000448 printf_debug("Chip status register: Bit 6 is "
Uwe Hermann394131e2008-10-18 21:14:13 +0000449 "%sset\n", (status & (1 << 6)) ? "" : "not ");
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000450 spi_prettyprint_status_register_common(status);
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000451}
452
Carl-Daniel Hailfinger1bfd6c92009-05-06 13:59:44 +0000453void spi_prettyprint_status_register_sst25(uint8_t status)
454{
455 printf_debug("Chip status register: Block Protect Write Disable "
456 "(BPL) is %sset\n", (status & (1 << 7)) ? "" : "not ");
457 printf_debug("Chip status register: Auto Address Increment Programming "
458 "(AAI) is %sset\n", (status & (1 << 6)) ? "" : "not ");
459 spi_prettyprint_status_register_common(status);
460}
461
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000462/* Prettyprint the status register. Works for
463 * SST 25VF016
464 */
465void spi_prettyprint_status_register_sst25vf016(uint8_t status)
466{
Carl-Daniel Hailfingerd3568ad2008-01-22 14:37:31 +0000467 const char *bpt[] = {
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000468 "none",
469 "1F0000H-1FFFFFH",
470 "1E0000H-1FFFFFH",
471 "1C0000H-1FFFFFH",
472 "180000H-1FFFFFH",
473 "100000H-1FFFFFH",
Carl-Daniel Hailfingerd3568ad2008-01-22 14:37:31 +0000474 "all", "all"
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000475 };
Carl-Daniel Hailfinger1bfd6c92009-05-06 13:59:44 +0000476 spi_prettyprint_status_register_sst25(status);
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000477 printf_debug("Resulting block protection : %s\n",
Uwe Hermann394131e2008-10-18 21:14:13 +0000478 bpt[(status & 0x1c) >> 2]);
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000479}
480
Peter Stuge5fecee42009-01-26 03:23:50 +0000481void spi_prettyprint_status_register_sst25vf040b(uint8_t status)
482{
483 const char *bpt[] = {
484 "none",
485 "0x70000-0x7ffff",
486 "0x60000-0x7ffff",
487 "0x40000-0x7ffff",
488 "all blocks", "all blocks", "all blocks", "all blocks"
489 };
Carl-Daniel Hailfinger1bfd6c92009-05-06 13:59:44 +0000490 spi_prettyprint_status_register_sst25(status);
Peter Stuge5fecee42009-01-26 03:23:50 +0000491 printf_debug("Resulting block protection : %s\n",
Carl-Daniel Hailfinger1bfd6c92009-05-06 13:59:44 +0000492 bpt[(status & 0x1c) >> 2]);
Peter Stuge5fecee42009-01-26 03:23:50 +0000493}
494
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000495void spi_prettyprint_status_register(struct flashchip *flash)
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000496{
497 uint8_t status;
498
Peter Stugefa8c5502008-05-10 23:07:52 +0000499 status = spi_read_status_register();
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000500 printf_debug("Chip status register is %02x\n", status);
501 switch (flash->manufacture_id) {
502 case ST_ID:
Carl-Daniel Hailfingerf43e6422008-05-15 22:32:08 +0000503 if (((flash->model_id & 0xff00) == 0x2000) ||
504 ((flash->model_id & 0xff00) == 0x2500))
505 spi_prettyprint_status_register_st_m25p(status);
506 break;
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000507 case MX_ID:
508 if ((flash->model_id & 0xff00) == 0x2000)
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000509 spi_prettyprint_status_register_st_m25p(status);
510 break;
511 case SST_ID:
Peter Stuge5fecee42009-01-26 03:23:50 +0000512 switch (flash->model_id) {
513 case 0x2541:
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000514 spi_prettyprint_status_register_sst25vf016(status);
Peter Stuge5fecee42009-01-26 03:23:50 +0000515 break;
516 case 0x8d:
517 case 0x258d:
518 spi_prettyprint_status_register_sst25vf040b(status);
519 break;
Carl-Daniel Hailfinger5100a8a2009-05-13 22:51:27 +0000520 default:
Carl-Daniel Hailfinger1bfd6c92009-05-06 13:59:44 +0000521 spi_prettyprint_status_register_sst25(status);
522 break;
Peter Stuge5fecee42009-01-26 03:23:50 +0000523 }
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000524 break;
525 }
526}
Uwe Hermann394131e2008-10-18 21:14:13 +0000527
Carl-Daniel Hailfinger6afb6132008-11-03 00:02:11 +0000528int spi_chip_erase_60(struct flashchip *flash)
529{
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000530 int result;
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000531 struct spi_command cmds[] = {
Carl-Daniel Hailfinger60d71182009-07-11 19:28:36 +0000532 {
533 .writecnt = JEDEC_WREN_OUTSIZE,
534 .writearr = (const unsigned char[]){ JEDEC_WREN },
535 .readcnt = 0,
536 .readarr = NULL,
537 }, {
538 .writecnt = JEDEC_CE_60_OUTSIZE,
539 .writearr = (const unsigned char[]){ JEDEC_CE_60 },
540 .readcnt = 0,
541 .readarr = NULL,
542 }, {
543 .writecnt = 0,
544 .writearr = NULL,
545 .readcnt = 0,
546 .readarr = NULL,
547 }};
Carl-Daniel Hailfinger6afb6132008-11-03 00:02:11 +0000548
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000549 result = spi_disable_blockprotect();
550 if (result) {
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000551 fprintf(stderr, "spi_disable_blockprotect failed\n");
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000552 return result;
553 }
Carl-Daniel Hailfinger60d71182009-07-11 19:28:36 +0000554
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000555 result = spi_send_multicommand(cmds);
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000556 if (result) {
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000557 fprintf(stderr, "%s failed during command execution\n",
558 __func__);
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000559 return result;
560 }
Carl-Daniel Hailfinger6afb6132008-11-03 00:02:11 +0000561 /* Wait until the Write-In-Progress bit is cleared.
562 * This usually takes 1-85 s, so wait in 1 s steps.
563 */
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000564 /* FIXME: We assume spi_read_status_register will never fail. */
Carl-Daniel Hailfinger6afb6132008-11-03 00:02:11 +0000565 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000566 programmer_delay(1000 * 1000);
Carl-Daniel Hailfinger3431bb72009-06-24 08:28:39 +0000567 if (check_erased_range(flash, 0, flash->total_size * 1024)) {
568 fprintf(stderr, "ERASE FAILED!\n");
569 return -1;
570 }
Carl-Daniel Hailfinger6afb6132008-11-03 00:02:11 +0000571 return 0;
572}
573
Peter Stugefa8c5502008-05-10 23:07:52 +0000574int spi_chip_erase_c7(struct flashchip *flash)
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000575{
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000576 int result;
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000577 struct spi_command cmds[] = {
Carl-Daniel Hailfinger60d71182009-07-11 19:28:36 +0000578 {
579 .writecnt = JEDEC_WREN_OUTSIZE,
580 .writearr = (const unsigned char[]){ JEDEC_WREN },
581 .readcnt = 0,
582 .readarr = NULL,
583 }, {
584 .writecnt = JEDEC_CE_C7_OUTSIZE,
585 .writearr = (const unsigned char[]){ JEDEC_CE_C7 },
586 .readcnt = 0,
587 .readarr = NULL,
588 }, {
589 .writecnt = 0,
590 .writearr = NULL,
591 .readcnt = 0,
592 .readarr = NULL,
593 }};
Uwe Hermann394131e2008-10-18 21:14:13 +0000594
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000595 result = spi_disable_blockprotect();
596 if (result) {
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000597 fprintf(stderr, "spi_disable_blockprotect failed\n");
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000598 return result;
599 }
Carl-Daniel Hailfinger60d71182009-07-11 19:28:36 +0000600
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000601 result = spi_send_multicommand(cmds);
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000602 if (result) {
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000603 fprintf(stderr, "%s failed during command execution\n", __func__);
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000604 return result;
605 }
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000606 /* Wait until the Write-In-Progress bit is cleared.
607 * This usually takes 1-85 s, so wait in 1 s steps.
608 */
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000609 /* FIXME: We assume spi_read_status_register will never fail. */
Peter Stugefa8c5502008-05-10 23:07:52 +0000610 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000611 programmer_delay(1000 * 1000);
Carl-Daniel Hailfinger3431bb72009-06-24 08:28:39 +0000612 if (check_erased_range(flash, 0, flash->total_size * 1024)) {
613 fprintf(stderr, "ERASE FAILED!\n");
614 return -1;
615 }
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000616 return 0;
617}
618
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000619int spi_chip_erase_60_c7(struct flashchip *flash)
620{
621 int result;
622 result = spi_chip_erase_60(flash);
623 if (result) {
624 printf_debug("spi_chip_erase_60 failed, trying c7\n");
625 result = spi_chip_erase_c7(flash);
626 }
627 return result;
628}
629
Carl-Daniel Hailfinger3431bb72009-06-24 08:28:39 +0000630int spi_block_erase_52(struct flashchip *flash, unsigned int addr, unsigned int blocklen)
Carl-Daniel Hailfinger6afb6132008-11-03 00:02:11 +0000631{
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +0000632 int result;
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000633 struct spi_command cmds[] = {
Carl-Daniel Hailfinger39fa9b52009-07-11 22:26:52 +0000634 {
635 .writecnt = JEDEC_WREN_OUTSIZE,
636 .writearr = (const unsigned char[]){ JEDEC_WREN },
637 .readcnt = 0,
638 .readarr = NULL,
639 }, {
640 .writecnt = JEDEC_BE_52_OUTSIZE,
641 .writearr = (const unsigned char[]){ JEDEC_BE_52, (addr >> 16) & 0xff, (addr >> 8) & 0xff, (addr & 0xff) },
642 .readcnt = 0,
643 .readarr = NULL,
644 }, {
645 .writecnt = 0,
646 .writearr = NULL,
647 .readcnt = 0,
648 .readarr = NULL,
649 }};
Carl-Daniel Hailfinger6afb6132008-11-03 00:02:11 +0000650
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000651 result = spi_send_multicommand(cmds);
Carl-Daniel Hailfinger39fa9b52009-07-11 22:26:52 +0000652 if (result) {
Carl-Daniel Hailfinger3efc51c2009-11-16 15:03:35 +0000653 fprintf(stderr, "%s failed during command execution at address 0x%x\n",
654 __func__, addr);
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +0000655 return result;
Carl-Daniel Hailfinger39fa9b52009-07-11 22:26:52 +0000656 }
Carl-Daniel Hailfinger6afb6132008-11-03 00:02:11 +0000657 /* Wait until the Write-In-Progress bit is cleared.
658 * This usually takes 100-4000 ms, so wait in 100 ms steps.
659 */
660 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000661 programmer_delay(100 * 1000);
Carl-Daniel Hailfinger3431bb72009-06-24 08:28:39 +0000662 if (check_erased_range(flash, addr, blocklen)) {
663 fprintf(stderr, "ERASE FAILED!\n");
664 return -1;
665 }
Carl-Daniel Hailfinger6afb6132008-11-03 00:02:11 +0000666 return 0;
667}
668
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000669/* Block size is usually
670 * 64k for Macronix
671 * 32k for SST
672 * 4-32k non-uniform for EON
673 */
Carl-Daniel Hailfinger3431bb72009-06-24 08:28:39 +0000674int spi_block_erase_d8(struct flashchip *flash, unsigned int addr, unsigned int blocklen)
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000675{
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +0000676 int result;
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000677 struct spi_command cmds[] = {
Carl-Daniel Hailfinger39fa9b52009-07-11 22:26:52 +0000678 {
679 .writecnt = JEDEC_WREN_OUTSIZE,
680 .writearr = (const unsigned char[]){ JEDEC_WREN },
681 .readcnt = 0,
682 .readarr = NULL,
683 }, {
684 .writecnt = JEDEC_BE_D8_OUTSIZE,
685 .writearr = (const unsigned char[]){ JEDEC_BE_D8, (addr >> 16) & 0xff, (addr >> 8) & 0xff, (addr & 0xff) },
686 .readcnt = 0,
687 .readarr = NULL,
688 }, {
689 .writecnt = 0,
690 .writearr = NULL,
691 .readcnt = 0,
692 .readarr = NULL,
693 }};
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000694
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000695 result = spi_send_multicommand(cmds);
Carl-Daniel Hailfinger39fa9b52009-07-11 22:26:52 +0000696 if (result) {
Carl-Daniel Hailfinger3efc51c2009-11-16 15:03:35 +0000697 fprintf(stderr, "%s failed during command execution at address 0x%x\n",
698 __func__, addr);
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +0000699 return result;
Carl-Daniel Hailfinger39fa9b52009-07-11 22:26:52 +0000700 }
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000701 /* Wait until the Write-In-Progress bit is cleared.
702 * This usually takes 100-4000 ms, so wait in 100 ms steps.
703 */
Peter Stugefa8c5502008-05-10 23:07:52 +0000704 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000705 programmer_delay(100 * 1000);
Carl-Daniel Hailfinger3431bb72009-06-24 08:28:39 +0000706 if (check_erased_range(flash, addr, blocklen)) {
707 fprintf(stderr, "ERASE FAILED!\n");
708 return -1;
709 }
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000710 return 0;
711}
712
Sean Nelson5643c072010-01-19 03:23:07 +0000713/* Block size is usually
714 * 4k for PMC
715 */
716int spi_block_erase_d7(struct flashchip *flash, unsigned int addr, unsigned int blocklen)
717{
718 int result;
719 struct spi_command cmds[] = {
720 {
721 .writecnt = JEDEC_WREN_OUTSIZE,
722 .writearr = (const unsigned char[]){ JEDEC_WREN },
723 .readcnt = 0,
724 .readarr = NULL,
725 }, {
726 .writecnt = JEDEC_BE_D7_OUTSIZE,
727 .writearr = (const unsigned char[]){ JEDEC_BE_D7, (addr >> 16) & 0xff, (addr >> 8) & 0xff, (addr & 0xff) },
728 .readcnt = 0,
729 .readarr = NULL,
730 }, {
731 .writecnt = 0,
732 .writearr = NULL,
733 .readcnt = 0,
734 .readarr = NULL,
735 }};
736
737 result = spi_send_multicommand(cmds);
738 if (result) {
739 fprintf(stderr, "%s failed during command execution at address 0x%x\n",
740 __func__, addr);
741 return result;
742 }
743 /* Wait until the Write-In-Progress bit is cleared.
744 * This usually takes 100-4000 ms, so wait in 100 ms steps.
745 */
746 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
747 programmer_delay(100 * 1000);
748 if (check_erased_range(flash, addr, blocklen)) {
749 fprintf(stderr, "ERASE FAILED!\n");
750 return -1;
751 }
752 return 0;
753}
754
Stefan Reinauer424ed222008-10-29 22:13:20 +0000755int spi_chip_erase_d8(struct flashchip *flash)
756{
757 int i, rc = 0;
758 int total_size = flash->total_size * 1024;
759 int erase_size = 64 * 1024;
760
761 spi_disable_blockprotect();
762
763 printf("Erasing chip: \n");
764
765 for (i = 0; i < total_size / erase_size; i++) {
Carl-Daniel Hailfinger3431bb72009-06-24 08:28:39 +0000766 rc = spi_block_erase_d8(flash, i * erase_size, erase_size);
Stefan Reinauer424ed222008-10-29 22:13:20 +0000767 if (rc) {
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000768 fprintf(stderr, "Error erasing block at 0x%x\n", i);
Stefan Reinauer424ed222008-10-29 22:13:20 +0000769 break;
770 }
771 }
772
773 printf("\n");
774
775 return rc;
776}
777
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000778/* Sector size is usually 4k, though Macronix eliteflash has 64k */
Carl-Daniel Hailfinger3431bb72009-06-24 08:28:39 +0000779int spi_block_erase_20(struct flashchip *flash, unsigned int addr, unsigned int blocklen)
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000780{
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +0000781 int result;
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000782 struct spi_command cmds[] = {
Carl-Daniel Hailfinger39fa9b52009-07-11 22:26:52 +0000783 {
784 .writecnt = JEDEC_WREN_OUTSIZE,
785 .writearr = (const unsigned char[]){ JEDEC_WREN },
786 .readcnt = 0,
787 .readarr = NULL,
788 }, {
789 .writecnt = JEDEC_SE_OUTSIZE,
790 .writearr = (const unsigned char[]){ JEDEC_SE, (addr >> 16) & 0xff, (addr >> 8) & 0xff, (addr & 0xff) },
791 .readcnt = 0,
792 .readarr = NULL,
793 }, {
794 .writecnt = 0,
795 .writearr = NULL,
796 .readcnt = 0,
797 .readarr = NULL,
798 }};
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000799
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000800 result = spi_send_multicommand(cmds);
Carl-Daniel Hailfinger39fa9b52009-07-11 22:26:52 +0000801 if (result) {
Carl-Daniel Hailfinger3efc51c2009-11-16 15:03:35 +0000802 fprintf(stderr, "%s failed during command execution at address 0x%x\n",
803 __func__, addr);
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +0000804 return result;
Carl-Daniel Hailfinger39fa9b52009-07-11 22:26:52 +0000805 }
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000806 /* Wait until the Write-In-Progress bit is cleared.
807 * This usually takes 15-800 ms, so wait in 10 ms steps.
808 */
Peter Stugefa8c5502008-05-10 23:07:52 +0000809 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000810 programmer_delay(10 * 1000);
Carl-Daniel Hailfinger3431bb72009-06-24 08:28:39 +0000811 if (check_erased_range(flash, addr, blocklen)) {
812 fprintf(stderr, "ERASE FAILED!\n");
813 return -1;
814 }
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000815 return 0;
816}
817
Carl-Daniel Hailfinger3431bb72009-06-24 08:28:39 +0000818int spi_block_erase_60(struct flashchip *flash, unsigned int addr, unsigned int blocklen)
819{
820 if ((addr != 0) || (blocklen != flash->total_size * 1024)) {
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000821 fprintf(stderr, "%s called with incorrect arguments\n",
822 __func__);
Carl-Daniel Hailfinger3431bb72009-06-24 08:28:39 +0000823 return -1;
824 }
825 return spi_chip_erase_60(flash);
826}
827
828int spi_block_erase_c7(struct flashchip *flash, unsigned int addr, unsigned int blocklen)
829{
830 if ((addr != 0) || (blocklen != flash->total_size * 1024)) {
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000831 fprintf(stderr, "%s called with incorrect arguments\n",
832 __func__);
Carl-Daniel Hailfinger3431bb72009-06-24 08:28:39 +0000833 return -1;
834 }
835 return spi_chip_erase_c7(flash);
836}
837
Uwe Hermann7b2969b2009-04-15 10:52:49 +0000838int spi_write_status_enable(void)
Jason Wanga3f04be2008-11-28 21:36:51 +0000839{
840 const unsigned char cmd[JEDEC_EWSR_OUTSIZE] = { JEDEC_EWSR };
Carl-Daniel Hailfinger1e637842009-05-15 00:56:22 +0000841 int result;
Jason Wanga3f04be2008-11-28 21:36:51 +0000842
843 /* Send EWSR (Enable Write Status Register). */
Carl-Daniel Hailfingerd0478292009-07-10 21:08:55 +0000844 result = spi_send_command(sizeof(cmd), JEDEC_EWSR_INSIZE, cmd, NULL);
Carl-Daniel Hailfinger1e637842009-05-15 00:56:22 +0000845
846 if (result)
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000847 fprintf(stderr, "%s failed\n", __func__);
Carl-Daniel Hailfinger1e637842009-05-15 00:56:22 +0000848
849 return result;
Jason Wanga3f04be2008-11-28 21:36:51 +0000850}
851
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000852/*
853 * This is according the SST25VF016 datasheet, who knows it is more
854 * generic that this...
855 */
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000856int spi_write_status_register(int status)
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000857{
Carl-Daniel Hailfingerfcbdbbc2009-07-22 20:09:28 +0000858 int result;
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000859 struct spi_command cmds[] = {
Carl-Daniel Hailfingerfcbdbbc2009-07-22 20:09:28 +0000860 {
Carl-Daniel Hailfingerdb53ec52009-12-22 23:54:10 +0000861 /* FIXME: WRSR requires either EWSR or WREN depending on chip type. */
Carl-Daniel Hailfingerfcbdbbc2009-07-22 20:09:28 +0000862 .writecnt = JEDEC_EWSR_OUTSIZE,
863 .writearr = (const unsigned char[]){ JEDEC_EWSR },
864 .readcnt = 0,
865 .readarr = NULL,
866 }, {
867 .writecnt = JEDEC_WRSR_OUTSIZE,
868 .writearr = (const unsigned char[]){ JEDEC_WRSR, (unsigned char) status },
869 .readcnt = 0,
870 .readarr = NULL,
871 }, {
872 .writecnt = 0,
873 .writearr = NULL,
874 .readcnt = 0,
875 .readarr = NULL,
876 }};
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000877
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000878 result = spi_send_multicommand(cmds);
Carl-Daniel Hailfingerfcbdbbc2009-07-22 20:09:28 +0000879 if (result) {
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000880 fprintf(stderr, "%s failed during command execution\n",
881 __func__);
Carl-Daniel Hailfingerfcbdbbc2009-07-22 20:09:28 +0000882 }
883 return result;
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000884}
885
Michael Karcher4e2fb0e2010-01-12 23:29:26 +0000886int spi_byte_program(int addr, uint8_t databyte)
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000887{
Carl-Daniel Hailfinger2f1b36f2009-07-12 12:06:18 +0000888 int result;
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000889 struct spi_command cmds[] = {
Carl-Daniel Hailfinger2f1b36f2009-07-12 12:06:18 +0000890 {
891 .writecnt = JEDEC_WREN_OUTSIZE,
892 .writearr = (const unsigned char[]){ JEDEC_WREN },
893 .readcnt = 0,
894 .readarr = NULL,
895 }, {
896 .writecnt = JEDEC_BYTE_PROGRAM_OUTSIZE,
Michael Karcher4e2fb0e2010-01-12 23:29:26 +0000897 .writearr = (const unsigned char[]){ JEDEC_BYTE_PROGRAM, (addr >> 16) & 0xff, (addr >> 8) & 0xff, (addr & 0xff), databyte },
Carl-Daniel Hailfinger2f1b36f2009-07-12 12:06:18 +0000898 .readcnt = 0,
899 .readarr = NULL,
900 }, {
901 .writecnt = 0,
902 .writearr = NULL,
903 .readcnt = 0,
904 .readarr = NULL,
905 }};
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000906
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000907 result = spi_send_multicommand(cmds);
Carl-Daniel Hailfinger2f1b36f2009-07-12 12:06:18 +0000908 if (result) {
Carl-Daniel Hailfinger3efc51c2009-11-16 15:03:35 +0000909 fprintf(stderr, "%s failed during command execution at address 0x%x\n",
910 __func__, addr);
Carl-Daniel Hailfinger2f1b36f2009-07-12 12:06:18 +0000911 }
912 return result;
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000913}
914
Carl-Daniel Hailfinger3efc51c2009-11-16 15:03:35 +0000915int spi_nbyte_program(int addr, uint8_t *bytes, int len)
Paul Foxeb3acef2009-06-12 08:10:33 +0000916{
Carl-Daniel Hailfinger2f1b36f2009-07-12 12:06:18 +0000917 int result;
918 /* FIXME: Switch to malloc based on len unless that kills speed. */
Paul Foxeb3acef2009-06-12 08:10:33 +0000919 unsigned char cmd[JEDEC_BYTE_PROGRAM_OUTSIZE - 1 + 256] = {
920 JEDEC_BYTE_PROGRAM,
Carl-Daniel Hailfinger3efc51c2009-11-16 15:03:35 +0000921 (addr >> 16) & 0xff,
922 (addr >> 8) & 0xff,
923 (addr >> 0) & 0xff,
Paul Foxeb3acef2009-06-12 08:10:33 +0000924 };
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000925 struct spi_command cmds[] = {
Carl-Daniel Hailfinger2f1b36f2009-07-12 12:06:18 +0000926 {
927 .writecnt = JEDEC_WREN_OUTSIZE,
928 .writearr = (const unsigned char[]){ JEDEC_WREN },
929 .readcnt = 0,
930 .readarr = NULL,
931 }, {
932 .writecnt = JEDEC_BYTE_PROGRAM_OUTSIZE - 1 + len,
933 .writearr = cmd,
934 .readcnt = 0,
935 .readarr = NULL,
936 }, {
937 .writecnt = 0,
938 .writearr = NULL,
939 .readcnt = 0,
940 .readarr = NULL,
941 }};
Paul Foxeb3acef2009-06-12 08:10:33 +0000942
Carl-Daniel Hailfinger2f1b36f2009-07-12 12:06:18 +0000943 if (!len) {
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000944 fprintf(stderr, "%s called for zero-length write\n", __func__);
Carl-Daniel Hailfinger2f1b36f2009-07-12 12:06:18 +0000945 return 1;
946 }
Paul Foxeb3acef2009-06-12 08:10:33 +0000947 if (len > 256) {
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000948 fprintf(stderr, "%s called for too long a write\n", __func__);
Paul Foxeb3acef2009-06-12 08:10:33 +0000949 return 1;
950 }
951
952 memcpy(&cmd[4], bytes, len);
953
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000954 result = spi_send_multicommand(cmds);
Carl-Daniel Hailfinger2f1b36f2009-07-12 12:06:18 +0000955 if (result) {
Carl-Daniel Hailfinger3efc51c2009-11-16 15:03:35 +0000956 fprintf(stderr, "%s failed during command execution at address 0x%x\n",
957 __func__, addr);
Carl-Daniel Hailfinger2f1b36f2009-07-12 12:06:18 +0000958 }
959 return result;
Paul Foxeb3acef2009-06-12 08:10:33 +0000960}
961
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000962int spi_disable_blockprotect(void)
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000963{
964 uint8_t status;
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000965 int result;
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000966
Peter Stugefa8c5502008-05-10 23:07:52 +0000967 status = spi_read_status_register();
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000968 /* If there is block protection in effect, unprotect it first. */
969 if ((status & 0x3c) != 0) {
970 printf_debug("Some block protection in effect, disabling\n");
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000971 result = spi_write_status_register(status & ~0x3c);
972 if (result) {
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000973 fprintf(stderr, "spi_write_status_register failed\n");
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000974 return result;
975 }
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000976 }
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000977 return 0;
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000978}
979
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000980int spi_nbyte_read(int address, uint8_t *bytes, int len)
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000981{
Uwe Hermann394131e2008-10-18 21:14:13 +0000982 const unsigned char cmd[JEDEC_READ_OUTSIZE] = {
983 JEDEC_READ,
Carl-Daniel Hailfingerd3568ad2008-01-22 14:37:31 +0000984 (address >> 16) & 0xff,
985 (address >> 8) & 0xff,
986 (address >> 0) & 0xff,
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000987 };
988
989 /* Send Read */
Carl-Daniel Hailfingerd0478292009-07-10 21:08:55 +0000990 return spi_send_command(sizeof(cmd), len, cmd, bytes);
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000991}
992
Carl-Daniel Hailfinger38a059d2009-06-13 12:04:03 +0000993/*
994 * Read a complete flash chip.
995 * Each page is read separately in chunks with a maximum size of chunksize.
996 */
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000997int spi_read_chunked(struct flashchip *flash, uint8_t *buf, int start, int len, int chunksize)
Carl-Daniel Hailfinger38a059d2009-06-13 12:04:03 +0000998{
999 int rc = 0;
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +00001000 int i, j, starthere, lenhere;
Carl-Daniel Hailfinger38a059d2009-06-13 12:04:03 +00001001 int page_size = flash->page_size;
1002 int toread;
1003
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +00001004 /* Warning: This loop has a very unusual condition and body.
1005 * The loop needs to go through each page with at least one affected
1006 * byte. The lowest page number is (start / page_size) since that
1007 * division rounds down. The highest page number we want is the page
1008 * where the last byte of the range lives. That last byte has the
1009 * address (start + len - 1), thus the highest page number is
1010 * (start + len - 1) / page_size. Since we want to include that last
1011 * page as well, the loop condition uses <=.
1012 */
1013 for (i = start / page_size; i <= (start + len - 1) / page_size; i++) {
1014 /* Byte position of the first byte in the range in this page. */
1015 /* starthere is an offset to the base address of the chip. */
1016 starthere = max(start, i * page_size);
1017 /* Length of bytes in the range in this page. */
1018 lenhere = min(start + len, (i + 1) * page_size) - starthere;
1019 for (j = 0; j < lenhere; j += chunksize) {
1020 toread = min(chunksize, lenhere - j);
1021 rc = spi_nbyte_read(starthere + j, buf + starthere - start + j, toread);
Carl-Daniel Hailfinger38a059d2009-06-13 12:04:03 +00001022 if (rc)
1023 break;
1024 }
1025 if (rc)
1026 break;
1027 }
1028
1029 return rc;
1030}
1031
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +00001032int spi_chip_read(struct flashchip *flash, uint8_t *buf, int start, int len)
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +00001033{
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +00001034 if (!spi_programmer[spi_controller].read) {
1035 fprintf(stderr, "%s called, but SPI read is unsupported on this"
1036 " hardware. Please report a bug.\n", __func__);
1037 return 1;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +00001038 }
1039
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +00001040 return spi_programmer[spi_controller].read(flash, buf, start, len);
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +00001041}
1042
Carl-Daniel Hailfinger96930c32009-05-09 02:30:21 +00001043/*
1044 * Program chip using byte programming. (SLOW!)
1045 * This is for chips which can only handle one byte writes
1046 * and for chips where memory mapped programming is impossible
1047 * (e.g. due to size constraints in IT87* for over 512 kB)
1048 */
1049int spi_chip_write_1(struct flashchip *flash, uint8_t *buf)
1050{
1051 int total_size = 1024 * flash->total_size;
Carl-Daniel Hailfingerde75a5e2009-10-01 13:16:32 +00001052 int i, result = 0;
Carl-Daniel Hailfinger96930c32009-05-09 02:30:21 +00001053
1054 spi_disable_blockprotect();
Carl-Daniel Hailfinger116081a2009-08-10 02:29:21 +00001055 /* Erase first */
1056 printf("Erasing flash before programming... ");
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001057 if (erase_flash(flash)) {
Carl-Daniel Hailfinger116081a2009-08-10 02:29:21 +00001058 fprintf(stderr, "ERASE FAILED!\n");
1059 return -1;
1060 }
1061 printf("done.\n");
Carl-Daniel Hailfinger96930c32009-05-09 02:30:21 +00001062 for (i = 0; i < total_size; i++) {
Carl-Daniel Hailfingerde75a5e2009-10-01 13:16:32 +00001063 result = spi_byte_program(i, buf[i]);
1064 if (result)
1065 return 1;
Carl-Daniel Hailfinger96930c32009-05-09 02:30:21 +00001066 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +00001067 programmer_delay(10);
Carl-Daniel Hailfinger96930c32009-05-09 02:30:21 +00001068 }
1069
1070 return 0;
1071}
1072
1073/*
1074 * Program chip using page (256 bytes) programming.
1075 * Some SPI masters can't do this, they use single byte programming instead.
1076 */
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001077int spi_chip_write_256(struct flashchip *flash, uint8_t *buf)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +00001078{
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +00001079 if (!spi_programmer[spi_controller].write_256) {
1080 fprintf(stderr, "%s called, but SPI page write is unsupported "
1081 " on this hardware. Please report a bug.\n", __func__);
1082 return 1;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +00001083 }
1084
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +00001085 return spi_programmer[spi_controller].write_256(flash, buf);
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +00001086}
Peter Stugefd9217d2009-01-26 03:37:40 +00001087
Carl-Daniel Hailfinger3e9dbea2009-05-13 11:40:08 +00001088uint32_t spi_get_valid_read_addr(void)
1089{
1090 /* Need to return BBAR for ICH chipsets. */
1091 return 0;
1092}
1093
Uwe Hermann7b2969b2009-04-15 10:52:49 +00001094int spi_aai_write(struct flashchip *flash, uint8_t *buf)
1095{
Peter Stugefd9217d2009-01-26 03:37:40 +00001096 uint32_t pos = 2, size = flash->total_size * 1024;
1097 unsigned char w[6] = {0xad, 0, 0, 0, buf[0], buf[1]};
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +00001098 int result;
1099
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001100 switch (spi_controller) {
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +00001101#if INTERNAL_SUPPORT == 1
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001102 case SPI_CONTROLLER_WBSIO:
Uwe Hermann7b2969b2009-04-15 10:52:49 +00001103 fprintf(stderr, "%s: impossible with Winbond SPI masters,"
1104 " degrading to byte program\n", __func__);
Carl-Daniel Hailfinger96930c32009-05-09 02:30:21 +00001105 return spi_chip_write_1(flash, buf);
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +00001106#endif
Uwe Hermann7b2969b2009-04-15 10:52:49 +00001107 default:
1108 break;
Peter Stugefd9217d2009-01-26 03:37:40 +00001109 }
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001110 if (erase_flash(flash)) {
Carl-Daniel Hailfinger3431bb72009-06-24 08:28:39 +00001111 fprintf(stderr, "ERASE FAILED!\n");
1112 return -1;
1113 }
Carl-Daniel Hailfingerdb53ec52009-12-22 23:54:10 +00001114 /* FIXME: This will fail on ICH/VIA SPI. */
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +00001115 result = spi_write_enable();
1116 if (result)
1117 return result;
Carl-Daniel Hailfingerd0478292009-07-10 21:08:55 +00001118 spi_send_command(6, 0, w, NULL);
Peter Stugefd9217d2009-01-26 03:37:40 +00001119 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +00001120 programmer_delay(5); /* SST25VF040B Tbp is max 10us */
Peter Stugefd9217d2009-01-26 03:37:40 +00001121 while (pos < size) {
1122 w[1] = buf[pos++];
1123 w[2] = buf[pos++];
Carl-Daniel Hailfingerd0478292009-07-10 21:08:55 +00001124 spi_send_command(3, 0, w, NULL);
Peter Stugefd9217d2009-01-26 03:37:40 +00001125 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +00001126 programmer_delay(5); /* SST25VF040B Tbp is max 10us */
Peter Stugefd9217d2009-01-26 03:37:40 +00001127 }
1128 spi_write_disable();
1129 return 0;
1130}