blob: 5cc46838e34c42f4f7c908556a35d8af415293a7 [file] [log] [blame]
Ronald G. Minnich5e8dfff2002-03-21 22:41:11 +00001/*
2 * sst39sf020.c: driver for SST28SF040C flash models.
3 *
4 *
5 * Copyright 2000 Silicon Integrated System Corporation
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 *
21 *
22 * Reference:
23 * 4 MEgabit (512K x 8) SuperFlash EEPROM, SST28SF040 data sheet
24 *
Ollie Lhocf29de82004-03-18 19:40:07 +000025 * ToDo: Consilidated to standard JEDEC code.
26 *
Ronald G. Minnich5e8dfff2002-03-21 22:41:11 +000027 * $Id$
28 */
29
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000030#include <stdio.h>
Ronald G. Minnich5e8dfff2002-03-21 22:41:11 +000031#include "flash.h"
32#include "jedec.h"
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000033#include "sst39sf020.h"
Ronald G. Minnich5e8dfff2002-03-21 22:41:11 +000034
35#define AUTO_PG_ERASE1 0x20
36#define AUTO_PG_ERASE2 0xD0
Ollie Lhocbbf1252004-03-17 22:22:08 +000037#define AUTO_PGRM 0x10
Ronald G. Minnich5e8dfff2002-03-21 22:41:11 +000038#define CHIP_ERASE 0x30
39#define RESET 0xFF
40#define READ_ID 0x90
41
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000042static __inline__ int erase_sector_39sf020 (volatile char * bios, unsigned long address)
Ronald G. Minnich5e8dfff2002-03-21 22:41:11 +000043{
44 *bios = AUTO_PG_ERASE1;
45 *(bios + address) = AUTO_PG_ERASE2;
46
47 /* wait for Toggle bit ready */
48 toggle_ready_jedec(bios);
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000049
50 return(0);
Ronald G. Minnich5e8dfff2002-03-21 22:41:11 +000051}
52
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000053int write_39sf020 (struct flashchip * flash, unsigned char * buf)
Ronald G. Minnich5e8dfff2002-03-21 22:41:11 +000054{
55 int i;
56 int total_size = flash->total_size * 1024, page_size = flash->page_size;
57 volatile char * bios = flash->virt_addr;
58
Ollie Lho73eca802004-03-19 22:10:07 +000059 erase_jedec(flash);
Ollie Lhocf29de82004-03-18 19:40:07 +000060
Ronald G. Minnich5e8dfff2002-03-21 22:41:11 +000061 printf ("Programming Page: ");
62 for (i = 0; i < total_size/page_size; i++) {
63 /* erase the page before programming */
64 //erase_sector_39sf020(bios, i * page_size);
65
66 /* write to the sector */
67 printf ("%04d at address: 0x%08x", i, i * page_size);
Ollie Lho73eca802004-03-19 22:10:07 +000068 write_sector_jedec(bios, buf + i * page_size, bios + i * page_size,
Ronald G. Minnich5e8dfff2002-03-21 22:41:11 +000069 page_size);
70 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");
Ronald G. Minniche5559572003-03-28 03:29:43 +000071 fflush(stdout);
Ronald G. Minnich5e8dfff2002-03-21 22:41:11 +000072 }
73 printf("\n");
74
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000075 return(0);
Ronald G. Minnich5e8dfff2002-03-21 22:41:11 +000076}