blob: 29fdae85636d10134d53eb2d618c7bd0726c5458 [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 Hailfingeref3ac8a2014-08-03 13:05:34 +00007 * Copyright (C) 2007, 2011 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 Hailfinger8a3c60c2011-12-18 15:01:24 +0000119 chip_writeb(flash, 0xAA, bios + (0x5555 & mask));
120 chip_writeb(flash, 0x55, bios + (0x2AAA & mask));
121 chip_writeb(flash, 0xA0, bios + (0x5555 & mask));
Uwe Hermann51582f22007-08-23 10:20:40 +0000122}
123
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000124static int probe_jedec_common(struct flashctx *flash, unsigned int mask)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000125{
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000126 chipaddr bios = flash->virtual_memory;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000127 const struct flashchip *chip = flash->chip;
Ollie Lho184a4042005-11-26 21:55:36 +0000128 uint8_t id1, id2;
Carl-Daniel Hailfingerae8afa92007-12-31 01:49:00 +0000129 uint32_t largeid1, largeid2;
Carl-Daniel Hailfinger8130f2d2009-05-11 14:40:31 +0000130 uint32_t flashcontent1, flashcontent2;
Stefan Taunerf80419c2014-05-02 15:41:42 +0000131 unsigned int probe_timing_enter, probe_timing_exit;
Maciej Pijankac6e11112009-06-03 14:46:22 +0000132
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000133 if (chip->probe_timing > 0)
134 probe_timing_enter = probe_timing_exit = chip->probe_timing;
135 else if (chip->probe_timing == TIMING_ZERO) { /* No delay. */
Maciej Pijankac6e11112009-06-03 14:46:22 +0000136 probe_timing_enter = probe_timing_exit = 0;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000137 } else if (chip->probe_timing == TIMING_FIXME) { /* == _IGNORED */
Sean Nelsoned479d22010-03-24 23:14:32 +0000138 msg_cdbg("Chip lacks correct probe timing information, "
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +0000139 "using default 10mS/40uS. ");
Maciej Pijankac6e11112009-06-03 14:46:22 +0000140 probe_timing_enter = 10000;
141 probe_timing_exit = 40;
142 } else {
Sean Nelsoned479d22010-03-24 23:14:32 +0000143 msg_cerr("Chip has negative value in probe_timing, failing "
Maciej Pijankac6e11112009-06-03 14:46:22 +0000144 "without chip access\n");
145 return 0;
146 }
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000147
Sean Nelsonf59e2632010-10-20 21:13:19 +0000148 /* Earlier probes might have been too fast for the chip to enter ID
149 * mode completely. Allow the chip to finish this before seeing a
150 * reset command.
151 */
152 if (probe_timing_enter)
153 programmer_delay(probe_timing_enter);
154 /* Reset chip to a clean slate */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000155 if ((chip->feature_bits & FEATURE_RESET_MASK) == FEATURE_LONG_RESET)
Sean Nelsonf59e2632010-10-20 21:13:19 +0000156 {
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000157 chip_writeb(flash, 0xAA, bios + (0x5555 & mask));
Sean Nelsonf59e2632010-10-20 21:13:19 +0000158 if (probe_timing_exit)
159 programmer_delay(10);
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000160 chip_writeb(flash, 0x55, bios + (0x2AAA & mask));
Sean Nelsonf59e2632010-10-20 21:13:19 +0000161 if (probe_timing_exit)
162 programmer_delay(10);
163 }
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000164 chip_writeb(flash, 0xF0, bios + (0x5555 & mask));
Sean Nelsonf59e2632010-10-20 21:13:19 +0000165 if (probe_timing_exit)
166 programmer_delay(probe_timing_exit);
167
Ollie Lho761bf1b2004-03-20 16:46:10 +0000168 /* Issue JEDEC Product ID Entry command */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000169 chip_writeb(flash, 0xAA, bios + (0x5555 & mask));
Sean Nelsonc12fc712009-12-17 04:22:40 +0000170 if (probe_timing_enter)
171 programmer_delay(10);
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000172 chip_writeb(flash, 0x55, bios + (0x2AAA & mask));
Sean Nelsonc12fc712009-12-17 04:22:40 +0000173 if (probe_timing_enter)
174 programmer_delay(10);
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000175 chip_writeb(flash, 0x90, bios + (0x5555 & mask));
Sean Nelsonc12fc712009-12-17 04:22:40 +0000176 if (probe_timing_enter)
177 programmer_delay(probe_timing_enter);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000178
Ollie Lho761bf1b2004-03-20 16:46:10 +0000179 /* Read product ID */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000180 id1 = chip_readb(flash, bios);
181 id2 = chip_readb(flash, bios + 0x01);
Carl-Daniel Hailfingerae8afa92007-12-31 01:49:00 +0000182 largeid1 = id1;
183 largeid2 = id2;
184
185 /* Check if it is a continuation ID, this should be a while loop. */
186 if (id1 == 0x7F) {
187 largeid1 <<= 8;
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000188 id1 = chip_readb(flash, bios + 0x100);
Carl-Daniel Hailfingerae8afa92007-12-31 01:49:00 +0000189 largeid1 |= id1;
190 }
191 if (id2 == 0x7F) {
192 largeid2 <<= 8;
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000193 id2 = chip_readb(flash, bios + 0x101);
Carl-Daniel Hailfingerae8afa92007-12-31 01:49:00 +0000194 largeid2 |= id2;
195 }
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000196
Ollie Lho761bf1b2004-03-20 16:46:10 +0000197 /* Issue JEDEC Product ID Exit command */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000198 if ((chip->feature_bits & FEATURE_RESET_MASK) == FEATURE_LONG_RESET)
Sean Nelsonc57a9202010-01-04 17:15:23 +0000199 {
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000200 chip_writeb(flash, 0xAA, bios + (0x5555 & mask));
Sean Nelsonc57a9202010-01-04 17:15:23 +0000201 if (probe_timing_exit)
202 programmer_delay(10);
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000203 chip_writeb(flash, 0x55, bios + (0x2AAA & mask));
Sean Nelsonc57a9202010-01-04 17:15:23 +0000204 if (probe_timing_exit)
205 programmer_delay(10);
206 }
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000207 chip_writeb(flash, 0xF0, bios + (0x5555 & mask));
Sean Nelsonc12fc712009-12-17 04:22:40 +0000208 if (probe_timing_exit)
209 programmer_delay(probe_timing_exit);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000210
Sean Nelsoned479d22010-03-24 23:14:32 +0000211 msg_cdbg("%s: id1 0x%02x, id2 0x%02x", __func__, largeid1, largeid2);
Carl-Daniel Hailfingera758f512008-05-14 12:03:06 +0000212 if (!oddparity(id1))
Sean Nelsoned479d22010-03-24 23:14:32 +0000213 msg_cdbg(", id1 parity violation");
Carl-Daniel Hailfinger8130f2d2009-05-11 14:40:31 +0000214
215 /* Read the product ID location again. We should now see normal flash contents. */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000216 flashcontent1 = chip_readb(flash, bios);
217 flashcontent2 = chip_readb(flash, bios + 0x01);
Carl-Daniel Hailfinger8130f2d2009-05-11 14:40:31 +0000218
219 /* Check if it is a continuation ID, this should be a while loop. */
220 if (flashcontent1 == 0x7F) {
221 flashcontent1 <<= 8;
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000222 flashcontent1 |= chip_readb(flash, bios + 0x100);
Carl-Daniel Hailfinger8130f2d2009-05-11 14:40:31 +0000223 }
224 if (flashcontent2 == 0x7F) {
225 flashcontent2 <<= 8;
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000226 flashcontent2 |= chip_readb(flash, bios + 0x101);
Carl-Daniel Hailfinger8130f2d2009-05-11 14:40:31 +0000227 }
228
229 if (largeid1 == flashcontent1)
Sean Nelsoned479d22010-03-24 23:14:32 +0000230 msg_cdbg(", id1 is normal flash content");
Carl-Daniel Hailfinger8130f2d2009-05-11 14:40:31 +0000231 if (largeid2 == flashcontent2)
Sean Nelsoned479d22010-03-24 23:14:32 +0000232 msg_cdbg(", id2 is normal flash content");
Carl-Daniel Hailfinger8130f2d2009-05-11 14:40:31 +0000233
Sean Nelsoned479d22010-03-24 23:14:32 +0000234 msg_cdbg("\n");
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000235 if (largeid1 != chip->manufacture_id || largeid2 != chip->model_id)
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +0000236 return 0;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000237
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000238 if (chip->feature_bits & FEATURE_REGISTERMAP)
Sean Nelsonc57a9202010-01-04 17:15:23 +0000239 map_flash_registers(flash);
240
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +0000241 return 1;
Ollie Lho73eca802004-03-19 22:10:07 +0000242}
243
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000244static int erase_sector_jedec_common(struct flashctx *flash, unsigned int page,
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000245 unsigned int pagesize, unsigned int mask)
Ollie Lho73eca802004-03-19 22:10:07 +0000246{
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000247 chipaddr bios = flash->virtual_memory;
Stefan Taunerf80419c2014-05-02 15:41:42 +0000248 unsigned int delay_us = 0;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000249 if(flash->chip->probe_timing != TIMING_ZERO)
Stefan Taunerf80419c2014-05-02 15:41:42 +0000250 delay_us = 10;
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000251
Ollie Lho761bf1b2004-03-20 16:46:10 +0000252 /* Issue the Sector Erase command */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000253 chip_writeb(flash, 0xAA, bios + (0x5555 & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000254 programmer_delay(delay_us);
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000255 chip_writeb(flash, 0x55, bios + (0x2AAA & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000256 programmer_delay(delay_us);
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000257 chip_writeb(flash, 0x80, bios + (0x5555 & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000258 programmer_delay(delay_us);
Ollie Lhoefa28582004-12-08 20:10:01 +0000259
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000260 chip_writeb(flash, 0xAA, bios + (0x5555 & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000261 programmer_delay(delay_us);
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000262 chip_writeb(flash, 0x55, bios + (0x2AAA & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000263 programmer_delay(delay_us);
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000264 chip_writeb(flash, 0x30, bios + page);
Michael Karcher880e8672011-04-15 00:03:37 +0000265 programmer_delay(delay_us);
Ollie Lho761bf1b2004-03-20 16:46:10 +0000266
Ollie Lho73eca802004-03-19 22:10:07 +0000267 /* wait for Toggle bit ready */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000268 toggle_ready_jedec_slow(flash, bios);
Ollie Lho73eca802004-03-19 22:10:07 +0000269
Carl-Daniel Hailfingerb4061f62011-06-26 17:04:16 +0000270 /* FIXME: Check the status register for errors. */
Uwe Hermannffec5f32007-08-23 16:08:21 +0000271 return 0;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000272}
Ollie Lho98bea8a2004-12-07 03:15:51 +0000273
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000274static int erase_block_jedec_common(struct flashctx *flash, unsigned int block,
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000275 unsigned int blocksize, unsigned int mask)
Ronald G. Minnich1f4d6532004-09-30 16:37:01 +0000276{
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000277 chipaddr bios = flash->virtual_memory;
Stefan Taunerf80419c2014-05-02 15:41:42 +0000278 unsigned int delay_us = 0;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000279 if(flash->chip->probe_timing != TIMING_ZERO)
Stefan Taunerf80419c2014-05-02 15:41:42 +0000280 delay_us = 10;
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000281
Ronald G. Minnich1f4d6532004-09-30 16:37:01 +0000282 /* Issue the Sector Erase command */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000283 chip_writeb(flash, 0xAA, bios + (0x5555 & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000284 programmer_delay(delay_us);
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000285 chip_writeb(flash, 0x55, bios + (0x2AAA & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000286 programmer_delay(delay_us);
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000287 chip_writeb(flash, 0x80, bios + (0x5555 & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000288 programmer_delay(delay_us);
Ollie Lhoefa28582004-12-08 20:10:01 +0000289
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000290 chip_writeb(flash, 0xAA, bios + (0x5555 & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000291 programmer_delay(delay_us);
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000292 chip_writeb(flash, 0x55, bios + (0x2AAA & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000293 programmer_delay(delay_us);
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000294 chip_writeb(flash, 0x50, bios + block);
Michael Karcher880e8672011-04-15 00:03:37 +0000295 programmer_delay(delay_us);
Ronald G. Minnich1f4d6532004-09-30 16:37:01 +0000296
297 /* wait for Toggle bit ready */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000298 toggle_ready_jedec_slow(flash, bios);
Ronald G. Minnich1f4d6532004-09-30 16:37:01 +0000299
Carl-Daniel Hailfingerb4061f62011-06-26 17:04:16 +0000300 /* FIXME: Check the status register for errors. */
Uwe Hermannffec5f32007-08-23 16:08:21 +0000301 return 0;
Ronald G. Minnich1f4d6532004-09-30 16:37:01 +0000302}
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000303
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000304static int erase_chip_jedec_common(struct flashctx *flash, unsigned int mask)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000305{
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000306 chipaddr bios = flash->virtual_memory;
Stefan Taunerf80419c2014-05-02 15:41:42 +0000307 unsigned int delay_us = 0;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000308 if(flash->chip->probe_timing != TIMING_ZERO)
Stefan Taunerf80419c2014-05-02 15:41:42 +0000309 delay_us = 10;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000310
Ollie Lho761bf1b2004-03-20 16:46:10 +0000311 /* Issue the JEDEC Chip Erase command */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000312 chip_writeb(flash, 0xAA, bios + (0x5555 & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000313 programmer_delay(delay_us);
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000314 chip_writeb(flash, 0x55, bios + (0x2AAA & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000315 programmer_delay(delay_us);
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000316 chip_writeb(flash, 0x80, bios + (0x5555 & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000317 programmer_delay(delay_us);
Ollie Lhoefa28582004-12-08 20:10:01 +0000318
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000319 chip_writeb(flash, 0xAA, bios + (0x5555 & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000320 programmer_delay(delay_us);
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000321 chip_writeb(flash, 0x55, bios + (0x2AAA & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000322 programmer_delay(delay_us);
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000323 chip_writeb(flash, 0x10, bios + (0x5555 & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000324 programmer_delay(delay_us);
Ollie Lho73eca802004-03-19 22:10:07 +0000325
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000326 toggle_ready_jedec_slow(flash, bios);
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000327
Carl-Daniel Hailfingerb4061f62011-06-26 17:04:16 +0000328 /* FIXME: Check the status register for errors. */
Uwe Hermannffec5f32007-08-23 16:08:21 +0000329 return 0;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000330}
331
Stefan Tauner0ab1e5d2014-05-29 11:51:24 +0000332static int write_byte_program_jedec_common(const struct flashctx *flash, const uint8_t *src,
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000333 chipaddr dst, unsigned int mask)
Sean Nelsonc57a9202010-01-04 17:15:23 +0000334{
335 int tried = 0, failed = 0;
336 chipaddr bios = flash->virtual_memory;
337
338 /* If the data is 0xFF, don't program it and don't complain. */
339 if (*src == 0xFF) {
340 return 0;
341 }
342
343retry:
344 /* Issue JEDEC Byte Program command */
345 start_program_jedec_common(flash, mask);
346
347 /* transfer data from source to destination */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000348 chip_writeb(flash, *src, dst);
349 toggle_ready_jedec(flash, bios);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000350
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000351 if (chip_readb(flash, dst) != *src && tried++ < MAX_REFLASH_TRIES) {
Sean Nelsonc57a9202010-01-04 17:15:23 +0000352 goto retry;
353 }
354
355 if (tried >= MAX_REFLASH_TRIES)
356 failed = 1;
357
358 return failed;
359}
360
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +0000361/* chunksize is 1 */
Stefan Tauner0ab1e5d2014-05-29 11:51:24 +0000362int write_jedec_1(struct flashctx *flash, const uint8_t *src, unsigned int start,
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000363 unsigned int len)
Sean Nelsonc57a9202010-01-04 17:15:23 +0000364{
365 int i, failed = 0;
Carl-Daniel Hailfingerb30a5ed2010-10-10 14:02:27 +0000366 chipaddr dst = flash->virtual_memory + start;
Sean Nelsonc57a9202010-01-04 17:15:23 +0000367 chipaddr olddst;
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000368 unsigned int mask;
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000369
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000370 mask = getaddrmask(flash->chip);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000371
372 olddst = dst;
Carl-Daniel Hailfingerb30a5ed2010-10-10 14:02:27 +0000373 for (i = 0; i < len; i++) {
Sean Nelsonc57a9202010-01-04 17:15:23 +0000374 if (write_byte_program_jedec_common(flash, src, dst, mask))
375 failed = 1;
376 dst++, src++;
377 }
378 if (failed)
Stefan Taunerc2333752013-07-13 23:31:37 +0000379 msg_cerr(" writing sector at 0x%" PRIxPTR " failed!\n", olddst);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000380
381 return failed;
382}
383
Stefan Tauner0ab1e5d2014-05-29 11:51:24 +0000384static int write_page_write_jedec_common(struct flashctx *flash, const uint8_t *src,
Stefan Tauner0554ca52013-07-25 22:54:25 +0000385 unsigned int start, unsigned int page_size)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000386{
Carl-Daniel Hailfinger2925d6f2009-11-25 16:41:50 +0000387 int i, tried = 0, failed;
Stefan Tauner0ab1e5d2014-05-29 11:51:24 +0000388 const uint8_t *s = src;
Urja Rannikko0c854c02009-06-25 13:57:31 +0000389 chipaddr bios = flash->virtual_memory;
390 chipaddr dst = bios + start;
391 chipaddr d = dst;
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000392 unsigned int mask;
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000393
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000394 mask = getaddrmask(flash->chip);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000395
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000396retry:
Uwe Hermann4e3d0b32010-03-25 23:18:41 +0000397 /* Issue JEDEC Start Program command */
Sean Nelsonc57a9202010-01-04 17:15:23 +0000398 start_program_jedec_common(flash, mask);
Ollie Lho761bf1b2004-03-20 16:46:10 +0000399
Ollie Lho98bea8a2004-12-07 03:15:51 +0000400 /* transfer data from source to destination */
Carl-Daniel Hailfinger8a8a2262009-11-14 03:48:33 +0000401 for (i = 0; i < page_size; i++) {
Ollie Lho98bea8a2004-12-07 03:15:51 +0000402 /* If the data is 0xFF, don't program it */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000403 if (*src != 0xFF)
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000404 chip_writeb(flash, *src, dst);
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000405 dst++;
406 src++;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000407 }
408
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000409 toggle_ready_jedec(flash, dst - 1);
Ollie Lho98bea8a2004-12-07 03:15:51 +0000410
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000411 dst = d;
412 src = s;
Stefan Tauner78ffbea2012-10-27 15:36:56 +0000413 failed = verify_range(flash, src, start, page_size);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000414
Carl-Daniel Hailfinger2925d6f2009-11-25 16:41:50 +0000415 if (failed && tried++ < MAX_REFLASH_TRIES) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000416 msg_cerr("retrying.\n");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000417 goto retry;
418 }
Carl-Daniel Hailfinger2925d6f2009-11-25 16:41:50 +0000419 if (failed) {
Stefan Taunerc2333752013-07-13 23:31:37 +0000420 msg_cerr(" page 0x%" PRIxPTR " failed!\n", (d - bios) / page_size);
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000421 }
Carl-Daniel Hailfinger2925d6f2009-11-25 16:41:50 +0000422 return failed;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000423}
424
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +0000425/* chunksize is page_size */
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000426/*
427 * Write a part of the flash chip.
428 * FIXME: Use the chunk code from Michael Karcher instead.
429 * This function is a slightly modified copy of spi_write_chunked.
430 * Each page is written separately in chunks with a maximum size of chunksize.
431 */
Stefan Tauner0ab1e5d2014-05-29 11:51:24 +0000432int write_jedec(struct flashctx *flash, const uint8_t *buf, unsigned int start,
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000433 int unsigned len)
Carl-Daniel Hailfinger4bf4e792010-01-09 03:15:50 +0000434{
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000435 unsigned int i, starthere, lenhere;
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000436 /* FIXME: page_size is the wrong variable. We need max_writechunk_size
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000437 * in struct flashctx to do this properly. All chips using
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000438 * write_jedec have page_size set to max_writechunk_size, so
439 * we're OK for now.
440 */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000441 unsigned int page_size = flash->chip->page_size;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000442
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000443 /* Warning: This loop has a very unusual condition and body.
444 * The loop needs to go through each page with at least one affected
445 * byte. The lowest page number is (start / page_size) since that
446 * division rounds down. The highest page number we want is the page
447 * where the last byte of the range lives. That last byte has the
448 * address (start + len - 1), thus the highest page number is
449 * (start + len - 1) / page_size. Since we want to include that last
450 * page as well, the loop condition uses <=.
451 */
452 for (i = start / page_size; i <= (start + len - 1) / page_size; i++) {
453 /* Byte position of the first byte in the range in this page. */
454 /* starthere is an offset to the base address of the chip. */
455 starthere = max(start, i * page_size);
456 /* Length of bytes in the range in this page. */
457 lenhere = min(start + len, (i + 1) * page_size) - starthere;
Sean Nelson35727f72010-01-28 23:55:12 +0000458
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000459 if (write_page_write_jedec_common(flash, buf + starthere - start, starthere, lenhere))
460 return 1;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000461 }
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000462
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000463 return 0;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000464}
Michael Karcher1c296ca2009-11-27 17:49:42 +0000465
Sean Nelsonc57a9202010-01-04 17:15:23 +0000466/* erase chip with block_erase() prototype */
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000467int erase_chip_block_jedec(struct flashctx *flash, unsigned int addr,
Sean Nelsonc57a9202010-01-04 17:15:23 +0000468 unsigned int blocksize)
469{
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000470 unsigned int mask;
Sean Nelson35727f72010-01-28 23:55:12 +0000471
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000472 mask = getaddrmask(flash->chip);
473 if ((addr != 0) || (blocksize != flash->chip->total_size * 1024)) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000474 msg_cerr("%s called with incorrect arguments\n",
Sean Nelsonc57a9202010-01-04 17:15:23 +0000475 __func__);
476 return -1;
477 }
Sean Nelson35727f72010-01-28 23:55:12 +0000478 return erase_chip_jedec_common(flash, mask);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000479}
480
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000481int probe_jedec(struct flashctx *flash)
Sean Nelsonc57a9202010-01-04 17:15:23 +0000482{
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000483 unsigned int mask;
Carl-Daniel Hailfinger4bf4e792010-01-09 03:15:50 +0000484
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000485 mask = getaddrmask(flash->chip);
Sean Nelson35727f72010-01-28 23:55:12 +0000486 return probe_jedec_common(flash, mask);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000487}
488
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000489int erase_sector_jedec(struct flashctx *flash, unsigned int page,
490 unsigned int size)
Sean Nelsonc57a9202010-01-04 17:15:23 +0000491{
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000492 unsigned int mask;
Sean Nelson35727f72010-01-28 23:55:12 +0000493
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000494 mask = getaddrmask(flash->chip);
Sean Nelson35727f72010-01-28 23:55:12 +0000495 return erase_sector_jedec_common(flash, page, size, mask);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000496}
497
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000498int erase_block_jedec(struct flashctx *flash, unsigned int page,
499 unsigned int size)
Sean Nelsonc57a9202010-01-04 17:15:23 +0000500{
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000501 unsigned int mask;
Sean Nelson35727f72010-01-28 23:55:12 +0000502
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000503 mask = getaddrmask(flash->chip);
Sean Nelson35727f72010-01-28 23:55:12 +0000504 return erase_block_jedec_common(flash, page, size, mask);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000505}
506
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000507int erase_chip_jedec(struct flashctx *flash)
Sean Nelsonc57a9202010-01-04 17:15:23 +0000508{
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000509 unsigned int mask;
Sean Nelson35727f72010-01-28 23:55:12 +0000510
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000511 mask = getaddrmask(flash->chip);
Sean Nelson35727f72010-01-28 23:55:12 +0000512 return erase_chip_jedec_common(flash, mask);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000513}
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000514
515struct unlockblock {
516 unsigned int size;
517 unsigned int count;
518};
519
520typedef int (*unlockblock_func)(const struct flashctx *flash, chipaddr offset);
521static int regspace2_walk_unlockblocks(const struct flashctx *flash, const struct unlockblock *block, unlockblock_func func)
522{
523 chipaddr off = flash->virtual_registers + 2;
524 while (block->count != 0) {
525 unsigned int j;
526 for (j = 0; j < block->count; j++) {
527 if (func(flash, off))
528 return -1;
529 off += block->size;
530 }
531 block++;
532 }
533 return 0;
534}
535
536#define REG2_RWLOCK ((1 << 2) | (1 << 0))
537#define REG2_LOCKDOWN (1 << 1)
538#define REG2_MASK (REG2_RWLOCK | REG2_LOCKDOWN)
539
540static int printlock_regspace2_block(const struct flashctx *flash, chipaddr offset)
541{
542 chipaddr wrprotect = flash->virtual_registers + offset + 2;
543 uint8_t state = chip_readb(flash, wrprotect);
544 msg_cdbg("Lock status of block at 0x%0*" PRIxPTR " is ", PRIxPTR_WIDTH, offset);
545 switch (state & REG2_MASK) {
546 case 0:
547 msg_cdbg("Full Access.\n");
548 break;
549 case 1:
550 msg_cdbg("Write Lock (Default State).\n");
551 break;
552 case 2:
553 msg_cdbg("Locked Open (Full Access, Locked Down).\n");
554 break;
555 case 3:
556 msg_cdbg("Write Lock, Locked Down.\n");
557 break;
558 case 4:
559 msg_cdbg("Read Lock.\n");
560 break;
561 case 5:
562 msg_cdbg("Read/Write Lock.\n");
563 break;
564 case 6:
565 msg_cdbg("Read Lock, Locked Down.\n");
566 break;
567 case 7:
568 msg_cdbg("Read/Write Lock, Locked Down.\n");
569 break;
570 }
571 return 0;
572}
573
574int printlock_regspace2_blocks(const struct flashctx *flash, const struct unlockblock *blocks)
575{
576 return regspace2_walk_unlockblocks(flash, blocks, &printlock_regspace2_block);
577}
578
579static int printlock_regspace2_uniform(struct flashctx *flash, unsigned long block_size)
580{
581 const unsigned int elems = flash->chip->total_size * 1024 / block_size;
582 struct unlockblock blocks[2] = {{.size = block_size, .count = elems}};
583 return regspace2_walk_unlockblocks(flash, blocks, &printlock_regspace2_block);
584}
585
586int printlock_regspace2_uniform_64k(struct flashctx *flash)
587{
588 return printlock_regspace2_uniform(flash, 64 * 1024);
589}
590
591int printlock_regspace2_block_eraser_0(struct flashctx *flash)
592{
593 // FIXME: this depends on the eraseblocks not to be filled up completely (i.e. to be null-terminated).
594 const struct unlockblock *unlockblocks =
595 (const struct unlockblock *)flash->chip->block_erasers[0].eraseblocks;
596 return regspace2_walk_unlockblocks(flash, unlockblocks, &printlock_regspace2_block);
597}
598
599int printlock_regspace2_block_eraser_1(struct flashctx *flash)
600{
601 // FIXME: this depends on the eraseblocks not to be filled up completely (i.e. to be null-terminated).
602 const struct unlockblock *unlockblocks =
603 (const struct unlockblock *)flash->chip->block_erasers[1].eraseblocks;
604 return regspace2_walk_unlockblocks(flash, unlockblocks, &printlock_regspace2_block);
605}
606
607static int changelock_regspace2_block(const struct flashctx *flash, chipaddr offset, uint8_t new_bits)
608{
609 chipaddr wrprotect = flash->virtual_registers + offset + 2;
610 uint8_t old;
611
612 if (new_bits & ~REG2_MASK) {
613 msg_cerr("Invalid locking change 0x%02x requested at 0x%0*" PRIxPTR "! "
614 "Please report a bug at flashrom@flashrom.org\n",
615 new_bits, PRIxPTR_WIDTH, offset);
616 return -1;
617 }
618 old = chip_readb(flash, wrprotect);
619 /* Early exist if no change (of read/write/lockdown) was requested. */
620 if (((old ^ new_bits) & REG2_MASK) == 0) {
621 msg_cdbg2("Locking status at 0x%0*" PRIxPTR " not changed\n", PRIxPTR_WIDTH, offset);
622 return 0;
623 }
624 /* Normally lockdowns can not be cleared. Try nevertheless if requested. */
625 if ((old & REG2_LOCKDOWN) && !(new_bits & REG2_LOCKDOWN)) {
626 chip_writeb(flash, old & ~REG2_LOCKDOWN, wrprotect);
627 if (chip_readb(flash, wrprotect) != (old & ~REG2_LOCKDOWN)) {
628 msg_cerr("Lockdown can't be removed at 0x%0*" PRIxPTR "!\n", PRIxPTR_WIDTH, offset);
629 return -1;
630 }
631 }
632 /* Change read or write lock? */
633 if ((old ^ new_bits) & REG2_RWLOCK) {
634 /* Do not lockdown yet. */
635 msg_cdbg("Changing locking status at 0x%0*" PRIxPTR " to 0x%02x\n", PRIxPTR_WIDTH, offset, new_bits & REG2_RWLOCK);
636 chip_writeb(flash, new_bits & REG2_RWLOCK, wrprotect);
637 if (chip_readb(flash, wrprotect) != (new_bits & REG2_RWLOCK)) {
638 msg_cerr("Locking status change FAILED at 0x%0*" PRIxPTR "!\n", PRIxPTR_WIDTH, offset);
639 return -1;
640 }
641 }
642 /* Enable lockdown if requested. */
643 if (!(old & REG2_LOCKDOWN) && (new_bits & REG2_LOCKDOWN)) {
644 msg_cdbg("Enabling lockdown at 0x%0*" PRIxPTR "\n", PRIxPTR_WIDTH, offset);
645 chip_writeb(flash, new_bits, wrprotect);
646 if (chip_readb(flash, wrprotect) != new_bits) {
647 msg_cerr("Enabling lockdown FAILED at 0x%0*" PRIxPTR "!\n", PRIxPTR_WIDTH, offset);
648 return -1;
649 }
650 }
651
652 return 0;
653}
654
655int unlock_regspace2_block(const struct flashctx *flash, chipaddr off)
656{
657 chipaddr wrprotect = flash->virtual_registers + off + 2;
658 uint8_t old = chip_readb(flash, wrprotect);
659 /* We don't care for the lockdown bit as long as the RW locks are 0 after we're done */
660 return changelock_regspace2_block(flash, off, old & ~REG2_RWLOCK);
661}
662
663static int unlock_regspace2_uniform(struct flashctx *flash, unsigned long block_size)
664{
665 const unsigned int elems = flash->chip->total_size * 1024 / block_size;
666 struct unlockblock blocks[2] = {{.size = block_size, .count = elems}};
667 return regspace2_walk_unlockblocks(flash, blocks, &unlock_regspace2_block);
668}
669
670int unlock_regspace2_uniform_64k(struct flashctx *flash)
671{
672 return unlock_regspace2_uniform(flash, 64 * 1024);
673}
674
675int unlock_regspace2_uniform_32k(struct flashctx *flash)
676{
677 return unlock_regspace2_uniform(flash, 32 * 1024);
678}
679
680int unlock_regspace2_block_eraser_0(struct flashctx *flash)
681{
682 // FIXME: this depends on the eraseblocks not to be filled up completely (i.e. to be null-terminated).
683 const struct unlockblock *unlockblocks =
684 (const struct unlockblock *)flash->chip->block_erasers[0].eraseblocks;
685 return regspace2_walk_unlockblocks(flash, unlockblocks, &unlock_regspace2_block);
686}
687
688int unlock_regspace2_block_eraser_1(struct flashctx *flash)
689{
690 // FIXME: this depends on the eraseblocks not to be filled up completely (i.e. to be null-terminated).
691 const struct unlockblock *unlockblocks =
692 (const struct unlockblock *)flash->chip->block_erasers[1].eraseblocks;
693 return regspace2_walk_unlockblocks(flash, unlockblocks, &unlock_regspace2_block);
694}
695