blob: 4f1452eb624802ee32d292e506ba258970bfd76d [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
Stefan Tauner6ee37e22012-12-29 15:03:51 +0000151 if (id1 == chip->manufacture_id && id2 == chip->model_id)
Sean Nelson14ba6682010-02-26 05:48:29 +0000152 return 1;
Sean Nelson14ba6682010-02-26 05:48:29 +0000153
154 /* Test if this is a pure vendor match. */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000155 if (id1 == chip->manufacture_id && GENERIC_DEVICE_ID == chip->model_id)
Sean Nelson14ba6682010-02-26 05:48:29 +0000156 return 1;
157
158 /* Test if there is any vendor ID. */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000159 if (GENERIC_MANUF_ID == chip->manufacture_id && id1 != 0xff)
Sean Nelson14ba6682010-02-26 05:48:29 +0000160 return 1;
161
162 return 0;
163}
164
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000165int probe_spi_rdid(struct flashctx *flash)
Sean Nelson14ba6682010-02-26 05:48:29 +0000166{
167 return probe_spi_rdid_generic(flash, 3);
168}
169
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000170int probe_spi_rdid4(struct flashctx *flash)
Sean Nelson14ba6682010-02-26 05:48:29 +0000171{
Carl-Daniel Hailfinger8ae500e2010-06-20 10:39:33 +0000172 /* Some SPI controllers do not support commands with writecnt=1 and
173 * readcnt=4.
174 */
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000175 switch (flash->pgm->spi.type) {
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000176#if CONFIG_INTERNAL == 1
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000177#if defined(__i386__) || defined(__x86_64__)
Carl-Daniel Hailfinger8ae500e2010-06-20 10:39:33 +0000178 case SPI_CONTROLLER_IT87XX:
Sean Nelson14ba6682010-02-26 05:48:29 +0000179 case SPI_CONTROLLER_WBSIO:
Carl-Daniel Hailfinger8ae500e2010-06-20 10:39:33 +0000180 msg_cinfo("4 byte RDID not supported on this SPI controller\n");
181 return 0;
182 break;
Sean Nelson14ba6682010-02-26 05:48:29 +0000183#endif
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000184#endif
Sean Nelson14ba6682010-02-26 05:48:29 +0000185 default:
Carl-Daniel Hailfinger8ae500e2010-06-20 10:39:33 +0000186 return probe_spi_rdid_generic(flash, 4);
Sean Nelson14ba6682010-02-26 05:48:29 +0000187 }
188
189 return 0;
190}
191
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000192int probe_spi_rems(struct flashctx *flash)
Sean Nelson14ba6682010-02-26 05:48:29 +0000193{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000194 const struct flashchip *chip = flash->chip;
Sean Nelson14ba6682010-02-26 05:48:29 +0000195 unsigned char readarr[JEDEC_REMS_INSIZE];
196 uint32_t id1, id2;
197
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000198 if (spi_rems(flash, readarr)) {
Sean Nelson14ba6682010-02-26 05:48:29 +0000199 return 0;
Stefan Tauner355cbfd2011-05-28 02:37:14 +0000200 }
Sean Nelson14ba6682010-02-26 05:48:29 +0000201
202 id1 = readarr[0];
203 id2 = readarr[1];
204
Sean Nelsoned479d22010-03-24 23:14:32 +0000205 msg_cdbg("%s: id1 0x%x, id2 0x%x\n", __func__, id1, id2);
Sean Nelson14ba6682010-02-26 05:48:29 +0000206
Stefan Tauner6ee37e22012-12-29 15:03:51 +0000207 if (id1 == chip->manufacture_id && id2 == chip->model_id)
Sean Nelson14ba6682010-02-26 05:48:29 +0000208 return 1;
Sean Nelson14ba6682010-02-26 05:48:29 +0000209
210 /* Test if this is a pure vendor match. */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000211 if (id1 == chip->manufacture_id && GENERIC_DEVICE_ID == chip->model_id)
Sean Nelson14ba6682010-02-26 05:48:29 +0000212 return 1;
213
214 /* Test if there is any vendor ID. */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000215 if (GENERIC_MANUF_ID == chip->manufacture_id && id1 != 0xff)
Sean Nelson14ba6682010-02-26 05:48:29 +0000216 return 1;
217
218 return 0;
219}
220
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000221int probe_spi_res1(struct flashctx *flash)
Sean Nelson14ba6682010-02-26 05:48:29 +0000222{
Mathias Krausea60faab2011-01-17 07:50:42 +0000223 static const unsigned char allff[] = {0xff, 0xff, 0xff};
224 static const unsigned char all00[] = {0x00, 0x00, 0x00};
Sean Nelson14ba6682010-02-26 05:48:29 +0000225 unsigned char readarr[3];
226 uint32_t id2;
Sean Nelson14ba6682010-02-26 05:48:29 +0000227
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +0000228 /* We only want one-byte RES if RDID and REMS are unusable. */
229
Sean Nelson14ba6682010-02-26 05:48:29 +0000230 /* Check if RDID is usable and does not return 0xff 0xff 0xff or
231 * 0x00 0x00 0x00. In that case, RES is pointless.
232 */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000233 if (!spi_rdid(flash, readarr, 3) && memcmp(readarr, allff, 3) &&
Sean Nelson14ba6682010-02-26 05:48:29 +0000234 memcmp(readarr, all00, 3)) {
235 msg_cdbg("Ignoring RES in favour of RDID.\n");
236 return 0;
237 }
238 /* Check if REMS is usable and does not return 0xff 0xff or
239 * 0x00 0x00. In that case, RES is pointless.
240 */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000241 if (!spi_rems(flash, readarr) &&
242 memcmp(readarr, allff, JEDEC_REMS_INSIZE) &&
Sean Nelson14ba6682010-02-26 05:48:29 +0000243 memcmp(readarr, all00, JEDEC_REMS_INSIZE)) {
244 msg_cdbg("Ignoring RES in favour of REMS.\n");
245 return 0;
246 }
247
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000248 if (spi_res(flash, readarr, 1)) {
Sean Nelson14ba6682010-02-26 05:48:29 +0000249 return 0;
Stefan Tauner355cbfd2011-05-28 02:37:14 +0000250 }
Sean Nelson14ba6682010-02-26 05:48:29 +0000251
Sean Nelson14ba6682010-02-26 05:48:29 +0000252 id2 = readarr[0];
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +0000253
Sean Nelsoned479d22010-03-24 23:14:32 +0000254 msg_cdbg("%s: id 0x%x\n", __func__, id2);
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +0000255
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000256 if (id2 != flash->chip->model_id)
Sean Nelson14ba6682010-02-26 05:48:29 +0000257 return 0;
258
Sean Nelson14ba6682010-02-26 05:48:29 +0000259 return 1;
260}
261
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000262int probe_spi_res2(struct flashctx *flash)
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +0000263{
264 unsigned char readarr[2];
265 uint32_t id1, id2;
266
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000267 if (spi_res(flash, readarr, 2)) {
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +0000268 return 0;
Stefan Tauner355cbfd2011-05-28 02:37:14 +0000269 }
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +0000270
271 id1 = readarr[0];
272 id2 = readarr[1];
273
274 msg_cdbg("%s: id1 0x%x, id2 0x%x\n", __func__, id1, id2);
275
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000276 if (id1 != flash->chip->manufacture_id || id2 != flash->chip->model_id)
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +0000277 return 0;
278
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +0000279 return 1;
280}
281
Stefan Tauner3f5e35d2013-04-19 01:58:33 +0000282int probe_spi_res3(struct flashctx *flash)
283{
284 unsigned char readarr[3];
285 uint32_t id1, id2;
286
287 if (spi_res(flash, readarr, 3)) {
288 return 0;
289 }
290
291 id1 = (readarr[0] << 8) | readarr[1];
292 id2 = readarr[2];
293
294 msg_cdbg("%s: id1 0x%x, id2 0x%x\n", __func__, id1, id2);
295
296 if (id1 != flash->chip->manufacture_id || id2 != flash->chip->model_id)
297 return 0;
298
299 return 1;
300}
301
Stefan Tauner57794ac2012-12-29 15:04:20 +0000302/* Only used for some Atmel chips. */
303int probe_spi_at25f(struct flashctx *flash)
304{
305 static const unsigned char cmd[AT25F_RDID_OUTSIZE] = { AT25F_RDID };
306 unsigned char readarr[AT25F_RDID_INSIZE];
307 uint32_t id1;
308 uint32_t id2;
309
310 if (spi_send_command(flash, sizeof(cmd), sizeof(readarr), cmd, readarr))
311 return 0;
312
313 id1 = readarr[0];
314 id2 = readarr[1];
315
316 msg_cdbg("%s: id1 0x%02x, id2 0x%02x\n", __func__, id1, id2);
317
318 if (id1 == flash->chip->manufacture_id && id2 == flash->chip->model_id)
319 return 1;
320
321 return 0;
322}
323
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000324int spi_chip_erase_60(struct flashctx *flash)
Sean Nelson14ba6682010-02-26 05:48:29 +0000325{
326 int result;
327 struct spi_command cmds[] = {
328 {
329 .writecnt = JEDEC_WREN_OUTSIZE,
330 .writearr = (const unsigned char[]){ JEDEC_WREN },
331 .readcnt = 0,
332 .readarr = NULL,
333 }, {
334 .writecnt = JEDEC_CE_60_OUTSIZE,
335 .writearr = (const unsigned char[]){ JEDEC_CE_60 },
336 .readcnt = 0,
337 .readarr = NULL,
338 }, {
339 .writecnt = 0,
340 .writearr = NULL,
341 .readcnt = 0,
342 .readarr = NULL,
343 }};
344
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000345 result = spi_send_multicommand(flash, cmds);
Sean Nelson14ba6682010-02-26 05:48:29 +0000346 if (result) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000347 msg_cerr("%s failed during command execution\n",
Sean Nelson14ba6682010-02-26 05:48:29 +0000348 __func__);
349 return result;
350 }
351 /* Wait until the Write-In-Progress bit is cleared.
352 * This usually takes 1-85 s, so wait in 1 s steps.
353 */
354 /* FIXME: We assume spi_read_status_register will never fail. */
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000355 while (spi_read_status_register(flash) & SPI_SR_WIP)
Sean Nelson14ba6682010-02-26 05:48:29 +0000356 programmer_delay(1000 * 1000);
Carl-Daniel Hailfingerb4061f62011-06-26 17:04:16 +0000357 /* FIXME: Check the status register for errors. */
Sean Nelson14ba6682010-02-26 05:48:29 +0000358 return 0;
359}
360
Stefan Tauner3c0fcd02012-09-21 12:46:56 +0000361int spi_chip_erase_62(struct flashctx *flash)
362{
363 int result;
364 struct spi_command cmds[] = {
365 {
366 .writecnt = JEDEC_WREN_OUTSIZE,
367 .writearr = (const unsigned char[]){ JEDEC_WREN },
368 .readcnt = 0,
369 .readarr = NULL,
370 }, {
371 .writecnt = JEDEC_CE_62_OUTSIZE,
372 .writearr = (const unsigned char[]){ JEDEC_CE_62 },
373 .readcnt = 0,
374 .readarr = NULL,
375 }, {
376 .writecnt = 0,
377 .writearr = NULL,
378 .readcnt = 0,
379 .readarr = NULL,
380 }};
381
382 result = spi_send_multicommand(flash, cmds);
383 if (result) {
384 msg_cerr("%s failed during command execution\n",
385 __func__);
386 return result;
387 }
388 /* Wait until the Write-In-Progress bit is cleared.
389 * This usually takes 2-5 s, so wait in 100 ms steps.
390 */
391 /* FIXME: We assume spi_read_status_register will never fail. */
392 while (spi_read_status_register(flash) & SPI_SR_WIP)
393 programmer_delay(100 * 1000);
394 /* FIXME: Check the status register for errors. */
395 return 0;
396}
397
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000398int spi_chip_erase_c7(struct flashctx *flash)
Sean Nelson14ba6682010-02-26 05:48:29 +0000399{
400 int result;
401 struct spi_command cmds[] = {
402 {
403 .writecnt = JEDEC_WREN_OUTSIZE,
404 .writearr = (const unsigned char[]){ JEDEC_WREN },
405 .readcnt = 0,
406 .readarr = NULL,
407 }, {
408 .writecnt = JEDEC_CE_C7_OUTSIZE,
409 .writearr = (const unsigned char[]){ JEDEC_CE_C7 },
410 .readcnt = 0,
411 .readarr = NULL,
412 }, {
413 .writecnt = 0,
414 .writearr = NULL,
415 .readcnt = 0,
416 .readarr = NULL,
417 }};
418
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000419 result = spi_send_multicommand(flash, cmds);
Sean Nelson14ba6682010-02-26 05:48:29 +0000420 if (result) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000421 msg_cerr("%s failed during command execution\n", __func__);
Sean Nelson14ba6682010-02-26 05:48:29 +0000422 return result;
423 }
424 /* Wait until the Write-In-Progress bit is cleared.
425 * This usually takes 1-85 s, so wait in 1 s steps.
426 */
427 /* FIXME: We assume spi_read_status_register will never fail. */
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000428 while (spi_read_status_register(flash) & SPI_SR_WIP)
Sean Nelson14ba6682010-02-26 05:48:29 +0000429 programmer_delay(1000 * 1000);
Carl-Daniel Hailfingerb4061f62011-06-26 17:04:16 +0000430 /* FIXME: Check the status register for errors. */
Sean Nelson14ba6682010-02-26 05:48:29 +0000431 return 0;
432}
433
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000434int spi_block_erase_52(struct flashctx *flash, unsigned int addr,
435 unsigned int blocklen)
Sean Nelson14ba6682010-02-26 05:48:29 +0000436{
437 int result;
438 struct spi_command cmds[] = {
439 {
440 .writecnt = JEDEC_WREN_OUTSIZE,
441 .writearr = (const unsigned char[]){ JEDEC_WREN },
442 .readcnt = 0,
443 .readarr = NULL,
444 }, {
445 .writecnt = JEDEC_BE_52_OUTSIZE,
446 .writearr = (const unsigned char[]){
447 JEDEC_BE_52,
448 (addr >> 16) & 0xff,
449 (addr >> 8) & 0xff,
450 (addr & 0xff)
451 },
452 .readcnt = 0,
453 .readarr = NULL,
454 }, {
455 .writecnt = 0,
456 .writearr = NULL,
457 .readcnt = 0,
458 .readarr = NULL,
459 }};
460
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000461 result = spi_send_multicommand(flash, cmds);
Sean Nelson14ba6682010-02-26 05:48:29 +0000462 if (result) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000463 msg_cerr("%s failed during command execution at address 0x%x\n",
Sean Nelson14ba6682010-02-26 05:48:29 +0000464 __func__, addr);
465 return result;
466 }
467 /* Wait until the Write-In-Progress bit is cleared.
468 * This usually takes 100-4000 ms, so wait in 100 ms steps.
469 */
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000470 while (spi_read_status_register(flash) & SPI_SR_WIP)
Sean Nelson14ba6682010-02-26 05:48:29 +0000471 programmer_delay(100 * 1000);
Carl-Daniel Hailfingerb4061f62011-06-26 17:04:16 +0000472 /* FIXME: Check the status register for errors. */
Sean Nelson14ba6682010-02-26 05:48:29 +0000473 return 0;
474}
475
476/* Block size is usually
477 * 64k for Macronix
478 * 32k for SST
479 * 4-32k non-uniform for EON
480 */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000481int spi_block_erase_d8(struct flashctx *flash, unsigned int addr,
482 unsigned int blocklen)
Sean Nelson14ba6682010-02-26 05:48:29 +0000483{
484 int result;
485 struct spi_command cmds[] = {
486 {
487 .writecnt = JEDEC_WREN_OUTSIZE,
488 .writearr = (const unsigned char[]){ JEDEC_WREN },
489 .readcnt = 0,
490 .readarr = NULL,
491 }, {
492 .writecnt = JEDEC_BE_D8_OUTSIZE,
493 .writearr = (const unsigned char[]){
494 JEDEC_BE_D8,
495 (addr >> 16) & 0xff,
496 (addr >> 8) & 0xff,
497 (addr & 0xff)
498 },
499 .readcnt = 0,
500 .readarr = NULL,
501 }, {
502 .writecnt = 0,
503 .writearr = NULL,
504 .readcnt = 0,
505 .readarr = NULL,
506 }};
507
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000508 result = spi_send_multicommand(flash, cmds);
Sean Nelson14ba6682010-02-26 05:48:29 +0000509 if (result) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000510 msg_cerr("%s failed during command execution at address 0x%x\n",
Sean Nelson14ba6682010-02-26 05:48:29 +0000511 __func__, addr);
512 return result;
513 }
514 /* Wait until the Write-In-Progress bit is cleared.
515 * This usually takes 100-4000 ms, so wait in 100 ms steps.
516 */
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000517 while (spi_read_status_register(flash) & SPI_SR_WIP)
Sean Nelson14ba6682010-02-26 05:48:29 +0000518 programmer_delay(100 * 1000);
Carl-Daniel Hailfingerb4061f62011-06-26 17:04:16 +0000519 /* FIXME: Check the status register for errors. */
Sean Nelson14ba6682010-02-26 05:48:29 +0000520 return 0;
521}
522
523/* Block size is usually
524 * 4k for PMC
525 */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000526int spi_block_erase_d7(struct flashctx *flash, unsigned int addr,
527 unsigned int blocklen)
Sean Nelson14ba6682010-02-26 05:48:29 +0000528{
529 int result;
530 struct spi_command cmds[] = {
531 {
532 .writecnt = JEDEC_WREN_OUTSIZE,
533 .writearr = (const unsigned char[]){ JEDEC_WREN },
534 .readcnt = 0,
535 .readarr = NULL,
536 }, {
537 .writecnt = JEDEC_BE_D7_OUTSIZE,
538 .writearr = (const unsigned char[]){
539 JEDEC_BE_D7,
540 (addr >> 16) & 0xff,
541 (addr >> 8) & 0xff,
542 (addr & 0xff)
543 },
544 .readcnt = 0,
545 .readarr = NULL,
546 }, {
547 .writecnt = 0,
548 .writearr = NULL,
549 .readcnt = 0,
550 .readarr = NULL,
551 }};
552
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000553 result = spi_send_multicommand(flash, cmds);
Sean Nelson14ba6682010-02-26 05:48:29 +0000554 if (result) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000555 msg_cerr("%s failed during command execution at address 0x%x\n",
Sean Nelson14ba6682010-02-26 05:48:29 +0000556 __func__, addr);
557 return result;
558 }
559 /* Wait until the Write-In-Progress bit is cleared.
560 * This usually takes 100-4000 ms, so wait in 100 ms steps.
561 */
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000562 while (spi_read_status_register(flash) & SPI_SR_WIP)
Sean Nelson14ba6682010-02-26 05:48:29 +0000563 programmer_delay(100 * 1000);
Carl-Daniel Hailfingerb4061f62011-06-26 17:04:16 +0000564 /* FIXME: Check the status register for errors. */
Sean Nelson14ba6682010-02-26 05:48:29 +0000565 return 0;
566}
567
Sean Nelson14ba6682010-02-26 05:48:29 +0000568/* Sector size is usually 4k, though Macronix eliteflash has 64k */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000569int spi_block_erase_20(struct flashctx *flash, unsigned int addr,
570 unsigned int blocklen)
Sean Nelson14ba6682010-02-26 05:48:29 +0000571{
572 int result;
573 struct spi_command cmds[] = {
574 {
575 .writecnt = JEDEC_WREN_OUTSIZE,
576 .writearr = (const unsigned char[]){ JEDEC_WREN },
577 .readcnt = 0,
578 .readarr = NULL,
579 }, {
580 .writecnt = JEDEC_SE_OUTSIZE,
581 .writearr = (const unsigned char[]){
582 JEDEC_SE,
583 (addr >> 16) & 0xff,
584 (addr >> 8) & 0xff,
585 (addr & 0xff)
586 },
587 .readcnt = 0,
588 .readarr = NULL,
589 }, {
590 .writecnt = 0,
591 .writearr = NULL,
592 .readcnt = 0,
593 .readarr = NULL,
594 }};
595
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000596 result = spi_send_multicommand(flash, cmds);
Sean Nelson14ba6682010-02-26 05:48:29 +0000597 if (result) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000598 msg_cerr("%s failed during command execution at address 0x%x\n",
Sean Nelson14ba6682010-02-26 05:48:29 +0000599 __func__, addr);
600 return result;
601 }
602 /* Wait until the Write-In-Progress bit is cleared.
603 * This usually takes 15-800 ms, so wait in 10 ms steps.
604 */
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000605 while (spi_read_status_register(flash) & SPI_SR_WIP)
Sean Nelson14ba6682010-02-26 05:48:29 +0000606 programmer_delay(10 * 1000);
Carl-Daniel Hailfingerb4061f62011-06-26 17:04:16 +0000607 /* FIXME: Check the status register for errors. */
Sean Nelson14ba6682010-02-26 05:48:29 +0000608 return 0;
609}
610
Stefan Tauner94b39b42012-10-27 00:06:02 +0000611int spi_block_erase_50(struct flashctx *flash, unsigned int addr, unsigned int blocklen)
612{
613 int result;
614 struct spi_command cmds[] = {
615 {
616/* .writecnt = JEDEC_WREN_OUTSIZE,
617 .writearr = (const unsigned char[]){ JEDEC_WREN },
618 .readcnt = 0,
619 .readarr = NULL,
620 }, { */
621 .writecnt = JEDEC_BE_50_OUTSIZE,
622 .writearr = (const unsigned char[]){
623 JEDEC_BE_50,
624 (addr >> 16) & 0xff,
625 (addr >> 8) & 0xff,
626 (addr & 0xff)
627 },
628 .readcnt = 0,
629 .readarr = NULL,
630 }, {
631 .writecnt = 0,
632 .writearr = NULL,
633 .readcnt = 0,
634 .readarr = NULL,
635 }};
636
637 result = spi_send_multicommand(flash, cmds);
638 if (result) {
639 msg_cerr("%s failed during command execution at address 0x%x\n", __func__, addr);
640 return result;
641 }
642 /* Wait until the Write-In-Progress bit is cleared.
643 * This usually takes 10 ms, so wait in 1 ms steps.
644 */
645 while (spi_read_status_register(flash) & SPI_SR_WIP)
646 programmer_delay(1 * 1000);
647 /* FIXME: Check the status register for errors. */
648 return 0;
649}
650
651int spi_block_erase_81(struct flashctx *flash, unsigned int addr, unsigned int blocklen)
652{
653 int result;
654 struct spi_command cmds[] = {
655 {
656/* .writecnt = JEDEC_WREN_OUTSIZE,
657 .writearr = (const unsigned char[]){ JEDEC_WREN },
658 .readcnt = 0,
659 .readarr = NULL,
660 }, { */
661 .writecnt = JEDEC_BE_81_OUTSIZE,
662 .writearr = (const unsigned char[]){
663 JEDEC_BE_81,
664 (addr >> 16) & 0xff,
665 (addr >> 8) & 0xff,
666 (addr & 0xff)
667 },
668 .readcnt = 0,
669 .readarr = NULL,
670 }, {
671 .writecnt = 0,
672 .writearr = NULL,
673 .readcnt = 0,
674 .readarr = NULL,
675 }};
676
677 result = spi_send_multicommand(flash, cmds);
678 if (result) {
679 msg_cerr("%s failed during command execution at address 0x%x\n", __func__, addr);
680 return result;
681 }
682 /* Wait until the Write-In-Progress bit is cleared.
683 * This usually takes 8 ms, so wait in 1 ms steps.
684 */
685 while (spi_read_status_register(flash) & SPI_SR_WIP)
686 programmer_delay(1 * 1000);
687 /* FIXME: Check the status register for errors. */
688 return 0;
689}
690
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000691int spi_block_erase_60(struct flashctx *flash, unsigned int addr,
692 unsigned int blocklen)
Sean Nelson14ba6682010-02-26 05:48:29 +0000693{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000694 if ((addr != 0) || (blocklen != flash->chip->total_size * 1024)) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000695 msg_cerr("%s called with incorrect arguments\n",
Sean Nelson14ba6682010-02-26 05:48:29 +0000696 __func__);
697 return -1;
698 }
699 return spi_chip_erase_60(flash);
700}
701
Stefan Tauner3c0fcd02012-09-21 12:46:56 +0000702int spi_block_erase_62(struct flashctx *flash, unsigned int addr, unsigned int blocklen)
703{
704 if ((addr != 0) || (blocklen != flash->chip->total_size * 1024)) {
705 msg_cerr("%s called with incorrect arguments\n",
706 __func__);
707 return -1;
708 }
709 return spi_chip_erase_62(flash);
710}
711
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000712int spi_block_erase_c7(struct flashctx *flash, unsigned int addr,
713 unsigned int blocklen)
Sean Nelson14ba6682010-02-26 05:48:29 +0000714{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000715 if ((addr != 0) || (blocklen != flash->chip->total_size * 1024)) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000716 msg_cerr("%s called with incorrect arguments\n",
Sean Nelson14ba6682010-02-26 05:48:29 +0000717 __func__);
718 return -1;
719 }
720 return spi_chip_erase_c7(flash);
721}
722
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000723erasefunc_t *spi_get_erasefn_from_opcode(uint8_t opcode)
724{
725 switch(opcode){
726 case 0xff:
727 case 0x00:
728 /* Not specified, assuming "not supported". */
729 return NULL;
730 case 0x20:
731 return &spi_block_erase_20;
Stefan Tauner730e7e72013-05-01 14:04:19 +0000732 case 0x50:
733 return &spi_block_erase_50;
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000734 case 0x52:
735 return &spi_block_erase_52;
736 case 0x60:
737 return &spi_block_erase_60;
Stefan Tauner730e7e72013-05-01 14:04:19 +0000738 case 0x62:
739 return &spi_block_erase_62;
740 case 0x81:
741 return &spi_block_erase_81;
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000742 case 0xc7:
743 return &spi_block_erase_c7;
744 case 0xd7:
745 return &spi_block_erase_d7;
746 case 0xd8:
747 return &spi_block_erase_d8;
748 default:
749 msg_cinfo("%s: unknown erase opcode (0x%02x). Please report "
750 "this at flashrom@flashrom.org\n", __func__, opcode);
751 return NULL;
752 }
753}
754
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000755int spi_byte_program(struct flashctx *flash, unsigned int addr,
756 uint8_t databyte)
Sean Nelson14ba6682010-02-26 05:48:29 +0000757{
758 int result;
759 struct spi_command cmds[] = {
760 {
761 .writecnt = JEDEC_WREN_OUTSIZE,
762 .writearr = (const unsigned char[]){ JEDEC_WREN },
763 .readcnt = 0,
764 .readarr = NULL,
765 }, {
766 .writecnt = JEDEC_BYTE_PROGRAM_OUTSIZE,
767 .writearr = (const unsigned char[]){
768 JEDEC_BYTE_PROGRAM,
769 (addr >> 16) & 0xff,
770 (addr >> 8) & 0xff,
771 (addr & 0xff),
772 databyte
773 },
774 .readcnt = 0,
775 .readarr = NULL,
776 }, {
777 .writecnt = 0,
778 .writearr = NULL,
779 .readcnt = 0,
780 .readarr = NULL,
781 }};
782
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000783 result = spi_send_multicommand(flash, cmds);
Sean Nelson14ba6682010-02-26 05:48:29 +0000784 if (result) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000785 msg_cerr("%s failed during command execution at address 0x%x\n",
Sean Nelson14ba6682010-02-26 05:48:29 +0000786 __func__, addr);
787 }
788 return result;
789}
790
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000791int spi_nbyte_program(struct flashctx *flash, unsigned int addr, uint8_t *bytes,
792 unsigned int len)
Sean Nelson14ba6682010-02-26 05:48:29 +0000793{
794 int result;
795 /* FIXME: Switch to malloc based on len unless that kills speed. */
796 unsigned char cmd[JEDEC_BYTE_PROGRAM_OUTSIZE - 1 + 256] = {
797 JEDEC_BYTE_PROGRAM,
798 (addr >> 16) & 0xff,
799 (addr >> 8) & 0xff,
800 (addr >> 0) & 0xff,
801 };
802 struct spi_command cmds[] = {
803 {
804 .writecnt = JEDEC_WREN_OUTSIZE,
805 .writearr = (const unsigned char[]){ JEDEC_WREN },
806 .readcnt = 0,
807 .readarr = NULL,
808 }, {
809 .writecnt = JEDEC_BYTE_PROGRAM_OUTSIZE - 1 + len,
810 .writearr = cmd,
811 .readcnt = 0,
812 .readarr = NULL,
813 }, {
814 .writecnt = 0,
815 .writearr = NULL,
816 .readcnt = 0,
817 .readarr = NULL,
818 }};
819
820 if (!len) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000821 msg_cerr("%s called for zero-length write\n", __func__);
Sean Nelson14ba6682010-02-26 05:48:29 +0000822 return 1;
823 }
824 if (len > 256) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000825 msg_cerr("%s called for too long a write\n", __func__);
Sean Nelson14ba6682010-02-26 05:48:29 +0000826 return 1;
827 }
828
829 memcpy(&cmd[4], bytes, len);
830
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000831 result = spi_send_multicommand(flash, cmds);
Sean Nelson14ba6682010-02-26 05:48:29 +0000832 if (result) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000833 msg_cerr("%s failed during command execution at address 0x%x\n",
Sean Nelson14ba6682010-02-26 05:48:29 +0000834 __func__, addr);
835 }
836 return result;
837}
838
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000839int spi_nbyte_read(struct flashctx *flash, unsigned int address, uint8_t *bytes,
840 unsigned int len)
Sean Nelson14ba6682010-02-26 05:48:29 +0000841{
842 const unsigned char cmd[JEDEC_READ_OUTSIZE] = {
843 JEDEC_READ,
844 (address >> 16) & 0xff,
845 (address >> 8) & 0xff,
846 (address >> 0) & 0xff,
847 };
848
849 /* Send Read */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000850 return spi_send_command(flash, sizeof(cmd), len, cmd, bytes);
Sean Nelson14ba6682010-02-26 05:48:29 +0000851}
852
853/*
Carl-Daniel Hailfinger5824fbf2010-05-21 23:09:42 +0000854 * Read a part of the flash chip.
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +0000855 * FIXME: Use the chunk code from Michael Karcher instead.
Sean Nelson14ba6682010-02-26 05:48:29 +0000856 * Each page is read separately in chunks with a maximum size of chunksize.
857 */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000858int spi_read_chunked(struct flashctx *flash, uint8_t *buf, unsigned int start,
859 unsigned int len, unsigned int chunksize)
Sean Nelson14ba6682010-02-26 05:48:29 +0000860{
861 int rc = 0;
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000862 unsigned int i, j, starthere, lenhere, toread;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000863 unsigned int page_size = flash->chip->page_size;
Sean Nelson14ba6682010-02-26 05:48:29 +0000864
865 /* Warning: This loop has a very unusual condition and body.
866 * The loop needs to go through each page with at least one affected
867 * byte. The lowest page number is (start / page_size) since that
868 * division rounds down. The highest page number we want is the page
869 * where the last byte of the range lives. That last byte has the
870 * address (start + len - 1), thus the highest page number is
871 * (start + len - 1) / page_size. Since we want to include that last
872 * page as well, the loop condition uses <=.
873 */
874 for (i = start / page_size; i <= (start + len - 1) / page_size; i++) {
875 /* Byte position of the first byte in the range in this page. */
876 /* starthere is an offset to the base address of the chip. */
877 starthere = max(start, i * page_size);
878 /* Length of bytes in the range in this page. */
879 lenhere = min(start + len, (i + 1) * page_size) - starthere;
880 for (j = 0; j < lenhere; j += chunksize) {
881 toread = min(chunksize, lenhere - j);
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000882 rc = spi_nbyte_read(flash, starthere + j, buf + starthere - start + j, toread);
Sean Nelson14ba6682010-02-26 05:48:29 +0000883 if (rc)
884 break;
885 }
886 if (rc)
887 break;
888 }
889
890 return rc;
891}
892
893/*
Carl-Daniel Hailfinger5824fbf2010-05-21 23:09:42 +0000894 * Write a part of the flash chip.
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +0000895 * FIXME: Use the chunk code from Michael Karcher instead.
Carl-Daniel Hailfinger5824fbf2010-05-21 23:09:42 +0000896 * Each page is written separately in chunks with a maximum size of chunksize.
897 */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000898int spi_write_chunked(struct flashctx *flash, uint8_t *buf, unsigned int start,
899 unsigned int len, unsigned int chunksize)
Carl-Daniel Hailfinger5824fbf2010-05-21 23:09:42 +0000900{
901 int rc = 0;
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000902 unsigned int i, j, starthere, lenhere, towrite;
Carl-Daniel Hailfinger5824fbf2010-05-21 23:09:42 +0000903 /* FIXME: page_size is the wrong variable. We need max_writechunk_size
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000904 * in struct flashctx to do this properly. All chips using
Carl-Daniel Hailfinger5824fbf2010-05-21 23:09:42 +0000905 * spi_chip_write_256 have page_size set to max_writechunk_size, so
906 * we're OK for now.
907 */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000908 unsigned int page_size = flash->chip->page_size;
Carl-Daniel Hailfinger5824fbf2010-05-21 23:09:42 +0000909
910 /* Warning: This loop has a very unusual condition and body.
911 * The loop needs to go through each page with at least one affected
912 * byte. The lowest page number is (start / page_size) since that
913 * division rounds down. The highest page number we want is the page
914 * where the last byte of the range lives. That last byte has the
915 * address (start + len - 1), thus the highest page number is
916 * (start + len - 1) / page_size. Since we want to include that last
917 * page as well, the loop condition uses <=.
918 */
919 for (i = start / page_size; i <= (start + len - 1) / page_size; i++) {
920 /* Byte position of the first byte in the range in this page. */
921 /* starthere is an offset to the base address of the chip. */
922 starthere = max(start, i * page_size);
923 /* Length of bytes in the range in this page. */
924 lenhere = min(start + len, (i + 1) * page_size) - starthere;
925 for (j = 0; j < lenhere; j += chunksize) {
926 towrite = min(chunksize, lenhere - j);
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000927 rc = spi_nbyte_program(flash, starthere + j, buf + starthere - start + j, towrite);
Carl-Daniel Hailfinger5824fbf2010-05-21 23:09:42 +0000928 if (rc)
929 break;
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000930 while (spi_read_status_register(flash) & SPI_SR_WIP)
Carl-Daniel Hailfinger5824fbf2010-05-21 23:09:42 +0000931 programmer_delay(10);
932 }
933 if (rc)
934 break;
935 }
936
937 return rc;
938}
939
940/*
Sean Nelson14ba6682010-02-26 05:48:29 +0000941 * Program chip using byte programming. (SLOW!)
942 * This is for chips which can only handle one byte writes
943 * and for chips where memory mapped programming is impossible
944 * (e.g. due to size constraints in IT87* for over 512 kB)
945 */
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +0000946/* real chunksize is 1, logical chunksize is 1 */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000947int spi_chip_write_1(struct flashctx *flash, uint8_t *buf, unsigned int start,
948 unsigned int len)
Sean Nelson14ba6682010-02-26 05:48:29 +0000949{
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000950 unsigned int i;
951 int result = 0;
Sean Nelson14ba6682010-02-26 05:48:29 +0000952
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +0000953 for (i = start; i < start + len; i++) {
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000954 result = spi_byte_program(flash, i, buf[i - start]);
Sean Nelson14ba6682010-02-26 05:48:29 +0000955 if (result)
956 return 1;
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000957 while (spi_read_status_register(flash) & SPI_SR_WIP)
Sean Nelson14ba6682010-02-26 05:48:29 +0000958 programmer_delay(10);
959 }
960
961 return 0;
962}
963
Nico Huber7bca1262012-06-15 22:28:12 +0000964int default_spi_write_aai(struct flashctx *flash, uint8_t *buf, unsigned int start, unsigned int len)
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +0000965{
966 uint32_t pos = start;
Sean Nelson14ba6682010-02-26 05:48:29 +0000967 int result;
Carl-Daniel Hailfinger9c62d112010-06-20 10:41:35 +0000968 unsigned char cmd[JEDEC_AAI_WORD_PROGRAM_CONT_OUTSIZE] = {
969 JEDEC_AAI_WORD_PROGRAM,
970 };
971 struct spi_command cmds[] = {
972 {
973 .writecnt = JEDEC_WREN_OUTSIZE,
974 .writearr = (const unsigned char[]){ JEDEC_WREN },
975 .readcnt = 0,
976 .readarr = NULL,
977 }, {
978 .writecnt = JEDEC_AAI_WORD_PROGRAM_OUTSIZE,
979 .writearr = (const unsigned char[]){
980 JEDEC_AAI_WORD_PROGRAM,
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +0000981 (start >> 16) & 0xff,
982 (start >> 8) & 0xff,
983 (start & 0xff),
Carl-Daniel Hailfinger9c62d112010-06-20 10:41:35 +0000984 buf[0],
985 buf[1]
986 },
987 .readcnt = 0,
988 .readarr = NULL,
989 }, {
990 .writecnt = 0,
991 .writearr = NULL,
992 .readcnt = 0,
993 .readarr = NULL,
994 }};
Sean Nelson14ba6682010-02-26 05:48:29 +0000995
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000996 switch (flash->pgm->spi.type) {
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +0000997#if CONFIG_INTERNAL == 1
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000998#if defined(__i386__) || defined(__x86_64__)
Carl-Daniel Hailfinger9c62d112010-06-20 10:41:35 +0000999 case SPI_CONTROLLER_IT87XX:
Sean Nelson14ba6682010-02-26 05:48:29 +00001000 case SPI_CONTROLLER_WBSIO:
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +00001001 msg_perr("%s: impossible with this SPI controller,"
Sean Nelson14ba6682010-02-26 05:48:29 +00001002 " degrading to byte program\n", __func__);
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +00001003 return spi_chip_write_1(flash, buf, start, len);
Sean Nelson14ba6682010-02-26 05:48:29 +00001004#endif
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001005#endif
Sean Nelson14ba6682010-02-26 05:48:29 +00001006 default:
1007 break;
1008 }
Carl-Daniel Hailfinger9c62d112010-06-20 10:41:35 +00001009
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +00001010 /* The even start address and even length requirements can be either
1011 * honored outside this function, or we can call spi_byte_program
1012 * for the first and/or last byte and use AAI for the rest.
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +00001013 * FIXME: Move this to generic code.
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +00001014 */
Carl-Daniel Hailfinger9c62d112010-06-20 10:41:35 +00001015 /* The data sheet requires a start address with the low bit cleared. */
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +00001016 if (start % 2) {
Carl-Daniel Hailfinger9c62d112010-06-20 10:41:35 +00001017 msg_cerr("%s: start address not even! Please report a bug at "
1018 "flashrom@flashrom.org\n", __func__);
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +00001019 if (spi_chip_write_1(flash, buf, start, start % 2))
1020 return SPI_GENERIC_ERROR;
1021 pos += start % 2;
Carl-Daniel Hailfingerccfe0ac2010-10-27 22:07:11 +00001022 cmds[1].writearr = (const unsigned char[]){
1023 JEDEC_AAI_WORD_PROGRAM,
1024 (pos >> 16) & 0xff,
1025 (pos >> 8) & 0xff,
1026 (pos & 0xff),
1027 buf[pos - start],
1028 buf[pos - start + 1]
1029 };
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +00001030 /* Do not return an error for now. */
1031 //return SPI_GENERIC_ERROR;
Carl-Daniel Hailfinger9c62d112010-06-20 10:41:35 +00001032 }
1033 /* The data sheet requires total AAI write length to be even. */
1034 if (len % 2) {
1035 msg_cerr("%s: total write length not even! Please report a "
1036 "bug at flashrom@flashrom.org\n", __func__);
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +00001037 /* Do not return an error for now. */
1038 //return SPI_GENERIC_ERROR;
Carl-Daniel Hailfinger9c62d112010-06-20 10:41:35 +00001039 }
1040
Carl-Daniel Hailfinger9c62d112010-06-20 10:41:35 +00001041
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +00001042 result = spi_send_multicommand(flash, cmds);
Carl-Daniel Hailfinger9c62d112010-06-20 10:41:35 +00001043 if (result) {
1044 msg_cerr("%s failed during start command execution\n",
1045 __func__);
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +00001046 /* FIXME: Should we send WRDI here as well to make sure the chip
1047 * is not in AAI mode?
1048 */
Sean Nelson14ba6682010-02-26 05:48:29 +00001049 return result;
Sean Nelson14ba6682010-02-26 05:48:29 +00001050 }
Stefan Tauner5e695ab2012-05-06 17:03:40 +00001051 while (spi_read_status_register(flash) & SPI_SR_WIP)
Carl-Daniel Hailfinger9c62d112010-06-20 10:41:35 +00001052 programmer_delay(10);
1053
1054 /* We already wrote 2 bytes in the multicommand step. */
1055 pos += 2;
1056
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +00001057 /* Are there at least two more bytes to write? */
1058 while (pos < start + len - 1) {
Carl-Daniel Hailfingerccfe0ac2010-10-27 22:07:11 +00001059 cmd[1] = buf[pos++ - start];
1060 cmd[2] = buf[pos++ - start];
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +00001061 spi_send_command(flash, JEDEC_AAI_WORD_PROGRAM_CONT_OUTSIZE, 0,
1062 cmd, NULL);
Stefan Tauner5e695ab2012-05-06 17:03:40 +00001063 while (spi_read_status_register(flash) & SPI_SR_WIP)
Carl-Daniel Hailfinger9c62d112010-06-20 10:41:35 +00001064 programmer_delay(10);
1065 }
1066
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +00001067 /* Use WRDI to exit AAI mode. This needs to be done before issuing any
1068 * other non-AAI command.
1069 */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +00001070 spi_write_disable(flash);
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +00001071
1072 /* Write remaining byte (if any). */
1073 if (pos < start + len) {
Carl-Daniel Hailfingerccfe0ac2010-10-27 22:07:11 +00001074 if (spi_chip_write_1(flash, buf + pos - start, pos, pos % 2))
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +00001075 return SPI_GENERIC_ERROR;
1076 pos += pos % 2;
1077 }
1078
Sean Nelson14ba6682010-02-26 05:48:29 +00001079 return 0;
1080}