blob: 28aa16ba1c750e83864311018e4e8071f9f398af [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>
Ollie Lho184a4042005-11-26 21:55:36 +000031#include <stdint.h>
Ronald G. Minnich5e8dfff2002-03-21 22:41:11 +000032#include "flash.h"
33#include "jedec.h"
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000034#include "sst39sf020.h"
Ronald G. Minnich5e8dfff2002-03-21 22:41:11 +000035
36#define AUTO_PG_ERASE1 0x20
37#define AUTO_PG_ERASE2 0xD0
Ronald G. Minnich5e8dfff2002-03-21 22:41:11 +000038
Ollie Lho184a4042005-11-26 21:55:36 +000039static __inline__ int erase_sector_39sf020(volatile uint8_t *bios,
Ollie Lho761bf1b2004-03-20 16:46:10 +000040 unsigned long address)
Ronald G. Minnich5e8dfff2002-03-21 22:41:11 +000041{
42 *bios = AUTO_PG_ERASE1;
43 *(bios + address) = AUTO_PG_ERASE2;
44
45 /* wait for Toggle bit ready */
46 toggle_ready_jedec(bios);
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000047
Ollie Lho761bf1b2004-03-20 16:46:10 +000048 return (0);
Ronald G. Minnich5e8dfff2002-03-21 22:41:11 +000049}
50
Ollie Lho184a4042005-11-26 21:55:36 +000051int write_39sf020(struct flashchip *flash, uint8_t *buf)
Ronald G. Minnich5e8dfff2002-03-21 22:41:11 +000052{
53 int i;
Ollie Lho761bf1b2004-03-20 16:46:10 +000054 int total_size = flash->total_size * 1024, page_size =
Ollie Lhoefa28582004-12-08 20:10:01 +000055 flash->page_size;
Ollie Lho184a4042005-11-26 21:55:36 +000056 volatile uint8_t *bios = flash->virt_addr;
Ronald G. Minnich5e8dfff2002-03-21 22:41:11 +000057
Ollie Lho761bf1b2004-03-20 16:46:10 +000058 erase_chip_jedec(flash);
Ollie Lhocf29de82004-03-18 19:40:07 +000059
Ollie Lho761bf1b2004-03-20 16:46:10 +000060 printf("Programming Page: ");
61 for (i = 0; i < total_size / page_size; i++) {
Ronald G. Minnich5e8dfff2002-03-21 22:41:11 +000062 /* write to the sector */
Ollie Lho761bf1b2004-03-20 16:46:10 +000063 printf("%04d at address: 0x%08x", i, i * page_size);
64 write_sector_jedec(bios, buf + i * page_size,
65 bios + i * page_size, page_size);
Ollie Lhoefa28582004-12-08 20:10:01 +000066 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 Lho761bf1b2004-03-20 16:46:10 +000067 fflush(stdout);
Ronald G. Minnich5e8dfff2002-03-21 22:41:11 +000068 }
69 printf("\n");
70
Ollie Lho761bf1b2004-03-20 16:46:10 +000071 return (0);
Ronald G. Minnich5e8dfff2002-03-21 22:41:11 +000072}