blob: 6b1ca0dacad67c8c1168af4069ea35957dbcd850 [file] [log] [blame]
rminnich8d3ff912003-10-25 17:01:29 +00001/*
uweb25f1ea2007-08-29 17:52:32 +00002 * This file is part of the flashrom project.
rminnich8d3ff912003-10-25 17:01:29 +00003 *
uwe555dd972007-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>
Stuart Langley60395ef2020-03-25 20:32:45 +11007 * Copyright (C) 2007-2012 Carl-Daniel Hailfinger
snelson63133f92010-01-04 17:15:23 +00008 * Copyright (C) 2009 Sean Nelson <audiohacked@gmail.com>
Stuart Langley60395ef2020-03-25 20:32:45 +11009 * Copyright (C) 2014 Stefan Tauner
rminnich8d3ff912003-10-25 17:01:29 +000010 *
uweb25f1ea2007-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.
rminnich8d3ff912003-10-25 17:01:29 +000015 *
uweb25f1ea2007-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.
rminnich8d3ff912003-10-25 17:01:29 +000020 */
21
rminnich8d3ff912003-10-25 17:01:29 +000022#include "flash.h"
Kangheui Won4974cc12019-10-18 12:59:01 +110023#include <inttypes.h>
rminnich8d3ff912003-10-25 17:01:29 +000024
stepan7abc6322006-11-22 00:29:51 +000025#define MAX_REFLASH_TRIES 0x10
snelson63133f92010-01-04 17:15:23 +000026#define MASK_FULL 0xffff
27#define MASK_2AA 0x7ff
snelsonc6855342010-01-28 23:55:12 +000028#define MASK_AAA 0xfff
stepan7abc6322006-11-22 00:29:51 +000029
hailfinger79cf3672008-05-14 12:03:06 +000030/* Check one byte for odd parity */
31uint8_t oddparity(uint8_t val)
32{
33 val = (val ^ (val >> 4)) & 0xf;
34 val = (val ^ (val >> 2)) & 0x3;
35 return (val ^ (val >> 1)) & 0x1;
36}
37
Stuart Langley60395ef2020-03-25 20:32:45 +110038static void toggle_ready_jedec_common(const struct flashctx *flash, chipaddr dst, unsigned int delay)
uwedf467892007-08-23 10:20:40 +000039{
40 unsigned int i = 0;
41 uint8_t tmp1, tmp2;
42
Souvik Ghoshd75cd672016-06-17 14:21:39 -070043 tmp1 = chip_readb(flash, dst) & 0x40;
uwedf467892007-08-23 10:20:40 +000044
45 while (i++ < 0xFFFFFFF) {
hailfinger10023012009-12-17 16:20:26 +000046 if (delay)
47 programmer_delay(delay);
Souvik Ghoshd75cd672016-06-17 14:21:39 -070048 tmp2 = chip_readb(flash, dst) & 0x40;
uwedf467892007-08-23 10:20:40 +000049 if (tmp1 == tmp2) {
50 break;
51 }
52 tmp1 = tmp2;
53 }
hailfinger10023012009-12-17 16:20:26 +000054 if (i > 0x100000)
snelsonfc007bb2010-03-24 23:14:32 +000055 msg_cdbg("%s: excessive loops, i=0x%x\n", __func__, i);
hailfinger10023012009-12-17 16:20:26 +000056}
57
Souvik Ghoshd75cd672016-06-17 14:21:39 -070058void toggle_ready_jedec(const struct flashctx *flash, chipaddr dst)
hailfinger10023012009-12-17 16:20:26 +000059{
Souvik Ghoshd75cd672016-06-17 14:21:39 -070060 toggle_ready_jedec_common(flash, dst, 0);
hailfinger10023012009-12-17 16:20:26 +000061}
62
63/* Some chips require a minimum delay between toggle bit reads.
64 * The Winbond W39V040C wants 50 ms between reads on sector erase toggle,
65 * but experiments show that 2 ms are already enough. Pick a safety factor
66 * of 4 and use an 8 ms delay.
Stuart Langley60395ef2020-03-25 20:32:45 +110067 * Given that erase is slow on all chips, it is recommended to use
hailfinger10023012009-12-17 16:20:26 +000068 * toggle_ready_jedec_slow in erase functions.
69 */
Souvik Ghoshd75cd672016-06-17 14:21:39 -070070static void toggle_ready_jedec_slow(const struct flashctx *flash, chipaddr dst)
hailfinger10023012009-12-17 16:20:26 +000071{
Souvik Ghoshd75cd672016-06-17 14:21:39 -070072 toggle_ready_jedec_common(flash, dst, 8 * 1000);
uwedf467892007-08-23 10:20:40 +000073}
74
Stuart Langley60395ef2020-03-25 20:32:45 +110075void data_polling_jedec(const struct flashctx *flash, chipaddr dst,
76 uint8_t data)
uwedf467892007-08-23 10:20:40 +000077{
78 unsigned int i = 0;
79 uint8_t tmp;
80
81 data &= 0x80;
82
83 while (i++ < 0xFFFFFFF) {
Souvik Ghoshd75cd672016-06-17 14:21:39 -070084 tmp = chip_readb(flash, dst) & 0x80;
uwedf467892007-08-23 10:20:40 +000085 if (tmp == data) {
86 break;
87 }
88 }
hailfinger10023012009-12-17 16:20:26 +000089 if (i > 0x100000)
snelsonfc007bb2010-03-24 23:14:32 +000090 msg_cdbg("%s: excessive loops, i=0x%x\n", __func__, i);
uwedf467892007-08-23 10:20:40 +000091}
92
Stuart Langley60395ef2020-03-25 20:32:45 +110093static unsigned int getaddrmask(const struct flashchip *chip)
hailfinger86bf3b52010-10-13 21:49:30 +000094{
Stuart Langley60395ef2020-03-25 20:32:45 +110095 switch (chip->feature_bits & FEATURE_ADDR_MASK) {
hailfinger86bf3b52010-10-13 21:49:30 +000096 case FEATURE_ADDR_FULL:
97 return MASK_FULL;
98 break;
99 case FEATURE_ADDR_2AA:
100 return MASK_2AA;
101 break;
102 case FEATURE_ADDR_AAA:
103 return MASK_AAA;
104 break;
105 default:
106 msg_cerr("%s called with unknown mask\n", __func__);
107 return 0;
108 break;
109 }
110}
111
Stuart Langley60395ef2020-03-25 20:32:45 +1100112static void start_program_jedec_common(const struct flashctx *flash, unsigned int mask)
uwedf467892007-08-23 10:20:40 +0000113{
snelson63133f92010-01-04 17:15:23 +0000114 chipaddr bios = flash->virtual_memory;
Stuart langleya7d761f2020-03-26 15:05:38 +1100115 bool shifted = (flash->chip->feature_bits & FEATURE_ADDR_SHIFTED);
116
117 chip_writeb(flash, 0xAA, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
118 chip_writeb(flash, 0x55, bios + ((shifted ? 0x5555 : 0x2AAA) & mask));
119 chip_writeb(flash, 0xA0, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
uwedf467892007-08-23 10:20:40 +0000120}
121
Stefan Tauner6e400882014-08-03 14:15:14 +0000122int probe_jedec_29gl(struct flashctx *flash)
123{
124 unsigned int mask = getaddrmask(flash->chip);
125 chipaddr bios = flash->virtual_memory;
126 const struct flashchip *chip = flash->chip;
127
128 /* Reset chip to a clean slate */
129 chip_writeb(flash, 0xF0, bios + (0x5555 & mask));
130
131 /* Issue JEDEC Product ID Entry command */
132 chip_writeb(flash, 0xAA, bios + (0x5555 & mask));
133 chip_writeb(flash, 0x55, bios + (0x2AAA & mask));
134 chip_writeb(flash, 0x90, bios + (0x5555 & mask));
135
136 /* Read product ID */
137 // FIXME: Continuation loop, second byte is at word 0x100/byte 0x200
138 uint32_t man_id = chip_readb(flash, bios + 0x00);
139 uint32_t dev_id = (chip_readb(flash, bios + 0x01) << 16) |
140 (chip_readb(flash, bios + 0x0E) << 8) |
141 (chip_readb(flash, bios + 0x0F) << 0);
142
143 /* Issue JEDEC Product ID Exit command */
144 chip_writeb(flash, 0xF0, bios + (0x5555 & mask));
145
146 msg_cdbg("%s: man_id 0x%02x, dev_id 0x%06x", __func__, man_id, dev_id);
147 if (!oddparity(man_id))
148 msg_cdbg(", man_id parity violation");
149
150 /* Read the product ID location again. We should now see normal flash contents. */
151 uint32_t flashcontent1 = chip_readb(flash, bios + 0x00); // FIXME: Continuation loop
152 uint32_t flashcontent2 = (chip_readb(flash, bios + 0x01) << 16) |
153 (chip_readb(flash, bios + 0x0E) << 8) |
154 (chip_readb(flash, bios + 0x0F) << 0);
155
156 if (man_id == flashcontent1)
157 msg_cdbg(", man_id seems to be normal flash content");
158 if (dev_id == flashcontent2)
159 msg_cdbg(", dev_id seems to be normal flash content");
160
161 msg_cdbg("\n");
162 if (man_id != chip->manufacture_id || dev_id != chip->model_id)
163 return 0;
164
165 if (chip->feature_bits & FEATURE_REGISTERMAP)
166 map_flash_registers(flash);
167
168 return 1;
169}
170
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700171static int probe_jedec_common(struct flashctx *flash, unsigned int mask)
rminnich8d3ff912003-10-25 17:01:29 +0000172{
hailfinger82719632009-05-16 21:22:56 +0000173 chipaddr bios = flash->virtual_memory;
Stuart langleya7d761f2020-03-26 15:05:38 +1100174 const struct flashchip *chip = flash->chip;
175 bool shifted = (flash->chip->feature_bits & FEATURE_ADDR_SHIFTED);
ollie6a600992005-11-26 21:55:36 +0000176 uint8_t id1, id2;
hailfinger428f2012007-12-31 01:49:00 +0000177 uint32_t largeid1, largeid2;
hailfinger027d7d92009-05-11 14:40:31 +0000178 uint32_t flashcontent1, flashcontent2;
Stuart langleya7d761f2020-03-26 15:05:38 +1100179 unsigned int probe_timing_enter, probe_timing_exit;
hailfingerd5b35922009-06-03 14:46:22 +0000180
Stuart langleya7d761f2020-03-26 15:05:38 +1100181 if (chip->probe_timing > 0)
182 probe_timing_enter = probe_timing_exit = chip->probe_timing;
183 else if (chip->probe_timing == TIMING_ZERO) { /* No delay. */
hailfingerd5b35922009-06-03 14:46:22 +0000184 probe_timing_enter = probe_timing_exit = 0;
Stuart langleya7d761f2020-03-26 15:05:38 +1100185 } else if (chip->probe_timing == TIMING_FIXME) { /* == _IGNORED */
186 msg_cdbg("Chip lacks correct probe timing information, using default 10ms/40us. ");
hailfingerd5b35922009-06-03 14:46:22 +0000187 probe_timing_enter = 10000;
188 probe_timing_exit = 40;
189 } else {
Stuart langleya7d761f2020-03-26 15:05:38 +1100190 msg_cerr("Chip has negative value in probe_timing, failing without chip access\n");
hailfingerd5b35922009-06-03 14:46:22 +0000191 return 0;
192 }
rminnich8d3ff912003-10-25 17:01:29 +0000193
hailfingerb07dc972010-10-20 21:13:19 +0000194 /* Earlier probes might have been too fast for the chip to enter ID
195 * mode completely. Allow the chip to finish this before seeing a
196 * reset command.
197 */
198 if (probe_timing_enter)
199 programmer_delay(probe_timing_enter);
200 /* Reset chip to a clean slate */
Stuart langleya7d761f2020-03-26 15:05:38 +1100201 if ((chip->feature_bits & FEATURE_RESET_MASK) == FEATURE_LONG_RESET)
hailfingerb07dc972010-10-20 21:13:19 +0000202 {
Stuart langleya7d761f2020-03-26 15:05:38 +1100203 chip_writeb(flash, 0xAA, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
hailfingerb07dc972010-10-20 21:13:19 +0000204 if (probe_timing_exit)
205 programmer_delay(10);
Stuart langleya7d761f2020-03-26 15:05:38 +1100206 chip_writeb(flash, 0x55, bios + ((shifted ? 0x5555 : 0x2AAA) & mask));
hailfingerb07dc972010-10-20 21:13:19 +0000207 if (probe_timing_exit)
208 programmer_delay(10);
209 }
Stuart langleya7d761f2020-03-26 15:05:38 +1100210 chip_writeb(flash, 0xF0, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
hailfingerb07dc972010-10-20 21:13:19 +0000211 if (probe_timing_exit)
212 programmer_delay(probe_timing_exit);
213
ollie5b621572004-03-20 16:46:10 +0000214 /* Issue JEDEC Product ID Entry command */
Stuart langleya7d761f2020-03-26 15:05:38 +1100215 chip_writeb(flash, 0xAA, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
hailfingerc7568d52009-12-17 04:22:40 +0000216 if (probe_timing_enter)
217 programmer_delay(10);
Stuart langleya7d761f2020-03-26 15:05:38 +1100218 chip_writeb(flash, 0x55, bios + ((shifted ? 0x5555 : 0x2AAA) & mask));
hailfingerc7568d52009-12-17 04:22:40 +0000219 if (probe_timing_enter)
220 programmer_delay(10);
Stuart langleya7d761f2020-03-26 15:05:38 +1100221 chip_writeb(flash, 0x90, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
hailfingerc7568d52009-12-17 04:22:40 +0000222 if (probe_timing_enter)
223 programmer_delay(probe_timing_enter);
rminnich8d3ff912003-10-25 17:01:29 +0000224
ollie5b621572004-03-20 16:46:10 +0000225 /* Read product ID */
Stuart langleya7d761f2020-03-26 15:05:38 +1100226 id1 = chip_readb(flash, bios + (0x00 << shifted));
227 id2 = chip_readb(flash, bios + (0x01 << shifted));
hailfinger428f2012007-12-31 01:49:00 +0000228 largeid1 = id1;
229 largeid2 = id2;
230
231 /* Check if it is a continuation ID, this should be a while loop. */
232 if (id1 == 0x7F) {
233 largeid1 <<= 8;
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700234 id1 = chip_readb(flash, bios + 0x100);
hailfinger428f2012007-12-31 01:49:00 +0000235 largeid1 |= id1;
236 }
237 if (id2 == 0x7F) {
238 largeid2 <<= 8;
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700239 id2 = chip_readb(flash, bios + 0x101);
hailfinger428f2012007-12-31 01:49:00 +0000240 largeid2 |= id2;
241 }
rminnich8d3ff912003-10-25 17:01:29 +0000242
ollie5b621572004-03-20 16:46:10 +0000243 /* Issue JEDEC Product ID Exit command */
Stuart langleya7d761f2020-03-26 15:05:38 +1100244 if ((chip->feature_bits & FEATURE_RESET_MASK) == FEATURE_LONG_RESET)
snelson63133f92010-01-04 17:15:23 +0000245 {
Stuart langleya7d761f2020-03-26 15:05:38 +1100246 chip_writeb(flash, 0xAA, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
snelson63133f92010-01-04 17:15:23 +0000247 if (probe_timing_exit)
248 programmer_delay(10);
Stuart langleya7d761f2020-03-26 15:05:38 +1100249 chip_writeb(flash, 0x55, bios + ((shifted ? 0x5555 : 0x2AAA) & mask));
snelson63133f92010-01-04 17:15:23 +0000250 if (probe_timing_exit)
251 programmer_delay(10);
252 }
Stuart langleya7d761f2020-03-26 15:05:38 +1100253 chip_writeb(flash, 0xF0, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
hailfingerc7568d52009-12-17 04:22:40 +0000254 if (probe_timing_exit)
255 programmer_delay(probe_timing_exit);
rminnich8d3ff912003-10-25 17:01:29 +0000256
snelsonfc007bb2010-03-24 23:14:32 +0000257 msg_cdbg("%s: id1 0x%02x, id2 0x%02x", __func__, largeid1, largeid2);
hailfinger79cf3672008-05-14 12:03:06 +0000258 if (!oddparity(id1))
snelsonfc007bb2010-03-24 23:14:32 +0000259 msg_cdbg(", id1 parity violation");
hailfinger027d7d92009-05-11 14:40:31 +0000260
261 /* Read the product ID location again. We should now see normal flash contents. */
Stuart langleya7d761f2020-03-26 15:05:38 +1100262 flashcontent1 = chip_readb(flash, bios + (0x00 << shifted));
263 flashcontent2 = chip_readb(flash, bios + (0x01 << shifted));
hailfinger027d7d92009-05-11 14:40:31 +0000264
265 /* Check if it is a continuation ID, this should be a while loop. */
266 if (flashcontent1 == 0x7F) {
267 flashcontent1 <<= 8;
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700268 flashcontent1 |= chip_readb(flash, bios + 0x100);
hailfinger027d7d92009-05-11 14:40:31 +0000269 }
270 if (flashcontent2 == 0x7F) {
271 flashcontent2 <<= 8;
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700272 flashcontent2 |= chip_readb(flash, bios + 0x101);
hailfinger027d7d92009-05-11 14:40:31 +0000273 }
274
275 if (largeid1 == flashcontent1)
snelsonfc007bb2010-03-24 23:14:32 +0000276 msg_cdbg(", id1 is normal flash content");
hailfinger027d7d92009-05-11 14:40:31 +0000277 if (largeid2 == flashcontent2)
snelsonfc007bb2010-03-24 23:14:32 +0000278 msg_cdbg(", id2 is normal flash content");
hailfinger027d7d92009-05-11 14:40:31 +0000279
snelsonfc007bb2010-03-24 23:14:32 +0000280 msg_cdbg("\n");
Stuart langleya7d761f2020-03-26 15:05:38 +1100281 if (largeid1 != chip->manufacture_id || largeid2 != chip->model_id)
hailfingerafac00e2010-01-09 02:24:17 +0000282 return 0;
rminnich8d3ff912003-10-25 17:01:29 +0000283
Patrick Georgif3fa2992017-02-02 16:24:44 +0100284 if (flash->chip->feature_bits & FEATURE_REGISTERMAP)
snelson63133f92010-01-04 17:15:23 +0000285 map_flash_registers(flash);
286
hailfingerafac00e2010-01-09 02:24:17 +0000287 return 1;
olliea3def632004-03-19 22:10:07 +0000288}
289
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700290static int erase_sector_jedec_common(struct flashctx *flash, unsigned int page,
Stuart Langley60395ef2020-03-25 20:32:45 +1100291 unsigned int pagesize, unsigned int mask)
olliea3def632004-03-19 22:10:07 +0000292{
hailfinger7af83692009-06-15 17:23:36 +0000293 chipaddr bios = flash->virtual_memory;
Stuart langleya7d761f2020-03-26 15:05:38 +1100294 bool shifted = (flash->chip->feature_bits & FEATURE_ADDR_SHIFTED);
295 unsigned int delay_us = 0;
296
Patrick Georgif3fa2992017-02-02 16:24:44 +0100297 if(flash->chip->probe_timing != TIMING_ZERO)
Stuart langleya7d761f2020-03-26 15:05:38 +1100298 delay_us = 10;
hailfinger7af83692009-06-15 17:23:36 +0000299
ollie5b621572004-03-20 16:46:10 +0000300 /* Issue the Sector Erase command */
Stuart langleya7d761f2020-03-26 15:05:38 +1100301 chip_writeb(flash, 0xAA, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
mkarcherf7af1b42011-04-15 00:03:37 +0000302 programmer_delay(delay_us);
Stuart langleya7d761f2020-03-26 15:05:38 +1100303 chip_writeb(flash, 0x55, bios + ((shifted ? 0x5555 : 0x2AAA) & mask));
mkarcherf7af1b42011-04-15 00:03:37 +0000304 programmer_delay(delay_us);
Stuart langleya7d761f2020-03-26 15:05:38 +1100305 chip_writeb(flash, 0x80, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
mkarcherf7af1b42011-04-15 00:03:37 +0000306 programmer_delay(delay_us);
ollie0eb62d62004-12-08 20:10:01 +0000307
Stuart langleya7d761f2020-03-26 15:05:38 +1100308 chip_writeb(flash, 0xAA, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
mkarcherf7af1b42011-04-15 00:03:37 +0000309 programmer_delay(delay_us);
Stuart langleya7d761f2020-03-26 15:05:38 +1100310 chip_writeb(flash, 0x55, bios + ((shifted ? 0x5555 : 0x2AAA) & mask));
mkarcherf7af1b42011-04-15 00:03:37 +0000311 programmer_delay(delay_us);
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700312 chip_writeb(flash, 0x30, bios + page);
mkarcherf7af1b42011-04-15 00:03:37 +0000313 programmer_delay(delay_us);
ollie5b621572004-03-20 16:46:10 +0000314
olliea3def632004-03-19 22:10:07 +0000315 /* wait for Toggle bit ready */
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700316 toggle_ready_jedec_slow(flash, bios);
olliea3def632004-03-19 22:10:07 +0000317
hailfingerac8e3182011-06-26 17:04:16 +0000318 /* FIXME: Check the status register for errors. */
uwebe4477b2007-08-23 16:08:21 +0000319 return 0;
rminnich8d3ff912003-10-25 17:01:29 +0000320}
olliea4302802004-12-07 03:15:51 +0000321
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700322static int erase_block_jedec_common(struct flashctx *flash, unsigned int block,
Stuart Langley60395ef2020-03-25 20:32:45 +1100323 unsigned int blocksize, unsigned int mask)
rminnichdfcbaa72004-09-30 16:37:01 +0000324{
hailfinger7af83692009-06-15 17:23:36 +0000325 chipaddr bios = flash->virtual_memory;
Stuart langleya7d761f2020-03-26 15:05:38 +1100326 bool shifted = (flash->chip->feature_bits & FEATURE_ADDR_SHIFTED);
327 unsigned int delay_us = 0;
328
Patrick Georgif3fa2992017-02-02 16:24:44 +0100329 if(flash->chip->probe_timing != TIMING_ZERO)
Stuart langleya7d761f2020-03-26 15:05:38 +1100330 delay_us = 10;
hailfinger7af83692009-06-15 17:23:36 +0000331
rminnichdfcbaa72004-09-30 16:37:01 +0000332 /* Issue the Sector Erase command */
Stuart langleya7d761f2020-03-26 15:05:38 +1100333 chip_writeb(flash, 0xAA, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
mkarcherf7af1b42011-04-15 00:03:37 +0000334 programmer_delay(delay_us);
Stuart langleya7d761f2020-03-26 15:05:38 +1100335 chip_writeb(flash, 0x55, bios + ((shifted ? 0x5555 : 0x2AAA) & mask));
mkarcherf7af1b42011-04-15 00:03:37 +0000336 programmer_delay(delay_us);
Stuart langleya7d761f2020-03-26 15:05:38 +1100337 chip_writeb(flash, 0x80, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
mkarcherf7af1b42011-04-15 00:03:37 +0000338 programmer_delay(delay_us);
ollie0eb62d62004-12-08 20:10:01 +0000339
Stuart langleya7d761f2020-03-26 15:05:38 +1100340 chip_writeb(flash, 0xAA, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
mkarcherf7af1b42011-04-15 00:03:37 +0000341 programmer_delay(delay_us);
Stuart langleya7d761f2020-03-26 15:05:38 +1100342 chip_writeb(flash, 0x55, bios + ((shifted ? 0x5555 : 0x2AAA) & mask));
mkarcherf7af1b42011-04-15 00:03:37 +0000343 programmer_delay(delay_us);
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700344 chip_writeb(flash, 0x50, bios + block);
mkarcherf7af1b42011-04-15 00:03:37 +0000345 programmer_delay(delay_us);
rminnichdfcbaa72004-09-30 16:37:01 +0000346
347 /* wait for Toggle bit ready */
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700348 toggle_ready_jedec_slow(flash, bios);
rminnichdfcbaa72004-09-30 16:37:01 +0000349
hailfingerac8e3182011-06-26 17:04:16 +0000350 /* FIXME: Check the status register for errors. */
uwebe4477b2007-08-23 16:08:21 +0000351 return 0;
rminnichdfcbaa72004-09-30 16:37:01 +0000352}
rminnich8d3ff912003-10-25 17:01:29 +0000353
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700354static int erase_chip_jedec_common(struct flashctx *flash, unsigned int mask)
rminnich8d3ff912003-10-25 17:01:29 +0000355{
hailfinger82719632009-05-16 21:22:56 +0000356 chipaddr bios = flash->virtual_memory;
Stuart langleya7d761f2020-03-26 15:05:38 +1100357 bool shifted = (flash->chip->feature_bits & FEATURE_ADDR_SHIFTED);
358 unsigned int delay_us = 0;
359
Patrick Georgif3fa2992017-02-02 16:24:44 +0100360 if(flash->chip->probe_timing != TIMING_ZERO)
Stuart langleya7d761f2020-03-26 15:05:38 +1100361 delay_us = 10;
rminnich8d3ff912003-10-25 17:01:29 +0000362
ollie5b621572004-03-20 16:46:10 +0000363 /* Issue the JEDEC Chip Erase command */
Stuart langleya7d761f2020-03-26 15:05:38 +1100364 chip_writeb(flash, 0xAA, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
mkarcherf7af1b42011-04-15 00:03:37 +0000365 programmer_delay(delay_us);
Stuart langleya7d761f2020-03-26 15:05:38 +1100366 chip_writeb(flash, 0x55, bios + ((shifted ? 0x5555 : 0x2AAA) & mask));
mkarcherf7af1b42011-04-15 00:03:37 +0000367 programmer_delay(delay_us);
Stuart langleya7d761f2020-03-26 15:05:38 +1100368 chip_writeb(flash, 0x80, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
mkarcherf7af1b42011-04-15 00:03:37 +0000369 programmer_delay(delay_us);
ollie0eb62d62004-12-08 20:10:01 +0000370
Stuart langleya7d761f2020-03-26 15:05:38 +1100371 chip_writeb(flash, 0xAA, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
mkarcherf7af1b42011-04-15 00:03:37 +0000372 programmer_delay(delay_us);
Stuart langleya7d761f2020-03-26 15:05:38 +1100373 chip_writeb(flash, 0x55, bios + ((shifted ? 0x5555 : 0x2AAA) & mask));
mkarcherf7af1b42011-04-15 00:03:37 +0000374 programmer_delay(delay_us);
Stuart langleya7d761f2020-03-26 15:05:38 +1100375 chip_writeb(flash, 0x10, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
mkarcherf7af1b42011-04-15 00:03:37 +0000376 programmer_delay(delay_us);
olliea3def632004-03-19 22:10:07 +0000377
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700378 toggle_ready_jedec_slow(flash, bios);
rminnich8d3ff912003-10-25 17:01:29 +0000379
hailfingerac8e3182011-06-26 17:04:16 +0000380 /* FIXME: Check the status register for errors. */
uwebe4477b2007-08-23 16:08:21 +0000381 return 0;
rminnich8d3ff912003-10-25 17:01:29 +0000382}
383
Stuart Langley60395ef2020-03-25 20:32:45 +1100384static int write_byte_program_jedec_common(const struct flashctx *flash, const uint8_t *src,
385 chipaddr dst, unsigned int mask)
snelson63133f92010-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 */
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700400 chip_writeb(flash, *src, dst);
401 toggle_ready_jedec(flash, bios);
snelson63133f92010-01-04 17:15:23 +0000402
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700403 if (chip_readb(flash, dst) != *src && tried++ < MAX_REFLASH_TRIES) {
snelson63133f92010-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
hailfinger71e1bd42010-10-13 22:26:56 +0000413/* chunksize is 1 */
Stuart Langley60395ef2020-03-25 20:32:45 +1100414int write_jedec_1(struct flashctx *flash, const uint8_t *src, unsigned int start,
415 unsigned int len)
snelson63133f92010-01-04 17:15:23 +0000416{
Stuart Langley60395ef2020-03-25 20:32:45 +1100417 unsigned int i;
418 int failed = 0;
hailfingera10a6072010-10-10 14:02:27 +0000419 chipaddr dst = flash->virtual_memory + start;
snelson63133f92010-01-04 17:15:23 +0000420 chipaddr olddst;
stefanctc5eb8a92011-11-23 09:13:48 +0000421 unsigned int mask;
hailfinger86bf3b52010-10-13 21:49:30 +0000422
Stuart Langley60395ef2020-03-25 20:32:45 +1100423 mask = getaddrmask(flash->chip);
snelson63133f92010-01-04 17:15:23 +0000424
425 olddst = dst;
hailfingera10a6072010-10-10 14:02:27 +0000426 for (i = 0; i < len; i++) {
snelson63133f92010-01-04 17:15:23 +0000427 if (write_byte_program_jedec_common(flash, src, dst, mask))
428 failed = 1;
429 dst++, src++;
430 }
431 if (failed)
Kangheui Won4974cc12019-10-18 12:59:01 +1100432 msg_cerr(" writing sector at 0x%" PRIxPTR " failed!\n", olddst);
snelson63133f92010-01-04 17:15:23 +0000433
434 return failed;
435}
436
Stuart Langley60395ef2020-03-25 20:32:45 +1100437static int write_page_write_jedec_common(struct flashctx *flash, const uint8_t *src,
438 unsigned int start, unsigned int page_size)
rminnich8d3ff912003-10-25 17:01:29 +0000439{
Stuart Langley60395ef2020-03-25 20:32:45 +1100440 unsigned int i;
441 int tried = 0, failed;
442 const uint8_t *s = src;
hailfingerc2cfc592009-06-25 13:57:31 +0000443 chipaddr bios = flash->virtual_memory;
444 chipaddr dst = bios + start;
445 chipaddr d = dst;
stefanctc5eb8a92011-11-23 09:13:48 +0000446 unsigned int mask;
hailfinger86bf3b52010-10-13 21:49:30 +0000447
Stuart Langley60395ef2020-03-25 20:32:45 +1100448 mask = getaddrmask(flash->chip);
rminnich8d3ff912003-10-25 17:01:29 +0000449
stepan7abc6322006-11-22 00:29:51 +0000450retry:
uwe3a3ab2f2010-03-25 23:18:41 +0000451 /* Issue JEDEC Start Program command */
snelson63133f92010-01-04 17:15:23 +0000452 start_program_jedec_common(flash, mask);
ollie5b621572004-03-20 16:46:10 +0000453
olliea4302802004-12-07 03:15:51 +0000454 /* transfer data from source to destination */
hailfingerfe072472009-11-14 03:48:33 +0000455 for (i = 0; i < page_size; i++) {
olliea4302802004-12-07 03:15:51 +0000456 /* If the data is 0xFF, don't program it */
uwef6641642007-05-09 10:17:44 +0000457 if (*src != 0xFF)
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700458 chip_writeb(flash, *src, dst);
stepan7abc6322006-11-22 00:29:51 +0000459 dst++;
460 src++;
ollie5b621572004-03-20 16:46:10 +0000461 }
462
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700463 toggle_ready_jedec(flash, dst - 1);
olliea4302802004-12-07 03:15:51 +0000464
stepan7abc6322006-11-22 00:29:51 +0000465 dst = d;
466 src = s;
hailfingerf2ac27e2009-11-25 16:41:50 +0000467 failed = verify_range(flash, src, start, page_size, NULL);
uwef6641642007-05-09 10:17:44 +0000468
hailfingerf2ac27e2009-11-25 16:41:50 +0000469 if (failed && tried++ < MAX_REFLASH_TRIES) {
snelsonfc007bb2010-03-24 23:14:32 +0000470 msg_cerr("retrying.\n");
uwef6641642007-05-09 10:17:44 +0000471 goto retry;
472 }
hailfingerf2ac27e2009-11-25 16:41:50 +0000473 if (failed) {
Stuart Langley60395ef2020-03-25 20:32:45 +1100474 msg_cerr(" page 0x%" PRIxPTR " failed!\n", (d - bios) / page_size);
stepan7abc6322006-11-22 00:29:51 +0000475 }
hailfingerf2ac27e2009-11-25 16:41:50 +0000476 return failed;
ollie5b621572004-03-20 16:46:10 +0000477}
478
hailfinger71e1bd42010-10-13 22:26:56 +0000479/* chunksize is page_size */
hailfinger86bf3b52010-10-13 21:49:30 +0000480/*
481 * Write a part of the flash chip.
482 * FIXME: Use the chunk code from Michael Karcher instead.
483 * This function is a slightly modified copy of spi_write_chunked.
484 * Each page is written separately in chunks with a maximum size of chunksize.
485 */
Stuart Langley60395ef2020-03-25 20:32:45 +1100486int write_jedec(struct flashctx *flash, const uint8_t *buf, unsigned int start,
487 int unsigned len)
hailfinger80dea312010-01-09 03:15:50 +0000488{
stefanctc5eb8a92011-11-23 09:13:48 +0000489 unsigned int i, starthere, lenhere;
hailfinger86bf3b52010-10-13 21:49:30 +0000490 /* FIXME: page_size is the wrong variable. We need max_writechunk_size
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700491 * in struct flashctx to do this properly. All chips using
hailfinger86bf3b52010-10-13 21:49:30 +0000492 * write_jedec have page_size set to max_writechunk_size, so
493 * we're OK for now.
494 */
Patrick Georgif3fa2992017-02-02 16:24:44 +0100495 unsigned int page_size = flash->chip->page_size;
ollie5b621572004-03-20 16:46:10 +0000496
hailfinger86bf3b52010-10-13 21:49:30 +0000497 /* Warning: This loop has a very unusual condition and body.
498 * The loop needs to go through each page with at least one affected
499 * byte. The lowest page number is (start / page_size) since that
500 * division rounds down. The highest page number we want is the page
501 * where the last byte of the range lives. That last byte has the
502 * address (start + len - 1), thus the highest page number is
503 * (start + len - 1) / page_size. Since we want to include that last
504 * page as well, the loop condition uses <=.
505 */
506 for (i = start / page_size; i <= (start + len - 1) / page_size; i++) {
507 /* Byte position of the first byte in the range in this page. */
508 /* starthere is an offset to the base address of the chip. */
509 starthere = max(start, i * page_size);
510 /* Length of bytes in the range in this page. */
511 lenhere = min(start + len, (i + 1) * page_size) - starthere;
snelsonc6855342010-01-28 23:55:12 +0000512
hailfinger86bf3b52010-10-13 21:49:30 +0000513 if (write_page_write_jedec_common(flash, buf + starthere - start, starthere, lenhere))
514 return 1;
rminnich8d3ff912003-10-25 17:01:29 +0000515 }
rminnich8d3ff912003-10-25 17:01:29 +0000516
hailfinger86bf3b52010-10-13 21:49:30 +0000517 return 0;
rminnich8d3ff912003-10-25 17:01:29 +0000518}
hailfingerfff99532009-11-27 17:49:42 +0000519
snelson63133f92010-01-04 17:15:23 +0000520/* erase chip with block_erase() prototype */
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700521int erase_chip_block_jedec(struct flashctx *flash, unsigned int addr,
snelson63133f92010-01-04 17:15:23 +0000522 unsigned int blocksize)
523{
stefanctc5eb8a92011-11-23 09:13:48 +0000524 unsigned int mask;
snelsonc6855342010-01-28 23:55:12 +0000525
Stuart Langley60395ef2020-03-25 20:32:45 +1100526 mask = getaddrmask(flash->chip);
Patrick Georgif3fa2992017-02-02 16:24:44 +0100527 if ((addr != 0) || (blocksize != flash->chip->total_size * 1024)) {
snelsonfc007bb2010-03-24 23:14:32 +0000528 msg_cerr("%s called with incorrect arguments\n",
snelson63133f92010-01-04 17:15:23 +0000529 __func__);
530 return -1;
531 }
snelsonc6855342010-01-28 23:55:12 +0000532 return erase_chip_jedec_common(flash, mask);
snelson63133f92010-01-04 17:15:23 +0000533}
534
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700535int probe_jedec(struct flashctx *flash)
snelson63133f92010-01-04 17:15:23 +0000536{
stefanctc5eb8a92011-11-23 09:13:48 +0000537 unsigned int mask;
hailfinger80dea312010-01-09 03:15:50 +0000538
Stuart Langley60395ef2020-03-25 20:32:45 +1100539 mask = getaddrmask(flash->chip);
snelsonc6855342010-01-28 23:55:12 +0000540 return probe_jedec_common(flash, mask);
snelson63133f92010-01-04 17:15:23 +0000541}
542
Stuart Langley60395ef2020-03-25 20:32:45 +1100543int erase_sector_jedec(struct flashctx *flash, unsigned int page,
544 unsigned int size)
snelson63133f92010-01-04 17:15:23 +0000545{
stefanctc5eb8a92011-11-23 09:13:48 +0000546 unsigned int mask;
snelsonc6855342010-01-28 23:55:12 +0000547
Stuart Langley60395ef2020-03-25 20:32:45 +1100548 mask = getaddrmask(flash->chip);
snelsonc6855342010-01-28 23:55:12 +0000549 return erase_sector_jedec_common(flash, page, size, mask);
snelson63133f92010-01-04 17:15:23 +0000550}
551
Stuart Langley60395ef2020-03-25 20:32:45 +1100552int erase_block_jedec(struct flashctx *flash, unsigned int page,
553 unsigned int size)
snelson63133f92010-01-04 17:15:23 +0000554{
stefanctc5eb8a92011-11-23 09:13:48 +0000555 unsigned int mask;
snelsonc6855342010-01-28 23:55:12 +0000556
Stuart Langley60395ef2020-03-25 20:32:45 +1100557 mask = getaddrmask(flash->chip);
snelsonc6855342010-01-28 23:55:12 +0000558 return erase_block_jedec_common(flash, page, size, mask);
snelson63133f92010-01-04 17:15:23 +0000559}
560
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700561int erase_chip_jedec(struct flashctx *flash)
snelson63133f92010-01-04 17:15:23 +0000562{
stefanctc5eb8a92011-11-23 09:13:48 +0000563 unsigned int mask;
snelsonc6855342010-01-28 23:55:12 +0000564
Stuart Langley60395ef2020-03-25 20:32:45 +1100565 mask = getaddrmask(flash->chip);
snelsonc6855342010-01-28 23:55:12 +0000566 return erase_chip_jedec_common(flash, mask);
snelson63133f92010-01-04 17:15:23 +0000567}
Alan Greend793f5b2019-09-02 17:03:51 +1000568
569struct unlockblock {
570 unsigned int size;
571 unsigned int count;
572};
573
574typedef int (*unlockblock_func)(const struct flashctx *flash, chipaddr offset);
575static int regspace2_walk_unlockblocks(const struct flashctx *flash, const struct unlockblock *block, unlockblock_func func)
576{
577 chipaddr off = flash->virtual_registers + 2;
578 while (block->count != 0) {
579 unsigned int j;
580 for (j = 0; j < block->count; j++) {
581 if (func(flash, off))
582 return -1;
583 off += block->size;
584 }
585 block++;
586 }
587 return 0;
588}
589
590#define REG2_RWLOCK ((1 << 2) | (1 << 0))
591#define REG2_LOCKDOWN (1 << 1)
592#define REG2_MASK (REG2_RWLOCK | REG2_LOCKDOWN)
593
594static int printlock_regspace2_block(const struct flashctx *flash, chipaddr lockreg)
595{
596 uint8_t state = chip_readb(flash, lockreg);
Stuart Langley60395ef2020-03-25 20:32:45 +1100597 msg_cdbg("Lock status of block at 0x%0*" PRIxPTR " is ", PRIxPTR_WIDTH, lockreg);
Alan Greend793f5b2019-09-02 17:03:51 +1000598 switch (state & REG2_MASK) {
599 case 0:
600 msg_cdbg("Full Access.\n");
601 break;
602 case 1:
603 msg_cdbg("Write Lock (Default State).\n");
604 break;
605 case 2:
606 msg_cdbg("Locked Open (Full Access, Locked Down).\n");
607 break;
608 case 3:
609 msg_cdbg("Write Lock, Locked Down.\n");
610 break;
611 case 4:
612 msg_cdbg("Read Lock.\n");
613 break;
614 case 5:
615 msg_cdbg("Read/Write Lock.\n");
616 break;
617 case 6:
618 msg_cdbg("Read Lock, Locked Down.\n");
619 break;
620 case 7:
621 msg_cdbg("Read/Write Lock, Locked Down.\n");
622 break;
623 }
624 return 0;
625}
626
627static int printlock_regspace2_uniform(struct flashctx *flash, unsigned long block_size)
628{
629 const unsigned int elems = flash->chip->total_size * 1024 / block_size;
630 struct unlockblock blocks[2] = {{.size = block_size, .count = elems}};
631 return regspace2_walk_unlockblocks(flash, blocks, &printlock_regspace2_block);
632}
633
634int printlock_regspace2_uniform_64k(struct flashctx *flash)
635{
636 return printlock_regspace2_uniform(flash, 64 * 1024);
637}
638
639int printlock_regspace2_block_eraser_0(struct flashctx *flash)
640{
641 // FIXME: this depends on the eraseblocks not to be filled up completely (i.e. to be null-terminated).
642 const struct unlockblock *unlockblocks =
643 (const struct unlockblock *)flash->chip->block_erasers[0].eraseblocks;
644 return regspace2_walk_unlockblocks(flash, unlockblocks, &printlock_regspace2_block);
645}
646
647int printlock_regspace2_block_eraser_1(struct flashctx *flash)
648{
649 // FIXME: this depends on the eraseblocks not to be filled up completely (i.e. to be null-terminated).
650 const struct unlockblock *unlockblocks =
651 (const struct unlockblock *)flash->chip->block_erasers[1].eraseblocks;
652 return regspace2_walk_unlockblocks(flash, unlockblocks, &printlock_regspace2_block);
653}
654
655/* Try to change the lock register at address lockreg from cur to new.
656 *
657 * - Try to unlock the lock bit if requested and it is currently set (although this is probably futile).
658 * - Try to change the read/write bits if requested.
659 * - Try to set the lockdown bit if requested.
660 * Return an error immediately if any of this fails. */
661static int changelock_regspace2_block(const struct flashctx *flash, chipaddr lockreg, uint8_t cur, uint8_t new)
662{
663 /* Only allow changes to known read/write/lockdown bits */
664 if (((cur ^ new) & ~REG2_MASK) != 0) {
Stuart Langley60395ef2020-03-25 20:32:45 +1100665 msg_cerr("Invalid lock change from 0x%02x to 0x%02x requested at 0x%0*" PRIxPTR "!\n"
Alan Greend793f5b2019-09-02 17:03:51 +1000666 "Please report a bug at flashrom@flashrom.org\n",
Stuart Langley60395ef2020-03-25 20:32:45 +1100667 cur, new, PRIxPTR_WIDTH, lockreg);
Alan Greend793f5b2019-09-02 17:03:51 +1000668 return -1;
669 }
670
671 /* Exit early if no change (of read/write/lockdown bits) was requested. */
672 if (((cur ^ new) & REG2_MASK) == 0) {
Stuart Langley60395ef2020-03-25 20:32:45 +1100673 msg_cdbg2("Lock bits at 0x%0*" PRIxPTR " not changed.\n", PRIxPTR_WIDTH, lockreg);
Alan Greend793f5b2019-09-02 17:03:51 +1000674 return 0;
675 }
676
677 /* Normally the lockdown bit can not be cleared. Try nevertheless if requested. */
678 if ((cur & REG2_LOCKDOWN) && !(new & REG2_LOCKDOWN)) {
679 chip_writeb(flash, cur & ~REG2_LOCKDOWN, lockreg);
680 cur = chip_readb(flash, lockreg);
681 if ((cur & REG2_LOCKDOWN) == REG2_LOCKDOWN) {
Stuart Langley60395ef2020-03-25 20:32:45 +1100682 msg_cwarn("Lockdown can't be removed at 0x%0*" PRIxPTR "! New value: 0x%02x.\n",
683 PRIxPTR_WIDTH, lockreg, cur);
Alan Greend793f5b2019-09-02 17:03:51 +1000684 return -1;
685 }
686 }
687
688 /* Change read and/or write bit */
689 if ((cur ^ new) & REG2_RWLOCK) {
690 /* Do not lockdown yet. */
691 uint8_t wanted = (cur & ~REG2_RWLOCK) | (new & REG2_RWLOCK);
692 chip_writeb(flash, wanted, lockreg);
693 cur = chip_readb(flash, lockreg);
694 if (cur != wanted) {
Stuart Langley60395ef2020-03-25 20:32:45 +1100695 msg_cerr("Changing lock bits failed at 0x%0*" PRIxPTR "! New value: 0x%02x.\n",
696 PRIxPTR_WIDTH, lockreg, cur);
Alan Greend793f5b2019-09-02 17:03:51 +1000697 return -1;
698 }
Stuart Langley60395ef2020-03-25 20:32:45 +1100699 msg_cdbg("Changed lock bits at 0x%0*" PRIxPTR " to 0x%02x.\n",
700 PRIxPTR_WIDTH, lockreg, cur);
Alan Greend793f5b2019-09-02 17:03:51 +1000701 }
702
703 /* Eventually, enable lockdown if requested. */
704 if (!(cur & REG2_LOCKDOWN) && (new & REG2_LOCKDOWN)) {
705 chip_writeb(flash, new, lockreg);
706 cur = chip_readb(flash, lockreg);
707 if (cur != new) {
Stuart Langley60395ef2020-03-25 20:32:45 +1100708 msg_cerr("Enabling lockdown FAILED at 0x%0*" PRIxPTR "! New value: 0x%02x.\n",
709 PRIxPTR_WIDTH, lockreg, cur);
Alan Greend793f5b2019-09-02 17:03:51 +1000710 return -1;
711 }
Stuart Langley60395ef2020-03-25 20:32:45 +1100712 msg_cdbg("Enabled lockdown at 0x%0*" PRIxPTR ".\n", PRIxPTR_WIDTH, lockreg);
Alan Greend793f5b2019-09-02 17:03:51 +1000713 }
714
715 return 0;
716}
717
718static int unlock_regspace2_block_generic(const struct flashctx *flash, chipaddr lockreg)
719{
720 uint8_t old = chip_readb(flash, lockreg);
721 /* We don't care for the lockdown bit as long as the RW locks are 0 after we're done */
722 return changelock_regspace2_block(flash, lockreg, old, old & ~REG2_RWLOCK);
723}
724
725static int unlock_regspace2_uniform(struct flashctx *flash, unsigned long block_size)
726{
727 const unsigned int elems = flash->chip->total_size * 1024 / block_size;
728 struct unlockblock blocks[2] = {{.size = block_size, .count = elems}};
729 return regspace2_walk_unlockblocks(flash, blocks, &unlock_regspace2_block_generic);
730}
731
732int unlock_regspace2_uniform_64k(struct flashctx *flash)
733{
734 return unlock_regspace2_uniform(flash, 64 * 1024);
735}
736
737int unlock_regspace2_uniform_32k(struct flashctx *flash)
738{
739 return unlock_regspace2_uniform(flash, 32 * 1024);
740}
741
742int unlock_regspace2_block_eraser_0(struct flashctx *flash)
743{
744 // FIXME: this depends on the eraseblocks not to be filled up completely (i.e. to be null-terminated).
745 const struct unlockblock *unlockblocks =
746 (const struct unlockblock *)flash->chip->block_erasers[0].eraseblocks;
747 return regspace2_walk_unlockblocks(flash, unlockblocks, &unlock_regspace2_block_generic);
748}
749
750int unlock_regspace2_block_eraser_1(struct flashctx *flash)
751{
752 // FIXME: this depends on the eraseblocks not to be filled up completely (i.e. to be null-terminated).
753 const struct unlockblock *unlockblocks =
754 (const struct unlockblock *)flash->chip->block_erasers[1].eraseblocks;
755 return regspace2_walk_unlockblocks(flash, unlockblocks, &unlock_regspace2_block_generic);
756}