blob: 41fda423e240851d9c413e81fed813a06cead81d [file] [log] [blame]
rminnich8d3ff912003-10-25 17:01:29 +00001/*
2 * jedec.c: driver for programming JEDEC standard flash parts
3 *
4 *
5 * Copyright 2000 Silicon Integrated System Corporation
stepan7abc6322006-11-22 00:29:51 +00006 * Copyright 2006 Giampiero Giancipoli <gianci@email.it>
7 * Copyright 2006 coresystems GmbH <info@coresystems.de>
rminnich8d3ff912003-10-25 17:01:29 +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 *
rminnich8d3ff912003-10-25 17:01:29 +000026 */
27
28#include <stdio.h>
ollie6a600992005-11-26 21:55:36 +000029#include <stdint.h>
rminnich8d3ff912003-10-25 17:01:29 +000030#include "flash.h"
31#include "jedec.h"
ollie6a600992005-11-26 21:55:36 +000032#include "debug.h"
rminnich8d3ff912003-10-25 17:01:29 +000033
stepan7abc6322006-11-22 00:29:51 +000034#define MAX_REFLASH_TRIES 0x10
35
ollie5b621572004-03-20 16:46:10 +000036int probe_jedec(struct flashchip *flash)
rminnich8d3ff912003-10-25 17:01:29 +000037{
ollie6a600992005-11-26 21:55:36 +000038 volatile uint8_t *bios = flash->virt_addr;
39 uint8_t id1, id2;
rminnich8d3ff912003-10-25 17:01:29 +000040
ollie5b621572004-03-20 16:46:10 +000041 /* Issue JEDEC Product ID Entry command */
uwef6641642007-05-09 10:17:44 +000042 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
ollie5b621572004-03-20 16:46:10 +000043 myusec_delay(10);
uwef6641642007-05-09 10:17:44 +000044 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
ollie5b621572004-03-20 16:46:10 +000045 myusec_delay(10);
uwef6641642007-05-09 10:17:44 +000046 *(volatile uint8_t *)(bios + 0x5555) = 0x90;
ollie5b621572004-03-20 16:46:10 +000047 myusec_delay(10);
rminnich8d3ff912003-10-25 17:01:29 +000048
ollie5b621572004-03-20 16:46:10 +000049 /* Read product ID */
uwef6641642007-05-09 10:17:44 +000050 id1 = *(volatile uint8_t *)bios;
51 id2 = *(volatile uint8_t *)(bios + 0x01);
rminnich8d3ff912003-10-25 17:01:29 +000052
ollie5b621572004-03-20 16:46:10 +000053 /* Issue JEDEC Product ID Exit command */
uwef6641642007-05-09 10:17:44 +000054 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
ollie5b621572004-03-20 16:46:10 +000055 myusec_delay(10);
uwef6641642007-05-09 10:17:44 +000056 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
ollie5b621572004-03-20 16:46:10 +000057 myusec_delay(10);
uwef6641642007-05-09 10:17:44 +000058 *(volatile uint8_t *)(bios + 0x5555) = 0xF0;
ollie5b621572004-03-20 16:46:10 +000059 myusec_delay(10);
rminnich8d3ff912003-10-25 17:01:29 +000060
ollie6a600992005-11-26 21:55:36 +000061 printf_debug("%s: id1 0x%x, id2 0x%x\n", __FUNCTION__, id1, id2);
ollie5b621572004-03-20 16:46:10 +000062 if (id1 == flash->manufacture_id && id2 == flash->model_id)
63 return 1;
rminnich8d3ff912003-10-25 17:01:29 +000064
ollie5b621572004-03-20 16:46:10 +000065 return 0;
olliea3def632004-03-19 22:10:07 +000066}
67
ollie6a600992005-11-26 21:55:36 +000068int erase_sector_jedec(volatile uint8_t *bios, unsigned int page)
olliea3def632004-03-19 22:10:07 +000069{
ollie5b621572004-03-20 16:46:10 +000070 /* Issue the Sector Erase command */
uwef6641642007-05-09 10:17:44 +000071 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
olliea3def632004-03-19 22:10:07 +000072 myusec_delay(10);
uwef6641642007-05-09 10:17:44 +000073 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
olliea3def632004-03-19 22:10:07 +000074 myusec_delay(10);
uwef6641642007-05-09 10:17:44 +000075 *(volatile uint8_t *)(bios + 0x5555) = 0x80;
olliea3def632004-03-19 22:10:07 +000076 myusec_delay(10);
ollie0eb62d62004-12-08 20:10:01 +000077
uwef6641642007-05-09 10:17:44 +000078 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
olliea3def632004-03-19 22:10:07 +000079 myusec_delay(10);
uwef6641642007-05-09 10:17:44 +000080 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
olliea3def632004-03-19 22:10:07 +000081 myusec_delay(10);
uwef6641642007-05-09 10:17:44 +000082 *(volatile uint8_t *)(bios + page) = 0x30;
ollie5b621572004-03-20 16:46:10 +000083 myusec_delay(10);
84
olliea3def632004-03-19 22:10:07 +000085 /* wait for Toggle bit ready */
86 toggle_ready_jedec(bios);
87
ollie5b621572004-03-20 16:46:10 +000088 return (0);
rminnich8d3ff912003-10-25 17:01:29 +000089}
olliea4302802004-12-07 03:15:51 +000090
ollie6a600992005-11-26 21:55:36 +000091int erase_block_jedec(volatile uint8_t *bios, unsigned int block)
rminnichdfcbaa72004-09-30 16:37:01 +000092{
rminnichdfcbaa72004-09-30 16:37:01 +000093 /* Issue the Sector Erase command */
uwef6641642007-05-09 10:17:44 +000094 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
rminnichdfcbaa72004-09-30 16:37:01 +000095 myusec_delay(10);
uwef6641642007-05-09 10:17:44 +000096 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
rminnichdfcbaa72004-09-30 16:37:01 +000097 myusec_delay(10);
uwef6641642007-05-09 10:17:44 +000098 *(volatile uint8_t *)(bios + 0x5555) = 0x80;
rminnichdfcbaa72004-09-30 16:37:01 +000099 myusec_delay(10);
ollie0eb62d62004-12-08 20:10:01 +0000100
uwef6641642007-05-09 10:17:44 +0000101 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
rminnichdfcbaa72004-09-30 16:37:01 +0000102 myusec_delay(10);
uwef6641642007-05-09 10:17:44 +0000103 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
rminnichdfcbaa72004-09-30 16:37:01 +0000104 myusec_delay(10);
uwef6641642007-05-09 10:17:44 +0000105 *(volatile uint8_t *)(bios + block) = 0x50;
rminnichdfcbaa72004-09-30 16:37:01 +0000106 myusec_delay(10);
107
108 /* wait for Toggle bit ready */
109 toggle_ready_jedec(bios);
110
111 return (0);
112}
rminnich8d3ff912003-10-25 17:01:29 +0000113
ollie5b621572004-03-20 16:46:10 +0000114int erase_chip_jedec(struct flashchip *flash)
rminnich8d3ff912003-10-25 17:01:29 +0000115{
ollie6a600992005-11-26 21:55:36 +0000116 volatile uint8_t *bios = flash->virt_addr;
rminnich8d3ff912003-10-25 17:01:29 +0000117
ollie5b621572004-03-20 16:46:10 +0000118 /* Issue the JEDEC Chip Erase command */
uwef6641642007-05-09 10:17:44 +0000119 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
rminnich8d3ff912003-10-25 17:01:29 +0000120 myusec_delay(10);
uwef6641642007-05-09 10:17:44 +0000121 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
olliea3def632004-03-19 22:10:07 +0000122 myusec_delay(10);
uwef6641642007-05-09 10:17:44 +0000123 *(volatile uint8_t *)(bios + 0x5555) = 0x80;
olliea3def632004-03-19 22:10:07 +0000124 myusec_delay(10);
ollie0eb62d62004-12-08 20:10:01 +0000125
uwef6641642007-05-09 10:17:44 +0000126 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
olliea3def632004-03-19 22:10:07 +0000127 myusec_delay(10);
uwef6641642007-05-09 10:17:44 +0000128 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
olliea3def632004-03-19 22:10:07 +0000129 myusec_delay(10);
uwef6641642007-05-09 10:17:44 +0000130 *(volatile uint8_t *)(bios + 0x5555) = 0x10;
olliea3def632004-03-19 22:10:07 +0000131 myusec_delay(10);
132
rminnich8d3ff912003-10-25 17:01:29 +0000133 toggle_ready_jedec(bios);
134
ollie5b621572004-03-20 16:46:10 +0000135 return (0);
rminnich8d3ff912003-10-25 17:01:29 +0000136}
137
ollie6a600992005-11-26 21:55:36 +0000138int write_page_write_jedec(volatile uint8_t *bios, uint8_t *src,
139 volatile uint8_t *dst, int page_size)
rminnich8d3ff912003-10-25 17:01:29 +0000140{
stepan7abc6322006-11-22 00:29:51 +0000141 int i, tried = 0, start_index = 0, ok;
142 volatile uint8_t *d = dst;
143 uint8_t *s = src;
rminnich8d3ff912003-10-25 17:01:29 +0000144
stepan7abc6322006-11-22 00:29:51 +0000145retry:
ollie5b621572004-03-20 16:46:10 +0000146 /* Issue JEDEC Data Unprotect comand */
uwef6641642007-05-09 10:17:44 +0000147 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
148 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
149 *(volatile uint8_t *)(bios + 0x5555) = 0xA0;
ollie5b621572004-03-20 16:46:10 +0000150
olliea4302802004-12-07 03:15:51 +0000151 /* transfer data from source to destination */
stepan7abc6322006-11-22 00:29:51 +0000152 for (i = start_index; i < page_size; i++) {
olliea4302802004-12-07 03:15:51 +0000153 /* If the data is 0xFF, don't program it */
uwef6641642007-05-09 10:17:44 +0000154 if (*src != 0xFF)
stepan7abc6322006-11-22 00:29:51 +0000155 *dst = *src;
156 dst++;
157 src++;
ollie5b621572004-03-20 16:46:10 +0000158 }
159
ollie5b621572004-03-20 16:46:10 +0000160 toggle_ready_jedec(dst - 1);
olliea4302802004-12-07 03:15:51 +0000161
stepan7abc6322006-11-22 00:29:51 +0000162 dst = d;
163 src = s;
164 ok = 1;
165 for (i = 0; i < page_size; i++) {
uwef6641642007-05-09 10:17:44 +0000166 if (*dst != *src) {
stepan7abc6322006-11-22 00:29:51 +0000167 ok = 0;
168 break;
169 }
170 dst++;
171 src++;
172 }
uwef6641642007-05-09 10:17:44 +0000173
stepan7abc6322006-11-22 00:29:51 +0000174 if (!ok && tried++ < MAX_REFLASH_TRIES) {
175 start_index = i;
uwef6641642007-05-09 10:17:44 +0000176 goto retry;
177 }
stepan7abc6322006-11-22 00:29:51 +0000178 if (!ok) {
uwef6641642007-05-09 10:17:44 +0000179 fprintf(stderr, " page %d failed!\n",
180 (unsigned int)(d - bios) / page_size);
stepan7abc6322006-11-22 00:29:51 +0000181 }
182 return (!ok);
ollie5b621572004-03-20 16:46:10 +0000183}
184
ollie6a600992005-11-26 21:55:36 +0000185int write_byte_program_jedec(volatile uint8_t *bios, uint8_t *src,
186 volatile uint8_t *dst)
olliebb5917a2004-03-22 22:19:17 +0000187{
stepan7abc6322006-11-22 00:29:51 +0000188 int tried = 0, ok = 1;
olliedd68ded2004-12-08 02:10:33 +0000189
olliea4302802004-12-07 03:15:51 +0000190 /* If the data is 0xFF, don't program it */
olliebb5917a2004-03-22 22:19:17 +0000191 if (*src == 0xFF) {
stepan7abc6322006-11-22 00:29:51 +0000192 return -1;
olliebb5917a2004-03-22 22:19:17 +0000193 }
olliea4302802004-12-07 03:15:51 +0000194
olliedd68ded2004-12-08 02:10:33 +0000195retry:
olliebb5917a2004-03-22 22:19:17 +0000196 /* Issue JEDEC Byte Program command */
uwef6641642007-05-09 10:17:44 +0000197 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
198 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
199 *(volatile uint8_t *)(bios + 0x5555) = 0xA0;
olliea4302802004-12-07 03:15:51 +0000200
201 /* transfer data from source to destination */
olliebb5917a2004-03-22 22:19:17 +0000202 *dst = *src;
203 toggle_ready_jedec(bios);
ollief1845bd2004-03-27 00:18:15 +0000204
stepan7abc6322006-11-22 00:29:51 +0000205 if (*dst != *src && tried++ < MAX_REFLASH_TRIES) {
uwef6641642007-05-09 10:17:44 +0000206 goto retry;
207 }
olliedd68ded2004-12-08 02:10:33 +0000208
stepan7abc6322006-11-22 00:29:51 +0000209 if (tried >= MAX_REFLASH_TRIES)
uwef6641642007-05-09 10:17:44 +0000210 ok = 0;
stepan7abc6322006-11-22 00:29:51 +0000211
212 return (!ok);
olliebb5917a2004-03-22 22:19:17 +0000213}
214
ollie6a600992005-11-26 21:55:36 +0000215int write_sector_jedec(volatile uint8_t *bios, uint8_t *src,
216 volatile uint8_t *dst, unsigned int page_size)
ollie5b621572004-03-20 16:46:10 +0000217{
218 int i;
ollie5b621572004-03-20 16:46:10 +0000219
220 for (i = 0; i < page_size; i++) {
ollief1845bd2004-03-27 00:18:15 +0000221 write_byte_program_jedec(bios, src, dst);
222 dst++, src++;
ollie5b621572004-03-20 16:46:10 +0000223 }
224
225 return (0);
226}
227
ollie6a600992005-11-26 21:55:36 +0000228int write_jedec(struct flashchip *flash, uint8_t *buf)
ollie5b621572004-03-20 16:46:10 +0000229{
230 int i;
olliebb5917a2004-03-22 22:19:17 +0000231 int total_size = flash->total_size * 1024;
232 int page_size = flash->page_size;
ollie6a600992005-11-26 21:55:36 +0000233 volatile uint8_t *bios = flash->virt_addr;
ollie5b621572004-03-20 16:46:10 +0000234
235 erase_chip_jedec(flash);
uwef6641642007-05-09 10:17:44 +0000236 // dumb check if erase was successful.
237 for (i = 0; i < total_size; i++) {
238 if (bios[i] != (uint8_t) 0xff) {
239 printf("ERASE FAILED\n");
240 return -1;
241 }
242 }
stepan7abc6322006-11-22 00:29:51 +0000243
ollie5b621572004-03-20 16:46:10 +0000244 printf("Programming Page: ");
245 for (i = 0; i < total_size / page_size; i++) {
246 printf("%04d at address: 0x%08x", i, i * page_size);
ollief1845bd2004-03-27 00:18:15 +0000247 write_page_write_jedec(bios, buf + i * page_size,
248 bios + i * page_size, page_size);
olliebb5917a2004-03-22 22:19:17 +0000249 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");
rminnich8d3ff912003-10-25 17:01:29 +0000250 }
251 printf("\n");
ollie5b621572004-03-20 16:46:10 +0000252 protect_jedec(bios);
rminnich8d3ff912003-10-25 17:01:29 +0000253
ollie5b621572004-03-20 16:46:10 +0000254 return (0);
rminnich8d3ff912003-10-25 17:01:29 +0000255}