jedec.c 14.1 KB
Newer Older
1
/*
2
 * This file is part of the flashrom project.
3
 *
4 5 6
 * Copyright (C) 2000 Silicon Integrated System Corporation
 * Copyright (C) 2006 Giampiero Giancipoli <gianci@email.it>
 * Copyright (C) 2006 coresystems GmbH <info@coresystems.de>
7
 * Copyright (C) 2007 Carl-Daniel Hailfinger
8
 * Copyright (C) 2009 Sean Nelson <audiohacked@gmail.com>
9
 *
10 11 12 13
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
14
 *
15 16 17 18
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
19
 *
20 21 22
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
23 24 25 26
 */

#include "flash.h"

27
#define MAX_REFLASH_TRIES 0x10
28 29
#define MASK_FULL 0xffff
#define MASK_2AA 0x7ff
30
#define MASK_AAA 0xfff
31

32 33 34 35 36 37 38 39
/* Check one byte for odd parity */
uint8_t oddparity(uint8_t val)
{
	val = (val ^ (val >> 4)) & 0xf;
	val = (val ^ (val >> 2)) & 0x3;
	return (val ^ (val >> 1)) & 0x1;
}

40 41
static void toggle_ready_jedec_common(const struct flashctx *flash,
				      chipaddr dst, int delay)
42 43 44 45
{
	unsigned int i = 0;
	uint8_t tmp1, tmp2;

46
	tmp1 = chip_readb(flash, dst) & 0x40;
47 48

	while (i++ < 0xFFFFFFF) {
49 50
		if (delay)
			programmer_delay(delay);
51
		tmp2 = chip_readb(flash, dst) & 0x40;
52 53 54 55 56
		if (tmp1 == tmp2) {
			break;
		}
		tmp1 = tmp2;
	}
57
	if (i > 0x100000)
58
		msg_cdbg("%s: excessive loops, i=0x%x\n", __func__, i);
59 60
}

61
void toggle_ready_jedec(const struct flashctx *flash, chipaddr dst)
62
{
63
	toggle_ready_jedec_common(flash, dst, 0);
64 65 66 67 68 69 70 71 72
}

/* Some chips require a minimum delay between toggle bit reads.
 * The Winbond W39V040C wants 50 ms between reads on sector erase toggle,
 * but experiments show that 2 ms are already enough. Pick a safety factor
 * of 4 and use an 8 ms delay.
 * Given that erase is slow on all chips, it is recommended to use 
 * toggle_ready_jedec_slow in erase functions.
 */
73
static void toggle_ready_jedec_slow(const struct flashctx *flash, chipaddr dst)
74
{
75
	toggle_ready_jedec_common(flash, dst, 8 * 1000);
76 77
}

78 79
void data_polling_jedec(const struct flashctx *flash, chipaddr dst,
			uint8_t data)
80 81 82 83 84 85 86
{
	unsigned int i = 0;
	uint8_t tmp;

	data &= 0x80;

	while (i++ < 0xFFFFFFF) {
87
		tmp = chip_readb(flash, dst) & 0x80;
88 89 90 91
		if (tmp == data) {
			break;
		}
	}
92
	if (i > 0x100000)
93
		msg_cdbg("%s: excessive loops, i=0x%x\n", __func__, i);
94 95
}

96
static unsigned int getaddrmask(struct flashctx *flash)
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
{
	switch (flash->feature_bits & FEATURE_ADDR_MASK) {
	case FEATURE_ADDR_FULL:
		return MASK_FULL;
		break;
	case FEATURE_ADDR_2AA:
		return MASK_2AA;
		break;
	case FEATURE_ADDR_AAA:
		return MASK_AAA;
		break;
	default:
		msg_cerr("%s called with unknown mask\n", __func__);
		return 0;
		break;
	}
}

115 116
static void start_program_jedec_common(struct flashctx *flash,
				       unsigned int mask)
117
{
118
	chipaddr bios = flash->virtual_memory;
119 120 121
	chip_writeb(flash, 0xAA, bios + (0x5555 & mask));
	chip_writeb(flash, 0x55, bios + (0x2AAA & mask));
	chip_writeb(flash, 0xA0, bios + (0x5555 & mask));
122 123
}

