blob: ab1c9182156c455af443ccc3e796b703849eea5b [file] [log] [blame]
Uwe Hermannd1107642007-08-29 17:52:32 +00001/*
2 * This file is part of the flashrom project.
David Hendricks3770a112004-03-17 21:47:30 +00003 *
Uwe Hermannd22a1d42007-09-09 20:21:05 +00004 * Copyright (C) 2000 Silicon Integrated System Corporation
David Hendricks3770a112004-03-17 21:47:30 +00005 *
Uwe Hermannd1107642007-08-29 17:52:32 +00006 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
David Hendricks3770a112004-03-17 21:47:30 +000010 *
Uwe Hermannd1107642007-08-29 17:52:32 +000011 * 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.
David Hendricks3770a112004-03-17 21:47:30 +000015 *
Uwe Hermannd1107642007-08-29 17:52:32 +000016 * 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
David Hendricks3770a112004-03-17 21:47:30 +000019 */
Uwe Hermannffec5f32007-08-23 16:08:21 +000020
David Hendricks3770a112004-03-17 21:47:30 +000021#include "flash.h"
David Hendricks3770a112004-03-17 21:47:30 +000022
Ollie Lhoa1439cf2005-01-11 02:48:22 +000023int erase_49lf040(struct flashchip *flash)
24{
Uwe Hermann0b7afe62007-04-01 19:44:21 +000025 int i;
26 int total_size = flash->total_size * 1024;
27 int page_size = flash->page_size;
Ollie Lhoa1439cf2005-01-11 02:48:22 +000028
Uwe Hermann0b7afe62007-04-01 19:44:21 +000029 for (i = 0; i < total_size / page_size; i++) {
Ollie Lhoa1439cf2005-01-11 02:48:22 +000030 /* Chip erase only works in parallel programming mode
31 * for the 49lf040. Use sector-erase instead */
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +000032 if (erase_sector_jedec(flash, i * page_size, page_size)) {
33 fprintf(stderr, "ERASE FAILED!\n");
34 return -1;
35 }
Uwe Hermann0b7afe62007-04-01 19:44:21 +000036 }
Uwe Hermannffec5f32007-08-23 16:08:21 +000037
Ollie Lhoa1439cf2005-01-11 02:48:22 +000038 return 0;
39}
40
Ollie Lho184a4042005-11-26 21:55:36 +000041int write_49lf040(struct flashchip *flash, uint8_t *buf)
David Hendricks3770a112004-03-17 21:47:30 +000042{
43 int i;
Ollie Lho8b8897a2004-03-27 00:18:15 +000044 int total_size = flash->total_size * 1024;
45 int page_size = flash->page_size;
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +000046 chipaddr bios = flash->virtual_memory;
David Hendricks3770a112004-03-17 21:47:30 +000047
Uwe Hermanna502dce2007-10-17 23:55:15 +000048 printf("Programming page: ");
Ollie Lho761bf1b2004-03-20 16:46:10 +000049 for (i = 0; i < total_size / page_size; i++) {
Ollie Lho73eca802004-03-19 22:10:07 +000050 /* erase the page before programming
Ollie Lhoa1439cf2005-01-11 02:48:22 +000051 * Chip erase only works in parallel programming mode
52 * for the 49lf040. Use sector-erase instead */
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +000053 if (erase_sector_jedec(flash, i * page_size, page_size)) {
54 fprintf(stderr, "ERASE FAILED!\n");
55 return -1;
56 }
David Hendricks3770a112004-03-17 21:47:30 +000057
58 /* write to the sector */
Uwe Hermann1b0f61f2008-10-21 22:09:02 +000059 if (i % 10 == 0)
60 printf("%04d at address: 0x%08x ", i, i * page_size);
Uwe Hermann0b7afe62007-04-01 19:44:21 +000061
Ollie Lho761bf1b2004-03-20 16:46:10 +000062 write_sector_jedec(bios, buf + i * page_size,
63 bios + i * page_size, page_size);
Roman Kononov41c47672006-10-07 00:21:13 +000064
Uwe Hermann1b0f61f2008-10-21 22:09:02 +000065 if (i % 10 == 0)
66 printf("\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b");
Ollie Lho761bf1b2004-03-20 16:46:10 +000067 fflush(stdout);
David Hendricks3770a112004-03-17 21:47:30 +000068 }
69 printf("\n");
70
Uwe Hermannffec5f32007-08-23 16:08:21 +000071 return 0;
David Hendricks3770a112004-03-17 21:47:30 +000072}