Ronald G. Minnich | 5e8dfff | 2002-03-21 22:41:11 +0000 | [diff] [blame] | 1 | /* |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 2 | * This file is part of the flashrom project. |
Ronald G. Minnich | 5e8dfff | 2002-03-21 22:41:11 +0000 | [diff] [blame] | 3 | * |
Uwe Hermann | d22a1d4 | 2007-09-09 20:21:05 +0000 | [diff] [blame] | 4 | * Copyright (C) 2000 Silicon Integrated System Corporation |
Ronald G. Minnich | 5e8dfff | 2002-03-21 22:41:11 +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. |
Ronald G. Minnich | 5e8dfff | 2002-03-21 22:41:11 +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. |
Ronald G. Minnich | 5e8dfff | 2002-03-21 22:41:11 +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 |
Ronald G. Minnich | 5e8dfff | 2002-03-21 22:41:11 +0000 | [diff] [blame] | 19 | */ |
| 20 | |
Ronald G. Minnich | eaab50b | 2003-09-12 22:41:53 +0000 | [diff] [blame] | 21 | #include <stdio.h> |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 22 | #include <stdint.h> |
Ronald G. Minnich | 5e8dfff | 2002-03-21 22:41:11 +0000 | [diff] [blame] | 23 | #include "flash.h" |
Ronald G. Minnich | 5e8dfff | 2002-03-21 22:41:11 +0000 | [diff] [blame] | 24 | |
| 25 | #define AUTO_PG_ERASE1 0x20 |
| 26 | #define AUTO_PG_ERASE2 0xD0 |
Ronald G. Minnich | 5e8dfff | 2002-03-21 22:41:11 +0000 | [diff] [blame] | 27 | |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 28 | static __inline__ int erase_sector_39sf020(volatile uint8_t *bios, |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 29 | unsigned long address) |
Ronald G. Minnich | 5e8dfff | 2002-03-21 22:41:11 +0000 | [diff] [blame] | 30 | { |
| 31 | *bios = AUTO_PG_ERASE1; |
| 32 | *(bios + address) = AUTO_PG_ERASE2; |
| 33 | |
| 34 | /* wait for Toggle bit ready */ |
| 35 | toggle_ready_jedec(bios); |
Ronald G. Minnich | eaab50b | 2003-09-12 22:41:53 +0000 | [diff] [blame] | 36 | |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 37 | return 0; |
Ronald G. Minnich | 5e8dfff | 2002-03-21 22:41:11 +0000 | [diff] [blame] | 38 | } |
| 39 | |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 40 | int write_39sf020(struct flashchip *flash, uint8_t *buf) |
Ronald G. Minnich | 5e8dfff | 2002-03-21 22:41:11 +0000 | [diff] [blame] | 41 | { |
| 42 | int i; |
Uwe Hermann | 0b7afe6 | 2007-04-01 19:44:21 +0000 | [diff] [blame] | 43 | int total_size = flash->total_size * 1024; |
| 44 | int page_size = flash->page_size; |
Stefan Reinauer | ce53297 | 2007-05-23 17:20:56 +0000 | [diff] [blame] | 45 | volatile uint8_t *bios = flash->virtual_memory; |
Ronald G. Minnich | 5e8dfff | 2002-03-21 22:41:11 +0000 | [diff] [blame] | 46 | |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 47 | erase_chip_jedec(flash); |
Ollie Lho | cf29de8 | 2004-03-18 19:40:07 +0000 | [diff] [blame] | 48 | |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 49 | printf("Programming Page: "); |
| 50 | for (i = 0; i < total_size / page_size; i++) { |
Ronald G. Minnich | 5e8dfff | 2002-03-21 22:41:11 +0000 | [diff] [blame] | 51 | /* write to the sector */ |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 52 | printf("%04d at address: 0x%08x", i, i * page_size); |
| 53 | write_sector_jedec(bios, buf + i * page_size, |
| 54 | bios + i * page_size, page_size); |
Ollie Lho | efa2858 | 2004-12-08 20:10:01 +0000 | [diff] [blame] | 55 | 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"); |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 56 | fflush(stdout); |
Ronald G. Minnich | 5e8dfff | 2002-03-21 22:41:11 +0000 | [diff] [blame] | 57 | } |
| 58 | printf("\n"); |
| 59 | |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 60 | return 0; |
Ronald G. Minnich | 5e8dfff | 2002-03-21 22:41:11 +0000 | [diff] [blame] | 61 | } |