blob: b96f5fd93a9f15353d743a83e99482ad28862704 [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;
Michael Karcher880e8672011-04-15 00:03:37 +0000245 int delay_us = 0;
246 if(flash->probe_timing != TIMING_ZERO)
247 delay_us = 10;
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000248
Ollie Lho761bf1b2004-03-20 16:46:10 +0000249 /* Issue the Sector Erase command */
Sean Nelsonc57a9202010-01-04 17:15:23 +0000250 chip_writeb(0xAA, bios + (0x5555 & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000251 programmer_delay(delay_us);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000252 chip_writeb(0x55, bios + (0x2AAA & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000253 programmer_delay(delay_us);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000254 chip_writeb(0x80, bios + (0x5555 & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000255 programmer_delay(delay_us);
Ollie Lhoefa28582004-12-08 20:10:01 +0000256
Sean Nelsonc57a9202010-01-04 17:15:23 +0000257 chip_writeb(0xAA, bios + (0x5555 & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000258 programmer_delay(delay_us);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000259 chip_writeb(0x55, bios + (0x2AAA & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000260 programmer_delay(delay_us);
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +0000261 chip_writeb(0x30, bios + page);
Michael Karcher880e8672011-04-15 00:03:37 +0000262 programmer_delay(delay_us);
Ollie Lho761bf1b2004-03-20 16:46:10 +0000263
Ollie Lho73eca802004-03-19 22:10:07 +0000264 /* wait for Toggle bit ready */
Carl-Daniel Hailfingeraa000982009-12-17 16:20:26 +0000265 toggle_ready_jedec_slow(bios);
Ollie Lho73eca802004-03-19 22:10:07 +0000266
Carl-Daniel Hailfingerb4061f62011-06-26 17:04:16 +0000267 /* FIXME: Check the status register for errors. */
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;
Michael Karcher880e8672011-04-15 00:03:37 +0000275 int delay_us = 0;
276 if(flash->probe_timing != TIMING_ZERO)
277 delay_us = 10;
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000278
Ronald G. Minnich1f4d6532004-09-30 16:37:01 +0000279 /* Issue the Sector Erase command */
Sean Nelsonc57a9202010-01-04 17:15:23 +0000280 chip_writeb(0xAA, bios + (0x5555 & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000281 programmer_delay(delay_us);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000282 chip_writeb(0x55, bios + (0x2AAA & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000283 programmer_delay(delay_us);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000284 chip_writeb(0x80, bios + (0x5555 & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000285 programmer_delay(delay_us);
Ollie Lhoefa28582004-12-08 20:10:01 +0000286
Sean Nelsonc57a9202010-01-04 17:15:23 +0000287 chip_writeb(0xAA, bios + (0x5555 & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000288 programmer_delay(delay_us);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000289 chip_writeb(0x55, bios + (0x2AAA & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000290 programmer_delay(delay_us);
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +0000291 chip_writeb(0x50, bios + block);
Michael Karcher880e8672011-04-15 00:03:37 +0000292 programmer_delay(delay_us);
Ronald G. Minnich1f4d6532004-09-30 16:37:01 +0000293
294 /* wait for Toggle bit ready */
Carl-Daniel Hailfingeraa000982009-12-17 16:20:26 +0000295 toggle_ready_jedec_slow(bios);
Ronald G. Minnich1f4d6532004-09-30 16:37:01 +0000296
Carl-Daniel Hailfingerb4061f62011-06-26 17:04:16 +0000297 /* FIXME: Check the status register for errors. */
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 Hailfinger5820f422009-05-16 21:22:56 +0000303 chipaddr bios = flash->virtual_memory;
Michael Karcher880e8672011-04-15 00:03:37 +0000304 int delay_us = 0;
305 if(flash->probe_timing != TIMING_ZERO)
306 delay_us = 10;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000307
Ollie Lho761bf1b2004-03-20 16:46:10 +0000308 /* Issue the JEDEC Chip Erase command */
Sean Nelsonc57a9202010-01-04 17:15:23 +0000309 chip_writeb(0xAA, bios + (0x5555 & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000310 programmer_delay(delay_us);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000311 chip_writeb(0x55, bios + (0x2AAA & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000312 programmer_delay(delay_us);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000313 chip_writeb(0x80, bios + (0x5555 & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000314 programmer_delay(delay_us);
Ollie Lhoefa28582004-12-08 20:10:01 +0000315
Sean Nelsonc57a9202010-01-04 17:15:23 +0000316 chip_writeb(0xAA, bios + (0x5555 & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000317 programmer_delay(delay_us);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000318 chip_writeb(0x55, bios + (0x2AAA & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000319 programmer_delay(delay_us);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000320 chip_writeb(0x10, bios + (0x5555 & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000321 programmer_delay(delay_us);
Ollie Lho73eca802004-03-19 22:10:07 +0000322
Carl-Daniel Hailfingeraa000982009-12-17 16:20:26 +0000323 toggle_ready_jedec_slow(bios);
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000324
Carl-Daniel Hailfingerb4061f62011-06-26 17:04:16 +0000325 /* FIXME: Check the status register for errors. */
Uwe Hermannffec5f32007-08-23 16:08:21 +0000326 return 0;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000327}
328
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000329static int write_byte_program_jedec_common(struct flashchip *flash, uint8_t *src,
Sean Nelsonc57a9202010-01-04 17:15:23 +0000330 chipaddr dst, unsigned int mask)
331{
332 int tried = 0, failed = 0;
333 chipaddr bios = flash->virtual_memory;
334
335 /* If the data is 0xFF, don't program it and don't complain. */
336 if (*src == 0xFF) {
337 return 0;
338 }
339
340retry:
341 /* Issue JEDEC Byte Program command */
342 start_program_jedec_common(flash, mask);
343
344 /* transfer data from source to destination */
345 chip_writeb(*src, dst);
346 toggle_ready_jedec(bios);
347
348 if (chip_readb(dst) != *src && tried++ < MAX_REFLASH_TRIES) {
349 goto retry;
350 }
351
352 if (tried >= MAX_REFLASH_TRIES)
353 failed = 1;
354
355 return failed;
356}
357
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +0000358/* chunksize is 1 */
359int write_jedec_1(struct flashchip *flash, uint8_t *src, int start, int len)
Sean Nelsonc57a9202010-01-04 17:15:23 +0000360{
361 int i, failed = 0;
Carl-Daniel Hailfingerb30a5ed2010-10-10 14:02:27 +0000362 chipaddr dst = flash->virtual_memory + start;
Sean Nelsonc57a9202010-01-04 17:15:23 +0000363 chipaddr olddst;
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000364 int mask;
365
366 mask = getaddrmask(flash);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000367
368 olddst = dst;
Carl-Daniel Hailfingerb30a5ed2010-10-10 14:02:27 +0000369 for (i = 0; i < len; i++) {
Sean Nelsonc57a9202010-01-04 17:15:23 +0000370 if (write_byte_program_jedec_common(flash, src, dst, mask))
371 failed = 1;
372 dst++, src++;
373 }
374 if (failed)
Sean Nelsoned479d22010-03-24 23:14:32 +0000375 msg_cerr(" writing sector at 0x%lx failed!\n", olddst);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000376
377 return failed;
378}
379
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000380int write_page_write_jedec_common(struct flashchip *flash, uint8_t *src, int start, int page_size)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000381{
Carl-Daniel Hailfinger2925d6f2009-11-25 16:41:50 +0000382 int i, tried = 0, failed;
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000383 uint8_t *s = src;
Urja Rannikko0c854c02009-06-25 13:57:31 +0000384 chipaddr bios = flash->virtual_memory;
385 chipaddr dst = bios + start;
386 chipaddr d = dst;
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000387 int mask;
388
389 mask = getaddrmask(flash);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000390
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000391retry:
Uwe Hermann4e3d0b32010-03-25 23:18:41 +0000392 /* Issue JEDEC Start Program command */
Sean Nelsonc57a9202010-01-04 17:15:23 +0000393 start_program_jedec_common(flash, mask);
Ollie Lho761bf1b2004-03-20 16:46:10 +0000394
Ollie Lho98bea8a2004-12-07 03:15:51 +0000395 /* transfer data from source to destination */
Carl-Daniel Hailfinger8a8a2262009-11-14 03:48:33 +0000396 for (i = 0; i < page_size; i++) {
Ollie Lho98bea8a2004-12-07 03:15:51 +0000397 /* If the data is 0xFF, don't program it */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000398 if (*src != 0xFF)
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +0000399 chip_writeb(*src, dst);
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000400 dst++;
401 src++;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000402 }
403
Ollie Lho761bf1b2004-03-20 16:46:10 +0000404 toggle_ready_jedec(dst - 1);
Ollie Lho98bea8a2004-12-07 03:15:51 +0000405
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000406 dst = d;
407 src = s;
Carl-Daniel Hailfinger2925d6f2009-11-25 16:41:50 +0000408 failed = verify_range(flash, src, start, page_size, NULL);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000409
Carl-Daniel Hailfinger2925d6f2009-11-25 16:41:50 +0000410 if (failed && tried++ < MAX_REFLASH_TRIES) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000411 msg_cerr("retrying.\n");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000412 goto retry;
413 }
Carl-Daniel Hailfinger2925d6f2009-11-25 16:41:50 +0000414 if (failed) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000415 msg_cerr(" page 0x%lx failed!\n",
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000416 (d - bios) / page_size);
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000417 }
Carl-Daniel Hailfinger2925d6f2009-11-25 16:41:50 +0000418 return failed;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000419}
420
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +0000421/* chunksize is page_size */
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000422/*
423 * Write a part of the flash chip.
424 * FIXME: Use the chunk code from Michael Karcher instead.
425 * This function is a slightly modified copy of spi_write_chunked.
426 * Each page is written separately in chunks with a maximum size of chunksize.
427 */
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +0000428int write_jedec(struct flashchip *flash, uint8_t *buf, int start, int len)
Carl-Daniel Hailfinger4bf4e792010-01-09 03:15:50 +0000429{
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000430 int i, starthere, lenhere;
431 /* FIXME: page_size is the wrong variable. We need max_writechunk_size
432 * in struct flashchip to do this properly. All chips using
433 * write_jedec have page_size set to max_writechunk_size, so
434 * we're OK for now.
435 */
Ollie Lho070647d2004-03-22 22:19:17 +0000436 int page_size = flash->page_size;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000437
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000438 /* Warning: This loop has a very unusual condition and body.
439 * The loop needs to go through each page with at least one affected
440 * byte. The lowest page number is (start / page_size) since that
441 * division rounds down. The highest page number we want is the page
442 * where the last byte of the range lives. That last byte has the
443 * address (start + len - 1), thus the highest page number is
444 * (start + len - 1) / page_size. Since we want to include that last
445 * page as well, the loop condition uses <=.
446 */
447 for (i = start / page_size; i <= (start + len - 1) / page_size; i++) {
448 /* Byte position of the first byte in the range in this page. */
449 /* starthere is an offset to the base address of the chip. */
450 starthere = max(start, i * page_size);
451 /* Length of bytes in the range in this page. */
452 lenhere = min(start + len, (i + 1) * page_size) - starthere;
Sean Nelson35727f72010-01-28 23:55:12 +0000453
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000454 if (write_page_write_jedec_common(flash, buf + starthere - start, starthere, lenhere))
455 return 1;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000456 }
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000457
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000458 return 0;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000459}
Michael Karcher1c296ca2009-11-27 17:49:42 +0000460
Sean Nelsonc57a9202010-01-04 17:15:23 +0000461/* erase chip with block_erase() prototype */
462int erase_chip_block_jedec(struct flashchip *flash, unsigned int addr,
463 unsigned int blocksize)
464{
Sean Nelson35727f72010-01-28 23:55:12 +0000465 int mask;
466
467 mask = getaddrmask(flash);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000468 if ((addr != 0) || (blocksize != flash->total_size * 1024)) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000469 msg_cerr("%s called with incorrect arguments\n",
Sean Nelsonc57a9202010-01-04 17:15:23 +0000470 __func__);
471 return -1;
472 }
Sean Nelson35727f72010-01-28 23:55:12 +0000473 return erase_chip_jedec_common(flash, mask);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000474}
475
476int probe_jedec(struct flashchip *flash)
477{
Carl-Daniel Hailfinger4bf4e792010-01-09 03:15:50 +0000478 int mask;
479
480 mask = getaddrmask(flash);
Sean Nelson35727f72010-01-28 23:55:12 +0000481 return probe_jedec_common(flash, mask);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000482}
483
484int erase_sector_jedec(struct flashchip *flash, unsigned int page, unsigned int size)
485{
Sean Nelson35727f72010-01-28 23:55:12 +0000486 int mask;
487
488 mask = getaddrmask(flash);
489 return erase_sector_jedec_common(flash, page, size, mask);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000490}
491
492int erase_block_jedec(struct flashchip *flash, unsigned int page, unsigned int size)
493{
Sean Nelson35727f72010-01-28 23:55:12 +0000494 int mask;
495
496 mask = getaddrmask(flash);
497 return erase_block_jedec_common(flash, page, size, mask);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000498}
499
500int erase_chip_jedec(struct flashchip *flash)
501{
Sean Nelson35727f72010-01-28 23:55:12 +0000502 int mask;
503
504 mask = getaddrmask(flash);
505 return erase_chip_jedec_common(flash, mask);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000506}