blob: e1ab2eaca8e114585e3bdc87071c47d70a843ee2 [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
Carl-Daniel Hailfingereac65792010-01-22 02:53:30 +0000338#if DEDIPROG_SUPPORT == 1
339 case SPI_CONTROLLER_DEDIPROG:
340#endif
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000341 return probe_spi_rdid_generic(flash, 4);
342 default:
343 printf_debug("4b ID not supported on this SPI controller\n");
344 }
345
346 return 0;
Rudolf Marek48a85e42008-06-30 21:45:17 +0000347}
348
Carl-Daniel Hailfinger14e50ac2008-11-28 01:25:00 +0000349int probe_spi_rems(struct flashchip *flash)
350{
351 unsigned char readarr[JEDEC_REMS_INSIZE];
Carl-Daniel Hailfinger2ad267d2009-05-27 11:40:08 +0000352 uint32_t id1, id2;
Carl-Daniel Hailfinger14e50ac2008-11-28 01:25:00 +0000353
354 if (spi_rems(readarr))
355 return 0;
356
Carl-Daniel Hailfinger2ad267d2009-05-27 11:40:08 +0000357 id1 = readarr[0];
358 id2 = readarr[1];
Carl-Daniel Hailfinger14e50ac2008-11-28 01:25:00 +0000359
Uwe Hermann04aa59a2009-09-02 22:09:00 +0000360 printf_debug("%s: id1 0x%x, id2 0x%x\n", __func__, id1, id2);
Carl-Daniel Hailfinger14e50ac2008-11-28 01:25:00 +0000361
Carl-Daniel Hailfinger2ad267d2009-05-27 11:40:08 +0000362 if (id1 == flash->manufacture_id && id2 == flash->model_id) {
Carl-Daniel Hailfinger14e50ac2008-11-28 01:25:00 +0000363 /* Print the status register to tell the
364 * user about possible write protection.
365 */
366 spi_prettyprint_status_register(flash);
367
368 return 1;
369 }
370
371 /* Test if this is a pure vendor match. */
Carl-Daniel Hailfinger2ad267d2009-05-27 11:40:08 +0000372 if (id1 == flash->manufacture_id &&
Carl-Daniel Hailfinger14e50ac2008-11-28 01:25:00 +0000373 GENERIC_DEVICE_ID == flash->model_id)
374 return 1;
375
Carl-Daniel Hailfinger01d49ed2009-11-20 01:12:45 +0000376 /* Test if there is any vendor ID. */
377 if (GENERIC_MANUF_ID == flash->manufacture_id &&
378 id1 != 0xff)
379 return 1;
380
Carl-Daniel Hailfinger14e50ac2008-11-28 01:25:00 +0000381 return 0;
382}
383
Carl-Daniel Hailfinger42c54972008-05-15 03:19:49 +0000384int probe_spi_res(struct flashchip *flash)
385{
386 unsigned char readarr[3];
Carl-Daniel Hailfinger2ad267d2009-05-27 11:40:08 +0000387 uint32_t id2;
Peter Stugeda4e5f32008-06-24 01:22:03 +0000388
Carl-Daniel Hailfinger92a54ca2008-11-27 22:48:48 +0000389 /* Check if RDID was successful and did not return 0xff 0xff 0xff.
390 * In that case, RES is pointless.
391 */
392 if (!spi_rdid(readarr, 3) && ((readarr[0] != 0xff) ||
393 (readarr[1] != 0xff) || (readarr[2] != 0xff)))
Peter Stugeda4e5f32008-06-24 01:22:03 +0000394 return 0;
Carl-Daniel Hailfinger42c54972008-05-15 03:19:49 +0000395
Peter Stugeda4e5f32008-06-24 01:22:03 +0000396 if (spi_res(readarr))
397 return 0;
398
Carl-Daniel Hailfinger2ad267d2009-05-27 11:40:08 +0000399 id2 = readarr[0];
Uwe Hermann04aa59a2009-09-02 22:09:00 +0000400 printf_debug("%s: id 0x%x\n", __func__, id2);
Carl-Daniel Hailfinger2ad267d2009-05-27 11:40:08 +0000401 if (id2 != flash->model_id)
Peter Stugeda4e5f32008-06-24 01:22:03 +0000402 return 0;
403
404 /* Print the status register to tell the
405 * user about possible write protection.
406 */
407 spi_prettyprint_status_register(flash);
408 return 1;
Carl-Daniel Hailfinger42c54972008-05-15 03:19:49 +0000409}
410
Uwe Hermann7b2969b2009-04-15 10:52:49 +0000411uint8_t spi_read_status_register(void)
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000412{
Uwe Hermann394131e2008-10-18 21:14:13 +0000413 const unsigned char cmd[JEDEC_RDSR_OUTSIZE] = { JEDEC_RDSR };
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +0000414 /* FIXME: No workarounds for driver/hardware bugs in generic code. */
Peter Stugebf196e92009-01-26 03:08:45 +0000415 unsigned char readarr[2]; /* JEDEC_RDSR_INSIZE=1 but wbsio needs 2 */
Carl-Daniel Hailfinger3e9dbea2009-05-13 11:40:08 +0000416 int ret;
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000417
418 /* Read Status Register */
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +0000419 ret = spi_send_command(sizeof(cmd), sizeof(readarr), cmd, readarr);
420 if (ret)
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000421 fprintf(stderr, "RDSR failed!\n");
Jason Wanga3f04be2008-11-28 21:36:51 +0000422
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000423 return readarr[0];
424}
425
Uwe Hermann7b2969b2009-04-15 10:52:49 +0000426/* Prettyprint the status register. Common definitions. */
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000427void spi_prettyprint_status_register_common(uint8_t status)
428{
429 printf_debug("Chip status register: Bit 5 / Block Protect 3 (BP3) is "
Uwe Hermann394131e2008-10-18 21:14:13 +0000430 "%sset\n", (status & (1 << 5)) ? "" : "not ");
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000431 printf_debug("Chip status register: Bit 4 / Block Protect 2 (BP2) is "
Uwe Hermann394131e2008-10-18 21:14:13 +0000432 "%sset\n", (status & (1 << 4)) ? "" : "not ");
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000433 printf_debug("Chip status register: Bit 3 / Block Protect 1 (BP1) is "
Uwe Hermann394131e2008-10-18 21:14:13 +0000434 "%sset\n", (status & (1 << 3)) ? "" : "not ");
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000435 printf_debug("Chip status register: Bit 2 / Block Protect 0 (BP0) is "
Uwe Hermann394131e2008-10-18 21:14:13 +0000436 "%sset\n", (status & (1 << 2)) ? "" : "not ");
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000437 printf_debug("Chip status register: Write Enable Latch (WEL) is "
Uwe Hermann394131e2008-10-18 21:14:13 +0000438 "%sset\n", (status & (1 << 1)) ? "" : "not ");
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000439 printf_debug("Chip status register: Write In Progress (WIP/BUSY) is "
Uwe Hermann394131e2008-10-18 21:14:13 +0000440 "%sset\n", (status & (1 << 0)) ? "" : "not ");
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000441}
442
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000443/* Prettyprint the status register. Works for
444 * ST M25P series
445 * MX MX25L series
446 */
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000447void spi_prettyprint_status_register_st_m25p(uint8_t status)
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000448{
449 printf_debug("Chip status register: Status Register Write Disable "
Uwe Hermann394131e2008-10-18 21:14:13 +0000450 "(SRWD) is %sset\n", (status & (1 << 7)) ? "" : "not ");
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000451 printf_debug("Chip status register: Bit 6 is "
Uwe Hermann394131e2008-10-18 21:14:13 +0000452 "%sset\n", (status & (1 << 6)) ? "" : "not ");
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000453 spi_prettyprint_status_register_common(status);
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000454}
455
Carl-Daniel Hailfinger1bfd6c92009-05-06 13:59:44 +0000456void spi_prettyprint_status_register_sst25(uint8_t status)
457{
458 printf_debug("Chip status register: Block Protect Write Disable "
459 "(BPL) is %sset\n", (status & (1 << 7)) ? "" : "not ");
460 printf_debug("Chip status register: Auto Address Increment Programming "
461 "(AAI) is %sset\n", (status & (1 << 6)) ? "" : "not ");
462 spi_prettyprint_status_register_common(status);
463}
464
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000465/* Prettyprint the status register. Works for
466 * SST 25VF016
467 */
468void spi_prettyprint_status_register_sst25vf016(uint8_t status)
469{
Carl-Daniel Hailfingerd3568ad2008-01-22 14:37:31 +0000470 const char *bpt[] = {
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000471 "none",
472 "1F0000H-1FFFFFH",
473 "1E0000H-1FFFFFH",
474 "1C0000H-1FFFFFH",
475 "180000H-1FFFFFH",
476 "100000H-1FFFFFH",
Carl-Daniel Hailfingerd3568ad2008-01-22 14:37:31 +0000477 "all", "all"
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000478 };
Carl-Daniel Hailfinger1bfd6c92009-05-06 13:59:44 +0000479 spi_prettyprint_status_register_sst25(status);
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000480 printf_debug("Resulting block protection : %s\n",
Uwe Hermann394131e2008-10-18 21:14:13 +0000481 bpt[(status & 0x1c) >> 2]);
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000482}
483
Peter Stuge5fecee42009-01-26 03:23:50 +0000484void spi_prettyprint_status_register_sst25vf040b(uint8_t status)
485{
486 const char *bpt[] = {
487 "none",
488 "0x70000-0x7ffff",
489 "0x60000-0x7ffff",
490 "0x40000-0x7ffff",
491 "all blocks", "all blocks", "all blocks", "all blocks"
492 };
Carl-Daniel Hailfinger1bfd6c92009-05-06 13:59:44 +0000493 spi_prettyprint_status_register_sst25(status);
Peter Stuge5fecee42009-01-26 03:23:50 +0000494 printf_debug("Resulting block protection : %s\n",
Carl-Daniel Hailfinger1bfd6c92009-05-06 13:59:44 +0000495 bpt[(status & 0x1c) >> 2]);
Peter Stuge5fecee42009-01-26 03:23:50 +0000496}
497
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000498void spi_prettyprint_status_register(struct flashchip *flash)
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000499{
500 uint8_t status;
501
Peter Stugefa8c5502008-05-10 23:07:52 +0000502 status = spi_read_status_register();
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000503 printf_debug("Chip status register is %02x\n", status);
504 switch (flash->manufacture_id) {
505 case ST_ID:
Carl-Daniel Hailfingerf43e6422008-05-15 22:32:08 +0000506 if (((flash->model_id & 0xff00) == 0x2000) ||
507 ((flash->model_id & 0xff00) == 0x2500))
508 spi_prettyprint_status_register_st_m25p(status);
509 break;
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000510 case MX_ID:
511 if ((flash->model_id & 0xff00) == 0x2000)
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000512 spi_prettyprint_status_register_st_m25p(status);
513 break;
514 case SST_ID:
Peter Stuge5fecee42009-01-26 03:23:50 +0000515 switch (flash->model_id) {
516 case 0x2541:
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000517 spi_prettyprint_status_register_sst25vf016(status);
Peter Stuge5fecee42009-01-26 03:23:50 +0000518 break;
519 case 0x8d:
520 case 0x258d:
521 spi_prettyprint_status_register_sst25vf040b(status);
522 break;
Carl-Daniel Hailfinger5100a8a2009-05-13 22:51:27 +0000523 default:
Carl-Daniel Hailfinger1bfd6c92009-05-06 13:59:44 +0000524 spi_prettyprint_status_register_sst25(status);
525 break;
Peter Stuge5fecee42009-01-26 03:23:50 +0000526 }
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000527 break;
528 }
529}
Uwe Hermann394131e2008-10-18 21:14:13 +0000530
Carl-Daniel Hailfinger6afb6132008-11-03 00:02:11 +0000531int spi_chip_erase_60(struct flashchip *flash)
532{
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000533 int result;
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000534 struct spi_command cmds[] = {
Carl-Daniel Hailfinger60d71182009-07-11 19:28:36 +0000535 {
536 .writecnt = JEDEC_WREN_OUTSIZE,
537 .writearr = (const unsigned char[]){ JEDEC_WREN },
538 .readcnt = 0,
539 .readarr = NULL,
540 }, {
541 .writecnt = JEDEC_CE_60_OUTSIZE,
542 .writearr = (const unsigned char[]){ JEDEC_CE_60 },
543 .readcnt = 0,
544 .readarr = NULL,
545 }, {
546 .writecnt = 0,
547 .writearr = NULL,
548 .readcnt = 0,
549 .readarr = NULL,
550 }};
Carl-Daniel Hailfinger6afb6132008-11-03 00:02:11 +0000551
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000552 result = spi_disable_blockprotect();
553 if (result) {
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000554 fprintf(stderr, "spi_disable_blockprotect failed\n");
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000555 return result;
556 }
Carl-Daniel Hailfinger60d71182009-07-11 19:28:36 +0000557
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000558 result = spi_send_multicommand(cmds);
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000559 if (result) {
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000560 fprintf(stderr, "%s failed during command execution\n",
561 __func__);
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000562 return result;
563 }
Carl-Daniel Hailfinger6afb6132008-11-03 00:02:11 +0000564 /* Wait until the Write-In-Progress bit is cleared.
565 * This usually takes 1-85 s, so wait in 1 s steps.
566 */
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000567 /* FIXME: We assume spi_read_status_register will never fail. */
Carl-Daniel Hailfinger6afb6132008-11-03 00:02:11 +0000568 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000569 programmer_delay(1000 * 1000);
Carl-Daniel Hailfinger3431bb72009-06-24 08:28:39 +0000570 if (check_erased_range(flash, 0, flash->total_size * 1024)) {
571 fprintf(stderr, "ERASE FAILED!\n");
572 return -1;
573 }
Carl-Daniel Hailfinger6afb6132008-11-03 00:02:11 +0000574 return 0;
575}
576
Peter Stugefa8c5502008-05-10 23:07:52 +0000577int spi_chip_erase_c7(struct flashchip *flash)
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000578{
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000579 int result;
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000580 struct spi_command cmds[] = {
Carl-Daniel Hailfinger60d71182009-07-11 19:28:36 +0000581 {
582 .writecnt = JEDEC_WREN_OUTSIZE,
583 .writearr = (const unsigned char[]){ JEDEC_WREN },
584 .readcnt = 0,
585 .readarr = NULL,
586 }, {
587 .writecnt = JEDEC_CE_C7_OUTSIZE,
588 .writearr = (const unsigned char[]){ JEDEC_CE_C7 },
589 .readcnt = 0,
590 .readarr = NULL,
591 }, {
592 .writecnt = 0,
593 .writearr = NULL,
594 .readcnt = 0,
595 .readarr = NULL,
596 }};
Uwe Hermann394131e2008-10-18 21:14:13 +0000597
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000598 result = spi_disable_blockprotect();
599 if (result) {
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000600 fprintf(stderr, "spi_disable_blockprotect failed\n");
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000601 return result;
602 }
Carl-Daniel Hailfinger60d71182009-07-11 19:28:36 +0000603
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000604 result = spi_send_multicommand(cmds);
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000605 if (result) {
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000606 fprintf(stderr, "%s failed during command execution\n", __func__);
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000607 return result;
608 }
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000609 /* Wait until the Write-In-Progress bit is cleared.
610 * This usually takes 1-85 s, so wait in 1 s steps.
611 */
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000612 /* FIXME: We assume spi_read_status_register will never fail. */
Peter Stugefa8c5502008-05-10 23:07:52 +0000613 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000614 programmer_delay(1000 * 1000);
Carl-Daniel Hailfinger3431bb72009-06-24 08:28:39 +0000615 if (check_erased_range(flash, 0, flash->total_size * 1024)) {
616 fprintf(stderr, "ERASE FAILED!\n");
617 return -1;
618 }
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000619 return 0;
620}
621
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000622int spi_chip_erase_60_c7(struct flashchip *flash)
623{
624 int result;
625 result = spi_chip_erase_60(flash);
626 if (result) {
627 printf_debug("spi_chip_erase_60 failed, trying c7\n");
628 result = spi_chip_erase_c7(flash);
629 }
630 return result;
631}
632
Carl-Daniel Hailfinger3431bb72009-06-24 08:28:39 +0000633int spi_block_erase_52(struct flashchip *flash, unsigned int addr, unsigned int blocklen)
Carl-Daniel Hailfinger6afb6132008-11-03 00:02:11 +0000634{
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +0000635 int result;
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000636 struct spi_command cmds[] = {
Carl-Daniel Hailfinger39fa9b52009-07-11 22:26:52 +0000637 {
638 .writecnt = JEDEC_WREN_OUTSIZE,
639 .writearr = (const unsigned char[]){ JEDEC_WREN },
640 .readcnt = 0,
641 .readarr = NULL,
642 }, {
643 .writecnt = JEDEC_BE_52_OUTSIZE,
644 .writearr = (const unsigned char[]){ JEDEC_BE_52, (addr >> 16) & 0xff, (addr >> 8) & 0xff, (addr & 0xff) },
645 .readcnt = 0,
646 .readarr = NULL,
647 }, {
648 .writecnt = 0,
649 .writearr = NULL,
650 .readcnt = 0,
651 .readarr = NULL,
652 }};
Carl-Daniel Hailfinger6afb6132008-11-03 00:02:11 +0000653
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000654 result = spi_send_multicommand(cmds);
Carl-Daniel Hailfinger39fa9b52009-07-11 22:26:52 +0000655 if (result) {
Carl-Daniel Hailfinger3efc51c2009-11-16 15:03:35 +0000656 fprintf(stderr, "%s failed during command execution at address 0x%x\n",
657 __func__, addr);
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +0000658 return result;
Carl-Daniel Hailfinger39fa9b52009-07-11 22:26:52 +0000659 }
Carl-Daniel Hailfinger6afb6132008-11-03 00:02:11 +0000660 /* Wait until the Write-In-Progress bit is cleared.
661 * This usually takes 100-4000 ms, so wait in 100 ms steps.
662 */
663 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000664 programmer_delay(100 * 1000);
Carl-Daniel Hailfinger3431bb72009-06-24 08:28:39 +0000665 if (check_erased_range(flash, addr, blocklen)) {
666 fprintf(stderr, "ERASE FAILED!\n");
667 return -1;
668 }
Carl-Daniel Hailfinger6afb6132008-11-03 00:02:11 +0000669 return 0;
670}
671
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000672/* Block size is usually
673 * 64k for Macronix
674 * 32k for SST
675 * 4-32k non-uniform for EON
676 */
Carl-Daniel Hailfinger3431bb72009-06-24 08:28:39 +0000677int spi_block_erase_d8(struct flashchip *flash, unsigned int addr, unsigned int blocklen)
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000678{
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +0000679 int result;
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000680 struct spi_command cmds[] = {
Carl-Daniel Hailfinger39fa9b52009-07-11 22:26:52 +0000681 {
682 .writecnt = JEDEC_WREN_OUTSIZE,
683 .writearr = (const unsigned char[]){ JEDEC_WREN },
684 .readcnt = 0,
685 .readarr = NULL,
686 }, {
687 .writecnt = JEDEC_BE_D8_OUTSIZE,
688 .writearr = (const unsigned char[]){ JEDEC_BE_D8, (addr >> 16) & 0xff, (addr >> 8) & 0xff, (addr & 0xff) },
689 .readcnt = 0,
690 .readarr = NULL,
691 }, {
692 .writecnt = 0,
693 .writearr = NULL,
694 .readcnt = 0,
695 .readarr = NULL,
696 }};
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000697
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000698 result = spi_send_multicommand(cmds);
Carl-Daniel Hailfinger39fa9b52009-07-11 22:26:52 +0000699 if (result) {
Carl-Daniel Hailfinger3efc51c2009-11-16 15:03:35 +0000700 fprintf(stderr, "%s failed during command execution at address 0x%x\n",
701 __func__, addr);
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +0000702 return result;
Carl-Daniel Hailfinger39fa9b52009-07-11 22:26:52 +0000703 }
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000704 /* Wait until the Write-In-Progress bit is cleared.
705 * This usually takes 100-4000 ms, so wait in 100 ms steps.
706 */
Peter Stugefa8c5502008-05-10 23:07:52 +0000707 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000708 programmer_delay(100 * 1000);
Carl-Daniel Hailfinger3431bb72009-06-24 08:28:39 +0000709 if (check_erased_range(flash, addr, blocklen)) {
710 fprintf(stderr, "ERASE FAILED!\n");
711 return -1;
712 }
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000713 return 0;
714}
715
Sean Nelson5643c072010-01-19 03:23:07 +0000716/* Block size is usually
717 * 4k for PMC
718 */
719int spi_block_erase_d7(struct flashchip *flash, unsigned int addr, unsigned int blocklen)
720{
721 int result;
722 struct spi_command cmds[] = {
723 {
724 .writecnt = JEDEC_WREN_OUTSIZE,
725 .writearr = (const unsigned char[]){ JEDEC_WREN },
726 .readcnt = 0,
727 .readarr = NULL,
728 }, {
729 .writecnt = JEDEC_BE_D7_OUTSIZE,
730 .writearr = (const unsigned char[]){ JEDEC_BE_D7, (addr >> 16) & 0xff, (addr >> 8) & 0xff, (addr & 0xff) },
731 .readcnt = 0,
732 .readarr = NULL,
733 }, {
734 .writecnt = 0,
735 .writearr = NULL,
736 .readcnt = 0,
737 .readarr = NULL,
738 }};
739
740 result = spi_send_multicommand(cmds);
741 if (result) {
742 fprintf(stderr, "%s failed during command execution at address 0x%x\n",
743 __func__, addr);
744 return result;
745 }
746 /* Wait until the Write-In-Progress bit is cleared.
747 * This usually takes 100-4000 ms, so wait in 100 ms steps.
748 */
749 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
750 programmer_delay(100 * 1000);
751 if (check_erased_range(flash, addr, blocklen)) {
752 fprintf(stderr, "ERASE FAILED!\n");
753 return -1;
754 }
755 return 0;
756}
757
Stefan Reinauer424ed222008-10-29 22:13:20 +0000758int spi_chip_erase_d8(struct flashchip *flash)
759{
760 int i, rc = 0;
761 int total_size = flash->total_size * 1024;
762 int erase_size = 64 * 1024;
763
764 spi_disable_blockprotect();
765
766 printf("Erasing chip: \n");
767
768 for (i = 0; i < total_size / erase_size; i++) {
Carl-Daniel Hailfinger3431bb72009-06-24 08:28:39 +0000769 rc = spi_block_erase_d8(flash, i * erase_size, erase_size);
Stefan Reinauer424ed222008-10-29 22:13:20 +0000770 if (rc) {
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000771 fprintf(stderr, "Error erasing block at 0x%x\n", i);
Stefan Reinauer424ed222008-10-29 22:13:20 +0000772 break;
773 }
774 }
775
776 printf("\n");
777
778 return rc;
779}
780
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000781/* Sector size is usually 4k, though Macronix eliteflash has 64k */
Carl-Daniel Hailfinger3431bb72009-06-24 08:28:39 +0000782int spi_block_erase_20(struct flashchip *flash, unsigned int addr, unsigned int blocklen)
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000783{
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +0000784 int result;
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000785 struct spi_command cmds[] = {
Carl-Daniel Hailfinger39fa9b52009-07-11 22:26:52 +0000786 {
787 .writecnt = JEDEC_WREN_OUTSIZE,
788 .writearr = (const unsigned char[]){ JEDEC_WREN },
789 .readcnt = 0,
790 .readarr = NULL,
791 }, {
792 .writecnt = JEDEC_SE_OUTSIZE,
793 .writearr = (const unsigned char[]){ JEDEC_SE, (addr >> 16) & 0xff, (addr >> 8) & 0xff, (addr & 0xff) },
794 .readcnt = 0,
795 .readarr = NULL,
796 }, {
797 .writecnt = 0,
798 .writearr = NULL,
799 .readcnt = 0,
800 .readarr = NULL,
801 }};
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000802
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000803 result = spi_send_multicommand(cmds);
Carl-Daniel Hailfinger39fa9b52009-07-11 22:26:52 +0000804 if (result) {
Carl-Daniel Hailfinger3efc51c2009-11-16 15:03:35 +0000805 fprintf(stderr, "%s failed during command execution at address 0x%x\n",
806 __func__, addr);
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +0000807 return result;
Carl-Daniel Hailfinger39fa9b52009-07-11 22:26:52 +0000808 }
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000809 /* Wait until the Write-In-Progress bit is cleared.
810 * This usually takes 15-800 ms, so wait in 10 ms steps.
811 */
Peter Stugefa8c5502008-05-10 23:07:52 +0000812 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000813 programmer_delay(10 * 1000);
Carl-Daniel Hailfinger3431bb72009-06-24 08:28:39 +0000814 if (check_erased_range(flash, addr, blocklen)) {
815 fprintf(stderr, "ERASE FAILED!\n");
816 return -1;
817 }
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000818 return 0;
819}
820
Carl-Daniel Hailfinger3431bb72009-06-24 08:28:39 +0000821int spi_block_erase_60(struct flashchip *flash, unsigned int addr, unsigned int blocklen)
822{
823 if ((addr != 0) || (blocklen != flash->total_size * 1024)) {
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000824 fprintf(stderr, "%s called with incorrect arguments\n",
825 __func__);
Carl-Daniel Hailfinger3431bb72009-06-24 08:28:39 +0000826 return -1;
827 }
828 return spi_chip_erase_60(flash);
829}
830
831int spi_block_erase_c7(struct flashchip *flash, unsigned int addr, unsigned int blocklen)
832{
833 if ((addr != 0) || (blocklen != flash->total_size * 1024)) {
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000834 fprintf(stderr, "%s called with incorrect arguments\n",
835 __func__);
Carl-Daniel Hailfinger3431bb72009-06-24 08:28:39 +0000836 return -1;
837 }
838 return spi_chip_erase_c7(flash);
839}
840
Uwe Hermann7b2969b2009-04-15 10:52:49 +0000841int spi_write_status_enable(void)
Jason Wanga3f04be2008-11-28 21:36:51 +0000842{
843 const unsigned char cmd[JEDEC_EWSR_OUTSIZE] = { JEDEC_EWSR };
Carl-Daniel Hailfinger1e637842009-05-15 00:56:22 +0000844 int result;
Jason Wanga3f04be2008-11-28 21:36:51 +0000845
846 /* Send EWSR (Enable Write Status Register). */
Carl-Daniel Hailfingerd0478292009-07-10 21:08:55 +0000847 result = spi_send_command(sizeof(cmd), JEDEC_EWSR_INSIZE, cmd, NULL);
Carl-Daniel Hailfinger1e637842009-05-15 00:56:22 +0000848
849 if (result)
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000850 fprintf(stderr, "%s failed\n", __func__);
Carl-Daniel Hailfinger1e637842009-05-15 00:56:22 +0000851
852 return result;
Jason Wanga3f04be2008-11-28 21:36:51 +0000853}
854
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000855/*
856 * This is according the SST25VF016 datasheet, who knows it is more
857 * generic that this...
858 */
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000859int spi_write_status_register(int status)
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000860{
Carl-Daniel Hailfingerfcbdbbc2009-07-22 20:09:28 +0000861 int result;
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000862 struct spi_command cmds[] = {
Carl-Daniel Hailfingerfcbdbbc2009-07-22 20:09:28 +0000863 {
Carl-Daniel Hailfingerdb53ec52009-12-22 23:54:10 +0000864 /* FIXME: WRSR requires either EWSR or WREN depending on chip type. */
Carl-Daniel Hailfingerfcbdbbc2009-07-22 20:09:28 +0000865 .writecnt = JEDEC_EWSR_OUTSIZE,
866 .writearr = (const unsigned char[]){ JEDEC_EWSR },
867 .readcnt = 0,
868 .readarr = NULL,
869 }, {
870 .writecnt = JEDEC_WRSR_OUTSIZE,
871 .writearr = (const unsigned char[]){ JEDEC_WRSR, (unsigned char) status },
872 .readcnt = 0,
873 .readarr = NULL,
874 }, {
875 .writecnt = 0,
876 .writearr = NULL,
877 .readcnt = 0,
878 .readarr = NULL,
879 }};
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000880
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000881 result = spi_send_multicommand(cmds);
Carl-Daniel Hailfingerfcbdbbc2009-07-22 20:09:28 +0000882 if (result) {
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000883 fprintf(stderr, "%s failed during command execution\n",
884 __func__);
Carl-Daniel Hailfingerfcbdbbc2009-07-22 20:09:28 +0000885 }
886 return result;
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000887}
888
Michael Karcher4e2fb0e2010-01-12 23:29:26 +0000889int spi_byte_program(int addr, uint8_t databyte)
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000890{
Carl-Daniel Hailfinger2f1b36f2009-07-12 12:06:18 +0000891 int result;
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000892 struct spi_command cmds[] = {
Carl-Daniel Hailfinger2f1b36f2009-07-12 12:06:18 +0000893 {
894 .writecnt = JEDEC_WREN_OUTSIZE,
895 .writearr = (const unsigned char[]){ JEDEC_WREN },
896 .readcnt = 0,
897 .readarr = NULL,
898 }, {
899 .writecnt = JEDEC_BYTE_PROGRAM_OUTSIZE,
Michael Karcher4e2fb0e2010-01-12 23:29:26 +0000900 .writearr = (const unsigned char[]){ JEDEC_BYTE_PROGRAM, (addr >> 16) & 0xff, (addr >> 8) & 0xff, (addr & 0xff), databyte },
Carl-Daniel Hailfinger2f1b36f2009-07-12 12:06:18 +0000901 .readcnt = 0,
902 .readarr = NULL,
903 }, {
904 .writecnt = 0,
905 .writearr = NULL,
906 .readcnt = 0,
907 .readarr = NULL,
908 }};
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000909
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000910 result = spi_send_multicommand(cmds);
Carl-Daniel Hailfinger2f1b36f2009-07-12 12:06:18 +0000911 if (result) {
Carl-Daniel Hailfinger3efc51c2009-11-16 15:03:35 +0000912 fprintf(stderr, "%s failed during command execution at address 0x%x\n",
913 __func__, addr);
Carl-Daniel Hailfinger2f1b36f2009-07-12 12:06:18 +0000914 }
915 return result;
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000916}
917
Carl-Daniel Hailfinger3efc51c2009-11-16 15:03:35 +0000918int spi_nbyte_program(int addr, uint8_t *bytes, int len)
Paul Foxeb3acef2009-06-12 08:10:33 +0000919{
Carl-Daniel Hailfinger2f1b36f2009-07-12 12:06:18 +0000920 int result;
921 /* FIXME: Switch to malloc based on len unless that kills speed. */
Paul Foxeb3acef2009-06-12 08:10:33 +0000922 unsigned char cmd[JEDEC_BYTE_PROGRAM_OUTSIZE - 1 + 256] = {
923 JEDEC_BYTE_PROGRAM,
Carl-Daniel Hailfinger3efc51c2009-11-16 15:03:35 +0000924 (addr >> 16) & 0xff,
925 (addr >> 8) & 0xff,
926 (addr >> 0) & 0xff,
Paul Foxeb3acef2009-06-12 08:10:33 +0000927 };
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000928 struct spi_command cmds[] = {
Carl-Daniel Hailfinger2f1b36f2009-07-12 12:06:18 +0000929 {
930 .writecnt = JEDEC_WREN_OUTSIZE,
931 .writearr = (const unsigned char[]){ JEDEC_WREN },
932 .readcnt = 0,
933 .readarr = NULL,
934 }, {
935 .writecnt = JEDEC_BYTE_PROGRAM_OUTSIZE - 1 + len,
936 .writearr = cmd,
937 .readcnt = 0,
938 .readarr = NULL,
939 }, {
940 .writecnt = 0,
941 .writearr = NULL,
942 .readcnt = 0,
943 .readarr = NULL,
944 }};
Paul Foxeb3acef2009-06-12 08:10:33 +0000945
Carl-Daniel Hailfinger2f1b36f2009-07-12 12:06:18 +0000946 if (!len) {
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000947 fprintf(stderr, "%s called for zero-length write\n", __func__);
Carl-Daniel Hailfinger2f1b36f2009-07-12 12:06:18 +0000948 return 1;
949 }
Paul Foxeb3acef2009-06-12 08:10:33 +0000950 if (len > 256) {
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000951 fprintf(stderr, "%s called for too long a write\n", __func__);
Paul Foxeb3acef2009-06-12 08:10:33 +0000952 return 1;
953 }
954
955 memcpy(&cmd[4], bytes, len);
956
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000957 result = spi_send_multicommand(cmds);
Carl-Daniel Hailfinger2f1b36f2009-07-12 12:06:18 +0000958 if (result) {
Carl-Daniel Hailfinger3efc51c2009-11-16 15:03:35 +0000959 fprintf(stderr, "%s failed during command execution at address 0x%x\n",
960 __func__, addr);
Carl-Daniel Hailfinger2f1b36f2009-07-12 12:06:18 +0000961 }
962 return result;
Paul Foxeb3acef2009-06-12 08:10:33 +0000963}
964
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000965int spi_disable_blockprotect(void)
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000966{
967 uint8_t status;
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000968 int result;
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000969
Peter Stugefa8c5502008-05-10 23:07:52 +0000970 status = spi_read_status_register();
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000971 /* If there is block protection in effect, unprotect it first. */
972 if ((status & 0x3c) != 0) {
973 printf_debug("Some block protection in effect, disabling\n");
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000974 result = spi_write_status_register(status & ~0x3c);
975 if (result) {
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000976 fprintf(stderr, "spi_write_status_register failed\n");
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000977 return result;
978 }
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000979 }
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000980 return 0;
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000981}
982
Carl-Daniel Hailfinger598ec582008-11-18 00:41:02 +0000983int spi_nbyte_read(int address, uint8_t *bytes, int len)
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000984{
Uwe Hermann394131e2008-10-18 21:14:13 +0000985 const unsigned char cmd[JEDEC_READ_OUTSIZE] = {
986 JEDEC_READ,
Carl-Daniel Hailfingerd3568ad2008-01-22 14:37:31 +0000987 (address >> 16) & 0xff,
988 (address >> 8) & 0xff,
989 (address >> 0) & 0xff,
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000990 };
991
992 /* Send Read */
Carl-Daniel Hailfingerd0478292009-07-10 21:08:55 +0000993 return spi_send_command(sizeof(cmd), len, cmd, bytes);
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000994}
995
Carl-Daniel Hailfinger38a059d2009-06-13 12:04:03 +0000996/*
997 * Read a complete flash chip.
998 * Each page is read separately in chunks with a maximum size of chunksize.
999 */
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +00001000int spi_read_chunked(struct flashchip *flash, uint8_t *buf, int start, int len, int chunksize)
Carl-Daniel Hailfinger38a059d2009-06-13 12:04:03 +00001001{
1002 int rc = 0;
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +00001003 int i, j, starthere, lenhere;
Carl-Daniel Hailfinger38a059d2009-06-13 12:04:03 +00001004 int page_size = flash->page_size;
1005 int toread;
1006
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +00001007 /* Warning: This loop has a very unusual condition and body.
1008 * The loop needs to go through each page with at least one affected
1009 * byte. The lowest page number is (start / page_size) since that
1010 * division rounds down. The highest page number we want is the page
1011 * where the last byte of the range lives. That last byte has the
1012 * address (start + len - 1), thus the highest page number is
1013 * (start + len - 1) / page_size. Since we want to include that last
1014 * page as well, the loop condition uses <=.
1015 */
1016 for (i = start / page_size; i <= (start + len - 1) / page_size; i++) {
1017 /* Byte position of the first byte in the range in this page. */
1018 /* starthere is an offset to the base address of the chip. */
1019 starthere = max(start, i * page_size);
1020 /* Length of bytes in the range in this page. */
1021 lenhere = min(start + len, (i + 1) * page_size) - starthere;
1022 for (j = 0; j < lenhere; j += chunksize) {
1023 toread = min(chunksize, lenhere - j);
1024 rc = spi_nbyte_read(starthere + j, buf + starthere - start + j, toread);
Carl-Daniel Hailfinger38a059d2009-06-13 12:04:03 +00001025 if (rc)
1026 break;
1027 }
1028 if (rc)
1029 break;
1030 }
1031
1032 return rc;
1033}
1034
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +00001035int spi_chip_read(struct flashchip *flash, uint8_t *buf, int start, int len)
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +00001036{
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +00001037 if (!spi_programmer[spi_controller].read) {
1038 fprintf(stderr, "%s called, but SPI read is unsupported on this"
1039 " hardware. Please report a bug.\n", __func__);
1040 return 1;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +00001041 }
1042
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +00001043 return spi_programmer[spi_controller].read(flash, buf, start, len);
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +00001044}
1045
Carl-Daniel Hailfinger96930c32009-05-09 02:30:21 +00001046/*
1047 * Program chip using byte programming. (SLOW!)
1048 * This is for chips which can only handle one byte writes
1049 * and for chips where memory mapped programming is impossible
1050 * (e.g. due to size constraints in IT87* for over 512 kB)
1051 */
1052int spi_chip_write_1(struct flashchip *flash, uint8_t *buf)
1053{
1054 int total_size = 1024 * flash->total_size;
Carl-Daniel Hailfingerde75a5e2009-10-01 13:16:32 +00001055 int i, result = 0;
Carl-Daniel Hailfinger96930c32009-05-09 02:30:21 +00001056
1057 spi_disable_blockprotect();
Carl-Daniel Hailfinger116081a2009-08-10 02:29:21 +00001058 /* Erase first */
1059 printf("Erasing flash before programming... ");
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001060 if (erase_flash(flash)) {
Carl-Daniel Hailfinger116081a2009-08-10 02:29:21 +00001061 fprintf(stderr, "ERASE FAILED!\n");
1062 return -1;
1063 }
1064 printf("done.\n");
Carl-Daniel Hailfinger96930c32009-05-09 02:30:21 +00001065 for (i = 0; i < total_size; i++) {
Carl-Daniel Hailfingerde75a5e2009-10-01 13:16:32 +00001066 result = spi_byte_program(i, buf[i]);
1067 if (result)
1068 return 1;
Carl-Daniel Hailfinger96930c32009-05-09 02:30:21 +00001069 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +00001070 programmer_delay(10);
Carl-Daniel Hailfinger96930c32009-05-09 02:30:21 +00001071 }
1072
1073 return 0;
1074}
1075
1076/*
1077 * Program chip using page (256 bytes) programming.
1078 * Some SPI masters can't do this, they use single byte programming instead.
1079 */
Carl-Daniel Hailfinger8d497012009-05-09 02:34:18 +00001080int spi_chip_write_256(struct flashchip *flash, uint8_t *buf)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +00001081{
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +00001082 if (!spi_programmer[spi_controller].write_256) {
1083 fprintf(stderr, "%s called, but SPI page write is unsupported "
1084 " on this hardware. Please report a bug.\n", __func__);
1085 return 1;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +00001086 }
1087
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +00001088 return spi_programmer[spi_controller].write_256(flash, buf);
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +00001089}
Peter Stugefd9217d2009-01-26 03:37:40 +00001090
Carl-Daniel Hailfinger3e9dbea2009-05-13 11:40:08 +00001091uint32_t spi_get_valid_read_addr(void)
1092{
1093 /* Need to return BBAR for ICH chipsets. */
1094 return 0;
1095}
1096
Uwe Hermann7b2969b2009-04-15 10:52:49 +00001097int spi_aai_write(struct flashchip *flash, uint8_t *buf)
1098{
Peter Stugefd9217d2009-01-26 03:37:40 +00001099 uint32_t pos = 2, size = flash->total_size * 1024;
1100 unsigned char w[6] = {0xad, 0, 0, 0, buf[0], buf[1]};
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +00001101 int result;
1102
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001103 switch (spi_controller) {
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +00001104#if INTERNAL_SUPPORT == 1
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +00001105 case SPI_CONTROLLER_WBSIO:
Uwe Hermann7b2969b2009-04-15 10:52:49 +00001106 fprintf(stderr, "%s: impossible with Winbond SPI masters,"
1107 " degrading to byte program\n", __func__);
Carl-Daniel Hailfinger96930c32009-05-09 02:30:21 +00001108 return spi_chip_write_1(flash, buf);
Carl-Daniel Hailfinger66ef4e52009-12-13 22:28:00 +00001109#endif
Uwe Hermann7b2969b2009-04-15 10:52:49 +00001110 default:
1111 break;
Peter Stugefd9217d2009-01-26 03:37:40 +00001112 }
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +00001113 if (erase_flash(flash)) {
Carl-Daniel Hailfinger3431bb72009-06-24 08:28:39 +00001114 fprintf(stderr, "ERASE FAILED!\n");
1115 return -1;
1116 }
Carl-Daniel Hailfingerdb53ec52009-12-22 23:54:10 +00001117 /* FIXME: This will fail on ICH/VIA SPI. */
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +00001118 result = spi_write_enable();
1119 if (result)
1120 return result;
Carl-Daniel Hailfingerd0478292009-07-10 21:08:55 +00001121 spi_send_command(6, 0, w, NULL);
Peter Stugefd9217d2009-01-26 03:37:40 +00001122 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +00001123 programmer_delay(5); /* SST25VF040B Tbp is max 10us */
Peter Stugefd9217d2009-01-26 03:37:40 +00001124 while (pos < size) {
1125 w[1] = buf[pos++];
1126 w[2] = buf[pos++];
Carl-Daniel Hailfingerd0478292009-07-10 21:08:55 +00001127 spi_send_command(3, 0, w, NULL);
Peter Stugefd9217d2009-01-26 03:37:40 +00001128 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +00001129 programmer_delay(5); /* SST25VF040B Tbp is max 10us */
Peter Stugefd9217d2009-01-26 03:37:40 +00001130 }
1131 spi_write_disable();
1132 return 0;
1133}