blob: a65f54852d6ed8e492b23b097233a52bbcf76268 [file] [log] [blame]
Sean Nelson14ba6682010-02-26 05:48:29 +00001/*
2 * This file is part of the flashrom project.
3 *
Carl-Daniel Hailfinger5824fbf2010-05-21 23:09:42 +00004 * Copyright (C) 2007, 2008, 2009, 2010 Carl-Daniel Hailfinger
Sean Nelson14ba6682010-02-26 05:48:29 +00005 * Copyright (C) 2008 coresystems GmbH
6 *
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 common SPI chip driver functions
23 */
24
25#include <string.h>
26#include "flash.h"
27#include "flashchips.h"
28#include "chipdrivers.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000029#include "programmer.h"
Sean Nelson14ba6682010-02-26 05:48:29 +000030#include "spi.h"
31
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000032static int spi_rdid(struct flashctx *flash, unsigned char *readarr, int bytes)
Sean Nelson14ba6682010-02-26 05:48:29 +000033{
Mathias Krausea60faab2011-01-17 07:50:42 +000034 static const unsigned char cmd[JEDEC_RDID_OUTSIZE] = { JEDEC_RDID };
Sean Nelson14ba6682010-02-26 05:48:29 +000035 int ret;
36 int i;
37
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000038 ret = spi_send_command(flash, sizeof(cmd), bytes, cmd, readarr);
Sean Nelson14ba6682010-02-26 05:48:29 +000039 if (ret)
40 return ret;
Sean Nelsoned479d22010-03-24 23:14:32 +000041 msg_cspew("RDID returned");
Sean Nelson14ba6682010-02-26 05:48:29 +000042 for (i = 0; i < bytes; i++)
Sean Nelsoned479d22010-03-24 23:14:32 +000043 msg_cspew(" 0x%02x", readarr[i]);
44 msg_cspew(". ");
Sean Nelson14ba6682010-02-26 05:48:29 +000045 return 0;
46}
47
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000048static int spi_rems(struct flashctx *flash, unsigned char *readarr)
Sean Nelson14ba6682010-02-26 05:48:29 +000049{
50 unsigned char cmd[JEDEC_REMS_OUTSIZE] = { JEDEC_REMS, 0, 0, 0 };
51 uint32_t readaddr;
52 int ret;
53
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000054 ret = spi_send_command(flash, sizeof(cmd), JEDEC_REMS_INSIZE, cmd,
55 readarr);
Sean Nelson14ba6682010-02-26 05:48:29 +000056 if (ret == SPI_INVALID_ADDRESS) {
57 /* Find the lowest even address allowed for reads. */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000058 readaddr = (spi_get_valid_read_addr(flash) + 1) & ~1;
Sean Nelson14ba6682010-02-26 05:48:29 +000059 cmd[1] = (readaddr >> 16) & 0xff,
60 cmd[2] = (readaddr >> 8) & 0xff,
61 cmd[3] = (readaddr >> 0) & 0xff,
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000062 ret = spi_send_command(flash, sizeof(cmd), JEDEC_REMS_INSIZE,
63 cmd, readarr);
Sean Nelson14ba6682010-02-26 05:48:29 +000064 }
65 if (ret)
66 return ret;
Cristian Măgherușan-Stanciu9932c7b2011-07-07 19:56:58 +000067 msg_cspew("REMS returned 0x%02x 0x%02x. ", readarr[0], readarr[1]);
Sean Nelson14ba6682010-02-26 05:48:29 +000068 return 0;
69}
70
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000071static int spi_res(struct flashctx *flash, unsigned char *readarr, int bytes)
Sean Nelson14ba6682010-02-26 05:48:29 +000072{
73 unsigned char cmd[JEDEC_RES_OUTSIZE] = { JEDEC_RES, 0, 0, 0 };
74 uint32_t readaddr;
75 int ret;
Carl-Daniel Hailfinger8ae500e2010-06-20 10:39:33 +000076 int i;
Sean Nelson14ba6682010-02-26 05:48:29 +000077
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000078 ret = spi_send_command(flash, sizeof(cmd), bytes, cmd, readarr);
Sean Nelson14ba6682010-02-26 05:48:29 +000079 if (ret == SPI_INVALID_ADDRESS) {
80 /* Find the lowest even address allowed for reads. */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000081 readaddr = (spi_get_valid_read_addr(flash) + 1) & ~1;
Sean Nelson14ba6682010-02-26 05:48:29 +000082 cmd[1] = (readaddr >> 16) & 0xff,
83 cmd[2] = (readaddr >> 8) & 0xff,
84 cmd[3] = (readaddr >> 0) & 0xff,
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000085 ret = spi_send_command(flash, sizeof(cmd), bytes, cmd, readarr);
Sean Nelson14ba6682010-02-26 05:48:29 +000086 }
87 if (ret)
88 return ret;
Carl-Daniel Hailfinger8ae500e2010-06-20 10:39:33 +000089 msg_cspew("RES returned");
90 for (i = 0; i < bytes; i++)
91 msg_cspew(" 0x%02x", readarr[i]);
92 msg_cspew(". ");
Sean Nelson14ba6682010-02-26 05:48:29 +000093 return 0;
94}
95
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000096int spi_write_enable(struct flashctx *flash)
Sean Nelson14ba6682010-02-26 05:48:29 +000097{
Mathias Krausea60faab2011-01-17 07:50:42 +000098 static const unsigned char cmd[JEDEC_WREN_OUTSIZE] = { JEDEC_WREN };
Sean Nelson14ba6682010-02-26 05:48:29 +000099 int result;
100
101 /* Send WREN (Write Enable) */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000102 result = spi_send_command(flash, sizeof(cmd), 0, cmd, NULL);
Sean Nelson14ba6682010-02-26 05:48:29 +0000103
104 if (result)
Sean Nelsoned479d22010-03-24 23:14:32 +0000105 msg_cerr("%s failed\n", __func__);
Sean Nelson14ba6682010-02-26 05:48:29 +0000106
107 return result;
108}
109
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000110int spi_write_disable(struct flashctx *flash)
Sean Nelson14ba6682010-02-26 05:48:29 +0000111{
Mathias Krausea60faab2011-01-17 07:50:42 +0000112 static const unsigned char cmd[JEDEC_WRDI_OUTSIZE] = { JEDEC_WRDI };
Sean Nelson14ba6682010-02-26 05:48:29 +0000113
114 /* Send WRDI (Write Disable) */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000115 return spi_send_command(flash, sizeof(cmd), 0, cmd, NULL);
Sean Nelson14ba6682010-02-26 05:48:29 +0000116}
117
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000118static int probe_spi_rdid_generic(struct flashctx *flash, int bytes)
Sean Nelson14ba6682010-02-26 05:48:29 +0000119{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000120 const struct flashchip *chip = flash->chip;
Sean Nelson14ba6682010-02-26 05:48:29 +0000121 unsigned char readarr[4];
122 uint32_t id1;
123 uint32_t id2;
124
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000125 if (spi_rdid(flash, readarr, bytes)) {
Sean Nelson14ba6682010-02-26 05:48:29 +0000126 return 0;
Stefan Tauner355cbfd2011-05-28 02:37:14 +0000127 }
Sean Nelson14ba6682010-02-26 05:48:29 +0000128
129 if (!oddparity(readarr[0]))
Sean Nelsoned479d22010-03-24 23:14:32 +0000130 msg_cdbg("RDID byte 0 parity violation. ");
Sean Nelson14ba6682010-02-26 05:48:29 +0000131
Carl-Daniel Hailfinger8ae500e2010-06-20 10:39:33 +0000132 /* Check if this is a continuation vendor ID.
133 * FIXME: Handle continuation device IDs.
134 */
Sean Nelson14ba6682010-02-26 05:48:29 +0000135 if (readarr[0] == 0x7f) {
136 if (!oddparity(readarr[1]))
Sean Nelsoned479d22010-03-24 23:14:32 +0000137 msg_cdbg("RDID byte 1 parity violation. ");
Sean Nelson14ba6682010-02-26 05:48:29 +0000138 id1 = (readarr[0] << 8) | readarr[1];
139 id2 = readarr[2];
140 if (bytes > 3) {
141 id2 <<= 8;
142 id2 |= readarr[3];
143 }
144 } else {
145 id1 = readarr[0];
146 id2 = (readarr[1] << 8) | readarr[2];
147 }
148
Sean Nelsoned479d22010-03-24 23:14:32 +0000149 msg_cdbg("%s: id1 0x%02x, id2 0x%02x\n", __func__, id1, id2);
Sean Nelson14ba6682010-02-26 05:48:29 +0000150
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000151 if (id1 == chip->manufacture_id && id2 == chip->model_id) {
Sean Nelson14ba6682010-02-26 05:48:29 +0000152 /* Print the status register to tell the
153 * user about possible write protection.
154 */
155 spi_prettyprint_status_register(flash);
156
157 return 1;
158 }
159
160 /* Test if this is a pure vendor match. */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000161 if (id1 == chip->manufacture_id && GENERIC_DEVICE_ID == chip->model_id)
Sean Nelson14ba6682010-02-26 05:48:29 +0000162 return 1;
163
164 /* Test if there is any vendor ID. */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000165 if (GENERIC_MANUF_ID == chip->manufacture_id && id1 != 0xff)
Sean Nelson14ba6682010-02-26 05:48:29 +0000166 return 1;
167
168 return 0;
169}
170
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000171int probe_spi_rdid(struct flashctx *flash)
Sean Nelson14ba6682010-02-26 05:48:29 +0000172{
173 return probe_spi_rdid_generic(flash, 3);
174}
175
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000176int probe_spi_rdid4(struct flashctx *flash)
Sean Nelson14ba6682010-02-26 05:48:29 +0000177{
Carl-Daniel Hailfinger8ae500e2010-06-20 10:39:33 +0000178 /* Some SPI controllers do not support commands with writecnt=1 and
179 * readcnt=4.
180 */
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000181 switch (flash->pgm->spi.type) {
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000182#if CONFIG_INTERNAL == 1
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000183#if defined(__i386__) || defined(__x86_64__)
Carl-Daniel Hailfinger8ae500e2010-06-20 10:39:33 +0000184 case SPI_CONTROLLER_IT87XX:
Sean Nelson14ba6682010-02-26 05:48:29 +0000185 case SPI_CONTROLLER_WBSIO:
Carl-Daniel Hailfinger8ae500e2010-06-20 10:39:33 +0000186 msg_cinfo("4 byte RDID not supported on this SPI controller\n");
187 return 0;
188 break;
Sean Nelson14ba6682010-02-26 05:48:29 +0000189#endif
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000190#endif
Sean Nelson14ba6682010-02-26 05:48:29 +0000191 default:
Carl-Daniel Hailfinger8ae500e2010-06-20 10:39:33 +0000192 return probe_spi_rdid_generic(flash, 4);
Sean Nelson14ba6682010-02-26 05:48:29 +0000193 }
194
195 return 0;
196}
197
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000198int probe_spi_rems(struct flashctx *flash)
Sean Nelson14ba6682010-02-26 05:48:29 +0000199{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000200 const struct flashchip *chip = flash->chip;
Sean Nelson14ba6682010-02-26 05:48:29 +0000201 unsigned char readarr[JEDEC_REMS_INSIZE];
202 uint32_t id1, id2;
203
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000204 if (spi_rems(flash, readarr)) {
Sean Nelson14ba6682010-02-26 05:48:29 +0000205 return 0;
Stefan Tauner355cbfd2011-05-28 02:37:14 +0000206 }
Sean Nelson14ba6682010-02-26 05:48:29 +0000207
208 id1 = readarr[0];
209 id2 = readarr[1];
210
Sean Nelsoned479d22010-03-24 23:14:32 +0000211 msg_cdbg("%s: id1 0x%x, id2 0x%x\n", __func__, id1, id2);
Sean Nelson14ba6682010-02-26 05:48:29 +0000212
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000213 if (id1 == chip->manufacture_id && id2 == chip->model_id) {
Sean Nelson14ba6682010-02-26 05:48:29 +0000214 /* Print the status register to tell the
215 * user about possible write protection.
216 */
217 spi_prettyprint_status_register(flash);
218
219 return 1;
220 }
221
222 /* Test if this is a pure vendor match. */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000223 if (id1 == chip->manufacture_id && GENERIC_DEVICE_ID == chip->model_id)
Sean Nelson14ba6682010-02-26 05:48:29 +0000224 return 1;
225
226 /* Test if there is any vendor ID. */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000227 if (GENERIC_MANUF_ID == chip->manufacture_id && id1 != 0xff)
Sean Nelson14ba6682010-02-26 05:48:29 +0000228 return 1;
229
230 return 0;
231}
232
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000233int probe_spi_res1(struct flashctx *flash)
Sean Nelson14ba6682010-02-26 05:48:29 +0000234{
Mathias Krausea60faab2011-01-17 07:50:42 +0000235 static const unsigned char allff[] = {0xff, 0xff, 0xff};
236 static const unsigned char all00[] = {0x00, 0x00, 0x00};
Sean Nelson14ba6682010-02-26 05:48:29 +0000237 unsigned char readarr[3];
238 uint32_t id2;
Sean Nelson14ba6682010-02-26 05:48:29 +0000239
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +0000240 /* We only want one-byte RES if RDID and REMS are unusable. */
241
Sean Nelson14ba6682010-02-26 05:48:29 +0000242 /* Check if RDID is usable and does not return 0xff 0xff 0xff or
243 * 0x00 0x00 0x00. In that case, RES is pointless.
244 */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000245 if (!spi_rdid(flash, readarr, 3) && memcmp(readarr, allff, 3) &&
Sean Nelson14ba6682010-02-26 05:48:29 +0000246 memcmp(readarr, all00, 3)) {
247 msg_cdbg("Ignoring RES in favour of RDID.\n");
248 return 0;
249 }
250 /* Check if REMS is usable and does not return 0xff 0xff or
251 * 0x00 0x00. In that case, RES is pointless.
252 */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000253 if (!spi_rems(flash, readarr) &&
254 memcmp(readarr, allff, JEDEC_REMS_INSIZE) &&
Sean Nelson14ba6682010-02-26 05:48:29 +0000255 memcmp(readarr, all00, JEDEC_REMS_INSIZE)) {
256 msg_cdbg("Ignoring RES in favour of REMS.\n");
257 return 0;
258 }
259
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000260 if (spi_res(flash, readarr, 1)) {
Sean Nelson14ba6682010-02-26 05:48:29 +0000261 return 0;
Stefan Tauner355cbfd2011-05-28 02:37:14 +0000262 }
Sean Nelson14ba6682010-02-26 05:48:29 +0000263
Sean Nelson14ba6682010-02-26 05:48:29 +0000264 id2 = readarr[0];
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +0000265
Sean Nelsoned479d22010-03-24 23:14:32 +0000266 msg_cdbg("%s: id 0x%x\n", __func__, id2);
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +0000267
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000268 if (id2 != flash->chip->model_id)
Sean Nelson14ba6682010-02-26 05:48:29 +0000269 return 0;
270
271 /* Print the status register to tell the
272 * user about possible write protection.
273 */
274 spi_prettyprint_status_register(flash);
275 return 1;
276}
277
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000278int probe_spi_res2(struct flashctx *flash)
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +0000279{
280 unsigned char readarr[2];
281 uint32_t id1, id2;
282
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000283 if (spi_res(flash, readarr, 2)) {
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +0000284 return 0;
Stefan Tauner355cbfd2011-05-28 02:37:14 +0000285 }
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +0000286
287 id1 = readarr[0];
288 id2 = readarr[1];
289
290 msg_cdbg("%s: id1 0x%x, id2 0x%x\n", __func__, id1, id2);
291
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000292 if (id1 != flash->chip->manufacture_id || id2 != flash->chip->model_id)
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +0000293 return 0;
294
295 /* Print the status register to tell the
296 * user about possible write protection.
297 */
298 spi_prettyprint_status_register(flash);
299 return 1;
300}
301
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000302uint8_t spi_read_status_register(struct flashctx *flash)
Sean Nelson14ba6682010-02-26 05:48:29 +0000303{
Mathias Krausea60faab2011-01-17 07:50:42 +0000304 static const unsigned char cmd[JEDEC_RDSR_OUTSIZE] = { JEDEC_RDSR };
Sean Nelson14ba6682010-02-26 05:48:29 +0000305 /* FIXME: No workarounds for driver/hardware bugs in generic code. */
306 unsigned char readarr[2]; /* JEDEC_RDSR_INSIZE=1 but wbsio needs 2 */
307 int ret;
308
309 /* Read Status Register */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000310 ret = spi_send_command(flash, sizeof(cmd), sizeof(readarr), cmd,
311 readarr);
Sean Nelson14ba6682010-02-26 05:48:29 +0000312 if (ret)
Sean Nelsoned479d22010-03-24 23:14:32 +0000313 msg_cerr("RDSR failed!\n");
Sean Nelson14ba6682010-02-26 05:48:29 +0000314
315 return readarr[0];
316}
317
Stefan Tauner5609f9d2012-09-22 01:38:06 +0000318/* Common highest bit: Status Register Write Disable (SRWD). */
319void spi_prettyprint_status_register_srwd(uint8_t status)
320{
321 msg_cdbg("Chip status register: Status Register Write Disable (SRWD) is %sset\n",
322 (status & (1 << 7)) ? "" : "not ");
323}
324
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +0000325void spi_prettyprint_status_register_welwip(uint8_t status)
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +0000326{
327 msg_cdbg("Chip status register: Write Enable Latch (WEL) is "
328 "%sset\n", (status & (1 << 1)) ? "" : "not ");
329 msg_cdbg("Chip status register: Write In Progress (WIP/BUSY) is "
330 "%sset\n", (status & (1 << 0)) ? "" : "not ");
331}
332
333/* Prettyprint the status register. Common definitions. */
Stefan Tauner1ba08f62012-08-02 23:51:28 +0000334void spi_prettyprint_status_register_bp(uint8_t status, int bp)
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +0000335{
336 switch (bp) {
337 /* Fall through. */
Stefan Tauner1ba08f62012-08-02 23:51:28 +0000338 case 4:
339 msg_cdbg("Chip status register: Block Protect 4 (BP4) "
340 "is %sset\n", (status & (1 << 5)) ? "" : "not ");
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +0000341 case 3:
Stefan Tauner1ba08f62012-08-02 23:51:28 +0000342 msg_cdbg("Chip status register: Block Protect 3 (BP3) "
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +0000343 "is %sset\n", (status & (1 << 5)) ? "" : "not ");
344 case 2:
Stefan Tauner1ba08f62012-08-02 23:51:28 +0000345 msg_cdbg("Chip status register: Block Protect 2 (BP2) "
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +0000346 "is %sset\n", (status & (1 << 4)) ? "" : "not ");
347 case 1:
Stefan Tauner1ba08f62012-08-02 23:51:28 +0000348 msg_cdbg("Chip status register: Block Protect 1 (BP1) "
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +0000349 "is %sset\n", (status & (1 << 3)) ? "" : "not ");
350 case 0:
Stefan Tauner1ba08f62012-08-02 23:51:28 +0000351 msg_cdbg("Chip status register: Block Protect 0 (BP0) "
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +0000352 "is %sset\n", (status & (1 << 2)) ? "" : "not ");
353 }
354}
355
356/* Prettyprint the status register. Unnamed bits. */
357void spi_prettyprint_status_register_bit(uint8_t status, int bit)
358{
359 msg_cdbg("Chip status register: Bit %i "
360 "is %sset\n", bit, (status & (1 << bit)) ? "" : "not ");
361}
362
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +0000363static void spi_prettyprint_status_register_common(uint8_t status)
Sean Nelson14ba6682010-02-26 05:48:29 +0000364{
Stefan Tauner1ba08f62012-08-02 23:51:28 +0000365 spi_prettyprint_status_register_bp(status, 3);
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +0000366 spi_prettyprint_status_register_welwip(status);
Sean Nelson14ba6682010-02-26 05:48:29 +0000367}
368
369/* Prettyprint the status register. Works for
370 * ST M25P series
371 * MX MX25L series
372 */
373void spi_prettyprint_status_register_st_m25p(uint8_t status)
374{
Stefan Tauner5609f9d2012-09-22 01:38:06 +0000375 spi_prettyprint_status_register_srwd(status);
376 spi_prettyprint_status_register_bit(status, 6);
Sean Nelson14ba6682010-02-26 05:48:29 +0000377 spi_prettyprint_status_register_common(status);
378}
379
380void spi_prettyprint_status_register_sst25(uint8_t status)
381{
Sean Nelsoned479d22010-03-24 23:14:32 +0000382 msg_cdbg("Chip status register: Block Protect Write Disable "
Sean Nelson14ba6682010-02-26 05:48:29 +0000383 "(BPL) is %sset\n", (status & (1 << 7)) ? "" : "not ");
Sean Nelsoned479d22010-03-24 23:14:32 +0000384 msg_cdbg("Chip status register: Auto Address Increment Programming "
Sean Nelson14ba6682010-02-26 05:48:29 +0000385 "(AAI) is %sset\n", (status & (1 << 6)) ? "" : "not ");
386 spi_prettyprint_status_register_common(status);
387}
388
389/* Prettyprint the status register. Works for
390 * SST 25VF016
391 */
392void spi_prettyprint_status_register_sst25vf016(uint8_t status)
393{
Mathias Krausea60faab2011-01-17 07:50:42 +0000394 static const char *const bpt[] = {
Sean Nelson14ba6682010-02-26 05:48:29 +0000395 "none",
396 "1F0000H-1FFFFFH",
397 "1E0000H-1FFFFFH",
398 "1C0000H-1FFFFFH",
399 "180000H-1FFFFFH",
400 "100000H-1FFFFFH",
401 "all", "all"
402 };
403 spi_prettyprint_status_register_sst25(status);
Sean Nelsoned479d22010-03-24 23:14:32 +0000404 msg_cdbg("Resulting block protection : %s\n",
Sean Nelson14ba6682010-02-26 05:48:29 +0000405 bpt[(status & 0x1c) >> 2]);
406}
407
408void spi_prettyprint_status_register_sst25vf040b(uint8_t status)
409{
Mathias Krausea60faab2011-01-17 07:50:42 +0000410 static const char *const bpt[] = {
Sean Nelson14ba6682010-02-26 05:48:29 +0000411 "none",
412 "0x70000-0x7ffff",
413 "0x60000-0x7ffff",
414 "0x40000-0x7ffff",
415 "all blocks", "all blocks", "all blocks", "all blocks"
416 };
417 spi_prettyprint_status_register_sst25(status);
Sean Nelsoned479d22010-03-24 23:14:32 +0000418 msg_cdbg("Resulting block protection : %s\n",
Sean Nelson14ba6682010-02-26 05:48:29 +0000419 bpt[(status & 0x1c) >> 2]);
420}
421
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000422int spi_prettyprint_status_register(struct flashctx *flash)
Sean Nelson14ba6682010-02-26 05:48:29 +0000423{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000424 const struct flashchip *chip = flash->chip;
Sean Nelson14ba6682010-02-26 05:48:29 +0000425 uint8_t status;
426
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000427 status = spi_read_status_register(flash);
Sean Nelsoned479d22010-03-24 23:14:32 +0000428 msg_cdbg("Chip status register is %02x\n", status);
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000429 switch (chip->manufacture_id) {
Sean Nelson14ba6682010-02-26 05:48:29 +0000430 case ST_ID:
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000431 if (((chip->model_id & 0xff00) == 0x2000) ||
432 ((chip->model_id & 0xff00) == 0x2500))
Sean Nelson14ba6682010-02-26 05:48:29 +0000433 spi_prettyprint_status_register_st_m25p(status);
434 break;
Mattias Mattsson6eabe282010-09-15 23:31:03 +0000435 case MACRONIX_ID:
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000436 if ((chip->model_id & 0xff00) == 0x2000)
Sean Nelson14ba6682010-02-26 05:48:29 +0000437 spi_prettyprint_status_register_st_m25p(status);
438 break;
439 case SST_ID:
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000440 switch (chip->model_id) {
Sean Nelson14ba6682010-02-26 05:48:29 +0000441 case 0x2541:
442 spi_prettyprint_status_register_sst25vf016(status);
443 break;
444 case 0x8d:
445 case 0x258d:
446 spi_prettyprint_status_register_sst25vf040b(status);
447 break;
448 default:
449 spi_prettyprint_status_register_sst25(status);
450 break;
451 }
452 break;
453 }
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +0000454 return 0;
Sean Nelson14ba6682010-02-26 05:48:29 +0000455}
456
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000457int spi_chip_erase_60(struct flashctx *flash)
Sean Nelson14ba6682010-02-26 05:48:29 +0000458{
459 int result;
460 struct spi_command cmds[] = {
461 {
462 .writecnt = JEDEC_WREN_OUTSIZE,
463 .writearr = (const unsigned char[]){ JEDEC_WREN },
464 .readcnt = 0,
465 .readarr = NULL,
466 }, {
467 .writecnt = JEDEC_CE_60_OUTSIZE,
468 .writearr = (const unsigned char[]){ JEDEC_CE_60 },
469 .readcnt = 0,
470 .readarr = NULL,
471 }, {
472 .writecnt = 0,
473 .writearr = NULL,
474 .readcnt = 0,
475 .readarr = NULL,
476 }};
477
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000478 result = spi_send_multicommand(flash, cmds);
Sean Nelson14ba6682010-02-26 05:48:29 +0000479 if (result) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000480 msg_cerr("%s failed during command execution\n",
Sean Nelson14ba6682010-02-26 05:48:29 +0000481 __func__);
482 return result;
483 }
484 /* Wait until the Write-In-Progress bit is cleared.
485 * This usually takes 1-85 s, so wait in 1 s steps.
486 */
487 /* FIXME: We assume spi_read_status_register will never fail. */
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000488 while (spi_read_status_register(flash) & SPI_SR_WIP)
Sean Nelson14ba6682010-02-26 05:48:29 +0000489 programmer_delay(1000 * 1000);
Carl-Daniel Hailfingerb4061f62011-06-26 17:04:16 +0000490 /* FIXME: Check the status register for errors. */
Sean Nelson14ba6682010-02-26 05:48:29 +0000491 return 0;
492}
493
Stefan Tauner3c0fcd02012-09-21 12:46:56 +0000494int spi_chip_erase_62(struct flashctx *flash)
495{
496 int result;
497 struct spi_command cmds[] = {
498 {
499 .writecnt = JEDEC_WREN_OUTSIZE,
500 .writearr = (const unsigned char[]){ JEDEC_WREN },
501 .readcnt = 0,
502 .readarr = NULL,
503 }, {
504 .writecnt = JEDEC_CE_62_OUTSIZE,
505 .writearr = (const unsigned char[]){ JEDEC_CE_62 },
506 .readcnt = 0,
507 .readarr = NULL,
508 }, {
509 .writecnt = 0,
510 .writearr = NULL,
511 .readcnt = 0,
512 .readarr = NULL,
513 }};
514
515 result = spi_send_multicommand(flash, cmds);
516 if (result) {
517 msg_cerr("%s failed during command execution\n",
518 __func__);
519 return result;
520 }
521 /* Wait until the Write-In-Progress bit is cleared.
522 * This usually takes 2-5 s, so wait in 100 ms steps.
523 */
524 /* FIXME: We assume spi_read_status_register will never fail. */
525 while (spi_read_status_register(flash) & SPI_SR_WIP)
526 programmer_delay(100 * 1000);
527 /* FIXME: Check the status register for errors. */
528 return 0;
529}
530
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000531int spi_chip_erase_c7(struct flashctx *flash)
Sean Nelson14ba6682010-02-26 05:48:29 +0000532{
533 int result;
534 struct spi_command cmds[] = {
535 {
536 .writecnt = JEDEC_WREN_OUTSIZE,
537 .writearr = (const unsigned char[]){ JEDEC_WREN },
538 .readcnt = 0,
539 .readarr = NULL,
540 }, {
541 .writecnt = JEDEC_CE_C7_OUTSIZE,
542 .writearr = (const unsigned char[]){ JEDEC_CE_C7 },
543 .readcnt = 0,
544 .readarr = NULL,
545 }, {
546 .writecnt = 0,
547 .writearr = NULL,
548 .readcnt = 0,
549 .readarr = NULL,
550 }};
551
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000552 result = spi_send_multicommand(flash, cmds);
Sean Nelson14ba6682010-02-26 05:48:29 +0000553 if (result) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000554 msg_cerr("%s failed during command execution\n", __func__);
Sean Nelson14ba6682010-02-26 05:48:29 +0000555 return result;
556 }
557 /* Wait until the Write-In-Progress bit is cleared.
558 * This usually takes 1-85 s, so wait in 1 s steps.
559 */
560 /* FIXME: We assume spi_read_status_register will never fail. */
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000561 while (spi_read_status_register(flash) & SPI_SR_WIP)
Sean Nelson14ba6682010-02-26 05:48:29 +0000562 programmer_delay(1000 * 1000);
Carl-Daniel Hailfingerb4061f62011-06-26 17:04:16 +0000563 /* FIXME: Check the status register for errors. */
Sean Nelson14ba6682010-02-26 05:48:29 +0000564 return 0;
565}
566
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000567int spi_block_erase_52(struct flashctx *flash, unsigned int addr,
568 unsigned int blocklen)
Sean Nelson14ba6682010-02-26 05:48:29 +0000569{
570 int result;
571 struct spi_command cmds[] = {
572 {
573 .writecnt = JEDEC_WREN_OUTSIZE,
574 .writearr = (const unsigned char[]){ JEDEC_WREN },
575 .readcnt = 0,
576 .readarr = NULL,
577 }, {
578 .writecnt = JEDEC_BE_52_OUTSIZE,
579 .writearr = (const unsigned char[]){
580 JEDEC_BE_52,
581 (addr >> 16) & 0xff,
582 (addr >> 8) & 0xff,
583 (addr & 0xff)
584 },
585 .readcnt = 0,
586 .readarr = NULL,
587 }, {
588 .writecnt = 0,
589 .writearr = NULL,
590 .readcnt = 0,
591 .readarr = NULL,
592 }};
593
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000594 result = spi_send_multicommand(flash, cmds);
Sean Nelson14ba6682010-02-26 05:48:29 +0000595 if (result) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000596 msg_cerr("%s failed during command execution at address 0x%x\n",
Sean Nelson14ba6682010-02-26 05:48:29 +0000597 __func__, addr);
598 return result;
599 }
600 /* Wait until the Write-In-Progress bit is cleared.
601 * This usually takes 100-4000 ms, so wait in 100 ms steps.
602 */
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000603 while (spi_read_status_register(flash) & SPI_SR_WIP)
Sean Nelson14ba6682010-02-26 05:48:29 +0000604 programmer_delay(100 * 1000);
Carl-Daniel Hailfingerb4061f62011-06-26 17:04:16 +0000605 /* FIXME: Check the status register for errors. */
Sean Nelson14ba6682010-02-26 05:48:29 +0000606 return 0;
607}
608
609/* Block size is usually
610 * 64k for Macronix
611 * 32k for SST
612 * 4-32k non-uniform for EON
613 */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000614int spi_block_erase_d8(struct flashctx *flash, unsigned int addr,
615 unsigned int blocklen)
Sean Nelson14ba6682010-02-26 05:48:29 +0000616{
617 int result;
618 struct spi_command cmds[] = {
619 {
620 .writecnt = JEDEC_WREN_OUTSIZE,
621 .writearr = (const unsigned char[]){ JEDEC_WREN },
622 .readcnt = 0,
623 .readarr = NULL,
624 }, {
625 .writecnt = JEDEC_BE_D8_OUTSIZE,
626 .writearr = (const unsigned char[]){
627 JEDEC_BE_D8,
628 (addr >> 16) & 0xff,
629 (addr >> 8) & 0xff,
630 (addr & 0xff)
631 },
632 .readcnt = 0,
633 .readarr = NULL,
634 }, {
635 .writecnt = 0,
636 .writearr = NULL,
637 .readcnt = 0,
638 .readarr = NULL,
639 }};
640
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000641 result = spi_send_multicommand(flash, cmds);
Sean Nelson14ba6682010-02-26 05:48:29 +0000642 if (result) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000643 msg_cerr("%s failed during command execution at address 0x%x\n",
Sean Nelson14ba6682010-02-26 05:48:29 +0000644 __func__, addr);
645 return result;
646 }
647 /* Wait until the Write-In-Progress bit is cleared.
648 * This usually takes 100-4000 ms, so wait in 100 ms steps.
649 */
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000650 while (spi_read_status_register(flash) & SPI_SR_WIP)
Sean Nelson14ba6682010-02-26 05:48:29 +0000651 programmer_delay(100 * 1000);
Carl-Daniel Hailfingerb4061f62011-06-26 17:04:16 +0000652 /* FIXME: Check the status register for errors. */
Sean Nelson14ba6682010-02-26 05:48:29 +0000653 return 0;
654}
655
656/* Block size is usually
657 * 4k for PMC
658 */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000659int spi_block_erase_d7(struct flashctx *flash, unsigned int addr,
660 unsigned int blocklen)
Sean Nelson14ba6682010-02-26 05:48:29 +0000661{
662 int result;
663 struct spi_command cmds[] = {
664 {
665 .writecnt = JEDEC_WREN_OUTSIZE,
666 .writearr = (const unsigned char[]){ JEDEC_WREN },
667 .readcnt = 0,
668 .readarr = NULL,
669 }, {
670 .writecnt = JEDEC_BE_D7_OUTSIZE,
671 .writearr = (const unsigned char[]){
672 JEDEC_BE_D7,
673 (addr >> 16) & 0xff,
674 (addr >> 8) & 0xff,
675 (addr & 0xff)
676 },
677 .readcnt = 0,
678 .readarr = NULL,
679 }, {
680 .writecnt = 0,
681 .writearr = NULL,
682 .readcnt = 0,
683 .readarr = NULL,
684 }};
685
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000686 result = spi_send_multicommand(flash, cmds);
Sean Nelson14ba6682010-02-26 05:48:29 +0000687 if (result) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000688 msg_cerr("%s failed during command execution at address 0x%x\n",
Sean Nelson14ba6682010-02-26 05:48:29 +0000689 __func__, addr);
690 return result;
691 }
692 /* Wait until the Write-In-Progress bit is cleared.
693 * This usually takes 100-4000 ms, so wait in 100 ms steps.
694 */
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000695 while (spi_read_status_register(flash) & SPI_SR_WIP)
Sean Nelson14ba6682010-02-26 05:48:29 +0000696 programmer_delay(100 * 1000);
Carl-Daniel Hailfingerb4061f62011-06-26 17:04:16 +0000697 /* FIXME: Check the status register for errors. */
Sean Nelson14ba6682010-02-26 05:48:29 +0000698 return 0;
699}
700
Sean Nelson14ba6682010-02-26 05:48:29 +0000701/* Sector size is usually 4k, though Macronix eliteflash has 64k */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000702int spi_block_erase_20(struct flashctx *flash, unsigned int addr,
703 unsigned int blocklen)
Sean Nelson14ba6682010-02-26 05:48:29 +0000704{
705 int result;
706 struct spi_command cmds[] = {
707 {
708 .writecnt = JEDEC_WREN_OUTSIZE,
709 .writearr = (const unsigned char[]){ JEDEC_WREN },
710 .readcnt = 0,
711 .readarr = NULL,
712 }, {
713 .writecnt = JEDEC_SE_OUTSIZE,
714 .writearr = (const unsigned char[]){
715 JEDEC_SE,
716 (addr >> 16) & 0xff,
717 (addr >> 8) & 0xff,
718 (addr & 0xff)
719 },
720 .readcnt = 0,
721 .readarr = NULL,
722 }, {
723 .writecnt = 0,
724 .writearr = NULL,
725 .readcnt = 0,
726 .readarr = NULL,
727 }};
728
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000729 result = spi_send_multicommand(flash, cmds);
Sean Nelson14ba6682010-02-26 05:48:29 +0000730 if (result) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000731 msg_cerr("%s failed during command execution at address 0x%x\n",
Sean Nelson14ba6682010-02-26 05:48:29 +0000732 __func__, addr);
733 return result;
734 }
735 /* Wait until the Write-In-Progress bit is cleared.
736 * This usually takes 15-800 ms, so wait in 10 ms steps.
737 */
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000738 while (spi_read_status_register(flash) & SPI_SR_WIP)
Sean Nelson14ba6682010-02-26 05:48:29 +0000739 programmer_delay(10 * 1000);
Carl-Daniel Hailfingerb4061f62011-06-26 17:04:16 +0000740 /* FIXME: Check the status register for errors. */
Sean Nelson14ba6682010-02-26 05:48:29 +0000741 return 0;
742}
743
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000744int spi_block_erase_60(struct flashctx *flash, unsigned int addr,
745 unsigned int blocklen)
Sean Nelson14ba6682010-02-26 05:48:29 +0000746{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000747 if ((addr != 0) || (blocklen != flash->chip->total_size * 1024)) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000748 msg_cerr("%s called with incorrect arguments\n",
Sean Nelson14ba6682010-02-26 05:48:29 +0000749 __func__);
750 return -1;
751 }
752 return spi_chip_erase_60(flash);
753}
754
Stefan Tauner3c0fcd02012-09-21 12:46:56 +0000755int spi_block_erase_62(struct flashctx *flash, unsigned int addr, unsigned int blocklen)
756{
757 if ((addr != 0) || (blocklen != flash->chip->total_size * 1024)) {
758 msg_cerr("%s called with incorrect arguments\n",
759 __func__);
760 return -1;
761 }
762 return spi_chip_erase_62(flash);
763}
764
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000765int spi_block_erase_c7(struct flashctx *flash, unsigned int addr,
766 unsigned int blocklen)
Sean Nelson14ba6682010-02-26 05:48:29 +0000767{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000768 if ((addr != 0) || (blocklen != flash->chip->total_size * 1024)) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000769 msg_cerr("%s called with incorrect arguments\n",
Sean Nelson14ba6682010-02-26 05:48:29 +0000770 __func__);
771 return -1;
772 }
773 return spi_chip_erase_c7(flash);
774}
775
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000776erasefunc_t *spi_get_erasefn_from_opcode(uint8_t opcode)
777{
778 switch(opcode){
779 case 0xff:
780 case 0x00:
781 /* Not specified, assuming "not supported". */
782 return NULL;
783 case 0x20:
784 return &spi_block_erase_20;
785 case 0x52:
786 return &spi_block_erase_52;
787 case 0x60:
788 return &spi_block_erase_60;
789 case 0xc7:
790 return &spi_block_erase_c7;
791 case 0xd7:
792 return &spi_block_erase_d7;
793 case 0xd8:
794 return &spi_block_erase_d8;
795 default:
796 msg_cinfo("%s: unknown erase opcode (0x%02x). Please report "
797 "this at flashrom@flashrom.org\n", __func__, opcode);
798 return NULL;
799 }
800}
801
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000802int spi_write_status_enable(struct flashctx *flash)
Sean Nelson14ba6682010-02-26 05:48:29 +0000803{
Mathias Krausea60faab2011-01-17 07:50:42 +0000804 static const unsigned char cmd[JEDEC_EWSR_OUTSIZE] = { JEDEC_EWSR };
Sean Nelson14ba6682010-02-26 05:48:29 +0000805 int result;
806
807 /* Send EWSR (Enable Write Status Register). */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000808 result = spi_send_command(flash, sizeof(cmd), JEDEC_EWSR_INSIZE, cmd, NULL);
Sean Nelson14ba6682010-02-26 05:48:29 +0000809
810 if (result)
Sean Nelsoned479d22010-03-24 23:14:32 +0000811 msg_cerr("%s failed\n", __func__);
Sean Nelson14ba6682010-02-26 05:48:29 +0000812
813 return result;
814}
815
816/*
817 * This is according the SST25VF016 datasheet, who knows it is more
818 * generic that this...
819 */
Stefan Tauner96c2dfc2012-05-02 20:08:01 +0000820static int spi_write_status_register_flag(struct flashctx *flash, int status, const unsigned char enable_opcode)
Sean Nelson14ba6682010-02-26 05:48:29 +0000821{
822 int result;
Carl-Daniel Hailfinger174f55b2010-10-08 00:37:55 +0000823 int i = 0;
Stefan Tauner96c2dfc2012-05-02 20:08:01 +0000824 /*
825 * WRSR requires either EWSR or WREN depending on chip type.
826 * The code below relies on the fact hat EWSR and WREN have the same
827 * INSIZE and OUTSIZE.
Carl-Daniel Hailfinger174f55b2010-10-08 00:37:55 +0000828 */
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +0000829 struct spi_command cmds[] = {
830 {
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +0000831 .writecnt = JEDEC_WREN_OUTSIZE,
Stefan Tauner96c2dfc2012-05-02 20:08:01 +0000832 .writearr = (const unsigned char[]){ enable_opcode },
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +0000833 .readcnt = 0,
834 .readarr = NULL,
835 }, {
836 .writecnt = JEDEC_WRSR_OUTSIZE,
837 .writearr = (const unsigned char[]){ JEDEC_WRSR, (unsigned char) status },
838 .readcnt = 0,
839 .readarr = NULL,
840 }, {
841 .writecnt = 0,
842 .writearr = NULL,
843 .readcnt = 0,
844 .readarr = NULL,
845 }};
846
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000847 result = spi_send_multicommand(flash, cmds);
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +0000848 if (result) {
Stefan Tauner96c2dfc2012-05-02 20:08:01 +0000849 msg_cerr("%s failed during command execution\n", __func__);
Carl-Daniel Hailfinger174f55b2010-10-08 00:37:55 +0000850 /* No point in waiting for the command to complete if execution
851 * failed.
852 */
853 return result;
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +0000854 }
Carl-Daniel Hailfinger174f55b2010-10-08 00:37:55 +0000855 /* WRSR performs a self-timed erase before the changes take effect.
856 * This may take 50-85 ms in most cases, and some chips apparently
857 * allow running RDSR only once. Therefore pick an initial delay of
858 * 100 ms, then wait in 10 ms steps until a total of 5 s have elapsed.
859 */
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +0000860 programmer_delay(100 * 1000);
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000861 while (spi_read_status_register(flash) & SPI_SR_WIP) {
Carl-Daniel Hailfinger174f55b2010-10-08 00:37:55 +0000862 if (++i > 490) {
863 msg_cerr("Error: WIP bit after WRSR never cleared\n");
864 return TIMEOUT_ERROR;
865 }
866 programmer_delay(10 * 1000);
867 }
868 return 0;
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +0000869}
870
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000871int spi_write_status_register(struct flashctx *flash, int status)
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +0000872{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000873 int feature_bits = flash->chip->feature_bits;
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +0000874 int ret = 1;
875
Stefan Tauner96c2dfc2012-05-02 20:08:01 +0000876 if (!(feature_bits & (FEATURE_WRSR_WREN | FEATURE_WRSR_EWSR))) {
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +0000877 msg_cdbg("Missing status register write definition, assuming "
878 "EWSR is needed\n");
Stefan Tauner96c2dfc2012-05-02 20:08:01 +0000879 feature_bits |= FEATURE_WRSR_EWSR;
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +0000880 }
Stefan Tauner96c2dfc2012-05-02 20:08:01 +0000881 if (feature_bits & FEATURE_WRSR_WREN)
882 ret = spi_write_status_register_flag(flash, status, JEDEC_WREN);
883 if (ret && (feature_bits & FEATURE_WRSR_EWSR))
884 ret = spi_write_status_register_flag(flash, status, JEDEC_EWSR);
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +0000885 return ret;
886}
887
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000888int spi_byte_program(struct flashctx *flash, unsigned int addr,
889 uint8_t databyte)
Sean Nelson14ba6682010-02-26 05:48:29 +0000890{
891 int result;
892 struct spi_command cmds[] = {
893 {
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,
900 .writearr = (const unsigned char[]){
901 JEDEC_BYTE_PROGRAM,
902 (addr >> 16) & 0xff,
903 (addr >> 8) & 0xff,
904 (addr & 0xff),
905 databyte
906 },
907 .readcnt = 0,
908 .readarr = NULL,
909 }, {
910 .writecnt = 0,
911 .writearr = NULL,
912 .readcnt = 0,
913 .readarr = NULL,
914 }};
915
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000916 result = spi_send_multicommand(flash, cmds);
Sean Nelson14ba6682010-02-26 05:48:29 +0000917 if (result) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000918 msg_cerr("%s failed during command execution at address 0x%x\n",
Sean Nelson14ba6682010-02-26 05:48:29 +0000919 __func__, addr);
920 }
921 return result;
922}
923
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000924int spi_nbyte_program(struct flashctx *flash, unsigned int addr, uint8_t *bytes,
925 unsigned int len)
Sean Nelson14ba6682010-02-26 05:48:29 +0000926{
927 int result;
928 /* FIXME: Switch to malloc based on len unless that kills speed. */
929 unsigned char cmd[JEDEC_BYTE_PROGRAM_OUTSIZE - 1 + 256] = {
930 JEDEC_BYTE_PROGRAM,
931 (addr >> 16) & 0xff,
932 (addr >> 8) & 0xff,
933 (addr >> 0) & 0xff,
934 };
935 struct spi_command cmds[] = {
936 {
937 .writecnt = JEDEC_WREN_OUTSIZE,
938 .writearr = (const unsigned char[]){ JEDEC_WREN },
939 .readcnt = 0,
940 .readarr = NULL,
941 }, {
942 .writecnt = JEDEC_BYTE_PROGRAM_OUTSIZE - 1 + len,
943 .writearr = cmd,
944 .readcnt = 0,
945 .readarr = NULL,
946 }, {
947 .writecnt = 0,
948 .writearr = NULL,
949 .readcnt = 0,
950 .readarr = NULL,
951 }};
952
953 if (!len) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000954 msg_cerr("%s called for zero-length write\n", __func__);
Sean Nelson14ba6682010-02-26 05:48:29 +0000955 return 1;
956 }
957 if (len > 256) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000958 msg_cerr("%s called for too long a write\n", __func__);
Sean Nelson14ba6682010-02-26 05:48:29 +0000959 return 1;
960 }
961
962 memcpy(&cmd[4], bytes, len);
963
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000964 result = spi_send_multicommand(flash, cmds);
Sean Nelson14ba6682010-02-26 05:48:29 +0000965 if (result) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000966 msg_cerr("%s failed during command execution at address 0x%x\n",
Sean Nelson14ba6682010-02-26 05:48:29 +0000967 __func__, addr);
968 }
969 return result;
970}
971
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +0000972/* A generic brute-force block protection disable works like this:
973 * Write 0x00 to the status register. Check if any locks are still set (that
974 * part is chip specific). Repeat once.
975 */
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000976int spi_disable_blockprotect(struct flashctx *flash)
Sean Nelson14ba6682010-02-26 05:48:29 +0000977{
978 uint8_t status;
979 int result;
980
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000981 status = spi_read_status_register(flash);
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +0000982 /* If block protection is disabled, stop here. */
983 if ((status & 0x3c) == 0)
984 return 0;
985
Stefan Tauner87fbb772012-08-02 23:56:49 +0000986 msg_cdbg("Some block protection in effect, disabling... ");
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +0000987 result = spi_write_status_register(flash, status & ~0x3c);
988 if (result) {
Stefan Tauner87fbb772012-08-02 23:56:49 +0000989 msg_cerr("spi_write_status_register failed.\n");
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +0000990 return result;
991 }
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000992 status = spi_read_status_register(flash);
Sean Nelson14ba6682010-02-26 05:48:29 +0000993 if ((status & 0x3c) != 0) {
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +0000994 msg_cerr("Block protection could not be disabled!\n");
995 return 1;
996 }
Stefan Tauner87fbb772012-08-02 23:56:49 +0000997 msg_cdbg("done.\n");
Carl-Daniel Hailfingerfd7075a2010-07-29 13:09:18 +0000998 return 0;
999}
1000
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +00001001int spi_nbyte_read(struct flashctx *flash, unsigned int address, uint8_t *bytes,
1002 unsigned int len)
Sean Nelson14ba6682010-02-26 05:48:29 +00001003{
1004 const unsigned char cmd[JEDEC_READ_OUTSIZE] = {
1005 JEDEC_READ,
1006 (address >> 16) & 0xff,
1007 (address >> 8) & 0xff,
1008 (address >> 0) & 0xff,
1009 };
1010
1011 /* Send Read */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +00001012 return spi_send_command(flash, sizeof(cmd), len, cmd, bytes);
Sean Nelson14ba6682010-02-26 05:48:29 +00001013}
1014
1015/*
Carl-Daniel Hailfinger5824fbf2010-05-21 23:09:42 +00001016 * Read a part of the flash chip.
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +00001017 * FIXME: Use the chunk code from Michael Karcher instead.
Sean Nelson14ba6682010-02-26 05:48:29 +00001018 * Each page is read separately in chunks with a maximum size of chunksize.
1019 */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +00001020int spi_read_chunked(struct flashctx *flash, uint8_t *buf, unsigned int start,
1021 unsigned int len, unsigned int chunksize)
Sean Nelson14ba6682010-02-26 05:48:29 +00001022{
1023 int rc = 0;
Stefan Taunerc69c9c82011-11-23 09:13:48 +00001024 unsigned int i, j, starthere, lenhere, toread;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001025 unsigned int page_size = flash->chip->page_size;
Sean Nelson14ba6682010-02-26 05:48:29 +00001026
1027 /* Warning: This loop has a very unusual condition and body.
1028 * The loop needs to go through each page with at least one affected
1029 * byte. The lowest page number is (start / page_size) since that
1030 * division rounds down. The highest page number we want is the page
1031 * where the last byte of the range lives. That last byte has the
1032 * address (start + len - 1), thus the highest page number is
1033 * (start + len - 1) / page_size. Since we want to include that last
1034 * page as well, the loop condition uses <=.
1035 */
1036 for (i = start / page_size; i <= (start + len - 1) / page_size; i++) {
1037 /* Byte position of the first byte in the range in this page. */
1038 /* starthere is an offset to the base address of the chip. */
1039 starthere = max(start, i * page_size);
1040 /* Length of bytes in the range in this page. */
1041 lenhere = min(start + len, (i + 1) * page_size) - starthere;
1042 for (j = 0; j < lenhere; j += chunksize) {
1043 toread = min(chunksize, lenhere - j);
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +00001044 rc = spi_nbyte_read(flash, starthere + j, buf + starthere - start + j, toread);
Sean Nelson14ba6682010-02-26 05:48:29 +00001045 if (rc)
1046 break;
1047 }
1048 if (rc)
1049 break;
1050 }
1051
1052 return rc;
1053}
1054
1055/*
Carl-Daniel Hailfinger5824fbf2010-05-21 23:09:42 +00001056 * Write a part of the flash chip.
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +00001057 * FIXME: Use the chunk code from Michael Karcher instead.
Carl-Daniel Hailfinger5824fbf2010-05-21 23:09:42 +00001058 * Each page is written separately in chunks with a maximum size of chunksize.
1059 */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +00001060int spi_write_chunked(struct flashctx *flash, uint8_t *buf, unsigned int start,
1061 unsigned int len, unsigned int chunksize)
Carl-Daniel Hailfinger5824fbf2010-05-21 23:09:42 +00001062{
1063 int rc = 0;
Stefan Taunerc69c9c82011-11-23 09:13:48 +00001064 unsigned int i, j, starthere, lenhere, towrite;
Carl-Daniel Hailfinger5824fbf2010-05-21 23:09:42 +00001065 /* FIXME: page_size is the wrong variable. We need max_writechunk_size
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +00001066 * in struct flashctx to do this properly. All chips using
Carl-Daniel Hailfinger5824fbf2010-05-21 23:09:42 +00001067 * spi_chip_write_256 have page_size set to max_writechunk_size, so
1068 * we're OK for now.
1069 */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001070 unsigned int page_size = flash->chip->page_size;
Carl-Daniel Hailfinger5824fbf2010-05-21 23:09:42 +00001071
1072 /* Warning: This loop has a very unusual condition and body.
1073 * The loop needs to go through each page with at least one affected
1074 * byte. The lowest page number is (start / page_size) since that
1075 * division rounds down. The highest page number we want is the page
1076 * where the last byte of the range lives. That last byte has the
1077 * address (start + len - 1), thus the highest page number is
1078 * (start + len - 1) / page_size. Since we want to include that last
1079 * page as well, the loop condition uses <=.
1080 */
1081 for (i = start / page_size; i <= (start + len - 1) / page_size; i++) {
1082 /* Byte position of the first byte in the range in this page. */
1083 /* starthere is an offset to the base address of the chip. */
1084 starthere = max(start, i * page_size);
1085 /* Length of bytes in the range in this page. */
1086 lenhere = min(start + len, (i + 1) * page_size) - starthere;
1087 for (j = 0; j < lenhere; j += chunksize) {
1088 towrite = min(chunksize, lenhere - j);
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +00001089 rc = spi_nbyte_program(flash, starthere + j, buf + starthere - start + j, towrite);
Carl-Daniel Hailfinger5824fbf2010-05-21 23:09:42 +00001090 if (rc)
1091 break;
Stefan Tauner5e695ab2012-05-06 17:03:40 +00001092 while (spi_read_status_register(flash) & SPI_SR_WIP)
Carl-Daniel Hailfinger5824fbf2010-05-21 23:09:42 +00001093 programmer_delay(10);
1094 }
1095 if (rc)
1096 break;
1097 }
1098
1099 return rc;
1100}
1101
1102/*
Sean Nelson14ba6682010-02-26 05:48:29 +00001103 * Program chip using byte programming. (SLOW!)
1104 * This is for chips which can only handle one byte writes
1105 * and for chips where memory mapped programming is impossible
1106 * (e.g. due to size constraints in IT87* for over 512 kB)
1107 */
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +00001108/* real chunksize is 1, logical chunksize is 1 */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +00001109int spi_chip_write_1(struct flashctx *flash, uint8_t *buf, unsigned int start,
1110 unsigned int len)
Sean Nelson14ba6682010-02-26 05:48:29 +00001111{
Stefan Taunerc69c9c82011-11-23 09:13:48 +00001112 unsigned int i;
1113 int result = 0;
Sean Nelson14ba6682010-02-26 05:48:29 +00001114
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +00001115 for (i = start; i < start + len; i++) {
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +00001116 result = spi_byte_program(flash, i, buf[i - start]);
Sean Nelson14ba6682010-02-26 05:48:29 +00001117 if (result)
1118 return 1;
Stefan Tauner5e695ab2012-05-06 17:03:40 +00001119 while (spi_read_status_register(flash) & SPI_SR_WIP)
Sean Nelson14ba6682010-02-26 05:48:29 +00001120 programmer_delay(10);
1121 }
1122
1123 return 0;
1124}
1125
Nico Huber7bca1262012-06-15 22:28:12 +00001126int default_spi_write_aai(struct flashctx *flash, uint8_t *buf, unsigned int start, unsigned int len)
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +00001127{
1128 uint32_t pos = start;
Sean Nelson14ba6682010-02-26 05:48:29 +00001129 int result;
Carl-Daniel Hailfinger9c62d112010-06-20 10:41:35 +00001130 unsigned char cmd[JEDEC_AAI_WORD_PROGRAM_CONT_OUTSIZE] = {
1131 JEDEC_AAI_WORD_PROGRAM,
1132 };
1133 struct spi_command cmds[] = {
1134 {
1135 .writecnt = JEDEC_WREN_OUTSIZE,
1136 .writearr = (const unsigned char[]){ JEDEC_WREN },
1137 .readcnt = 0,
1138 .readarr = NULL,
1139 }, {
1140 .writecnt = JEDEC_AAI_WORD_PROGRAM_OUTSIZE,
1141 .writearr = (const unsigned char[]){
1142 JEDEC_AAI_WORD_PROGRAM,
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +00001143 (start >> 16) & 0xff,
1144 (start >> 8) & 0xff,
1145 (start & 0xff),
Carl-Daniel Hailfinger9c62d112010-06-20 10:41:35 +00001146 buf[0],
1147 buf[1]
1148 },
1149 .readcnt = 0,
1150 .readarr = NULL,
1151 }, {
1152 .writecnt = 0,
1153 .writearr = NULL,
1154 .readcnt = 0,
1155 .readarr = NULL,
1156 }};
Sean Nelson14ba6682010-02-26 05:48:29 +00001157
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +00001158 switch (flash->pgm->spi.type) {
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +00001159#if CONFIG_INTERNAL == 1
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001160#if defined(__i386__) || defined(__x86_64__)
Carl-Daniel Hailfinger9c62d112010-06-20 10:41:35 +00001161 case SPI_CONTROLLER_IT87XX:
Sean Nelson14ba6682010-02-26 05:48:29 +00001162 case SPI_CONTROLLER_WBSIO:
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +00001163 msg_perr("%s: impossible with this SPI controller,"
Sean Nelson14ba6682010-02-26 05:48:29 +00001164 " degrading to byte program\n", __func__);
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +00001165 return spi_chip_write_1(flash, buf, start, len);
Sean Nelson14ba6682010-02-26 05:48:29 +00001166#endif
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001167#endif
Sean Nelson14ba6682010-02-26 05:48:29 +00001168 default:
1169 break;
1170 }
Carl-Daniel Hailfinger9c62d112010-06-20 10:41:35 +00001171
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +00001172 /* The even start address and even length requirements can be either
1173 * honored outside this function, or we can call spi_byte_program
1174 * for the first and/or last byte and use AAI for the rest.
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +00001175 * FIXME: Move this to generic code.
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +00001176 */
Carl-Daniel Hailfinger9c62d112010-06-20 10:41:35 +00001177 /* The data sheet requires a start address with the low bit cleared. */
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +00001178 if (start % 2) {
Carl-Daniel Hailfinger9c62d112010-06-20 10:41:35 +00001179 msg_cerr("%s: start address not even! Please report a bug at "
1180 "flashrom@flashrom.org\n", __func__);
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +00001181 if (spi_chip_write_1(flash, buf, start, start % 2))
1182 return SPI_GENERIC_ERROR;
1183 pos += start % 2;
Carl-Daniel Hailfingerccfe0ac2010-10-27 22:07:11 +00001184 cmds[1].writearr = (const unsigned char[]){
1185 JEDEC_AAI_WORD_PROGRAM,
1186 (pos >> 16) & 0xff,
1187 (pos >> 8) & 0xff,
1188 (pos & 0xff),
1189 buf[pos - start],
1190 buf[pos - start + 1]
1191 };
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +00001192 /* Do not return an error for now. */
1193 //return SPI_GENERIC_ERROR;
Carl-Daniel Hailfinger9c62d112010-06-20 10:41:35 +00001194 }
1195 /* The data sheet requires total AAI write length to be even. */
1196 if (len % 2) {
1197 msg_cerr("%s: total write length not even! Please report a "
1198 "bug at flashrom@flashrom.org\n", __func__);
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +00001199 /* Do not return an error for now. */
1200 //return SPI_GENERIC_ERROR;
Carl-Daniel Hailfinger9c62d112010-06-20 10:41:35 +00001201 }
1202
Carl-Daniel Hailfinger9c62d112010-06-20 10:41:35 +00001203
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +00001204 result = spi_send_multicommand(flash, cmds);
Carl-Daniel Hailfinger9c62d112010-06-20 10:41:35 +00001205 if (result) {
1206 msg_cerr("%s failed during start command execution\n",
1207 __func__);
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +00001208 /* FIXME: Should we send WRDI here as well to make sure the chip
1209 * is not in AAI mode?
1210 */
Sean Nelson14ba6682010-02-26 05:48:29 +00001211 return result;
Sean Nelson14ba6682010-02-26 05:48:29 +00001212 }
Stefan Tauner5e695ab2012-05-06 17:03:40 +00001213 while (spi_read_status_register(flash) & SPI_SR_WIP)
Carl-Daniel Hailfinger9c62d112010-06-20 10:41:35 +00001214 programmer_delay(10);
1215
1216 /* We already wrote 2 bytes in the multicommand step. */
1217 pos += 2;
1218
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +00001219 /* Are there at least two more bytes to write? */
1220 while (pos < start + len - 1) {
Carl-Daniel Hailfingerccfe0ac2010-10-27 22:07:11 +00001221 cmd[1] = buf[pos++ - start];
1222 cmd[2] = buf[pos++ - start];
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +00001223 spi_send_command(flash, JEDEC_AAI_WORD_PROGRAM_CONT_OUTSIZE, 0,
1224 cmd, NULL);
Stefan Tauner5e695ab2012-05-06 17:03:40 +00001225 while (spi_read_status_register(flash) & SPI_SR_WIP)
Carl-Daniel Hailfinger9c62d112010-06-20 10:41:35 +00001226 programmer_delay(10);
1227 }
1228
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +00001229 /* Use WRDI to exit AAI mode. This needs to be done before issuing any
1230 * other non-AAI command.
1231 */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +00001232 spi_write_disable(flash);
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +00001233
1234 /* Write remaining byte (if any). */
1235 if (pos < start + len) {
Carl-Daniel Hailfingerccfe0ac2010-10-27 22:07:11 +00001236 if (spi_chip_write_1(flash, buf + pos - start, pos, pos % 2))
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +00001237 return SPI_GENERIC_ERROR;
1238 pos += pos % 2;
1239 }
1240
Sean Nelson14ba6682010-02-26 05:48:29 +00001241 return 0;
1242}