blob: 199c64d3e9da00a8ba994c1db00bd1ff7bd0ebe0 [file] [log] [blame]
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +00001/*
Uwe Hermannd1107642007-08-29 17:52:32 +00002 * This file is part of the flashrom project.
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +00003 *
Uwe Hermannd22a1d42007-09-09 20:21:05 +00004 * Copyright (C) 2000 Silicon Integrated System Corporation
5 * Copyright (C) 2006 Giampiero Giancipoli <gianci@email.it>
6 * Copyright (C) 2006 coresystems GmbH <info@coresystems.de>
Carl-Daniel Hailfingerae8afa92007-12-31 01:49:00 +00007 * Copyright (C) 2007 Carl-Daniel Hailfinger
Sean Nelsonc57a9202010-01-04 17:15:23 +00008 * Copyright (C) 2009 Sean Nelson <audiohacked@gmail.com>
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +00009 *
Uwe Hermannd1107642007-08-29 17:52:32 +000010 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000014 *
Uwe Hermannd1107642007-08-29 17:52:32 +000015 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000019 *
Uwe Hermannd1107642007-08-29 17:52:32 +000020 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000023 */
24
25#include "flash.h"
Sean Nelson14ba6682010-02-26 05:48:29 +000026#include "chipdrivers.h"
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000027
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +000028#define MAX_REFLASH_TRIES 0x10
Sean Nelsonc57a9202010-01-04 17:15:23 +000029#define MASK_FULL 0xffff
30#define MASK_2AA 0x7ff
Sean Nelson35727f72010-01-28 23:55:12 +000031#define MASK_AAA 0xfff
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +000032
Carl-Daniel Hailfingera758f512008-05-14 12:03:06 +000033/* Check one byte for odd parity */
34uint8_t oddparity(uint8_t val)
35{
36 val = (val ^ (val >> 4)) & 0xf;
37 val = (val ^ (val >> 2)) & 0x3;
38 return (val ^ (val >> 1)) & 0x1;
39}
40
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000041static void toggle_ready_jedec_common(chipaddr dst, int delay)
Uwe Hermann51582f22007-08-23 10:20:40 +000042{
43 unsigned int i = 0;
44 uint8_t tmp1, tmp2;
45
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +000046 tmp1 = chip_readb(dst) & 0x40;
Uwe Hermann51582f22007-08-23 10:20:40 +000047
48 while (i++ < 0xFFFFFFF) {
Carl-Daniel Hailfingeraa000982009-12-17 16:20:26 +000049 if (delay)
50 programmer_delay(delay);
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +000051 tmp2 = chip_readb(dst) & 0x40;
Uwe Hermann51582f22007-08-23 10:20:40 +000052 if (tmp1 == tmp2) {
53 break;
54 }
55 tmp1 = tmp2;
56 }
Carl-Daniel Hailfingeraa000982009-12-17 16:20:26 +000057 if (i > 0x100000)
Sean Nelsoned479d22010-03-24 23:14:32 +000058 msg_cdbg("%s: excessive loops, i=0x%x\n", __func__, i);
Carl-Daniel Hailfingeraa000982009-12-17 16:20:26 +000059}
60
61void toggle_ready_jedec(chipaddr dst)
62{
63 toggle_ready_jedec_common(dst, 0);
64}
65
66/* Some chips require a minimum delay between toggle bit reads.
67 * The Winbond W39V040C wants 50 ms between reads on sector erase toggle,
68 * but experiments show that 2 ms are already enough. Pick a safety factor
69 * of 4 and use an 8 ms delay.
70 * Given that erase is slow on all chips, it is recommended to use
71 * toggle_ready_jedec_slow in erase functions.
72 */
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000073static void toggle_ready_jedec_slow(chipaddr dst)
Carl-Daniel Hailfingeraa000982009-12-17 16:20:26 +000074{
75 toggle_ready_jedec_common(dst, 8 * 1000);
Uwe Hermann51582f22007-08-23 10:20:40 +000076}
77
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +000078void data_polling_jedec(chipaddr dst, uint8_t data)
Uwe Hermann51582f22007-08-23 10:20:40 +000079{
80 unsigned int i = 0;
81 uint8_t tmp;
82
83 data &= 0x80;
84
85 while (i++ < 0xFFFFFFF) {
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +000086 tmp = chip_readb(dst) & 0x80;
Uwe Hermann51582f22007-08-23 10:20:40 +000087 if (tmp == data) {
88 break;
89 }
90 }
Carl-Daniel Hailfingeraa000982009-12-17 16:20:26 +000091 if (i > 0x100000)
Sean Nelsoned479d22010-03-24 23:14:32 +000092 msg_cdbg("%s: excessive loops, i=0x%x\n", __func__, i);
Uwe Hermann51582f22007-08-23 10:20:40 +000093}
94
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +000095static int getaddrmask(struct flashchip *flash)
96{
97 switch (flash->feature_bits & FEATURE_ADDR_MASK) {
98 case FEATURE_ADDR_FULL:
99 return MASK_FULL;
100 break;
101 case FEATURE_ADDR_2AA:
102 return MASK_2AA;
103 break;
104 case FEATURE_ADDR_AAA:
105 return MASK_AAA;
106 break;
107 default:
108 msg_cerr("%s called with unknown mask\n", __func__);
109 return 0;
110 break;
111 }
112}
113
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000114static void start_program_jedec_common(struct flashchip *flash, unsigned int mask)
Uwe Hermann51582f22007-08-23 10:20:40 +0000115{
Sean Nelsonc57a9202010-01-04 17:15:23 +0000116 chipaddr bios = flash->virtual_memory;
117 chip_writeb(0xAA, bios + (0x5555 & mask));
118 chip_writeb(0x55, bios + (0x2AAA & mask));
119 chip_writeb(0xA0, bios + (0x5555 & mask));
Uwe Hermann51582f22007-08-23 10:20:40 +0000120}
121
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000122static int probe_jedec_common(struct flashchip *flash, unsigned int mask)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000123{
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000124 chipaddr bios = flash->virtual_memory;
Ollie Lho184a4042005-11-26 21:55:36 +0000125 uint8_t id1, id2;
Carl-Daniel Hailfingerae8afa92007-12-31 01:49:00 +0000126 uint32_t largeid1, largeid2;
Carl-Daniel Hailfinger8130f2d2009-05-11 14:40:31 +0000127 uint32_t flashcontent1, flashcontent2;
Maciej Pijankac6e11112009-06-03 14:46:22 +0000128 int probe_timing_enter, probe_timing_exit;
129
130 if (flash->probe_timing > 0)
131 probe_timing_enter = probe_timing_exit = flash->probe_timing;
132 else if (flash->probe_timing == TIMING_ZERO) { /* No delay. */
133 probe_timing_enter = probe_timing_exit = 0;
134 } else if (flash->probe_timing == TIMING_FIXME) { /* == _IGNORED */
Sean Nelsoned479d22010-03-24 23:14:32 +0000135 msg_cdbg("Chip lacks correct probe timing information, "
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000136 "using default 10mS/40uS. ");
Maciej Pijankac6e11112009-06-03 14:46:22 +0000137 probe_timing_enter = 10000;
138 probe_timing_exit = 40;
139 } else {
Sean Nelsoned479d22010-03-24 23:14:32 +0000140 msg_cerr("Chip has negative value in probe_timing, failing "
Maciej Pijankac6e11112009-06-03 14:46:22 +0000141 "without chip access\n");
142 return 0;
143 }
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000144
Sean Nelsonf59e2632010-10-20 21:13:19 +0000145 /* Earlier probes might have been too fast for the chip to enter ID
146 * mode completely. Allow the chip to finish this before seeing a
147 * reset command.
148 */
149 if (probe_timing_enter)
150 programmer_delay(probe_timing_enter);
151 /* Reset chip to a clean slate */
152 if ((flash->feature_bits & FEATURE_RESET_MASK) == FEATURE_LONG_RESET)
153 {
154 chip_writeb(0xAA, bios + (0x5555 & mask));
155 if (probe_timing_exit)
156 programmer_delay(10);
157 chip_writeb(0x55, bios + (0x2AAA & mask));
158 if (probe_timing_exit)
159 programmer_delay(10);
160 }
161 chip_writeb(0xF0, bios + (0x5555 & mask));
162 if (probe_timing_exit)
163 programmer_delay(probe_timing_exit);
164
Ollie Lho761bf1b2004-03-20 16:46:10 +0000165 /* Issue JEDEC Product ID Entry command */
Sean Nelsonc57a9202010-01-04 17:15:23 +0000166 chip_writeb(0xAA, bios + (0x5555 & mask));
Sean Nelsonc12fc712009-12-17 04:22:40 +0000167 if (probe_timing_enter)
168 programmer_delay(10);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000169 chip_writeb(0x55, bios + (0x2AAA & mask));
Sean Nelsonc12fc712009-12-17 04:22:40 +0000170 if (probe_timing_enter)
171 programmer_delay(10);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000172 chip_writeb(0x90, bios + (0x5555 & mask));
Sean Nelsonc12fc712009-12-17 04:22:40 +0000173 if (probe_timing_enter)
174 programmer_delay(probe_timing_enter);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000175
Ollie Lho761bf1b2004-03-20 16:46:10 +0000176 /* Read product ID */
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +0000177 id1 = chip_readb(bios);
178 id2 = chip_readb(bios + 0x01);
Carl-Daniel Hailfingerae8afa92007-12-31 01:49:00 +0000179 largeid1 = id1;
180 largeid2 = id2;
181
182 /* Check if it is a continuation ID, this should be a while loop. */
183 if (id1 == 0x7F) {
184 largeid1 <<= 8;
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +0000185 id1 = chip_readb(bios + 0x100);
Carl-Daniel Hailfingerae8afa92007-12-31 01:49:00 +0000186 largeid1 |= id1;
187 }
188 if (id2 == 0x7F) {
189 largeid2 <<= 8;
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +0000190 id2 = chip_readb(bios + 0x101);
Carl-Daniel Hailfingerae8afa92007-12-31 01:49:00 +0000191 largeid2 |= id2;
192 }
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000193
Ollie Lho761bf1b2004-03-20 16:46:10 +0000194 /* Issue JEDEC Product ID Exit command */
Sean Nelsonf59e2632010-10-20 21:13:19 +0000195 if ((flash->feature_bits & FEATURE_RESET_MASK) == FEATURE_LONG_RESET)
Sean Nelsonc57a9202010-01-04 17:15:23 +0000196 {
197 chip_writeb(0xAA, bios + (0x5555 & mask));
198 if (probe_timing_exit)
199 programmer_delay(10);
200 chip_writeb(0x55, bios + (0x2AAA & mask));
201 if (probe_timing_exit)
202 programmer_delay(10);
203 }
204 chip_writeb(0xF0, bios + (0x5555 & mask));
Sean Nelsonc12fc712009-12-17 04:22:40 +0000205 if (probe_timing_exit)
206 programmer_delay(probe_timing_exit);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000207
Sean Nelsoned479d22010-03-24 23:14:32 +0000208 msg_cdbg("%s: id1 0x%02x, id2 0x%02x", __func__, largeid1, largeid2);
Carl-Daniel Hailfingera758f512008-05-14 12:03:06 +0000209 if (!oddparity(id1))
Sean Nelsoned479d22010-03-24 23:14:32 +0000210 msg_cdbg(", id1 parity violation");
Carl-Daniel Hailfinger8130f2d2009-05-11 14:40:31 +0000211
212 /* Read the product ID location again. We should now see normal flash contents. */
213 flashcontent1 = chip_readb(bios);
214 flashcontent2 = chip_readb(bios + 0x01);
215
216 /* Check if it is a continuation ID, this should be a while loop. */
217 if (flashcontent1 == 0x7F) {
218 flashcontent1 <<= 8;
219 flashcontent1 |= chip_readb(bios + 0x100);
220 }
221 if (flashcontent2 == 0x7F) {
222 flashcontent2 <<= 8;
223 flashcontent2 |= chip_readb(bios + 0x101);
224 }
225
226 if (largeid1 == flashcontent1)
Sean Nelsoned479d22010-03-24 23:14:32 +0000227 msg_cdbg(", id1 is normal flash content");
Carl-Daniel Hailfinger8130f2d2009-05-11 14:40:31 +0000228 if (largeid2 == flashcontent2)
Sean Nelsoned479d22010-03-24 23:14:32 +0000229 msg_cdbg(", id2 is normal flash content");
Carl-Daniel Hailfinger8130f2d2009-05-11 14:40:31 +0000230
Sean Nelsoned479d22010-03-24 23:14:32 +0000231 msg_cdbg("\n");
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +0000232 if (largeid1 != flash->manufacture_id || largeid2 != flash->model_id)
233 return 0;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000234
Sean Nelsonc57a9202010-01-04 17:15:23 +0000235 if (flash->feature_bits & FEATURE_REGISTERMAP)
236 map_flash_registers(flash);
237
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +0000238 return 1;
Ollie Lho73eca802004-03-19 22:10:07 +0000239}
240
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000241static int erase_sector_jedec_common(struct flashchip *flash, unsigned int page,
Sean Nelsonc57a9202010-01-04 17:15:23 +0000242 unsigned int pagesize, unsigned int mask)
Ollie Lho73eca802004-03-19 22:10:07 +0000243{
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000244 chipaddr bios = flash->virtual_memory;
245
Ollie Lho761bf1b2004-03-20 16:46:10 +0000246 /* Issue the Sector Erase command */
Sean Nelsonc57a9202010-01-04 17:15:23 +0000247 chip_writeb(0xAA, bios + (0x5555 & mask));
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000248 programmer_delay(10);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000249 chip_writeb(0x55, bios + (0x2AAA & mask));
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000250 programmer_delay(10);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000251 chip_writeb(0x80, bios + (0x5555 & mask));
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000252 programmer_delay(10);
Ollie Lhoefa28582004-12-08 20:10:01 +0000253
Sean Nelsonc57a9202010-01-04 17:15:23 +0000254 chip_writeb(0xAA, bios + (0x5555 & mask));
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000255 programmer_delay(10);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000256 chip_writeb(0x55, bios + (0x2AAA & mask));
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000257 programmer_delay(10);
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +0000258 chip_writeb(0x30, bios + page);
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000259 programmer_delay(10);
Ollie Lho761bf1b2004-03-20 16:46:10 +0000260
Ollie Lho73eca802004-03-19 22:10:07 +0000261 /* wait for Toggle bit ready */
Carl-Daniel Hailfingeraa000982009-12-17 16:20:26 +0000262 toggle_ready_jedec_slow(bios);
Ollie Lho73eca802004-03-19 22:10:07 +0000263
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000264 if (check_erased_range(flash, page, pagesize)) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000265 msg_cerr("ERASE FAILED!\n");
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000266 return -1;
267 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000268 return 0;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000269}
Ollie Lho98bea8a2004-12-07 03:15:51 +0000270
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000271static int erase_block_jedec_common(struct flashchip *flash, unsigned int block,
Sean Nelsonc57a9202010-01-04 17:15:23 +0000272 unsigned int blocksize, unsigned int mask)
Ronald G. Minnich1f4d6532004-09-30 16:37:01 +0000273{
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000274 chipaddr bios = flash->virtual_memory;
275
Ronald G. Minnich1f4d6532004-09-30 16:37:01 +0000276 /* Issue the Sector Erase command */
Sean Nelsonc57a9202010-01-04 17:15:23 +0000277 chip_writeb(0xAA, bios + (0x5555 & mask));
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000278 programmer_delay(10);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000279 chip_writeb(0x55, bios + (0x2AAA & mask));
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000280 programmer_delay(10);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000281 chip_writeb(0x80, bios + (0x5555 & mask));
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000282 programmer_delay(10);
Ollie Lhoefa28582004-12-08 20:10:01 +0000283
Sean Nelsonc57a9202010-01-04 17:15:23 +0000284 chip_writeb(0xAA, bios + (0x5555 & mask));
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000285 programmer_delay(10);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000286 chip_writeb(0x55, bios + (0x2AAA & mask));
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000287 programmer_delay(10);
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +0000288 chip_writeb(0x50, bios + block);
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000289 programmer_delay(10);
Ronald G. Minnich1f4d6532004-09-30 16:37:01 +0000290
291 /* wait for Toggle bit ready */
Carl-Daniel Hailfingeraa000982009-12-17 16:20:26 +0000292 toggle_ready_jedec_slow(bios);
Ronald G. Minnich1f4d6532004-09-30 16:37:01 +0000293
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000294 if (check_erased_range(flash, block, blocksize)) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000295 msg_cerr("ERASE FAILED!\n");
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000296 return -1;
297 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000298 return 0;
Ronald G. Minnich1f4d6532004-09-30 16:37:01 +0000299}
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000300
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000301static int erase_chip_jedec_common(struct flashchip *flash, unsigned int mask)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000302{
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000303 int total_size = flash->total_size * 1024;
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000304 chipaddr bios = flash->virtual_memory;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000305
Ollie Lho761bf1b2004-03-20 16:46:10 +0000306 /* Issue the JEDEC Chip Erase command */
Sean Nelsonc57a9202010-01-04 17:15:23 +0000307 chip_writeb(0xAA, bios + (0x5555 & mask));
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000308 programmer_delay(10);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000309 chip_writeb(0x55, bios + (0x2AAA & mask));
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000310 programmer_delay(10);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000311 chip_writeb(0x80, bios + (0x5555 & mask));
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000312 programmer_delay(10);
Ollie Lhoefa28582004-12-08 20:10:01 +0000313
Sean Nelsonc57a9202010-01-04 17:15:23 +0000314 chip_writeb(0xAA, bios + (0x5555 & mask));
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000315 programmer_delay(10);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000316 chip_writeb(0x55, bios + (0x2AAA & mask));
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000317 programmer_delay(10);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000318 chip_writeb(0x10, bios + (0x5555 & mask));
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000319 programmer_delay(10);
Ollie Lho73eca802004-03-19 22:10:07 +0000320
Carl-Daniel Hailfingeraa000982009-12-17 16:20:26 +0000321 toggle_ready_jedec_slow(bios);
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000322
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000323 if (check_erased_range(flash, 0, total_size)) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000324 msg_cerr("ERASE FAILED!\n");
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000325 return -1;
326 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000327 return 0;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000328}
329
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000330static int write_byte_program_jedec_common(struct flashchip *flash, uint8_t *src,
Sean Nelsonc57a9202010-01-04 17:15:23 +0000331 chipaddr dst, unsigned int mask)
332{
333 int tried = 0, failed = 0;
334 chipaddr bios = flash->virtual_memory;
335
336 /* If the data is 0xFF, don't program it and don't complain. */
337 if (*src == 0xFF) {
338 return 0;
339 }
340
341retry:
342 /* Issue JEDEC Byte Program command */
343 start_program_jedec_common(flash, mask);
344
345 /* transfer data from source to destination */
346 chip_writeb(*src, dst);
347 toggle_ready_jedec(bios);
348
349 if (chip_readb(dst) != *src && tried++ < MAX_REFLASH_TRIES) {
350 goto retry;
351 }
352
353 if (tried >= MAX_REFLASH_TRIES)
354 failed = 1;
355
356 return failed;
357}
358
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +0000359/* chunksize is 1 */
360int write_jedec_1(struct flashchip *flash, uint8_t *src, int start, int len)
Sean Nelsonc57a9202010-01-04 17:15:23 +0000361{
362 int i, failed = 0;
Carl-Daniel Hailfingerb30a5ed2010-10-10 14:02:27 +0000363 chipaddr dst = flash->virtual_memory + start;
Sean Nelsonc57a9202010-01-04 17:15:23 +0000364 chipaddr olddst;
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000365 int mask;
366
367 mask = getaddrmask(flash);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000368
369 olddst = dst;
Carl-Daniel Hailfingerb30a5ed2010-10-10 14:02:27 +0000370 for (i = 0; i < len; i++) {
Sean Nelsonc57a9202010-01-04 17:15:23 +0000371 if (write_byte_program_jedec_common(flash, src, dst, mask))
372 failed = 1;
373 dst++, src++;
374 }
375 if (failed)
Sean Nelsoned479d22010-03-24 23:14:32 +0000376 msg_cerr(" writing sector at 0x%lx failed!\n", olddst);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000377
378 return failed;
379}
380
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000381int write_page_write_jedec_common(struct flashchip *flash, uint8_t *src, int start, int page_size)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000382{
Carl-Daniel Hailfinger2925d6f2009-11-25 16:41:50 +0000383 int i, tried = 0, failed;
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000384 uint8_t *s = src;
Urja Rannikko0c854c02009-06-25 13:57:31 +0000385 chipaddr bios = flash->virtual_memory;
386 chipaddr dst = bios + start;
387 chipaddr d = dst;
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000388 int mask;
389
390 mask = getaddrmask(flash);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000391
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000392retry:
Uwe Hermann4e3d0b32010-03-25 23:18:41 +0000393 /* Issue JEDEC Start Program command */
Sean Nelsonc57a9202010-01-04 17:15:23 +0000394 start_program_jedec_common(flash, mask);
Ollie Lho761bf1b2004-03-20 16:46:10 +0000395
Ollie Lho98bea8a2004-12-07 03:15:51 +0000396 /* transfer data from source to destination */
Carl-Daniel Hailfinger8a8a2262009-11-14 03:48:33 +0000397 for (i = 0; i < page_size; i++) {
Ollie Lho98bea8a2004-12-07 03:15:51 +0000398 /* If the data is 0xFF, don't program it */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000399 if (*src != 0xFF)
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +0000400 chip_writeb(*src, dst);
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000401 dst++;
402 src++;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000403 }
404
Ollie Lho761bf1b2004-03-20 16:46:10 +0000405 toggle_ready_jedec(dst - 1);
Ollie Lho98bea8a2004-12-07 03:15:51 +0000406
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000407 dst = d;
408 src = s;
Carl-Daniel Hailfinger2925d6f2009-11-25 16:41:50 +0000409 failed = verify_range(flash, src, start, page_size, NULL);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000410
Carl-Daniel Hailfinger2925d6f2009-11-25 16:41:50 +0000411 if (failed && tried++ < MAX_REFLASH_TRIES) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000412 msg_cerr("retrying.\n");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000413 goto retry;
414 }
Carl-Daniel Hailfinger2925d6f2009-11-25 16:41:50 +0000415 if (failed) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000416 msg_cerr(" page 0x%lx failed!\n",
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000417 (d - bios) / page_size);
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000418 }
Carl-Daniel Hailfinger2925d6f2009-11-25 16:41:50 +0000419 return failed;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000420}
421
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +0000422/* chunksize is page_size */
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000423/*
424 * Write a part of the flash chip.
425 * FIXME: Use the chunk code from Michael Karcher instead.
426 * This function is a slightly modified copy of spi_write_chunked.
427 * Each page is written separately in chunks with a maximum size of chunksize.
428 */
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +0000429int write_jedec(struct flashchip *flash, uint8_t *buf, int start, int len)
Carl-Daniel Hailfinger4bf4e792010-01-09 03:15:50 +0000430{
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000431 int i, starthere, lenhere;
432 /* FIXME: page_size is the wrong variable. We need max_writechunk_size
433 * in struct flashchip to do this properly. All chips using
434 * write_jedec have page_size set to max_writechunk_size, so
435 * we're OK for now.
436 */
Ollie Lho070647d2004-03-22 22:19:17 +0000437 int page_size = flash->page_size;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000438
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000439 /* Warning: This loop has a very unusual condition and body.
440 * The loop needs to go through each page with at least one affected
441 * byte. The lowest page number is (start / page_size) since that
442 * division rounds down. The highest page number we want is the page
443 * where the last byte of the range lives. That last byte has the
444 * address (start + len - 1), thus the highest page number is
445 * (start + len - 1) / page_size. Since we want to include that last
446 * page as well, the loop condition uses <=.
447 */
448 for (i = start / page_size; i <= (start + len - 1) / page_size; i++) {
449 /* Byte position of the first byte in the range in this page. */
450 /* starthere is an offset to the base address of the chip. */
451 starthere = max(start, i * page_size);
452 /* Length of bytes in the range in this page. */
453 lenhere = min(start + len, (i + 1) * page_size) - starthere;
Sean Nelson35727f72010-01-28 23:55:12 +0000454
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000455 if (write_page_write_jedec_common(flash, buf + starthere - start, starthere, lenhere))
456 return 1;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000457 }
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000458
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000459 return 0;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000460}
Michael Karcher1c296ca2009-11-27 17:49:42 +0000461
Sean Nelsonc57a9202010-01-04 17:15:23 +0000462/* erase chip with block_erase() prototype */
463int erase_chip_block_jedec(struct flashchip *flash, unsigned int addr,
464 unsigned int blocksize)
465{
Sean Nelson35727f72010-01-28 23:55:12 +0000466 int mask;
467
468 mask = getaddrmask(flash);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000469 if ((addr != 0) || (blocksize != flash->total_size * 1024)) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000470 msg_cerr("%s called with incorrect arguments\n",
Sean Nelsonc57a9202010-01-04 17:15:23 +0000471 __func__);
472 return -1;
473 }
Sean Nelson35727f72010-01-28 23:55:12 +0000474 return erase_chip_jedec_common(flash, mask);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000475}
476
477int probe_jedec(struct flashchip *flash)
478{
Carl-Daniel Hailfinger4bf4e792010-01-09 03:15:50 +0000479 int mask;
480
481 mask = getaddrmask(flash);
Sean Nelson35727f72010-01-28 23:55:12 +0000482 return probe_jedec_common(flash, mask);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000483}
484
485int erase_sector_jedec(struct flashchip *flash, unsigned int page, unsigned int size)
486{
Sean Nelson35727f72010-01-28 23:55:12 +0000487 int mask;
488
489 mask = getaddrmask(flash);
490 return erase_sector_jedec_common(flash, page, size, mask);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000491}
492
493int erase_block_jedec(struct flashchip *flash, unsigned int page, unsigned int size)
494{
Sean Nelson35727f72010-01-28 23:55:12 +0000495 int mask;
496
497 mask = getaddrmask(flash);
498 return erase_block_jedec_common(flash, page, size, mask);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000499}
500
501int erase_chip_jedec(struct flashchip *flash)
502{
Sean Nelson35727f72010-01-28 23:55:12 +0000503 int mask;
504
505 mask = getaddrmask(flash);
506 return erase_chip_jedec_common(flash, mask);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000507}