124
static int probe_jedec_common(struct flashctx *flash, unsigned int mask)
125
{
126
	chipaddr bios = flash->virtual_memory;
127
	uint8_t id1, id2;
128
	uint32_t largeid1, largeid2;
129
	uint32_t flashcontent1, flashcontent2;
130 131 132 133 134 135 136
	int probe_timing_enter, probe_timing_exit;

	if (flash->probe_timing > 0) 
		probe_timing_enter = probe_timing_exit = flash->probe_timing;
	else if (flash->probe_timing == TIMING_ZERO) { /* No delay. */
		probe_timing_enter = probe_timing_exit = 0;
	} else if (flash->probe_timing == TIMING_FIXME) { /* == _IGNORED */
137
		msg_cdbg("Chip lacks correct probe timing information, "
138
			     "using default 10mS/40uS. ");
139 140 141
		probe_timing_enter = 10000;
		probe_timing_exit = 40;
	} else {
142
		msg_cerr("Chip has negative value in probe_timing, failing "
143 144 145
		       "without chip access\n");
		return 0;
	}
146

147 148 149 150 151 152 153 154 155
	/* Earlier probes might have been too fast for the chip to enter ID
	 * mode completely. Allow the chip to finish this before seeing a
	 * reset command.
	 */
	if (probe_timing_enter)
		programmer_delay(probe_timing_enter);
	/* Reset chip to a clean slate */
	if ((flash->feature_bits & FEATURE_RESET_MASK) == FEATURE_LONG_RESET)
	{
156
		chip_writeb(flash, 0xAA, bios + (0x5555 & mask));
157 158
		if (probe_timing_exit)
			programmer_delay(10);
159
		chip_writeb(flash, 0x55, bios + (0x2AAA & mask));
160 161 162
		if (probe_timing_exit)
			programmer_delay(10);
	}
163
	chip_writeb(flash, 0xF0, bios + (0x5555 & mask));
164 165 166
	if (probe_timing_exit)
		programmer_delay(probe_timing_exit);

167
	/* Issue JEDEC Product ID Entry command */
168
	chip_writeb(flash, 0xAA, bios + (0x5555 & mask));
169 170
	if (probe_timing_enter)
		programmer_delay(10);
171
	chip_writeb(flash, 0x55, bios + (0x2AAA & mask));
172 173
	if (probe_timing_enter)
		programmer_delay(10);
174
	chip_writeb(flash, 0x90, bios + (0x5555 & mask));
175 176
	if (probe_timing_enter)
		programmer_delay(probe_timing_enter);
177 178

	/* Read product ID */
179 180
	id1 = chip_readb(flash, bios);
	id2 = chip_readb(flash, bios + 0x01);
181 182 183 184 185 186
	largeid1 = id1;
	largeid2 = id2;

	/* Check if it is a continuation ID, this should be a while loop. */
	if (id1 == 0x7F) {
		largeid1 <<= 8;
187
		id1 = chip_readb(flash, bios + 0x100);
188 189 190 191
		largeid1 |= id1;
	}
	if (id2 == 0x7F) {
		largeid2 <<= 8;
192
		id2 = chip_readb(flash, bios + 0x101);
193 194
		largeid2 |= id2;
	}
195 196

	/* Issue JEDEC Product ID Exit command */
197
	if ((flash->feature_bits & FEATURE_RESET_MASK) == FEATURE_LONG_RESET)
198
	{
199
		chip_writeb(flash, 0xAA, bios + (0x5555 & mask));
200 201
		if (probe_timing_exit)
			programmer_delay(10);
202
		chip_writeb(flash, 0x55, bios + (0x2AAA & mask));
203 204 205
		if (probe_timing_exit)
			programmer_delay(10);
	}
206
	chip_writeb(flash, 0xF0, bios + (0x5555 & mask));
207 208
	if (probe_timing_exit)
		programmer_delay(probe_timing_exit);
209

210
	msg_cdbg("%s: id1 0x%02x, id2 0x%02x", __func__, largeid1, largeid2);
211
	if (!oddparity(id1))
212
		msg_cdbg(", id1 parity violation");
213 214

	/* Read the product ID location again. We should now see normal flash contents. */
215 216
	flashcontent1 = chip_readb(flash, bios);
	flashcontent2 = chip_readb(flash, bios + 0x01);
217 218 219 220

	/* Check if it is a continuation ID, this should be a while loop. */
	if (flashcontent1 == 0x7F) {
		flashcontent1 <<= 8;
221
		flashcontent1 |= chip_readb(flash, bios + 0x100);
222 223 224
	}
	if (flashcontent2 == 0x7F) {
		flashcontent2 <<= 8;
225
		flashcontent2 |= chip_readb(flash, bios + 0x101);
226 227 228
	}

	if (largeid1 == flashcontent1)
229
		msg_cdbg(", id1 is normal flash content");
230
	if (largeid2 == flashcontent2)
231
		msg_cdbg(", id2 is normal flash content");
232

233
	msg_cdbg("\n");
234 235
	if (largeid1 != flash->manufacture_id || largeid2 != flash->model_id)
		return 0;
236

237 238 239
	if (flash->feature_bits & FEATURE_REGISTERMAP)
		map_flash_registers(flash);

240
	return 1;
Ollie Lho's avatar
Ollie Lho committed
241
}
242

