Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the flashrom project. |
David Hendricks | 3770a11 | 2004-03-17 21:47:30 +0000 | [diff] [blame] | 3 | * |
Uwe Hermann | d22a1d4 | 2007-09-09 20:21:05 +0000 | [diff] [blame] | 4 | * Copyright (C) 2000 Silicon Integrated System Corporation |
David Hendricks | 3770a11 | 2004-03-17 21:47:30 +0000 | [diff] [blame] | 5 | * |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 6 | * 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 Hendricks | 3770a11 | 2004-03-17 21:47:30 +0000 | [diff] [blame] | 10 | * |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 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. |
David Hendricks | 3770a11 | 2004-03-17 21:47:30 +0000 | [diff] [blame] | 15 | * |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 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 |
David Hendricks | 3770a11 | 2004-03-17 21:47:30 +0000 | [diff] [blame] | 19 | */ |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 20 | |
David Hendricks | 3770a11 | 2004-03-17 21:47:30 +0000 | [diff] [blame] | 21 | #include "flash.h" |
David Hendricks | 3770a11 | 2004-03-17 21:47:30 +0000 | [diff] [blame] | 22 | |
Ollie Lho | a1439cf | 2005-01-11 02:48:22 +0000 | [diff] [blame] | 23 | int erase_49lf040(struct flashchip *flash) |
| 24 | { |
Uwe Hermann | 0b7afe6 | 2007-04-01 19:44:21 +0000 | [diff] [blame] | 25 | int i; |
| 26 | int total_size = flash->total_size * 1024; |
| 27 | int page_size = flash->page_size; |
Ollie Lho | a1439cf | 2005-01-11 02:48:22 +0000 | [diff] [blame] | 28 | |
Uwe Hermann | 0b7afe6 | 2007-04-01 19:44:21 +0000 | [diff] [blame] | 29 | for (i = 0; i < total_size / page_size; i++) { |
Ollie Lho | a1439cf | 2005-01-11 02:48:22 +0000 | [diff] [blame] | 30 | /* Chip erase only works in parallel programming mode |
| 31 | * for the 49lf040. Use sector-erase instead */ |
Carl-Daniel Hailfinger | 30f7cb2 | 2009-06-15 17:23:36 +0000 | [diff] [blame] | 32 | if (erase_sector_jedec(flash, i * page_size, page_size)) { |
| 33 | fprintf(stderr, "ERASE FAILED!\n"); |
| 34 | return -1; |
| 35 | } |
Uwe Hermann | 0b7afe6 | 2007-04-01 19:44:21 +0000 | [diff] [blame] | 36 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 37 | |
Ollie Lho | a1439cf | 2005-01-11 02:48:22 +0000 | [diff] [blame] | 38 | return 0; |
| 39 | } |
| 40 | |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 41 | int write_49lf040(struct flashchip *flash, uint8_t *buf) |
David Hendricks | 3770a11 | 2004-03-17 21:47:30 +0000 | [diff] [blame] | 42 | { |
| 43 | int i; |
Ollie Lho | 8b8897a | 2004-03-27 00:18:15 +0000 | [diff] [blame] | 44 | int total_size = flash->total_size * 1024; |
| 45 | int page_size = flash->page_size; |
Carl-Daniel Hailfinger | 5820f42 | 2009-05-16 21:22:56 +0000 | [diff] [blame] | 46 | chipaddr bios = flash->virtual_memory; |
David Hendricks | 3770a11 | 2004-03-17 21:47:30 +0000 | [diff] [blame] | 47 | |
Uwe Hermann | a502dce | 2007-10-17 23:55:15 +0000 | [diff] [blame] | 48 | printf("Programming page: "); |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 49 | for (i = 0; i < total_size / page_size; i++) { |
Ollie Lho | 73eca80 | 2004-03-19 22:10:07 +0000 | [diff] [blame] | 50 | /* erase the page before programming |
Ollie Lho | a1439cf | 2005-01-11 02:48:22 +0000 | [diff] [blame] | 51 | * Chip erase only works in parallel programming mode |
| 52 | * for the 49lf040. Use sector-erase instead */ |
Carl-Daniel Hailfinger | 30f7cb2 | 2009-06-15 17:23:36 +0000 | [diff] [blame] | 53 | if (erase_sector_jedec(flash, i * page_size, page_size)) { |
| 54 | fprintf(stderr, "ERASE FAILED!\n"); |
| 55 | return -1; |
| 56 | } |
David Hendricks | 3770a11 | 2004-03-17 21:47:30 +0000 | [diff] [blame] | 57 | |
| 58 | /* write to the sector */ |
Uwe Hermann | 1b0f61f | 2008-10-21 22:09:02 +0000 | [diff] [blame] | 59 | if (i % 10 == 0) |
| 60 | printf("%04d at address: 0x%08x ", i, i * page_size); |
Uwe Hermann | 0b7afe6 | 2007-04-01 19:44:21 +0000 | [diff] [blame] | 61 | |
Sean Nelson | c57a920 | 2010-01-04 17:15:23 +0000 | [diff] [blame] | 62 | write_sector_jedec_common(flash, buf + i * page_size, |
| 63 | bios + i * page_size, page_size, 0xffff); |
Roman Kononov | 41c4767 | 2006-10-07 00:21:13 +0000 | [diff] [blame] | 64 | |
Uwe Hermann | 1b0f61f | 2008-10-21 22:09:02 +0000 | [diff] [blame] | 65 | 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 Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 67 | fflush(stdout); |
David Hendricks | 3770a11 | 2004-03-17 21:47:30 +0000 | [diff] [blame] | 68 | } |
| 69 | printf("\n"); |
| 70 | |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 71 | return 0; |
David Hendricks | 3770a11 | 2004-03-17 21:47:30 +0000 | [diff] [blame] | 72 | } |