blob: 0c34e17a58c34333e94bd6dd37a5da86d9f329db [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
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +00006 * Copyright 2006 Giampiero Giancipoli <gianci@email.it>
7 * Copyright 2006 coresystems GmbH <info@coresystems.de>
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +00008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 *
23 *
24 * Reference:
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
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +000034#define MAX_REFLASH_TRIES 0x10
35
Uwe Hermann51582f22007-08-23 10:20:40 +000036void toggle_ready_jedec(volatile uint8_t *dst)
37{
38 unsigned int i = 0;
39 uint8_t tmp1, tmp2;
40
41 tmp1 = *dst & 0x40;
42
43 while (i++ < 0xFFFFFFF) {
44 tmp2 = *dst & 0x40;
45 if (tmp1 == tmp2) {
46 break;
47 }
48 tmp1 = tmp2;
49 }
50}
51
52void data_polling_jedec(volatile uint8_t *dst, uint8_t data)
53{
54 unsigned int i = 0;
55 uint8_t tmp;
56
57 data &= 0x80;
58
59 while (i++ < 0xFFFFFFF) {
60 tmp = *dst & 0x80;
61 if (tmp == data) {
62 break;
63 }
64 }
65}
66
67void unprotect_jedec(volatile uint8_t *bios)
68{
69 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
70 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
71 *(volatile uint8_t *)(bios + 0x5555) = 0x80;
72 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
73 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
74 *(volatile uint8_t *)(bios + 0x5555) = 0x20;
75
76 usleep(200);
77}
78
79void protect_jedec(volatile uint8_t *bios)
80{
81 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
82 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
83 *(volatile uint8_t *)(bios + 0x5555) = 0xA0;
84
85 usleep(200);
86}
87
Ollie Lho761bf1b2004-03-20 16:46:10 +000088int probe_jedec(struct flashchip *flash)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000089{
Stefan Reinauerce532972007-05-23 17:20:56 +000090 volatile uint8_t *bios = flash->virtual_memory;
Ollie Lho184a4042005-11-26 21:55:36 +000091 uint8_t id1, id2;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000092
Ollie Lho761bf1b2004-03-20 16:46:10 +000093 /* Issue JEDEC Product ID Entry command */
Uwe Hermanna7e05482007-05-09 10:17:44 +000094 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
Ollie Lho761bf1b2004-03-20 16:46:10 +000095 myusec_delay(10);
Uwe Hermanna7e05482007-05-09 10:17:44 +000096 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
Ollie Lho761bf1b2004-03-20 16:46:10 +000097 myusec_delay(10);
Uwe Hermanna7e05482007-05-09 10:17:44 +000098 *(volatile uint8_t *)(bios + 0x5555) = 0x90;
Ollie Lho761bf1b2004-03-20 16:46:10 +000099 myusec_delay(10);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000100
Ollie Lho761bf1b2004-03-20 16:46:10 +0000101 /* Read product ID */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000102 id1 = *(volatile uint8_t *)bios;
103 id2 = *(volatile uint8_t *)(bios + 0x01);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000104
Ollie Lho761bf1b2004-03-20 16:46:10 +0000105 /* Issue JEDEC Product ID Exit command */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000106 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000107 myusec_delay(10);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000108 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000109 myusec_delay(10);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000110 *(volatile uint8_t *)(bios + 0x5555) = 0xF0;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000111 myusec_delay(10);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000112
Ollie Lho184a4042005-11-26 21:55:36 +0000113 printf_debug("%s: id1 0x%x, id2 0x%x\n", __FUNCTION__, id1, id2);
Ollie Lho761bf1b2004-03-20 16:46:10 +0000114 if (id1 == flash->manufacture_id && id2 == flash->model_id)
115 return 1;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000116
Ollie Lho761bf1b2004-03-20 16:46:10 +0000117 return 0;
Ollie Lho73eca802004-03-19 22:10:07 +0000118}
119
Ollie Lho184a4042005-11-26 21:55:36 +0000120int erase_sector_jedec(volatile uint8_t *bios, unsigned int page)
Ollie Lho73eca802004-03-19 22:10:07 +0000121{
Ollie Lho761bf1b2004-03-20 16:46:10 +0000122 /* Issue the Sector Erase command */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000123 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
Ollie Lho73eca802004-03-19 22:10:07 +0000124 myusec_delay(10);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000125 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
Ollie Lho73eca802004-03-19 22:10:07 +0000126 myusec_delay(10);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000127 *(volatile uint8_t *)(bios + 0x5555) = 0x80;
Ollie Lho73eca802004-03-19 22:10:07 +0000128 myusec_delay(10);
Ollie Lhoefa28582004-12-08 20:10:01 +0000129
Uwe Hermanna7e05482007-05-09 10:17:44 +0000130 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
Ollie Lho73eca802004-03-19 22:10:07 +0000131 myusec_delay(10);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000132 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
Ollie Lho73eca802004-03-19 22:10:07 +0000133 myusec_delay(10);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000134 *(volatile uint8_t *)(bios + page) = 0x30;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000135 myusec_delay(10);
136
Ollie Lho73eca802004-03-19 22:10:07 +0000137 /* wait for Toggle bit ready */
138 toggle_ready_jedec(bios);
139
Ollie Lho761bf1b2004-03-20 16:46:10 +0000140 return (0);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000141}
Ollie Lho98bea8a2004-12-07 03:15:51 +0000142
Ollie Lho184a4042005-11-26 21:55:36 +0000143int erase_block_jedec(volatile uint8_t *bios, unsigned int block)
Ronald G. Minnich1f4d6532004-09-30 16:37:01 +0000144{
Ronald G. Minnich1f4d6532004-09-30 16:37:01 +0000145 /* Issue the Sector Erase command */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000146 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
Ronald G. Minnich1f4d6532004-09-30 16:37:01 +0000147 myusec_delay(10);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000148 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
Ronald G. Minnich1f4d6532004-09-30 16:37:01 +0000149 myusec_delay(10);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000150 *(volatile uint8_t *)(bios + 0x5555) = 0x80;
Ronald G. Minnich1f4d6532004-09-30 16:37:01 +0000151 myusec_delay(10);
Ollie Lhoefa28582004-12-08 20:10:01 +0000152
Uwe Hermanna7e05482007-05-09 10:17:44 +0000153 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
Ronald G. Minnich1f4d6532004-09-30 16:37:01 +0000154 myusec_delay(10);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000155 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
Ronald G. Minnich1f4d6532004-09-30 16:37:01 +0000156 myusec_delay(10);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000157 *(volatile uint8_t *)(bios + block) = 0x50;
Ronald G. Minnich1f4d6532004-09-30 16:37:01 +0000158 myusec_delay(10);
159
160 /* wait for Toggle bit ready */
161 toggle_ready_jedec(bios);
162
163 return (0);
164}
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000165
Ollie Lho761bf1b2004-03-20 16:46:10 +0000166int erase_chip_jedec(struct flashchip *flash)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000167{
Stefan Reinauerce532972007-05-23 17:20:56 +0000168 volatile uint8_t *bios = flash->virtual_memory;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000169
Ollie Lho761bf1b2004-03-20 16:46:10 +0000170 /* Issue the JEDEC Chip Erase command */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000171 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
Ronald G. Minnichef5779d2002-01-29 20:18:02 +0000172 myusec_delay(10);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000173 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
Ollie Lho73eca802004-03-19 22:10:07 +0000174 myusec_delay(10);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000175 *(volatile uint8_t *)(bios + 0x5555) = 0x80;
Ollie Lho73eca802004-03-19 22:10:07 +0000176 myusec_delay(10);
Ollie Lhoefa28582004-12-08 20:10:01 +0000177
Uwe Hermanna7e05482007-05-09 10:17:44 +0000178 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
Ollie Lho73eca802004-03-19 22:10:07 +0000179 myusec_delay(10);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000180 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
Ollie Lho73eca802004-03-19 22:10:07 +0000181 myusec_delay(10);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000182 *(volatile uint8_t *)(bios + 0x5555) = 0x10;
Ollie Lho73eca802004-03-19 22:10:07 +0000183 myusec_delay(10);
184
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000185 toggle_ready_jedec(bios);
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000186
Ollie Lho761bf1b2004-03-20 16:46:10 +0000187 return (0);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000188}
189
Ollie Lho184a4042005-11-26 21:55:36 +0000190int write_page_write_jedec(volatile uint8_t *bios, uint8_t *src,
191 volatile uint8_t *dst, int page_size)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000192{
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000193 int i, tried = 0, start_index = 0, ok;
194 volatile uint8_t *d = dst;
195 uint8_t *s = src;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000196
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000197retry:
Ollie Lho761bf1b2004-03-20 16:46:10 +0000198 /* Issue JEDEC Data Unprotect comand */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000199 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
200 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
201 *(volatile uint8_t *)(bios + 0x5555) = 0xA0;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000202
Ollie Lho98bea8a2004-12-07 03:15:51 +0000203 /* transfer data from source to destination */
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000204 for (i = start_index; i < page_size; i++) {
Ollie Lho98bea8a2004-12-07 03:15:51 +0000205 /* If the data is 0xFF, don't program it */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000206 if (*src != 0xFF)
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000207 *dst = *src;
208 dst++;
209 src++;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000210 }
211
Ollie Lho761bf1b2004-03-20 16:46:10 +0000212 toggle_ready_jedec(dst - 1);
Ollie Lho98bea8a2004-12-07 03:15:51 +0000213
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000214 dst = d;
215 src = s;
216 ok = 1;
217 for (i = 0; i < page_size; i++) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000218 if (*dst != *src) {
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000219 ok = 0;
220 break;
221 }
222 dst++;
223 src++;
224 }
Uwe Hermanna7e05482007-05-09 10:17:44 +0000225
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000226 if (!ok && tried++ < MAX_REFLASH_TRIES) {
227 start_index = i;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000228 goto retry;
229 }
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000230 if (!ok) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000231 fprintf(stderr, " page %d failed!\n",
232 (unsigned int)(d - bios) / page_size);
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000233 }
234 return (!ok);
Ollie Lho761bf1b2004-03-20 16:46:10 +0000235}
236
Ollie Lho184a4042005-11-26 21:55:36 +0000237int write_byte_program_jedec(volatile uint8_t *bios, uint8_t *src,
238 volatile uint8_t *dst)
Ollie Lho070647d2004-03-22 22:19:17 +0000239{
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000240 int tried = 0, ok = 1;
Ollie Lho1b8b6602004-12-08 02:10:33 +0000241
Ollie Lho98bea8a2004-12-07 03:15:51 +0000242 /* If the data is 0xFF, don't program it */
Ollie Lho070647d2004-03-22 22:19:17 +0000243 if (*src == 0xFF) {
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000244 return -1;
Ollie Lho070647d2004-03-22 22:19:17 +0000245 }
Ollie Lho98bea8a2004-12-07 03:15:51 +0000246
Ollie Lho1b8b6602004-12-08 02:10:33 +0000247retry:
Ollie Lho070647d2004-03-22 22:19:17 +0000248 /* Issue JEDEC Byte Program command */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000249 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
250 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
251 *(volatile uint8_t *)(bios + 0x5555) = 0xA0;
Ollie Lho98bea8a2004-12-07 03:15:51 +0000252
253 /* transfer data from source to destination */
Ollie Lho070647d2004-03-22 22:19:17 +0000254 *dst = *src;
255 toggle_ready_jedec(bios);
Ollie Lho8b8897a2004-03-27 00:18:15 +0000256
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000257 if (*dst != *src && tried++ < MAX_REFLASH_TRIES) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000258 goto retry;
259 }
Ollie Lho1b8b6602004-12-08 02:10:33 +0000260
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000261 if (tried >= MAX_REFLASH_TRIES)
Uwe Hermanna7e05482007-05-09 10:17:44 +0000262 ok = 0;
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000263
264 return (!ok);
Ollie Lho070647d2004-03-22 22:19:17 +0000265}
266
Ollie Lho184a4042005-11-26 21:55:36 +0000267int write_sector_jedec(volatile uint8_t *bios, uint8_t *src,
268 volatile uint8_t *dst, unsigned int page_size)
Ollie Lho761bf1b2004-03-20 16:46:10 +0000269{
270 int i;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000271
272 for (i = 0; i < page_size; i++) {
Ollie Lho8b8897a2004-03-27 00:18:15 +0000273 write_byte_program_jedec(bios, src, dst);
274 dst++, src++;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000275 }
276
277 return (0);
278}
279
Ollie Lho184a4042005-11-26 21:55:36 +0000280int write_jedec(struct flashchip *flash, uint8_t *buf)
Ollie Lho761bf1b2004-03-20 16:46:10 +0000281{
282 int i;
Ollie Lho070647d2004-03-22 22:19:17 +0000283 int total_size = flash->total_size * 1024;
284 int page_size = flash->page_size;
Stefan Reinauerce532972007-05-23 17:20:56 +0000285 volatile uint8_t *bios = flash->virtual_memory;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000286
287 erase_chip_jedec(flash);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000288 // dumb check if erase was successful.
289 for (i = 0; i < total_size; i++) {
290 if (bios[i] != (uint8_t) 0xff) {
291 printf("ERASE FAILED\n");
292 return -1;
293 }
294 }
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000295
Ollie Lho761bf1b2004-03-20 16:46:10 +0000296 printf("Programming Page: ");
297 for (i = 0; i < total_size / page_size; i++) {
298 printf("%04d at address: 0x%08x", i, i * page_size);
Ollie Lho8b8897a2004-03-27 00:18:15 +0000299 write_page_write_jedec(bios, buf + i * page_size,
300 bios + i * page_size, page_size);
Ollie Lho070647d2004-03-22 22:19:17 +0000301 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 +0000302 }
303 printf("\n");
Ollie Lho761bf1b2004-03-20 16:46:10 +0000304 protect_jedec(bios);
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000305
Ollie Lho761bf1b2004-03-20 16:46:10 +0000306 return (0);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000307}