243
static int erase_sector_jedec_common(struct flashctx *flash, unsigned int page,
244
				     unsigned int pagesize, unsigned int mask)
Ollie Lho's avatar
Ollie Lho committed
245
{
246
	chipaddr bios = flash->virtual_memory;
247 248 249
	int delay_us = 0;
	if(flash->probe_timing != TIMING_ZERO)
	        delay_us = 10;
250

251
	/*  Issue the Sector Erase command   */
252
	chip_writeb(flash, 0xAA, bios + (0x5555 & mask));
253
	programmer_delay(delay_us);
254
	chip_writeb(flash, 0x55, bios + (0x2AAA & mask));
255
	programmer_delay(delay_us);
256
	chip_writeb(flash, 0x80, bios + (0x5555 & mask));
257
	programmer_delay(delay_us);
258

259
	chip_writeb(flash, 0xAA, bios + (0x5555 & mask));
260
	programmer_delay(delay_us);
261
	chip_writeb(flash, 0x55, bios + (0x2AAA & mask));
262
	programmer_delay(delay_us);
263
	chip_writeb(flash, 0x30, bios + page);
264
	programmer_delay(delay_us);
265 266

	/* wait for Toggle bit ready         */
267
	toggle_ready_jedec_slow(flash, bios);
268

269
	/* FIXME: Check the status register for errors. */
Uwe Hermann's avatar
Uwe Hermann committed
270
	return 0;
271
}
272

273
static int erase_block_jedec_common(struct flashctx *flash, unsigned int block,
274
				    unsigned int blocksize, unsigned int mask)
275
{
276
	chipaddr bios = flash->virtual_memory;
277 278 279
	int delay_us = 0;
	if(flash->probe_timing != TIMING_ZERO)
	        delay_us = 10;
280

281
	/*  Issue the Sector Erase command   */
282
	chip_writeb(flash, 0xAA, bios + (0x5555 & mask));
283
	programmer_delay(delay_us);
284
	chip_writeb(flash, 0x55, bios + (0x2AAA & mask));
285
	programmer_delay(delay_us);
286
	chip_writeb(flash, 0x80, bios + (0x5555 & mask));
287
	programmer_delay(delay_us);
288

289
	chip_writeb(flash, 0xAA, bios + (0x5555 & mask));
290
	programmer_delay(delay_us);
291
	chip_writeb(flash, 0x55, bios + (0x2AAA & mask));
292
	programmer_delay(delay_us);
293
	chip_writeb(flash, 0x50, bios + block);
294
	programmer_delay(delay_us);
295

Ollie Lho's avatar
Ollie Lho committed
296
	/* wait for Toggle bit ready         */
297
	toggle_ready_jedec_slow(flash, bios);
298

299
	/* FIXME: Check the status register for errors. */
Uwe Hermann's avatar
Uwe Hermann committed
300
	return 0;
301 302
}

