blob: 8cab9449432eeb813b91c935d071b884b5bf1bd5 [file] [log] [blame]
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +00001/*
2 * jedec.c: driver for programming JEDEC standard flash parts
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 *
24 * $Id$
25 */
26
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000027#include <stdio.h>
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000028#include "flash.h"
29#include "jedec.h"
30
Ollie Lho761bf1b2004-03-20 16:46:10 +000031int probe_jedec(struct flashchip *flash)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000032{
Ollie Lhoafdfce82004-03-27 00:31:03 +000033 volatile unsigned char *bios = flash->virt_addr;
Ollie Lho761bf1b2004-03-20 16:46:10 +000034 unsigned char id1, id2;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000035
Ollie Lho761bf1b2004-03-20 16:46:10 +000036 /* Issue JEDEC Product ID Entry command */
37 *(volatile char *) (bios + 0x5555) = 0xAA;
38 myusec_delay(10);
39 *(volatile char *) (bios + 0x2AAA) = 0x55;
40 myusec_delay(10);
41 *(volatile char *) (bios + 0x5555) = 0x90;
42 myusec_delay(10);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000043
Ollie Lho761bf1b2004-03-20 16:46:10 +000044 /* Read product ID */
45 id1 = *(volatile unsigned char *) bios;
46 id2 = *(volatile unsigned char *) (bios + 0x01);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000047
Ollie Lho761bf1b2004-03-20 16:46:10 +000048 /* Issue JEDEC Product ID Exit command */
49 *(volatile char *) (bios + 0x5555) = 0xAA;
50 myusec_delay(10);
51 *(volatile char *) (bios + 0x2AAA) = 0x55;
52 myusec_delay(10);
53 *(volatile char *) (bios + 0x5555) = 0xF0;
54 myusec_delay(10);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000055
Ronald G. Minnichd4228fd2003-02-28 17:21:38 +000056 printf("%s: id1 0x%x, id2 0x%x\n", __FUNCTION__, id1, id2);
Ollie Lho761bf1b2004-03-20 16:46:10 +000057 if (id1 == flash->manufacture_id && id2 == flash->model_id)
58 return 1;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000059
Ollie Lho761bf1b2004-03-20 16:46:10 +000060 return 0;
Ollie Lho73eca802004-03-19 22:10:07 +000061}
62
Ollie Lhoafdfce82004-03-27 00:31:03 +000063int erase_sector_jedec(volatile unsigned char *bios, unsigned int page)
Ollie Lho73eca802004-03-19 22:10:07 +000064{
Ollie Lho73eca802004-03-19 22:10:07 +000065 volatile unsigned char *Temp;
66
Ollie Lho761bf1b2004-03-20 16:46:10 +000067 /* Issue the Sector Erase command */
68 Temp = bios + 0x5555; /* set up address to be BASE:5555h */
69 *Temp = 0xAA; /* write data 0xAA to the address */
Ollie Lho73eca802004-03-19 22:10:07 +000070 myusec_delay(10);
Ollie Lho761bf1b2004-03-20 16:46:10 +000071 Temp = bios + 0x2AAA; /* set up address to be BASE:2AAAh */
72 *Temp = 0x55; /* write data 0x55 to the address */
Ollie Lho73eca802004-03-19 22:10:07 +000073 myusec_delay(10);
Ollie Lho761bf1b2004-03-20 16:46:10 +000074 Temp = bios + 0x5555; /* set up address to be BASE:5555h */
75 *Temp = 0x80; /* write data 0x80 to the address */
Ollie Lho73eca802004-03-19 22:10:07 +000076 myusec_delay(10);
Ollie Lho761bf1b2004-03-20 16:46:10 +000077 Temp = bios + 0x5555; /* set up address to be BASE:5555h */
78 *Temp = 0xAA; /* write data 0xAA to the address */
Ollie Lho73eca802004-03-19 22:10:07 +000079 myusec_delay(10);
Ollie Lho761bf1b2004-03-20 16:46:10 +000080 Temp = bios + 0x2AAA; /* set up address to be BASE:2AAAh */
81 *Temp = 0x55; /* write data 0x55 to the address */
Ollie Lho73eca802004-03-19 22:10:07 +000082 myusec_delay(10);
Ollie Lho761bf1b2004-03-20 16:46:10 +000083 Temp = bios + page; /* set up address to be the current sector */
84 *Temp = 0x30; /* write data 0x30 to the address */
85 myusec_delay(10);
86
Ollie Lho73eca802004-03-19 22:10:07 +000087 /* wait for Toggle bit ready */
88 toggle_ready_jedec(bios);
89
Ollie Lho761bf1b2004-03-20 16:46:10 +000090 return (0);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000091}
Ollie Lho98bea8a2004-12-07 03:15:51 +000092
Ronald G. Minnich1f4d6532004-09-30 16:37:01 +000093int erase_block_jedec(volatile unsigned char *bios, unsigned int block)
94{
95 volatile unsigned char *Temp;
96
97 /* Issue the Sector Erase command */
98 Temp = bios + 0x5555; /* set up address to be BASE:5555h */
99 *Temp = 0xAA; /* write data 0xAA to the address */
100 myusec_delay(10);
101 Temp = bios + 0x2AAA; /* set up address to be BASE:2AAAh */
102 *Temp = 0x55; /* write data 0x55 to the address */
103 myusec_delay(10);
104 Temp = bios + 0x5555; /* set up address to be BASE:5555h */
105 *Temp = 0x80; /* write data 0x80 to the address */
106 myusec_delay(10);
107 Temp = bios + 0x5555; /* set up address to be BASE:5555h */
108 *Temp = 0xAA; /* write data 0xAA to the address */
109 myusec_delay(10);
110 Temp = bios + 0x2AAA; /* set up address to be BASE:2AAAh */
111 *Temp = 0x55; /* write data 0x55 to the address */
112 myusec_delay(10);
113 Temp = bios + block; /* set up address to be the current sector */
114 *Temp = 0x50; /* write data 0x30 to the address */
115 myusec_delay(10);
116
117 /* wait for Toggle bit ready */
118 toggle_ready_jedec(bios);
119
120 return (0);
121}
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000122
Ollie Lho761bf1b2004-03-20 16:46:10 +0000123int erase_chip_jedec(struct flashchip *flash)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000124{
Ollie Lho761bf1b2004-03-20 16:46:10 +0000125 volatile unsigned char *bios = flash->virt_addr;
Ollie Lho73eca802004-03-19 22:10:07 +0000126 volatile unsigned char *Temp;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000127
Ollie Lho761bf1b2004-03-20 16:46:10 +0000128 /* Issue the JEDEC Chip Erase command */
129 Temp = bios + 0x5555; /* set up address to be BASE:5555h */
130 *Temp = 0xAA; /* write data 0xAA to the address */
Ronald G. Minnichef5779d2002-01-29 20:18:02 +0000131 myusec_delay(10);
Ollie Lho761bf1b2004-03-20 16:46:10 +0000132 Temp = bios + 0x2AAA; /* set up address to be BASE:2AAAh */
133 *Temp = 0x55; /* write data 0x55 to the address */
Ollie Lho73eca802004-03-19 22:10:07 +0000134 myusec_delay(10);
Ollie Lho761bf1b2004-03-20 16:46:10 +0000135 Temp = bios + 0x5555; /* set up address to be BASE:5555h */
136 *Temp = 0x80; /* write data 0x80 to the address */
Ollie Lho73eca802004-03-19 22:10:07 +0000137 myusec_delay(10);
Ollie Lho761bf1b2004-03-20 16:46:10 +0000138 Temp = bios + 0x5555; /* set up address to be BASE:5555h */
139 *Temp = 0xAA; /* write data 0xAA to the address */
Ollie Lho73eca802004-03-19 22:10:07 +0000140 myusec_delay(10);
Ollie Lho761bf1b2004-03-20 16:46:10 +0000141 Temp = bios + 0x2AAA; /* set up address to be BASE:2AAAh */
142 *Temp = 0x55; /* write data 0x55 to the address */
Ollie Lho73eca802004-03-19 22:10:07 +0000143 myusec_delay(10);
Ollie Lho761bf1b2004-03-20 16:46:10 +0000144 Temp = bios + 0x5555; /* set up address to be BASEy:5555h */
145 *Temp = 0x10; /* write data 0x10 to the address */
Ollie Lho73eca802004-03-19 22:10:07 +0000146 myusec_delay(10);
147
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000148 toggle_ready_jedec(bios);
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000149
Ollie Lho761bf1b2004-03-20 16:46:10 +0000150 return (0);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000151}
152
Ollie Lho98bea8a2004-12-07 03:15:51 +0000153int write_page_write_jedec(volatile unsigned char *bios, unsigned char *src,
154 volatile unsigned char *dst, int page_size)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000155{
156 int i;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000157
Ollie Lho761bf1b2004-03-20 16:46:10 +0000158 /* Issue JEDEC Data Unprotect comand */
Ollie Lho98bea8a2004-12-07 03:15:51 +0000159 *(volatile unsigned char *) (bios + 0x5555) = 0xAA;
160 *(volatile unsigned char *) (bios + 0x2AAA) = 0x55;
161 *(volatile unsigned char *) (bios + 0x5555) = 0xA0;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000162
Ollie Lho98bea8a2004-12-07 03:15:51 +0000163 /* transfer data from source to destination */
Ollie Lho761bf1b2004-03-20 16:46:10 +0000164 for (i = 0; i < page_size; i++) {
Ollie Lho98bea8a2004-12-07 03:15:51 +0000165 /* If the data is 0xFF, don't program it */
166 if (*src == 0xFF)
167 continue;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000168 *dst++ = *src++;
169 }
170
Ollie Lho761bf1b2004-03-20 16:46:10 +0000171 toggle_ready_jedec(dst - 1);
Ollie Lho98bea8a2004-12-07 03:15:51 +0000172
173 return 0;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000174}
175
Ollie Lho8b8897a2004-03-27 00:18:15 +0000176int write_byte_program_jedec(volatile unsigned char *bios, unsigned char *src,
Ollie Lho070647d2004-03-22 22:19:17 +0000177 volatile unsigned char *dst)
178{
Ollie Lho1b8b6602004-12-08 02:10:33 +0000179 int tried = 0;
180
Ollie Lho98bea8a2004-12-07 03:15:51 +0000181 /* If the data is 0xFF, don't program it */
Ollie Lho070647d2004-03-22 22:19:17 +0000182 if (*src == 0xFF) {
Ollie Lho070647d2004-03-22 22:19:17 +0000183 return 0;
184 }
Ollie Lho98bea8a2004-12-07 03:15:51 +0000185
Ollie Lho1b8b6602004-12-08 02:10:33 +0000186retry:
Ollie Lho070647d2004-03-22 22:19:17 +0000187 /* Issue JEDEC Byte Program command */
Ollie Lho98bea8a2004-12-07 03:15:51 +0000188 *(volatile unsigned char *) (bios + 0x5555) = 0xAA;
189 *(volatile unsigned char *) (bios + 0x2AAA) = 0x55;
190 *(volatile unsigned char *) (bios + 0x5555) = 0xA0;
191
192 /* transfer data from source to destination */
Ollie Lho070647d2004-03-22 22:19:17 +0000193 *dst = *src;
194 toggle_ready_jedec(bios);
Ollie Lho8b8897a2004-03-27 00:18:15 +0000195
Ollie Lho1b8b6602004-12-08 02:10:33 +0000196 if (*dst != *src && tried++ < 0x10) {
197 goto retry;
198 }
199
Ollie Lho070647d2004-03-22 22:19:17 +0000200 return 0;
201}
202
203int write_sector_jedec(volatile unsigned char *bios, unsigned char *src,
Ollie Lhoafdfce82004-03-27 00:31:03 +0000204 volatile unsigned char *dst, unsigned int page_size)
Ollie Lho761bf1b2004-03-20 16:46:10 +0000205{
206 int i;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000207
208 for (i = 0; i < page_size; i++) {
Ollie Lho8b8897a2004-03-27 00:18:15 +0000209 write_byte_program_jedec(bios, src, dst);
210 dst++, src++;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000211 }
212
213 return (0);
214}
215
216int write_jedec(struct flashchip *flash, unsigned char *buf)
217{
218 int i;
Ollie Lho070647d2004-03-22 22:19:17 +0000219 int total_size = flash->total_size * 1024;
220 int page_size = flash->page_size;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000221 volatile unsigned char *bios = flash->virt_addr;
222
223 erase_chip_jedec(flash);
224 if (*bios != (unsigned char) 0xff) {
Ronald G. Minnich56439422002-09-06 16:58:14 +0000225 printf("ERASE FAILED\n");
226 return -1;
227 }
Ollie Lho761bf1b2004-03-20 16:46:10 +0000228 printf("Programming Page: ");
229 for (i = 0; i < total_size / page_size; i++) {
230 printf("%04d at address: 0x%08x", i, i * page_size);
Ollie Lho8b8897a2004-03-27 00:18:15 +0000231 write_page_write_jedec(bios, buf + i * page_size,
232 bios + i * page_size, page_size);
Ollie Lho070647d2004-03-22 22:19:17 +0000233 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 +0000234 }
235 printf("\n");
Ollie Lho761bf1b2004-03-20 16:46:10 +0000236 protect_jedec(bios);
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000237
Ollie Lho761bf1b2004-03-20 16:46:10 +0000238 return (0);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000239}