blob: 884895e38309a43c4bdc14125b81809b387629ab [file] [log] [blame]
Roman Kononov41c47672006-10-07 00:21:13 +00001/* sst49lf040.c: driver for SST49LF040 flash models.
David Hendricks3770a112004-03-17 21:47:30 +00002 *
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 Reinauer7ed78c82007-05-24 09:26:39 +000022 * 4 Megabit (512K x 8) SuperFlash EEPROM, SST49lF040 data sheet
David Hendricks3770a112004-03-17 21:47:30 +000023 *
Stefan Reinauer7ed78c82007-05-24 09:26:39 +000024 * TODO: Consilidated to standard JEDEC code.
Ollie Lhocf29de82004-03-18 19:40:07 +000025 *
David Hendricks3770a112004-03-17 21:47:30 +000026 */
David Hendricks3770a112004-03-17 21:47:30 +000027#include <stdio.h>
28#include "flash.h"
David Hendricks3770a112004-03-17 21:47:30 +000029
Ollie Lhoa1439cf2005-01-11 02:48:22 +000030int erase_49lf040(struct flashchip *flash)
31{
Uwe Hermann0b7afe62007-04-01 19:44:21 +000032 int i;
33 int total_size = flash->total_size * 1024;
34 int page_size = flash->page_size;
Stefan Reinauerce532972007-05-23 17:20:56 +000035 volatile uint8_t *bios = flash->virtual_memory;
Ollie Lhoa1439cf2005-01-11 02:48:22 +000036
Uwe Hermann0b7afe62007-04-01 19:44:21 +000037 for (i = 0; i < total_size / page_size; i++) {
Ollie Lhoa1439cf2005-01-11 02:48:22 +000038 /* 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 Hermann0b7afe62007-04-01 19:44:21 +000041 }
Ollie Lhoa1439cf2005-01-11 02:48:22 +000042 return 0;
43}
44
Ollie Lho184a4042005-11-26 21:55:36 +000045int write_49lf040(struct flashchip *flash, uint8_t *buf)
David Hendricks3770a112004-03-17 21:47:30 +000046{
47 int i;
Ollie Lho8b8897a2004-03-27 00:18:15 +000048 int total_size = flash->total_size * 1024;
49 int page_size = flash->page_size;
Stefan Reinauerce532972007-05-23 17:20:56 +000050 volatile uint8_t *bios = flash->virtual_memory;
David Hendricks3770a112004-03-17 21:47:30 +000051
Ollie Lho761bf1b2004-03-20 16:46:10 +000052 printf("Programming Page: ");
53 for (i = 0; i < total_size / page_size; i++) {
Ollie Lho73eca802004-03-19 22:10:07 +000054 /* erase the page before programming
Ollie Lhoa1439cf2005-01-11 02:48:22 +000055 * Chip erase only works in parallel programming mode
56 * for the 49lf040. Use sector-erase instead */
Ollie Lho73eca802004-03-19 22:10:07 +000057 erase_sector_jedec(bios, i * page_size);
David Hendricks3770a112004-03-17 21:47:30 +000058
59 /* write to the sector */
Roman Kononov41c47672006-10-07 00:21:13 +000060 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
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 Lho761bf1b2004-03-20 16:46:10 +000066 fflush(stdout);
David Hendricks3770a112004-03-17 21:47:30 +000067 }
68 printf("\n");
69
Ollie Lho761bf1b2004-03-20 16:46:10 +000070 return (0);
David Hendricks3770a112004-03-17 21:47:30 +000071}