303
static int erase_chip_jedec_common(struct flashctx *flash, unsigned int mask)
304
{
305
	chipaddr bios = flash->virtual_memory;
306 307 308
	int delay_us = 0;
	if(flash->probe_timing != TIMING_ZERO)
	        delay_us = 10;
309

310
	/*  Issue the JEDEC Chip Erase command   */
311
	chip_writeb(flash, 0xAA, bios + (0x5555 & mask));
312
	programmer_delay(delay_us);
313
	chip_writeb(flash, 0x55, bios + (0x2AAA & mask));
314
	programmer_delay(delay_us);
315
	chip_writeb(flash, 0x80, bios + (0x5555 & mask));
316
	programmer_delay(delay_us);
317

318
	chip_writeb(flash, 0xAA, bios + (0x5555 & mask));
319
	programmer_delay(delay_us);
320
	chip_writeb(flash, 0x55, bios + (0x2AAA & mask));
321
	programmer_delay(delay_us);
322
	chip_writeb(flash, 0x10, bios + (0x5555 & mask));
323
	programmer_delay(delay_us);
Ollie Lho's avatar
Ollie Lho committed
324

325
	toggle_ready_jedec_slow(flash, bios);
Ronald G. Minnich's avatar
Ronald G. Minnich committed
326

327
	/* FIXME: Check the status register for errors. */
Uwe Hermann's avatar
Uwe Hermann committed
328
	return 0;
329 330
}

331
static int write_byte_program_jedec_common(struct flashctx *flash, uint8_t *src,
332
					   chipaddr dst, unsigned int mask)
Ollie Lho's avatar
Ollie Lho committed
333
{
334
	int tried = 0, failed = 0;
335
	chipaddr bios = flash->virtual_memory;
336

337
	/* If the data is 0xFF, don't program it and don't complain. */
Ollie Lho's avatar
Ollie Lho committed
338
	if (*src == 0xFF) {
339
		return 0;
Ollie Lho's avatar
Ollie Lho committed
340
	}
341

342
retry:
Ollie Lho's avatar
Ollie Lho committed
343
	/* Issue JEDEC Byte Program command */
344
	start_program_jedec_common(flash, mask);
345 346

	/* transfer data from source to destination */
347 348
	chip_writeb(flash, *src, dst);
	toggle_ready_jedec(flash, bios);
349

350
	if (chip_readb(flash, dst) != *src && tried++ < MAX_REFLASH_TRIES) {
351 352
		goto retry;
	}
353

354
	if (tried >= MAX_REFLASH_TRIES)
355
		failed = 1;
356

357
	return failed;
Ollie Lho's avatar
Ollie Lho committed
358 359
}

360
/* chunksize is 1 */
361 362
int write_jedec_1(struct flashctx *flash, uint8_t *src, unsigned int start,
		  unsigned int len)
363
{
364
	int i, failed = 0;
365
	chipaddr dst = flash->virtual_memory + start;
366
	chipaddr olddst;
367
	unsigned int mask;
368 369

	mask = getaddrmask(flash);
370

371
	olddst = dst;
372
	for (i = 0; i < len; i++) {
373
		if (write_byte_program_jedec_common(flash, src, dst, mask))
374
			failed = 1;
375
		dst++, src++;
376
	}
377
	if (failed)
378
		msg_cerr(" writing sector at 0x%lx failed!\n", olddst);
379

380
	return failed;
381 382
}

383 384
int write_page_write_jedec_common(struct flashctx *flash, uint8_t *src,
				  unsigned int start, unsigned int page_size)
