Roman Kononov | 41c4767 | 2006-10-07 00:21:13 +0000 | [diff] [blame] | 1 | /* sst49lf040.c: driver for SST49LF040 flash models. |
David Hendricks | 3770a11 | 2004-03-17 21:47:30 +0000 | [diff] [blame] | 2 | * |
| 3 | * |
| 4 | * Copyright 2000 Silicon Integrated System Corporation |
| 5 | * |
| 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. |
| 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., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 19 | * |
| 20 | * |
| 21 | * Reference: |
Stefan Reinauer | 7ed78c8 | 2007-05-24 09:26:39 +0000 | [diff] [blame] | 22 | * 4 Megabit (512K x 8) SuperFlash EEPROM, SST49lF040 data sheet |
David Hendricks | 3770a11 | 2004-03-17 21:47:30 +0000 | [diff] [blame] | 23 | * |
Stefan Reinauer | 7ed78c8 | 2007-05-24 09:26:39 +0000 | [diff] [blame] | 24 | * TODO: Consilidated to standard JEDEC code. |
Ollie Lho | cf29de8 | 2004-03-18 19:40:07 +0000 | [diff] [blame] | 25 | * |
David Hendricks | 3770a11 | 2004-03-17 21:47:30 +0000 | [diff] [blame] | 26 | */ |
David Hendricks | 3770a11 | 2004-03-17 21:47:30 +0000 | [diff] [blame] | 27 | #include <stdio.h> |
| 28 | #include "flash.h" |
David Hendricks | 3770a11 | 2004-03-17 21:47:30 +0000 | [diff] [blame] | 29 | |
Ollie Lho | a1439cf | 2005-01-11 02:48:22 +0000 | [diff] [blame] | 30 | int erase_49lf040(struct flashchip *flash) |
| 31 | { |
Uwe Hermann | 0b7afe6 | 2007-04-01 19:44:21 +0000 | [diff] [blame] | 32 | int i; |
| 33 | int total_size = flash->total_size * 1024; |
| 34 | int page_size = flash->page_size; |
Stefan Reinauer | ce53297 | 2007-05-23 17:20:56 +0000 | [diff] [blame] | 35 | volatile uint8_t *bios = flash->virtual_memory; |
Ollie Lho | a1439cf | 2005-01-11 02:48:22 +0000 | [diff] [blame] | 36 | |
Uwe Hermann | 0b7afe6 | 2007-04-01 19:44:21 +0000 | [diff] [blame] | 37 | for (i = 0; i < total_size / page_size; i++) { |
Ollie Lho | a1439cf | 2005-01-11 02:48:22 +0000 | [diff] [blame] | 38 | /* Chip erase only works in parallel programming mode |
| 39 | * for the 49lf040. Use sector-erase instead */ |
| 40 | erase_sector_jedec(bios, i * page_size); |
Uwe Hermann | 0b7afe6 | 2007-04-01 19:44:21 +0000 | [diff] [blame] | 41 | } |
Ollie Lho | a1439cf | 2005-01-11 02:48:22 +0000 | [diff] [blame] | 42 | return 0; |
| 43 | } |
| 44 | |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 45 | int write_49lf040(struct flashchip *flash, uint8_t *buf) |
David Hendricks | 3770a11 | 2004-03-17 21:47:30 +0000 | [diff] [blame] | 46 | { |
| 47 | int i; |
Ollie Lho | 8b8897a | 2004-03-27 00:18:15 +0000 | [diff] [blame] | 48 | int total_size = flash->total_size * 1024; |
| 49 | int page_size = flash->page_size; |
Stefan Reinauer | ce53297 | 2007-05-23 17:20:56 +0000 | [diff] [blame] | 50 | volatile uint8_t *bios = flash->virtual_memory; |
David Hendricks | 3770a11 | 2004-03-17 21:47:30 +0000 | [diff] [blame] | 51 | |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 52 | printf("Programming Page: "); |
| 53 | for (i = 0; i < total_size / page_size; i++) { |
Ollie Lho | 73eca80 | 2004-03-19 22:10:07 +0000 | [diff] [blame] | 54 | /* erase the page before programming |
Ollie Lho | a1439cf | 2005-01-11 02:48:22 +0000 | [diff] [blame] | 55 | * Chip erase only works in parallel programming mode |
| 56 | * for the 49lf040. Use sector-erase instead */ |
Ollie Lho | 73eca80 | 2004-03-19 22:10:07 +0000 | [diff] [blame] | 57 | erase_sector_jedec(bios, i * page_size); |
David Hendricks | 3770a11 | 2004-03-17 21:47:30 +0000 | [diff] [blame] | 58 | |
| 59 | /* write to the sector */ |
Roman Kononov | 41c4767 | 2006-10-07 00:21:13 +0000 | [diff] [blame] | 60 | printf("%04d at address: 0x%08x ", i, i * page_size); |
Uwe Hermann | 0b7afe6 | 2007-04-01 19:44:21 +0000 | [diff] [blame] | 61 | |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 62 | write_sector_jedec(bios, buf + i * page_size, |
| 63 | bios + i * page_size, page_size); |
Roman Kononov | 41c4767 | 2006-10-07 00:21:13 +0000 | [diff] [blame] | 64 | |
| 65 | 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] | 66 | fflush(stdout); |
David Hendricks | 3770a11 | 2004-03-17 21:47:30 +0000 | [diff] [blame] | 67 | } |
| 68 | printf("\n"); |
| 69 | |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 70 | return (0); |
David Hendricks | 3770a11 | 2004-03-17 21:47:30 +0000 | [diff] [blame] | 71 | } |