blob: 19babf9dd1b7bb8d71c2c270fa041e52c0139a91 [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 Hailfingera8cf3622014-08-08 08:33:01 +00007 * Copyright (C) 2007-2012 Carl-Daniel Hailfinger
Sean Nelsonc57a9202010-01-04 17:15:23 +00008 * Copyright (C) 2009 Sean Nelson <audiohacked@gmail.com>
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +00009 * Copyright (C) 2014 Stefan Tauner
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000010 *
Uwe Hermannd1107642007-08-29 17:52:32 +000011 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000015 *
Uwe Hermannd1107642007-08-29 17:52:32 +000016 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000020 *
Uwe Hermannd1107642007-08-29 17:52:32 +000021 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000024 */
25
26#include "flash.h"
Stefan Tauner0ab1e5d2014-05-29 11:51:24 +000027#include "chipdrivers.h"
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000028
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +000029#define MAX_REFLASH_TRIES 0x10
Sean Nelsonc57a9202010-01-04 17:15:23 +000030#define MASK_FULL 0xffff
31#define MASK_2AA 0x7ff
Sean Nelson35727f72010-01-28 23:55:12 +000032#define MASK_AAA 0xfff
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +000033
Carl-Daniel Hailfingera758f512008-05-14 12:03:06 +000034/* Check one byte for odd parity */
35uint8_t oddparity(uint8_t val)
36{
37 val = (val ^ (val >> 4)) & 0xf;
38 val = (val ^ (val >> 2)) & 0x3;
39 return (val ^ (val >> 1)) & 0x1;
40}
41
Stefan Taunerf80419c2014-05-02 15:41:42 +000042static void toggle_ready_jedec_common(const struct flashctx *flash, chipaddr dst, unsigned int delay)
Uwe Hermann51582f22007-08-23 10:20:40 +000043{
44 unsigned int i = 0;
45 uint8_t tmp1, tmp2;
46
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000047 tmp1 = chip_readb(flash, dst) & 0x40;
Uwe Hermann51582f22007-08-23 10:20:40 +000048
49 while (i++ < 0xFFFFFFF) {
Carl-Daniel Hailfingeraa000982009-12-17 16:20:26 +000050 if (delay)
51 programmer_delay(delay);
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000052 tmp2 = chip_readb(flash, dst) & 0x40;
Uwe Hermann51582f22007-08-23 10:20:40 +000053 if (tmp1 == tmp2) {
54 break;
55 }
56 tmp1 = tmp2;
57 }
Carl-Daniel Hailfingeraa000982009-12-17 16:20:26 +000058 if (i > 0x100000)
Sean Nelsoned479d22010-03-24 23:14:32 +000059 msg_cdbg("%s: excessive loops, i=0x%x\n", __func__, i);
Carl-Daniel Hailfingeraa000982009-12-17 16:20:26 +000060}
61
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000062void toggle_ready_jedec(const struct flashctx *flash, chipaddr dst)
Carl-Daniel Hailfingeraa000982009-12-17 16:20:26 +000063{
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000064 toggle_ready_jedec_common(flash, dst, 0);
Carl-Daniel Hailfingeraa000982009-12-17 16:20:26 +000065}
66
67/* Some chips require a minimum delay between toggle bit reads.
68 * The Winbond W39V040C wants 50 ms between reads on sector erase toggle,
69 * but experiments show that 2 ms are already enough. Pick a safety factor
70 * of 4 and use an 8 ms delay.
71 * Given that erase is slow on all chips, it is recommended to use
72 * toggle_ready_jedec_slow in erase functions.
73 */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000074static void toggle_ready_jedec_slow(const struct flashctx *flash, chipaddr dst)
Carl-Daniel Hailfingeraa000982009-12-17 16:20:26 +000075{
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000076 toggle_ready_jedec_common(flash, dst, 8 * 1000);
Uwe Hermann51582f22007-08-23 10:20:40 +000077}
78
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000079void data_polling_jedec(const struct flashctx *flash, chipaddr dst,
80 uint8_t data)
Uwe Hermann51582f22007-08-23 10:20:40 +000081{
82 unsigned int i = 0;
83 uint8_t tmp;
84
85 data &= 0x80;
86
87 while (i++ < 0xFFFFFFF) {
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000088 tmp = chip_readb(flash, dst) & 0x80;
Uwe Hermann51582f22007-08-23 10:20:40 +000089 if (tmp == data) {
90 break;
91 }
92 }
Carl-Daniel Hailfingeraa000982009-12-17 16:20:26 +000093 if (i > 0x100000)
Sean Nelsoned479d22010-03-24 23:14:32 +000094 msg_cdbg("%s: excessive loops, i=0x%x\n", __func__, i);
Uwe Hermann51582f22007-08-23 10:20:40 +000095}
96
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +000097static unsigned int getaddrmask(const struct flashchip *chip)
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +000098{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +000099 switch (chip->feature_bits & FEATURE_ADDR_MASK) {
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000100 case FEATURE_ADDR_FULL:
101 return MASK_FULL;
102 break;
103 case FEATURE_ADDR_2AA:
104 return MASK_2AA;
105 break;
106 case FEATURE_ADDR_AAA:
107 return MASK_AAA;
108 break;
109 default:
110 msg_cerr("%s called with unknown mask\n", __func__);
111 return 0;
112 break;
113 }
114}
115
Stefan Tauner0ab1e5d2014-05-29 11:51:24 +0000116static void start_program_jedec_common(const struct flashctx *flash, unsigned int mask)
Uwe Hermann51582f22007-08-23 10:20:40 +0000117{
Sean Nelsonc57a9202010-01-04 17:15:23 +0000118 chipaddr bios = flash->virtual_memory;
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000119 bool shifted = (flash->chip->feature_bits & FEATURE_ADDR_SHIFTED);
120
121 chip_writeb(flash, 0xAA, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
122 chip_writeb(flash, 0x55, bios + ((shifted ? 0x5555 : 0x2AAA) & mask));
123 chip_writeb(flash, 0xA0, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Uwe Hermann51582f22007-08-23 10:20:40 +0000124}
125
Stefan Tauner03a9c3c2014-08-03 14:15:14 +0000126int probe_jedec_29gl(struct flashctx *flash)
127{
128 unsigned int mask = getaddrmask(flash->chip);
129 chipaddr bios = flash->virtual_memory;
130 const struct flashchip *chip = flash->chip;
131
132 /* Reset chip to a clean slate */
133 chip_writeb(flash, 0xF0, bios + (0x5555 & mask));
134
135 /* Issue JEDEC Product ID Entry command */
136 chip_writeb(flash, 0xAA, bios + (0x5555 & mask));
137 chip_writeb(flash, 0x55, bios + (0x2AAA & mask));
138 chip_writeb(flash, 0x90, bios + (0x5555 & mask));
139
140 /* Read product ID */
141 // FIXME: Continuation loop, second byte is at word 0x100/byte 0x200
142 uint32_t man_id = chip_readb(flash, bios + 0x00);
143 uint32_t dev_id = (chip_readb(flash, bios + 0x01) << 16) |
144 (chip_readb(flash, bios + 0x0E) << 8) |
145 (chip_readb(flash, bios + 0x0F) << 0);
146
147 /* Issue JEDEC Product ID Exit command */
148 chip_writeb(flash, 0xF0, bios + (0x5555 & mask));
149
150 msg_cdbg("%s: man_id 0x%02x, dev_id 0x%06x", __func__, man_id, dev_id);
151 if (!oddparity(man_id))
152 msg_cdbg(", man_id parity violation");
153
154 /* Read the product ID location again. We should now see normal flash contents. */
155 uint32_t flashcontent1 = chip_readb(flash, bios + 0x00); // FIXME: Continuation loop
156 uint32_t flashcontent2 = (chip_readb(flash, bios + 0x01) << 16) |
157 (chip_readb(flash, bios + 0x0E) << 8) |
158 (chip_readb(flash, bios + 0x0F) << 0);
159
160 if (man_id == flashcontent1)
161 msg_cdbg(", man_id seems to be normal flash content");
162 if (dev_id == flashcontent2)
163 msg_cdbg(", dev_id seems to be normal flash content");
164
165 msg_cdbg("\n");
166 if (man_id != chip->manufacture_id || dev_id != chip->model_id)
167 return 0;
168
Stefan Tauner03a9c3c2014-08-03 14:15:14 +0000169 return 1;
170}
171
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000172static int probe_jedec_common(struct flashctx *flash, unsigned int mask)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000173{
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000174 chipaddr bios = flash->virtual_memory;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000175 const struct flashchip *chip = flash->chip;
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000176 bool shifted = (flash->chip->feature_bits & FEATURE_ADDR_SHIFTED);
Ollie Lho184a4042005-11-26 21:55:36 +0000177 uint8_t id1, id2;
Carl-Daniel Hailfingerae8afa92007-12-31 01:49:00 +0000178 uint32_t largeid1, largeid2;
Carl-Daniel Hailfinger8130f2d2009-05-11 14:40:31 +0000179 uint32_t flashcontent1, flashcontent2;
Stefan Taunerf80419c2014-05-02 15:41:42 +0000180 unsigned int probe_timing_enter, probe_timing_exit;
Maciej Pijankac6e11112009-06-03 14:46:22 +0000181
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000182 if (chip->probe_timing > 0)
183 probe_timing_enter = probe_timing_exit = chip->probe_timing;
184 else if (chip->probe_timing == TIMING_ZERO) { /* No delay. */
Maciej Pijankac6e11112009-06-03 14:46:22 +0000185 probe_timing_enter = probe_timing_exit = 0;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000186 } else if (chip->probe_timing == TIMING_FIXME) { /* == _IGNORED */
Sean Nelsoned479d22010-03-24 23:14:32 +0000187 msg_cdbg("Chip lacks correct probe timing information, "
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000188 "using default 10mS/40uS. ");
Maciej Pijankac6e11112009-06-03 14:46:22 +0000189 probe_timing_enter = 10000;
190 probe_timing_exit = 40;
191 } else {
Sean Nelsoned479d22010-03-24 23:14:32 +0000192 msg_cerr("Chip has negative value in probe_timing, failing "
Maciej Pijankac6e11112009-06-03 14:46:22 +0000193 "without chip access\n");
194 return 0;
195 }
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000196
Sean Nelsonf59e2632010-10-20 21:13:19 +0000197 /* Earlier probes might have been too fast for the chip to enter ID
198 * mode completely. Allow the chip to finish this before seeing a
199 * reset command.
200 */
201 if (probe_timing_enter)
202 programmer_delay(probe_timing_enter);
203 /* Reset chip to a clean slate */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000204 if ((chip->feature_bits & FEATURE_RESET_MASK) == FEATURE_LONG_RESET)
Sean Nelsonf59e2632010-10-20 21:13:19 +0000205 {
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000206 chip_writeb(flash, 0xAA, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Sean Nelsonf59e2632010-10-20 21:13:19 +0000207 if (probe_timing_exit)
208 programmer_delay(10);
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000209 chip_writeb(flash, 0x55, bios + ((shifted ? 0x5555 : 0x2AAA) & mask));
Sean Nelsonf59e2632010-10-20 21:13:19 +0000210 if (probe_timing_exit)
211 programmer_delay(10);
212 }
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000213 chip_writeb(flash, 0xF0, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Sean Nelsonf59e2632010-10-20 21:13:19 +0000214 if (probe_timing_exit)
215 programmer_delay(probe_timing_exit);
216
Ollie Lho761bf1b2004-03-20 16:46:10 +0000217 /* Issue JEDEC Product ID Entry command */
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000218 chip_writeb(flash, 0xAA, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Sean Nelsonc12fc712009-12-17 04:22:40 +0000219 if (probe_timing_enter)
220 programmer_delay(10);
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000221 chip_writeb(flash, 0x55, bios + ((shifted ? 0x5555 : 0x2AAA) & mask));
Sean Nelsonc12fc712009-12-17 04:22:40 +0000222 if (probe_timing_enter)
223 programmer_delay(10);
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000224 chip_writeb(flash, 0x90, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Sean Nelsonc12fc712009-12-17 04:22:40 +0000225 if (probe_timing_enter)
226 programmer_delay(probe_timing_enter);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000227
Ollie Lho761bf1b2004-03-20 16:46:10 +0000228 /* Read product ID */
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000229 id1 = chip_readb(flash, bios + (0x00 << shifted));
230 id2 = chip_readb(flash, bios + (0x01 << shifted));
Carl-Daniel Hailfingerae8afa92007-12-31 01:49:00 +0000231 largeid1 = id1;
232 largeid2 = id2;
233
234 /* Check if it is a continuation ID, this should be a while loop. */
235 if (id1 == 0x7F) {
236 largeid1 <<= 8;
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000237 id1 = chip_readb(flash, bios + 0x100);
Carl-Daniel Hailfingerae8afa92007-12-31 01:49:00 +0000238 largeid1 |= id1;
239 }
240 if (id2 == 0x7F) {
241 largeid2 <<= 8;
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000242 id2 = chip_readb(flash, bios + 0x101);
Carl-Daniel Hailfingerae8afa92007-12-31 01:49:00 +0000243 largeid2 |= id2;
244 }
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000245
Ollie Lho761bf1b2004-03-20 16:46:10 +0000246 /* Issue JEDEC Product ID Exit command */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000247 if ((chip->feature_bits & FEATURE_RESET_MASK) == FEATURE_LONG_RESET)
Sean Nelsonc57a9202010-01-04 17:15:23 +0000248 {
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000249 chip_writeb(flash, 0xAA, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Sean Nelsonc57a9202010-01-04 17:15:23 +0000250 if (probe_timing_exit)
251 programmer_delay(10);
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000252 chip_writeb(flash, 0x55, bios + ((shifted ? 0x5555 : 0x2AAA) & mask));
Sean Nelsonc57a9202010-01-04 17:15:23 +0000253 if (probe_timing_exit)
254 programmer_delay(10);
255 }
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000256 chip_writeb(flash, 0xF0, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Sean Nelsonc12fc712009-12-17 04:22:40 +0000257 if (probe_timing_exit)
258 programmer_delay(probe_timing_exit);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000259
Sean Nelsoned479d22010-03-24 23:14:32 +0000260 msg_cdbg("%s: id1 0x%02x, id2 0x%02x", __func__, largeid1, largeid2);
Carl-Daniel Hailfingera758f512008-05-14 12:03:06 +0000261 if (!oddparity(id1))
Sean Nelsoned479d22010-03-24 23:14:32 +0000262 msg_cdbg(", id1 parity violation");
Carl-Daniel Hailfinger8130f2d2009-05-11 14:40:31 +0000263
264 /* Read the product ID location again. We should now see normal flash contents. */
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000265 flashcontent1 = chip_readb(flash, bios + (0x00 << shifted));
266 flashcontent2 = chip_readb(flash, bios + (0x01 << shifted));
Carl-Daniel Hailfinger8130f2d2009-05-11 14:40:31 +0000267
268 /* Check if it is a continuation ID, this should be a while loop. */
269 if (flashcontent1 == 0x7F) {
270 flashcontent1 <<= 8;
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000271 flashcontent1 |= chip_readb(flash, bios + 0x100);
Carl-Daniel Hailfinger8130f2d2009-05-11 14:40:31 +0000272 }
273 if (flashcontent2 == 0x7F) {
274 flashcontent2 <<= 8;
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000275 flashcontent2 |= chip_readb(flash, bios + 0x101);
Carl-Daniel Hailfinger8130f2d2009-05-11 14:40:31 +0000276 }
277
278 if (largeid1 == flashcontent1)
Sean Nelsoned479d22010-03-24 23:14:32 +0000279 msg_cdbg(", id1 is normal flash content");
Carl-Daniel Hailfinger8130f2d2009-05-11 14:40:31 +0000280 if (largeid2 == flashcontent2)
Sean Nelsoned479d22010-03-24 23:14:32 +0000281 msg_cdbg(", id2 is normal flash content");
Carl-Daniel Hailfinger8130f2d2009-05-11 14:40:31 +0000282
Sean Nelsoned479d22010-03-24 23:14:32 +0000283 msg_cdbg("\n");
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000284 if (largeid1 != chip->manufacture_id || largeid2 != chip->model_id)
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +0000285 return 0;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000286
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +0000287 return 1;
Ollie Lho73eca802004-03-19 22:10:07 +0000288}
289
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000290static int erase_sector_jedec_common(struct flashctx *flash, unsigned int page,
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000291 unsigned int pagesize, unsigned int mask)
Ollie Lho73eca802004-03-19 22:10:07 +0000292{
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000293 chipaddr bios = flash->virtual_memory;
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000294 bool shifted = (flash->chip->feature_bits & FEATURE_ADDR_SHIFTED);
Stefan Taunerf80419c2014-05-02 15:41:42 +0000295 unsigned int delay_us = 0;
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000296
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000297 if(flash->chip->probe_timing != TIMING_ZERO)
Stefan Taunerf80419c2014-05-02 15:41:42 +0000298 delay_us = 10;
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000299
Ollie Lho761bf1b2004-03-20 16:46:10 +0000300 /* Issue the Sector Erase command */
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000301 chip_writeb(flash, 0xAA, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000302 programmer_delay(delay_us);
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000303 chip_writeb(flash, 0x55, bios + ((shifted ? 0x5555 : 0x2AAA) & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000304 programmer_delay(delay_us);
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000305 chip_writeb(flash, 0x80, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000306 programmer_delay(delay_us);
Ollie Lhoefa28582004-12-08 20:10:01 +0000307
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000308 chip_writeb(flash, 0xAA, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000309 programmer_delay(delay_us);
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000310 chip_writeb(flash, 0x55, bios + ((shifted ? 0x5555 : 0x2AAA) & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000311 programmer_delay(delay_us);
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000312 chip_writeb(flash, 0x30, bios + page);
Michael Karcher880e8672011-04-15 00:03:37 +0000313 programmer_delay(delay_us);
Ollie Lho761bf1b2004-03-20 16:46:10 +0000314
Ollie Lho73eca802004-03-19 22:10:07 +0000315 /* wait for Toggle bit ready */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000316 toggle_ready_jedec_slow(flash, bios);
Ollie Lho73eca802004-03-19 22:10:07 +0000317
Carl-Daniel Hailfingerb4061f62011-06-26 17:04:16 +0000318 /* FIXME: Check the status register for errors. */
Uwe Hermannffec5f32007-08-23 16:08:21 +0000319 return 0;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000320}
Ollie Lho98bea8a2004-12-07 03:15:51 +0000321
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000322static int erase_block_jedec_common(struct flashctx *flash, unsigned int block,
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000323 unsigned int blocksize, unsigned int mask)
Ronald G. Minnich1f4d6532004-09-30 16:37:01 +0000324{
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000325 chipaddr bios = flash->virtual_memory;
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000326 bool shifted = (flash->chip->feature_bits & FEATURE_ADDR_SHIFTED);
Stefan Taunerf80419c2014-05-02 15:41:42 +0000327 unsigned int delay_us = 0;
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000328
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000329 if(flash->chip->probe_timing != TIMING_ZERO)
Stefan Taunerf80419c2014-05-02 15:41:42 +0000330 delay_us = 10;
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000331
Ronald G. Minnich1f4d6532004-09-30 16:37:01 +0000332 /* Issue the Sector Erase command */
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000333 chip_writeb(flash, 0xAA, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000334 programmer_delay(delay_us);
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000335 chip_writeb(flash, 0x55, bios + ((shifted ? 0x5555 : 0x2AAA) & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000336 programmer_delay(delay_us);
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000337 chip_writeb(flash, 0x80, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000338 programmer_delay(delay_us);
Ollie Lhoefa28582004-12-08 20:10:01 +0000339
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000340 chip_writeb(flash, 0xAA, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000341 programmer_delay(delay_us);
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000342 chip_writeb(flash, 0x55, bios + ((shifted ? 0x5555 : 0x2AAA) & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000343 programmer_delay(delay_us);
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000344 chip_writeb(flash, 0x50, bios + block);
Michael Karcher880e8672011-04-15 00:03:37 +0000345 programmer_delay(delay_us);
Ronald G. Minnich1f4d6532004-09-30 16:37:01 +0000346
347 /* wait for Toggle bit ready */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000348 toggle_ready_jedec_slow(flash, bios);
Ronald G. Minnich1f4d6532004-09-30 16:37:01 +0000349
Carl-Daniel Hailfingerb4061f62011-06-26 17:04:16 +0000350 /* FIXME: Check the status register for errors. */
Uwe Hermannffec5f32007-08-23 16:08:21 +0000351 return 0;
Ronald G. Minnich1f4d6532004-09-30 16:37:01 +0000352}
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000353
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000354static int erase_chip_jedec_common(struct flashctx *flash, unsigned int mask)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000355{
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000356 chipaddr bios = flash->virtual_memory;
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000357 bool shifted = (flash->chip->feature_bits & FEATURE_ADDR_SHIFTED);
Stefan Taunerf80419c2014-05-02 15:41:42 +0000358 unsigned int delay_us = 0;
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000359
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000360 if(flash->chip->probe_timing != TIMING_ZERO)
Stefan Taunerf80419c2014-05-02 15:41:42 +0000361 delay_us = 10;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000362
Ollie Lho761bf1b2004-03-20 16:46:10 +0000363 /* Issue the JEDEC Chip Erase command */
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000364 chip_writeb(flash, 0xAA, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000365 programmer_delay(delay_us);
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000366 chip_writeb(flash, 0x55, bios + ((shifted ? 0x5555 : 0x2AAA) & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000367 programmer_delay(delay_us);
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000368 chip_writeb(flash, 0x80, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000369 programmer_delay(delay_us);
Ollie Lhoefa28582004-12-08 20:10:01 +0000370
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000371 chip_writeb(flash, 0xAA, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000372 programmer_delay(delay_us);
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000373 chip_writeb(flash, 0x55, bios + ((shifted ? 0x5555 : 0x2AAA) & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000374 programmer_delay(delay_us);
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000375 chip_writeb(flash, 0x10, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000376 programmer_delay(delay_us);
Ollie Lho73eca802004-03-19 22:10:07 +0000377
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000378 toggle_ready_jedec_slow(flash, bios);
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000379
Carl-Daniel Hailfingerb4061f62011-06-26 17:04:16 +0000380 /* FIXME: Check the status register for errors. */
Uwe Hermannffec5f32007-08-23 16:08:21 +0000381 return 0;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000382}
383
Stefan Tauner0ab1e5d2014-05-29 11:51:24 +0000384static int write_byte_program_jedec_common(const struct flashctx *flash, const uint8_t *src,
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000385 chipaddr dst, unsigned int mask)
Sean Nelsonc57a9202010-01-04 17:15:23 +0000386{
387 int tried = 0, failed = 0;
388 chipaddr bios = flash->virtual_memory;
389
390 /* If the data is 0xFF, don't program it and don't complain. */
391 if (*src == 0xFF) {
392 return 0;
393 }
394
395retry:
396 /* Issue JEDEC Byte Program command */
397 start_program_jedec_common(flash, mask);
398
399 /* transfer data from source to destination */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000400 chip_writeb(flash, *src, dst);
401 toggle_ready_jedec(flash, bios);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000402
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000403 if (chip_readb(flash, dst) != *src && tried++ < MAX_REFLASH_TRIES) {
Sean Nelsonc57a9202010-01-04 17:15:23 +0000404 goto retry;
405 }
406
407 if (tried >= MAX_REFLASH_TRIES)
408 failed = 1;
409
410 return failed;
411}
412
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +0000413/* chunksize is 1 */
Stefan Tauner0ab1e5d2014-05-29 11:51:24 +0000414int write_jedec_1(struct flashctx *flash, const uint8_t *src, unsigned int start,
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000415 unsigned int len)
Sean Nelsonc57a9202010-01-04 17:15:23 +0000416{
417 int i, failed = 0;
Carl-Daniel Hailfingerb30a5ed2010-10-10 14:02:27 +0000418 chipaddr dst = flash->virtual_memory + start;
Sean Nelsonc57a9202010-01-04 17:15:23 +0000419 chipaddr olddst;
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000420 unsigned int mask;
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000421
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000422 mask = getaddrmask(flash->chip);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000423
424 olddst = dst;
Carl-Daniel Hailfingerb30a5ed2010-10-10 14:02:27 +0000425 for (i = 0; i < len; i++) {
Sean Nelsonc57a9202010-01-04 17:15:23 +0000426 if (write_byte_program_jedec_common(flash, src, dst, mask))
427 failed = 1;
428 dst++, src++;
429 }
430 if (failed)
Stefan Taunerc2333752013-07-13 23:31:37 +0000431 msg_cerr(" writing sector at 0x%" PRIxPTR " failed!\n", olddst);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000432
433 return failed;
434}
435
Stefan Tauner0ab1e5d2014-05-29 11:51:24 +0000436static int write_page_write_jedec_common(struct flashctx *flash, const uint8_t *src,
Stefan Tauner0554ca52013-07-25 22:54:25 +0000437 unsigned int start, unsigned int page_size)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000438{
Carl-Daniel Hailfinger2925d6f2009-11-25 16:41:50 +0000439 int i, tried = 0, failed;
Stefan Tauner0ab1e5d2014-05-29 11:51:24 +0000440 const uint8_t *s = src;
Urja Rannikko0c854c02009-06-25 13:57:31 +0000441 chipaddr bios = flash->virtual_memory;
442 chipaddr dst = bios + start;
443 chipaddr d = dst;
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000444 unsigned int mask;
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000445
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000446 mask = getaddrmask(flash->chip);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000447
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000448retry:
Uwe Hermann4e3d0b32010-03-25 23:18:41 +0000449 /* Issue JEDEC Start Program command */
Sean Nelsonc57a9202010-01-04 17:15:23 +0000450 start_program_jedec_common(flash, mask);
Ollie Lho761bf1b2004-03-20 16:46:10 +0000451
Ollie Lho98bea8a2004-12-07 03:15:51 +0000452 /* transfer data from source to destination */
Carl-Daniel Hailfinger8a8a2262009-11-14 03:48:33 +0000453 for (i = 0; i < page_size; i++) {
Ollie Lho98bea8a2004-12-07 03:15:51 +0000454 /* If the data is 0xFF, don't program it */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000455 if (*src != 0xFF)
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000456 chip_writeb(flash, *src, dst);
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000457 dst++;
458 src++;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000459 }
460
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000461 toggle_ready_jedec(flash, dst - 1);
Ollie Lho98bea8a2004-12-07 03:15:51 +0000462
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000463 dst = d;
464 src = s;
Stefan Tauner78ffbea2012-10-27 15:36:56 +0000465 failed = verify_range(flash, src, start, page_size);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000466
Carl-Daniel Hailfinger2925d6f2009-11-25 16:41:50 +0000467 if (failed && tried++ < MAX_REFLASH_TRIES) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000468 msg_cerr("retrying.\n");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000469 goto retry;
470 }
Carl-Daniel Hailfinger2925d6f2009-11-25 16:41:50 +0000471 if (failed) {
Stefan Taunerc2333752013-07-13 23:31:37 +0000472 msg_cerr(" page 0x%" PRIxPTR " failed!\n", (d - bios) / page_size);
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000473 }
Carl-Daniel Hailfinger2925d6f2009-11-25 16:41:50 +0000474 return failed;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000475}
476
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +0000477/* chunksize is page_size */
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000478/*
479 * Write a part of the flash chip.
480 * FIXME: Use the chunk code from Michael Karcher instead.
481 * This function is a slightly modified copy of spi_write_chunked.
482 * Each page is written separately in chunks with a maximum size of chunksize.
483 */
Stefan Tauner0ab1e5d2014-05-29 11:51:24 +0000484int write_jedec(struct flashctx *flash, const uint8_t *buf, unsigned int start,
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000485 int unsigned len)
Carl-Daniel Hailfinger4bf4e792010-01-09 03:15:50 +0000486{
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000487 unsigned int i, starthere, lenhere;
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000488 /* FIXME: page_size is the wrong variable. We need max_writechunk_size
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000489 * in struct flashctx to do this properly. All chips using
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000490 * write_jedec have page_size set to max_writechunk_size, so
491 * we're OK for now.
492 */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000493 unsigned int page_size = flash->chip->page_size;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000494
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000495 /* Warning: This loop has a very unusual condition and body.
496 * The loop needs to go through each page with at least one affected
497 * byte. The lowest page number is (start / page_size) since that
498 * division rounds down. The highest page number we want is the page
499 * where the last byte of the range lives. That last byte has the
500 * address (start + len - 1), thus the highest page number is
501 * (start + len - 1) / page_size. Since we want to include that last
502 * page as well, the loop condition uses <=.
503 */
504 for (i = start / page_size; i <= (start + len - 1) / page_size; i++) {
505 /* Byte position of the first byte in the range in this page. */
506 /* starthere is an offset to the base address of the chip. */
507 starthere = max(start, i * page_size);
508 /* Length of bytes in the range in this page. */
509 lenhere = min(start + len, (i + 1) * page_size) - starthere;
Sean Nelson35727f72010-01-28 23:55:12 +0000510
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000511 if (write_page_write_jedec_common(flash, buf + starthere - start, starthere, lenhere))
512 return 1;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000513 }
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000514
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000515 return 0;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000516}
Michael Karcher1c296ca2009-11-27 17:49:42 +0000517
Sean Nelsonc57a9202010-01-04 17:15:23 +0000518/* erase chip with block_erase() prototype */
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000519int erase_chip_block_jedec(struct flashctx *flash, unsigned int addr,
Sean Nelsonc57a9202010-01-04 17:15:23 +0000520 unsigned int blocksize)
521{
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000522 unsigned int mask;
Sean Nelson35727f72010-01-28 23:55:12 +0000523
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000524 mask = getaddrmask(flash->chip);
525 if ((addr != 0) || (blocksize != flash->chip->total_size * 1024)) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000526 msg_cerr("%s called with incorrect arguments\n",
Sean Nelsonc57a9202010-01-04 17:15:23 +0000527 __func__);
528 return -1;
529 }
Sean Nelson35727f72010-01-28 23:55:12 +0000530 return erase_chip_jedec_common(flash, mask);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000531}
532
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000533int probe_jedec(struct flashctx *flash)
Sean Nelsonc57a9202010-01-04 17:15:23 +0000534{
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000535 unsigned int mask;
Carl-Daniel Hailfinger4bf4e792010-01-09 03:15:50 +0000536
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000537 mask = getaddrmask(flash->chip);
Sean Nelson35727f72010-01-28 23:55:12 +0000538 return probe_jedec_common(flash, mask);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000539}
540
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000541int erase_sector_jedec(struct flashctx *flash, unsigned int page,
542 unsigned int size)
Sean Nelsonc57a9202010-01-04 17:15:23 +0000543{
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000544 unsigned int mask;
Sean Nelson35727f72010-01-28 23:55:12 +0000545
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000546 mask = getaddrmask(flash->chip);
Sean Nelson35727f72010-01-28 23:55:12 +0000547 return erase_sector_jedec_common(flash, page, size, mask);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000548}
549
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000550int erase_block_jedec(struct flashctx *flash, unsigned int page,
551 unsigned int size)
Sean Nelsonc57a9202010-01-04 17:15:23 +0000552{
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000553 unsigned int mask;
Sean Nelson35727f72010-01-28 23:55:12 +0000554
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000555 mask = getaddrmask(flash->chip);
Sean Nelson35727f72010-01-28 23:55:12 +0000556 return erase_block_jedec_common(flash, page, size, mask);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000557}
558
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000559int erase_chip_jedec(struct flashctx *flash)
Sean Nelsonc57a9202010-01-04 17:15:23 +0000560{
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000561 unsigned int mask;
Sean Nelson35727f72010-01-28 23:55:12 +0000562
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000563 mask = getaddrmask(flash->chip);
Sean Nelson35727f72010-01-28 23:55:12 +0000564 return erase_chip_jedec_common(flash, mask);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000565}
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000566
567struct unlockblock {
568 unsigned int size;
569 unsigned int count;
570};
571
572typedef int (*unlockblock_func)(const struct flashctx *flash, chipaddr offset);
573static int regspace2_walk_unlockblocks(const struct flashctx *flash, const struct unlockblock *block, unlockblock_func func)
574{
575 chipaddr off = flash->virtual_registers + 2;
576 while (block->count != 0) {
577 unsigned int j;
578 for (j = 0; j < block->count; j++) {
579 if (func(flash, off))
580 return -1;
581 off += block->size;
582 }
583 block++;
584 }
585 return 0;
586}
587
588#define REG2_RWLOCK ((1 << 2) | (1 << 0))
589#define REG2_LOCKDOWN (1 << 1)
590#define REG2_MASK (REG2_RWLOCK | REG2_LOCKDOWN)
591
Stefan Tauner5859ced2014-12-20 16:45:31 +0000592static int printlock_regspace2_block(const struct flashctx *flash, chipaddr lockreg)
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000593{
Stefan Tauner5859ced2014-12-20 16:45:31 +0000594 uint8_t state = chip_readb(flash, lockreg);
595 msg_cdbg("Lock status of block at 0x%0*" PRIxPTR " is ", PRIxPTR_WIDTH, lockreg);
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000596 switch (state & REG2_MASK) {
597 case 0:
598 msg_cdbg("Full Access.\n");
599 break;
600 case 1:
601 msg_cdbg("Write Lock (Default State).\n");
602 break;
603 case 2:
604 msg_cdbg("Locked Open (Full Access, Locked Down).\n");
605 break;
606 case 3:
607 msg_cdbg("Write Lock, Locked Down.\n");
608 break;
609 case 4:
610 msg_cdbg("Read Lock.\n");
611 break;
612 case 5:
613 msg_cdbg("Read/Write Lock.\n");
614 break;
615 case 6:
616 msg_cdbg("Read Lock, Locked Down.\n");
617 break;
618 case 7:
619 msg_cdbg("Read/Write Lock, Locked Down.\n");
620 break;
621 }
622 return 0;
623}
624
625int printlock_regspace2_blocks(const struct flashctx *flash, const struct unlockblock *blocks)
626{
627 return regspace2_walk_unlockblocks(flash, blocks, &printlock_regspace2_block);
628}
629
630static int printlock_regspace2_uniform(struct flashctx *flash, unsigned long block_size)
631{
632 const unsigned int elems = flash->chip->total_size * 1024 / block_size;
633 struct unlockblock blocks[2] = {{.size = block_size, .count = elems}};
634 return regspace2_walk_unlockblocks(flash, blocks, &printlock_regspace2_block);
635}
636
637int printlock_regspace2_uniform_64k(struct flashctx *flash)
638{
639 return printlock_regspace2_uniform(flash, 64 * 1024);
640}
641
642int printlock_regspace2_block_eraser_0(struct flashctx *flash)
643{
644 // FIXME: this depends on the eraseblocks not to be filled up completely (i.e. to be null-terminated).
645 const struct unlockblock *unlockblocks =
646 (const struct unlockblock *)flash->chip->block_erasers[0].eraseblocks;
647 return regspace2_walk_unlockblocks(flash, unlockblocks, &printlock_regspace2_block);
648}
649
650int printlock_regspace2_block_eraser_1(struct flashctx *flash)
651{
652 // FIXME: this depends on the eraseblocks not to be filled up completely (i.e. to be null-terminated).
653 const struct unlockblock *unlockblocks =
654 (const struct unlockblock *)flash->chip->block_erasers[1].eraseblocks;
655 return regspace2_walk_unlockblocks(flash, unlockblocks, &printlock_regspace2_block);
656}
657
Stefan Tauner5859ced2014-12-20 16:45:31 +0000658/* Try to change the lock register at address lockreg from cur to new.
659 *
660 * - Try to unlock the lock bit if requested and it is currently set (although this is probably futile).
661 * - Try to change the read/write bits if requested.
662 * - Try to set the lockdown bit if requested.
663 * Return an error immediately if any of this fails. */
664static int changelock_regspace2_block(const struct flashctx *flash, chipaddr lockreg, uint8_t cur, uint8_t new)
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000665{
Stefan Tauner5859ced2014-12-20 16:45:31 +0000666 /* Only allow changes to known read/write/lockdown bits */
667 if (((cur ^ new) & ~REG2_MASK) != 0) {
668 msg_cerr("Invalid lock change from 0x%02x to 0x%02x requested at 0x%0*" PRIxPTR "!\n"
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000669 "Please report a bug at flashrom@flashrom.org\n",
Stefan Tauner5859ced2014-12-20 16:45:31 +0000670 cur, new, PRIxPTR_WIDTH, lockreg);
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000671 return -1;
672 }
Stefan Tauner5859ced2014-12-20 16:45:31 +0000673
674 /* Exit early if no change (of read/write/lockdown bits) was requested. */
675 if (((cur ^ new) & REG2_MASK) == 0) {
676 msg_cdbg2("Lock bits at 0x%0*" PRIxPTR " not changed.\n", PRIxPTR_WIDTH, lockreg);
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000677 return 0;
678 }
Stefan Tauner5859ced2014-12-20 16:45:31 +0000679
680 /* Normally the lockdown bit can not be cleared. Try nevertheless if requested. */
681 if ((cur & REG2_LOCKDOWN) && !(new & REG2_LOCKDOWN)) {
682 chip_writeb(flash, cur & ~REG2_LOCKDOWN, lockreg);
683 cur = chip_readb(flash, lockreg);
684 if ((cur & REG2_LOCKDOWN) == REG2_LOCKDOWN) {
685 msg_cwarn("Lockdown can't be removed at 0x%0*" PRIxPTR "! New value: 0x%02x.\n",
686 PRIxPTR_WIDTH, lockreg, cur);
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000687 return -1;
688 }
689 }
Stefan Tauner5859ced2014-12-20 16:45:31 +0000690
691 /* Change read and/or write bit */
692 if ((cur ^ new) & REG2_RWLOCK) {
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000693 /* Do not lockdown yet. */
Stefan Tauner5859ced2014-12-20 16:45:31 +0000694 uint8_t wanted = (cur & ~REG2_RWLOCK) | (new & REG2_RWLOCK);
695 chip_writeb(flash, wanted, lockreg);
696 cur = chip_readb(flash, lockreg);
697 if (cur != wanted) {
698 msg_cerr("Changing lock bits failed at 0x%0*" PRIxPTR "! New value: 0x%02x.\n",
699 PRIxPTR_WIDTH, lockreg, cur);
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000700 return -1;
701 }
Stefan Tauner5859ced2014-12-20 16:45:31 +0000702 msg_cdbg("Changed lock bits at 0x%0*" PRIxPTR " to 0x%02x.\n",
703 PRIxPTR_WIDTH, lockreg, cur);
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000704 }
Stefan Tauner5859ced2014-12-20 16:45:31 +0000705
706 /* Eventually, enable lockdown if requested. */
707 if (!(cur & REG2_LOCKDOWN) && (new & REG2_LOCKDOWN)) {
708 chip_writeb(flash, new, lockreg);
709 cur = chip_readb(flash, lockreg);
710 if (cur != new) {
711 msg_cerr("Enabling lockdown FAILED at 0x%0*" PRIxPTR "! New value: 0x%02x.\n",
712 PRIxPTR_WIDTH, lockreg, cur);
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000713 return -1;
714 }
Stefan Tauner5859ced2014-12-20 16:45:31 +0000715 msg_cdbg("Enabled lockdown at 0x%0*" PRIxPTR ".\n", PRIxPTR_WIDTH, lockreg);
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000716 }
717
718 return 0;
719}
720
Stefan Tauner5859ced2014-12-20 16:45:31 +0000721static int unlock_regspace2_block_generic(const struct flashctx *flash, chipaddr lockreg)
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000722{
Stefan Tauner5859ced2014-12-20 16:45:31 +0000723 uint8_t old = chip_readb(flash, lockreg);
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000724 /* We don't care for the lockdown bit as long as the RW locks are 0 after we're done */
Stefan Tauner5859ced2014-12-20 16:45:31 +0000725 return changelock_regspace2_block(flash, lockreg, old, old & ~REG2_RWLOCK);
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000726}
727
728static int unlock_regspace2_uniform(struct flashctx *flash, unsigned long block_size)
729{
730 const unsigned int elems = flash->chip->total_size * 1024 / block_size;
731 struct unlockblock blocks[2] = {{.size = block_size, .count = elems}};
Stefan Tauner5859ced2014-12-20 16:45:31 +0000732 return regspace2_walk_unlockblocks(flash, blocks, &unlock_regspace2_block_generic);
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000733}
734
735int unlock_regspace2_uniform_64k(struct flashctx *flash)
736{
737 return unlock_regspace2_uniform(flash, 64 * 1024);
738}
739
740int unlock_regspace2_uniform_32k(struct flashctx *flash)
741{
742 return unlock_regspace2_uniform(flash, 32 * 1024);
743}
744
745int unlock_regspace2_block_eraser_0(struct flashctx *flash)
746{
747 // FIXME: this depends on the eraseblocks not to be filled up completely (i.e. to be null-terminated).
748 const struct unlockblock *unlockblocks =
749 (const struct unlockblock *)flash->chip->block_erasers[0].eraseblocks;
Stefan Tauner5859ced2014-12-20 16:45:31 +0000750 return regspace2_walk_unlockblocks(flash, unlockblocks, &unlock_regspace2_block_generic);
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000751}
752
753int unlock_regspace2_block_eraser_1(struct flashctx *flash)
754{
755 // FIXME: this depends on the eraseblocks not to be filled up completely (i.e. to be null-terminated).
756 const struct unlockblock *unlockblocks =
757 (const struct unlockblock *)flash->chip->block_erasers[1].eraseblocks;
Stefan Tauner5859ced2014-12-20 16:45:31 +0000758 return regspace2_walk_unlockblocks(flash, unlockblocks, &unlock_regspace2_block_generic);
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000759}
760