385 386 387 388 389 390
{
	int i, tried = 0, failed;
	uint8_t *s = src;
	chipaddr bios = flash->virtual_memory;
	chipaddr dst = bios + start;
	chipaddr d = dst;
391
	unsigned int mask;
392 393

	mask = getaddrmask(flash);
394 395

retry:
396
	/* Issue JEDEC Start Program command */
397 398 399 400 401 402
	start_program_jedec_common(flash, mask);

	/* transfer data from source to destination */
	for (i = 0; i < page_size; i++) {
		/* If the data is 0xFF, don't program it */
		if (*src != 0xFF)
403
			chip_writeb(flash, *src, dst);
404 405 406 407
		dst++;
		src++;
	}

408
	toggle_ready_jedec(flash, dst - 1);
409 410 411 412 413 414

	dst = d;
	src = s;
	failed = verify_range(flash, src, start, page_size, NULL);

	if (failed && tried++ < MAX_REFLASH_TRIES) {
415
		msg_cerr("retrying.\n");
416 417 418
		goto retry;
	}
	if (failed) {
419
		msg_cerr(" page 0x%lx failed!\n",
420 421 422 423 424
			(d - bios) / page_size);
	}
	return failed;
}

425
/* chunksize is page_size */
426 427 428 429 430 431
/*
 * Write a part of the flash chip.
 * FIXME: Use the chunk code from Michael Karcher instead.
 * This function is a slightly modified copy of spi_write_chunked.
 * Each page is written separately in chunks with a maximum size of chunksize.
 */
432 433
int write_jedec(struct flashctx *flash, uint8_t *buf, unsigned int start,
		int unsigned len)
434
{
435
	unsigned int i, starthere, lenhere;
436
	/* FIXME: page_size is the wrong variable. We need max_writechunk_size
437
	 * in struct flashctx to do this properly. All chips using
438 439 440
	 * write_jedec have page_size set to max_writechunk_size, so
	 * we're OK for now.
	 */
441
	unsigned int page_size = flash->page_size;
442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460

	/* Warning: This loop has a very unusual condition and body.
	 * The loop needs to go through each page with at least one affected
	 * byte. The lowest page number is (start / page_size) since that
	 * division rounds down. The highest page number we want is the page
	 * where the last byte of the range lives. That last byte has the
	 * address (start + len - 1), thus the highest page number is
	 * (start + len - 1) / page_size. Since we want to include that last
	 * page as well, the loop condition uses <=.
	 */
	for (i = start / page_size; i <= (start + len - 1) / page_size; i++) {
		/* Byte position of the first byte in the range in this page. */
		/* starthere is an offset to the base address of the chip. */
		starthere = max(start, i * page_size);
		/* Length of bytes in the range in this page. */
		lenhere = min(start + len, (i + 1) * page_size) - starthere;

		if (write_page_write_jedec_common(flash, buf + starthere - start, starthere, lenhere))
			return 1;
461
	}
462 463

	return 0;
464 465
}

466
/* erase chip with block_erase() prototype */
467
int erase_chip_block_jedec(struct flashctx *flash, unsigned int addr,
468 469
			   unsigned int blocksize)
{
470
	unsigned int mask;
471 472

	mask = getaddrmask(flash);
473
	if ((addr != 0) || (blocksize != flash->total_size * 1024)) {
474
		msg_cerr("%s called with incorrect arguments\n",
475 476 477
			__func__);
		return -1;
	}
478
	return erase_chip_jedec_common(flash, mask);
479 480
}

481
int probe_jedec(struct flashctx *flash)
482
{
483
	unsigned int mask;
484 485

	mask = getaddrmask(flash);
486
	return probe_jedec_common(flash, mask);
487 488
}

489 490
int erase_sector_jedec(struct flashctx *flash, unsigned int page,
		       unsigned int size)
491
{
492
	unsigned int mask;
493 494 495

	mask = getaddrmask(flash);
	return erase_sector_jedec_common(flash, page, size, mask);
496 497
}

498 499
int erase_block_jedec(struct flashctx *flash, unsigned int page,
		      unsigned int size)
500
{
501
	unsigned int mask;
502 503 504

	mask = getaddrmask(flash);
	return erase_block_jedec_common(flash, page, size, mask);
505 506
}

507
int erase_chip_jedec(struct flashctx *flash)
508
{
509
	unsigned int mask;
510 511 512

	mask = getaddrmask(flash);
	return erase_chip_jedec_common(flash, mask);
513
}