blob: ace2f1ae33fcd62058a3edee4faa399597941ed3 [file] [log] [blame]
David Hendricks3770a112004-03-17 21:47:30 +00001/* sst40lf020.c: driver for SST40LF040 flash models.
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:
22 * 4 MEgabit (512K x 8) SuperFlash EEPROM, SST49lF040 data sheet
23 *
Ollie Lhocf29de82004-03-18 19:40:07 +000024 * ToDo: Consilidated to standard JEDEC code.
25 *
David Hendricks3770a112004-03-17 21:47:30 +000026 * $Id$
27 */
David Hendricks3770a112004-03-17 21:47:30 +000028#include <stdio.h>
29#include "flash.h"
30#include "jedec.h"
31#include "sst49lf040.h"
32
33#define AUTO_PG_ERASE1 0x20
34#define AUTO_PG_ERASE2 0xD0
35#define AUTO_PGRM 0x10
36#define CHIP_ERASE 0x30
37#define RESET 0xFF
38#define READ_ID 0x90
39
David Hendricks3770a112004-03-17 21:47:30 +000040
Ollie Lho761bf1b2004-03-20 16:46:10 +000041int write_49lf040(struct flashchip *flash, unsigned char *buf)
David Hendricks3770a112004-03-17 21:47:30 +000042{
43 int i;
Ollie Lho761bf1b2004-03-20 16:46:10 +000044 int total_size = flash->total_size * 1024, page_size =
45 flash->page_size;
46 volatile char *bios = flash->virt_addr;
David Hendricks3770a112004-03-17 21:47:30 +000047
Ollie Lho761bf1b2004-03-20 16:46:10 +000048 printf("Programming Page: ");
49 for (i = 0; i < total_size / page_size; i++) {
Ollie Lho73eca802004-03-19 22:10:07 +000050 /* erase the page before programming
51 * Chip erase only works in parallel programming mode for the 49lf040.
52 * Use sector-erase instead */
53 erase_sector_jedec(bios, i * page_size);
David Hendricks3770a112004-03-17 21:47:30 +000054
55 /* write to the sector */
Ollie Lho761bf1b2004-03-20 16:46:10 +000056 printf("%04d at address: 0x%08x ", i, i * page_size);
57 write_sector_jedec(bios, buf + i * page_size,
58 bios + i * page_size, page_size);
59 printf
60 ("\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");
61 fflush(stdout);
David Hendricks3770a112004-03-17 21:47:30 +000062 }
63 printf("\n");
64
Ollie Lho761bf1b2004-03-20 16:46:10 +000065 return (0);
David Hendricks3770a112004-03-17 21:47:30 +000066}