blob: 7b3db15b18d9fa43334d3d3dec36a5931a996f8f [file] [log] [blame]
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +00001/*
2 * sst28sf040.c: driver for SST28SF040C flash models.
3 *
4 *
5 * Copyright 2000 Silicon Integrated System Corporation
Ollie Lho184a4042005-11-26 21:55:36 +00006 * Copyright 2005 coresystems GmbH <stepan@openbios.org>
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +00007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 *
22 *
23 * Reference:
24 * 4 MEgabit (512K x 8) SuperFlash EEPROM, SST28SF040 data sheet
25 *
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000026 */
27
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000028#include <stdio.h>
Ollie Lho184a4042005-11-26 21:55:36 +000029#include <stdint.h>
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000030#include "flash.h"
31#include "jedec.h"
Ollie Lho184a4042005-11-26 21:55:36 +000032#include "debug.h"
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000033
34#define AUTO_PG_ERASE1 0x20
35#define AUTO_PG_ERASE2 0xD0
Ollie Lhocf29de82004-03-18 19:40:07 +000036#define AUTO_PGRM 0x10
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000037#define CHIP_ERASE 0x30
38#define RESET 0xFF
39#define READ_ID 0x90
40
Ollie Lho184a4042005-11-26 21:55:36 +000041static __inline__ void protect_28sf040(volatile uint8_t *bios)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000042{
43 /* ask compiler not to optimize this */
Ollie Lho184a4042005-11-26 21:55:36 +000044 volatile uint8_t tmp;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000045
Uwe Hermanna7e05482007-05-09 10:17:44 +000046 tmp = *(volatile uint8_t *)(bios + 0x1823);
47 tmp = *(volatile uint8_t *)(bios + 0x1820);
48 tmp = *(volatile uint8_t *)(bios + 0x1822);
49 tmp = *(volatile uint8_t *)(bios + 0x0418);
50 tmp = *(volatile uint8_t *)(bios + 0x041B);
51 tmp = *(volatile uint8_t *)(bios + 0x0419);
52 tmp = *(volatile uint8_t *)(bios + 0x040A);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000053}
54
Ollie Lho184a4042005-11-26 21:55:36 +000055static __inline__ void unprotect_28sf040(volatile uint8_t *bios)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000056{
57 /* ask compiler not to optimize this */
Ollie Lho184a4042005-11-26 21:55:36 +000058 volatile uint8_t tmp;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000059
Uwe Hermanna7e05482007-05-09 10:17:44 +000060 tmp = *(volatile uint8_t *)(bios + 0x1823);
61 tmp = *(volatile uint8_t *)(bios + 0x1820);
62 tmp = *(volatile uint8_t *)(bios + 0x1822);
63 tmp = *(volatile uint8_t *)(bios + 0x0418);
64 tmp = *(volatile uint8_t *)(bios + 0x041B);
65 tmp = *(volatile uint8_t *)(bios + 0x0419);
66 tmp = *(volatile uint8_t *)(bios + 0x041A);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000067}
68
Ollie Lho184a4042005-11-26 21:55:36 +000069static __inline__ int erase_sector_28sf040(volatile uint8_t *bios,
Ollie Lho761bf1b2004-03-20 16:46:10 +000070 unsigned long address)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000071{
72 *bios = AUTO_PG_ERASE1;
73 *(bios + address) = AUTO_PG_ERASE2;
74
75 /* wait for Toggle bit ready */
76 toggle_ready_jedec(bios);
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000077
Ollie Lho761bf1b2004-03-20 16:46:10 +000078 return (0);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000079}
80
Ollie Lho184a4042005-11-26 21:55:36 +000081static __inline__ int write_sector_28sf040(volatile uint8_t *bios,
82 uint8_t *src,
83 volatile uint8_t *dst,
Ollie Lho761bf1b2004-03-20 16:46:10 +000084 unsigned int page_size)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000085{
86 int i;
87
88 for (i = 0; i < page_size; i++) {
89 /* transfer data from source to destination */
90 if (*src == 0xFF) {
91 dst++, src++;
92 /* If the data is 0xFF, don't program it */
93 continue;
94 }
95 /*issue AUTO PROGRAM command */
Ollie Lho761bf1b2004-03-20 16:46:10 +000096 *dst = AUTO_PGRM;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000097 *dst++ = *src++;
98
99 /* wait for Toggle bit ready */
100 toggle_ready_jedec(bios);
101 }
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000102
Ollie Lho761bf1b2004-03-20 16:46:10 +0000103 return (0);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000104}
105
Ollie Lho761bf1b2004-03-20 16:46:10 +0000106int probe_28sf040(struct flashchip *flash)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000107{
Ollie Lho184a4042005-11-26 21:55:36 +0000108 volatile uint8_t *bios = flash->virt_addr;
109 uint8_t id1, id2, tmp;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000110
111 /* save the value at the beginning of the Flash */
112 tmp = *bios;
113
114 *bios = RESET;
Ronald G. Minnichef5779d2002-01-29 20:18:02 +0000115 myusec_delay(10);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000116
117 *bios = READ_ID;
Ronald G. Minnichef5779d2002-01-29 20:18:02 +0000118 myusec_delay(10);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000119 id1 = *(volatile uint8_t *)bios;
Ronald G. Minnichef5779d2002-01-29 20:18:02 +0000120 myusec_delay(10);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000121 id2 = *(volatile uint8_t *)(bios + 0x01);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000122
123 *bios = RESET;
Ronald G. Minnichef5779d2002-01-29 20:18:02 +0000124 myusec_delay(10);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000125
Ollie Lho184a4042005-11-26 21:55:36 +0000126 printf_debug("%s: id1 0x%x, id2 0x%x\n", __FUNCTION__, id1, id2);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000127 if (id1 == flash->manufacture_id && id2 == flash->model_id)
128 return 1;
129
130 /* if there is no SST28SF040, restore the original value */
131 *bios = tmp;
132 return 0;
133}
134
Ollie Lho761bf1b2004-03-20 16:46:10 +0000135int erase_28sf040(struct flashchip *flash)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000136{
Ollie Lho184a4042005-11-26 21:55:36 +0000137 volatile uint8_t *bios = flash->virt_addr;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000138
Ollie Lho761bf1b2004-03-20 16:46:10 +0000139 unprotect_28sf040(bios);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000140 *bios = CHIP_ERASE;
141 *bios = CHIP_ERASE;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000142 protect_28sf040(bios);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000143
Ronald G. Minnichef5779d2002-01-29 20:18:02 +0000144 myusec_delay(10);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000145 toggle_ready_jedec(bios);
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000146
Ollie Lho761bf1b2004-03-20 16:46:10 +0000147 return (0);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000148}
149
Ollie Lho184a4042005-11-26 21:55:36 +0000150int write_28sf040(struct flashchip *flash, uint8_t *buf)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000151{
152 int i;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000153 int total_size = flash->total_size * 1024;
154 int page_size = flash->page_size;
Ollie Lho184a4042005-11-26 21:55:36 +0000155 volatile uint8_t *bios = flash->virt_addr;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000156
Ollie Lho761bf1b2004-03-20 16:46:10 +0000157 unprotect_28sf040(bios);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000158
Ollie Lho761bf1b2004-03-20 16:46:10 +0000159 printf("Programming Page: ");
160 for (i = 0; i < total_size / page_size; i++) {
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000161 /* erase the page before programming */
162 erase_sector_28sf040(bios, i * page_size);
163
164 /* write to the sector */
Ollie Lho761bf1b2004-03-20 16:46:10 +0000165 printf("%04d at address: 0x%08x", i, i * page_size);
166 write_sector_28sf040(bios, buf + i * page_size,
167 bios + i * page_size, page_size);
Ollie Lho8b8897a2004-03-27 00:18:15 +0000168 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. Minnich5e5f75e2002-01-29 18:21:41 +0000169 }
170 printf("\n");
171
Ollie Lho761bf1b2004-03-20 16:46:10 +0000172 protect_28sf040(bios);
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000173
Ollie Lho761bf1b2004-03-20 16:46:10 +0000174 return (0);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000175}