blob: af13876a5b22ce177d439a71650576fb27a7c4f3 [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 */
Stefan Tauner23e10b82016-01-23 16:16:49 +0000187 msg_cdbg("Chip lacks correct probe timing information, using default 10ms/40us. ");
Maciej Pijankac6e11112009-06-03 14:46:22 +0000188 probe_timing_enter = 10000;
189 probe_timing_exit = 40;
190 } else {
Stefan Tauner23e10b82016-01-23 16:16:49 +0000191 msg_cerr("Chip has negative value in probe_timing, failing without chip access\n");
Maciej Pijankac6e11112009-06-03 14:46:22 +0000192 return 0;
193 }
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000194
Sean Nelsonf59e2632010-10-20 21:13:19 +0000195 /* Earlier probes might have been too fast for the chip to enter ID
196 * mode completely. Allow the chip to finish this before seeing a
197 * reset command.
198 */
199 if (probe_timing_enter)
200 programmer_delay(probe_timing_enter);
201 /* Reset chip to a clean slate */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000202 if ((chip->feature_bits & FEATURE_RESET_MASK) == FEATURE_LONG_RESET)
Sean Nelsonf59e2632010-10-20 21:13:19 +0000203 {
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000204 chip_writeb(flash, 0xAA, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Sean Nelsonf59e2632010-10-20 21:13:19 +0000205 if (probe_timing_exit)
206 programmer_delay(10);
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000207 chip_writeb(flash, 0x55, bios + ((shifted ? 0x5555 : 0x2AAA) & mask));
Sean Nelsonf59e2632010-10-20 21:13:19 +0000208 if (probe_timing_exit)
209 programmer_delay(10);
210 }
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000211 chip_writeb(flash, 0xF0, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Sean Nelsonf59e2632010-10-20 21:13:19 +0000212 if (probe_timing_exit)
213 programmer_delay(probe_timing_exit);
214
Ollie Lho761bf1b2004-03-20 16:46:10 +0000215 /* Issue JEDEC Product ID Entry command */
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000216 chip_writeb(flash, 0xAA, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Sean Nelsonc12fc712009-12-17 04:22:40 +0000217 if (probe_timing_enter)
218 programmer_delay(10);
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000219 chip_writeb(flash, 0x55, bios + ((shifted ? 0x5555 : 0x2AAA) & mask));
Sean Nelsonc12fc712009-12-17 04:22:40 +0000220 if (probe_timing_enter)
221 programmer_delay(10);
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000222 chip_writeb(flash, 0x90, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Sean Nelsonc12fc712009-12-17 04:22:40 +0000223 if (probe_timing_enter)
224 programmer_delay(probe_timing_enter);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000225
Ollie Lho761bf1b2004-03-20 16:46:10 +0000226 /* Read product ID */
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000227 id1 = chip_readb(flash, bios + (0x00 << shifted));
228 id2 = chip_readb(flash, bios + (0x01 << shifted));
Carl-Daniel Hailfingerae8afa92007-12-31 01:49:00 +0000229 largeid1 = id1;
230 largeid2 = id2;
231
232 /* Check if it is a continuation ID, this should be a while loop. */
233 if (id1 == 0x7F) {
234 largeid1 <<= 8;
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000235 id1 = chip_readb(flash, bios + 0x100);
Carl-Daniel Hailfingerae8afa92007-12-31 01:49:00 +0000236 largeid1 |= id1;
237 }
238 if (id2 == 0x7F) {
239 largeid2 <<= 8;
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000240 id2 = chip_readb(flash, bios + 0x101);
Carl-Daniel Hailfingerae8afa92007-12-31 01:49:00 +0000241 largeid2 |= id2;
242 }
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000243
Ollie Lho761bf1b2004-03-20 16:46:10 +0000244 /* Issue JEDEC Product ID Exit command */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000245 if ((chip->feature_bits & FEATURE_RESET_MASK) == FEATURE_LONG_RESET)
Sean Nelsonc57a9202010-01-04 17:15:23 +0000246 {
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000247 chip_writeb(flash, 0xAA, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Sean Nelsonc57a9202010-01-04 17:15:23 +0000248 if (probe_timing_exit)
249 programmer_delay(10);
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000250 chip_writeb(flash, 0x55, bios + ((shifted ? 0x5555 : 0x2AAA) & mask));
Sean Nelsonc57a9202010-01-04 17:15:23 +0000251 if (probe_timing_exit)
252 programmer_delay(10);
253 }
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000254 chip_writeb(flash, 0xF0, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Sean Nelsonc12fc712009-12-17 04:22:40 +0000255 if (probe_timing_exit)
256 programmer_delay(probe_timing_exit);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000257
Sean Nelsoned479d22010-03-24 23:14:32 +0000258 msg_cdbg("%s: id1 0x%02x, id2 0x%02x", __func__, largeid1, largeid2);
Carl-Daniel Hailfingera758f512008-05-14 12:03:06 +0000259 if (!oddparity(id1))
Sean Nelsoned479d22010-03-24 23:14:32 +0000260 msg_cdbg(", id1 parity violation");
Carl-Daniel Hailfinger8130f2d2009-05-11 14:40:31 +0000261
262 /* Read the product ID location again. We should now see normal flash contents. */
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000263 flashcontent1 = chip_readb(flash, bios + (0x00 << shifted));
264 flashcontent2 = chip_readb(flash, bios + (0x01 << shifted));
Carl-Daniel Hailfinger8130f2d2009-05-11 14:40:31 +0000265
266 /* Check if it is a continuation ID, this should be a while loop. */
267 if (flashcontent1 == 0x7F) {
268 flashcontent1 <<= 8;
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000269 flashcontent1 |= chip_readb(flash, bios + 0x100);
Carl-Daniel Hailfinger8130f2d2009-05-11 14:40:31 +0000270 }
271 if (flashcontent2 == 0x7F) {
272 flashcontent2 <<= 8;
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000273 flashcontent2 |= chip_readb(flash, bios + 0x101);
Carl-Daniel Hailfinger8130f2d2009-05-11 14:40:31 +0000274 }
275
276 if (largeid1 == flashcontent1)
Sean Nelsoned479d22010-03-24 23:14:32 +0000277 msg_cdbg(", id1 is normal flash content");
Carl-Daniel Hailfinger8130f2d2009-05-11 14:40:31 +0000278 if (largeid2 == flashcontent2)
Sean Nelsoned479d22010-03-24 23:14:32 +0000279 msg_cdbg(", id2 is normal flash content");
Carl-Daniel Hailfinger8130f2d2009-05-11 14:40:31 +0000280
Sean Nelsoned479d22010-03-24 23:14:32 +0000281 msg_cdbg("\n");
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000282 if (largeid1 != chip->manufacture_id || largeid2 != chip->model_id)
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +0000283 return 0;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000284
Carl-Daniel Hailfingere9404662010-01-09 02:24:17 +0000285 return 1;
Ollie Lho73eca802004-03-19 22:10:07 +0000286}
287
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000288static int erase_sector_jedec_common(struct flashctx *flash, unsigned int page,
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000289 unsigned int pagesize, unsigned int mask)
Ollie Lho73eca802004-03-19 22:10:07 +0000290{
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000291 chipaddr bios = flash->virtual_memory;
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000292 bool shifted = (flash->chip->feature_bits & FEATURE_ADDR_SHIFTED);
Stefan Taunerf80419c2014-05-02 15:41:42 +0000293 unsigned int delay_us = 0;
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000294
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000295 if(flash->chip->probe_timing != TIMING_ZERO)
Stefan Taunerf80419c2014-05-02 15:41:42 +0000296 delay_us = 10;
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000297
Ollie Lho761bf1b2004-03-20 16:46:10 +0000298 /* Issue the Sector Erase command */
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000299 chip_writeb(flash, 0xAA, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000300 programmer_delay(delay_us);
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000301 chip_writeb(flash, 0x55, bios + ((shifted ? 0x5555 : 0x2AAA) & 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, 0x80, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000304 programmer_delay(delay_us);
Ollie Lhoefa28582004-12-08 20:10:01 +0000305
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000306 chip_writeb(flash, 0xAA, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000307 programmer_delay(delay_us);
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000308 chip_writeb(flash, 0x55, bios + ((shifted ? 0x5555 : 0x2AAA) & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000309 programmer_delay(delay_us);
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000310 chip_writeb(flash, 0x30, bios + page);
Michael Karcher880e8672011-04-15 00:03:37 +0000311 programmer_delay(delay_us);
Ollie Lho761bf1b2004-03-20 16:46:10 +0000312
Ollie Lho73eca802004-03-19 22:10:07 +0000313 /* wait for Toggle bit ready */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000314 toggle_ready_jedec_slow(flash, bios);
Ollie Lho73eca802004-03-19 22:10:07 +0000315
Carl-Daniel Hailfingerb4061f62011-06-26 17:04:16 +0000316 /* FIXME: Check the status register for errors. */
Uwe Hermannffec5f32007-08-23 16:08:21 +0000317 return 0;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000318}
Ollie Lho98bea8a2004-12-07 03:15:51 +0000319
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000320static int erase_block_jedec_common(struct flashctx *flash, unsigned int block,
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000321 unsigned int blocksize, unsigned int mask)
Ronald G. Minnich1f4d6532004-09-30 16:37:01 +0000322{
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000323 chipaddr bios = flash->virtual_memory;
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000324 bool shifted = (flash->chip->feature_bits & FEATURE_ADDR_SHIFTED);
Stefan Taunerf80419c2014-05-02 15:41:42 +0000325 unsigned int delay_us = 0;
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000326
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000327 if(flash->chip->probe_timing != TIMING_ZERO)
Stefan Taunerf80419c2014-05-02 15:41:42 +0000328 delay_us = 10;
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000329
Ronald G. Minnich1f4d6532004-09-30 16:37:01 +0000330 /* Issue the Sector Erase command */
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000331 chip_writeb(flash, 0xAA, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000332 programmer_delay(delay_us);
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000333 chip_writeb(flash, 0x55, bios + ((shifted ? 0x5555 : 0x2AAA) & 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, 0x80, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000336 programmer_delay(delay_us);
Ollie Lhoefa28582004-12-08 20:10:01 +0000337
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000338 chip_writeb(flash, 0xAA, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000339 programmer_delay(delay_us);
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000340 chip_writeb(flash, 0x55, bios + ((shifted ? 0x5555 : 0x2AAA) & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000341 programmer_delay(delay_us);
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000342 chip_writeb(flash, 0x50, bios + block);
Michael Karcher880e8672011-04-15 00:03:37 +0000343 programmer_delay(delay_us);
Ronald G. Minnich1f4d6532004-09-30 16:37:01 +0000344
345 /* wait for Toggle bit ready */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000346 toggle_ready_jedec_slow(flash, bios);
Ronald G. Minnich1f4d6532004-09-30 16:37:01 +0000347
Carl-Daniel Hailfingerb4061f62011-06-26 17:04:16 +0000348 /* FIXME: Check the status register for errors. */
Uwe Hermannffec5f32007-08-23 16:08:21 +0000349 return 0;
Ronald G. Minnich1f4d6532004-09-30 16:37:01 +0000350}
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000351
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000352static int erase_chip_jedec_common(struct flashctx *flash, unsigned int mask)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000353{
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000354 chipaddr bios = flash->virtual_memory;
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000355 bool shifted = (flash->chip->feature_bits & FEATURE_ADDR_SHIFTED);
Stefan Taunerf80419c2014-05-02 15:41:42 +0000356 unsigned int delay_us = 0;
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000357
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000358 if(flash->chip->probe_timing != TIMING_ZERO)
Stefan Taunerf80419c2014-05-02 15:41:42 +0000359 delay_us = 10;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000360
Ollie Lho761bf1b2004-03-20 16:46:10 +0000361 /* Issue the JEDEC Chip Erase command */
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000362 chip_writeb(flash, 0xAA, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000363 programmer_delay(delay_us);
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000364 chip_writeb(flash, 0x55, bios + ((shifted ? 0x5555 : 0x2AAA) & 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, 0x80, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000367 programmer_delay(delay_us);
Ollie Lhoefa28582004-12-08 20:10:01 +0000368
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000369 chip_writeb(flash, 0xAA, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000370 programmer_delay(delay_us);
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +0000371 chip_writeb(flash, 0x55, bios + ((shifted ? 0x5555 : 0x2AAA) & 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, 0x10, bios + ((shifted ? 0x2AAA : 0x5555) & mask));
Michael Karcher880e8672011-04-15 00:03:37 +0000374 programmer_delay(delay_us);
Ollie Lho73eca802004-03-19 22:10:07 +0000375
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000376 toggle_ready_jedec_slow(flash, bios);
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000377
Carl-Daniel Hailfingerb4061f62011-06-26 17:04:16 +0000378 /* FIXME: Check the status register for errors. */
Uwe Hermannffec5f32007-08-23 16:08:21 +0000379 return 0;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000380}
381
Stefan Tauner0ab1e5d2014-05-29 11:51:24 +0000382static int write_byte_program_jedec_common(const struct flashctx *flash, const uint8_t *src,
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000383 chipaddr dst, unsigned int mask)
Sean Nelsonc57a9202010-01-04 17:15:23 +0000384{
385 int tried = 0, failed = 0;
386 chipaddr bios = flash->virtual_memory;
387
388 /* If the data is 0xFF, don't program it and don't complain. */
389 if (*src == 0xFF) {
390 return 0;
391 }
392
393retry:
394 /* Issue JEDEC Byte Program command */
395 start_program_jedec_common(flash, mask);
396
397 /* transfer data from source to destination */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000398 chip_writeb(flash, *src, dst);
399 toggle_ready_jedec(flash, bios);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000400
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000401 if (chip_readb(flash, dst) != *src && tried++ < MAX_REFLASH_TRIES) {
Sean Nelsonc57a9202010-01-04 17:15:23 +0000402 goto retry;
403 }
404
405 if (tried >= MAX_REFLASH_TRIES)
406 failed = 1;
407
408 return failed;
409}
410
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +0000411/* chunksize is 1 */
Stefan Tauner0ab1e5d2014-05-29 11:51:24 +0000412int write_jedec_1(struct flashctx *flash, const uint8_t *src, unsigned int start,
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000413 unsigned int len)
Sean Nelsonc57a9202010-01-04 17:15:23 +0000414{
415 int i, failed = 0;
Carl-Daniel Hailfingerb30a5ed2010-10-10 14:02:27 +0000416 chipaddr dst = flash->virtual_memory + start;
Sean Nelsonc57a9202010-01-04 17:15:23 +0000417 chipaddr olddst;
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000418 unsigned int mask;
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000419
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000420 mask = getaddrmask(flash->chip);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000421
422 olddst = dst;
Carl-Daniel Hailfingerb30a5ed2010-10-10 14:02:27 +0000423 for (i = 0; i < len; i++) {
Sean Nelsonc57a9202010-01-04 17:15:23 +0000424 if (write_byte_program_jedec_common(flash, src, dst, mask))
425 failed = 1;
426 dst++, src++;
427 }
428 if (failed)
Stefan Taunerc2333752013-07-13 23:31:37 +0000429 msg_cerr(" writing sector at 0x%" PRIxPTR " failed!\n", olddst);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000430
431 return failed;
432}
433
Stefan Tauner0ab1e5d2014-05-29 11:51:24 +0000434static int write_page_write_jedec_common(struct flashctx *flash, const uint8_t *src,
Stefan Tauner0554ca52013-07-25 22:54:25 +0000435 unsigned int start, unsigned int page_size)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000436{
Carl-Daniel Hailfinger2925d6f2009-11-25 16:41:50 +0000437 int i, tried = 0, failed;
Stefan Tauner0ab1e5d2014-05-29 11:51:24 +0000438 const uint8_t *s = src;
Urja Rannikko0c854c02009-06-25 13:57:31 +0000439 chipaddr bios = flash->virtual_memory;
440 chipaddr dst = bios + start;
441 chipaddr d = dst;
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000442 unsigned int mask;
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000443
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000444 mask = getaddrmask(flash->chip);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000445
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000446retry:
Uwe Hermann4e3d0b32010-03-25 23:18:41 +0000447 /* Issue JEDEC Start Program command */
Sean Nelsonc57a9202010-01-04 17:15:23 +0000448 start_program_jedec_common(flash, mask);
Ollie Lho761bf1b2004-03-20 16:46:10 +0000449
Ollie Lho98bea8a2004-12-07 03:15:51 +0000450 /* transfer data from source to destination */
Carl-Daniel Hailfinger8a8a2262009-11-14 03:48:33 +0000451 for (i = 0; i < page_size; i++) {
Ollie Lho98bea8a2004-12-07 03:15:51 +0000452 /* If the data is 0xFF, don't program it */
Uwe Hermanna7e05482007-05-09 10:17:44 +0000453 if (*src != 0xFF)
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000454 chip_writeb(flash, *src, dst);
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000455 dst++;
456 src++;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000457 }
458
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000459 toggle_ready_jedec(flash, dst - 1);
Ollie Lho98bea8a2004-12-07 03:15:51 +0000460
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000461 dst = d;
462 src = s;
Stefan Tauner78ffbea2012-10-27 15:36:56 +0000463 failed = verify_range(flash, src, start, page_size);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000464
Carl-Daniel Hailfinger2925d6f2009-11-25 16:41:50 +0000465 if (failed && tried++ < MAX_REFLASH_TRIES) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000466 msg_cerr("retrying.\n");
Uwe Hermanna7e05482007-05-09 10:17:44 +0000467 goto retry;
468 }
Carl-Daniel Hailfinger2925d6f2009-11-25 16:41:50 +0000469 if (failed) {
Stefan Taunerc2333752013-07-13 23:31:37 +0000470 msg_cerr(" page 0x%" PRIxPTR " failed!\n", (d - bios) / page_size);
Giampiero Giancipoli8c5299f2006-11-22 00:29:51 +0000471 }
Carl-Daniel Hailfinger2925d6f2009-11-25 16:41:50 +0000472 return failed;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000473}
474
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +0000475/* chunksize is page_size */
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000476/*
477 * Write a part of the flash chip.
478 * FIXME: Use the chunk code from Michael Karcher instead.
479 * This function is a slightly modified copy of spi_write_chunked.
480 * Each page is written separately in chunks with a maximum size of chunksize.
481 */
Stefan Tauner0ab1e5d2014-05-29 11:51:24 +0000482int write_jedec(struct flashctx *flash, const uint8_t *buf, unsigned int start,
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000483 int unsigned len)
Carl-Daniel Hailfinger4bf4e792010-01-09 03:15:50 +0000484{
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000485 unsigned int i, starthere, lenhere;
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000486 /* FIXME: page_size is the wrong variable. We need max_writechunk_size
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000487 * in struct flashctx to do this properly. All chips using
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000488 * write_jedec have page_size set to max_writechunk_size, so
489 * we're OK for now.
490 */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000491 unsigned int page_size = flash->chip->page_size;
Ollie Lho761bf1b2004-03-20 16:46:10 +0000492
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000493 /* Warning: This loop has a very unusual condition and body.
494 * The loop needs to go through each page with at least one affected
495 * byte. The lowest page number is (start / page_size) since that
496 * division rounds down. The highest page number we want is the page
497 * where the last byte of the range lives. That last byte has the
498 * address (start + len - 1), thus the highest page number is
499 * (start + len - 1) / page_size. Since we want to include that last
500 * page as well, the loop condition uses <=.
501 */
502 for (i = start / page_size; i <= (start + len - 1) / page_size; i++) {
503 /* Byte position of the first byte in the range in this page. */
504 /* starthere is an offset to the base address of the chip. */
505 starthere = max(start, i * page_size);
506 /* Length of bytes in the range in this page. */
507 lenhere = min(start + len, (i + 1) * page_size) - starthere;
Sean Nelson35727f72010-01-28 23:55:12 +0000508
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000509 if (write_page_write_jedec_common(flash, buf + starthere - start, starthere, lenhere))
510 return 1;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000511 }
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000512
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000513 return 0;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000514}
Michael Karcher1c296ca2009-11-27 17:49:42 +0000515
Sean Nelsonc57a9202010-01-04 17:15:23 +0000516/* erase chip with block_erase() prototype */
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000517int erase_chip_block_jedec(struct flashctx *flash, unsigned int addr,
Sean Nelsonc57a9202010-01-04 17:15:23 +0000518 unsigned int blocksize)
519{
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000520 unsigned int mask;
Sean Nelson35727f72010-01-28 23:55:12 +0000521
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000522 mask = getaddrmask(flash->chip);
523 if ((addr != 0) || (blocksize != flash->chip->total_size * 1024)) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000524 msg_cerr("%s called with incorrect arguments\n",
Sean Nelsonc57a9202010-01-04 17:15:23 +0000525 __func__);
526 return -1;
527 }
Sean Nelson35727f72010-01-28 23:55:12 +0000528 return erase_chip_jedec_common(flash, mask);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000529}
530
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000531int probe_jedec(struct flashctx *flash)
Sean Nelsonc57a9202010-01-04 17:15:23 +0000532{
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000533 unsigned int mask;
Carl-Daniel Hailfinger4bf4e792010-01-09 03:15:50 +0000534
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000535 mask = getaddrmask(flash->chip);
Sean Nelson35727f72010-01-28 23:55:12 +0000536 return probe_jedec_common(flash, mask);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000537}
538
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000539int erase_sector_jedec(struct flashctx *flash, unsigned int page,
540 unsigned int size)
Sean Nelsonc57a9202010-01-04 17:15:23 +0000541{
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000542 unsigned int mask;
Sean Nelson35727f72010-01-28 23:55:12 +0000543
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000544 mask = getaddrmask(flash->chip);
Sean Nelson35727f72010-01-28 23:55:12 +0000545 return erase_sector_jedec_common(flash, page, size, mask);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000546}
547
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000548int erase_block_jedec(struct flashctx *flash, unsigned int page,
549 unsigned int size)
Sean Nelsonc57a9202010-01-04 17:15:23 +0000550{
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000551 unsigned int mask;
Sean Nelson35727f72010-01-28 23:55:12 +0000552
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000553 mask = getaddrmask(flash->chip);
Sean Nelson35727f72010-01-28 23:55:12 +0000554 return erase_block_jedec_common(flash, page, size, mask);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000555}
556
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000557int erase_chip_jedec(struct flashctx *flash)
Sean Nelsonc57a9202010-01-04 17:15:23 +0000558{
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000559 unsigned int mask;
Sean Nelson35727f72010-01-28 23:55:12 +0000560
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000561 mask = getaddrmask(flash->chip);
Sean Nelson35727f72010-01-28 23:55:12 +0000562 return erase_chip_jedec_common(flash, mask);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000563}
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000564
565struct unlockblock {
566 unsigned int size;
567 unsigned int count;
568};
569
570typedef int (*unlockblock_func)(const struct flashctx *flash, chipaddr offset);
571static int regspace2_walk_unlockblocks(const struct flashctx *flash, const struct unlockblock *block, unlockblock_func func)
572{
573 chipaddr off = flash->virtual_registers + 2;
574 while (block->count != 0) {
575 unsigned int j;
576 for (j = 0; j < block->count; j++) {
577 if (func(flash, off))
578 return -1;
579 off += block->size;
580 }
581 block++;
582 }
583 return 0;
584}
585
586#define REG2_RWLOCK ((1 << 2) | (1 << 0))
587#define REG2_LOCKDOWN (1 << 1)
588#define REG2_MASK (REG2_RWLOCK | REG2_LOCKDOWN)
589
Stefan Tauner5859ced2014-12-20 16:45:31 +0000590static int printlock_regspace2_block(const struct flashctx *flash, chipaddr lockreg)
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000591{
Stefan Tauner5859ced2014-12-20 16:45:31 +0000592 uint8_t state = chip_readb(flash, lockreg);
593 msg_cdbg("Lock status of block at 0x%0*" PRIxPTR " is ", PRIxPTR_WIDTH, lockreg);
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000594 switch (state & REG2_MASK) {
595 case 0:
596 msg_cdbg("Full Access.\n");
597 break;
598 case 1:
599 msg_cdbg("Write Lock (Default State).\n");
600 break;
601 case 2:
602 msg_cdbg("Locked Open (Full Access, Locked Down).\n");
603 break;
604 case 3:
605 msg_cdbg("Write Lock, Locked Down.\n");
606 break;
607 case 4:
608 msg_cdbg("Read Lock.\n");
609 break;
610 case 5:
611 msg_cdbg("Read/Write Lock.\n");
612 break;
613 case 6:
614 msg_cdbg("Read Lock, Locked Down.\n");
615 break;
616 case 7:
617 msg_cdbg("Read/Write Lock, Locked Down.\n");
618 break;
619 }
620 return 0;
621}
622
623int printlock_regspace2_blocks(const struct flashctx *flash, const struct unlockblock *blocks)
624{
625 return regspace2_walk_unlockblocks(flash, blocks, &printlock_regspace2_block);
626}
627
628static int printlock_regspace2_uniform(struct flashctx *flash, unsigned long block_size)
629{
630 const unsigned int elems = flash->chip->total_size * 1024 / block_size;
631 struct unlockblock blocks[2] = {{.size = block_size, .count = elems}};
632 return regspace2_walk_unlockblocks(flash, blocks, &printlock_regspace2_block);
633}
634
635int printlock_regspace2_uniform_64k(struct flashctx *flash)
636{
637 return printlock_regspace2_uniform(flash, 64 * 1024);
638}
639
640int printlock_regspace2_block_eraser_0(struct flashctx *flash)
641{
642 // FIXME: this depends on the eraseblocks not to be filled up completely (i.e. to be null-terminated).
643 const struct unlockblock *unlockblocks =
644 (const struct unlockblock *)flash->chip->block_erasers[0].eraseblocks;
645 return regspace2_walk_unlockblocks(flash, unlockblocks, &printlock_regspace2_block);
646}
647
648int printlock_regspace2_block_eraser_1(struct flashctx *flash)
649{
650 // FIXME: this depends on the eraseblocks not to be filled up completely (i.e. to be null-terminated).
651 const struct unlockblock *unlockblocks =
652 (const struct unlockblock *)flash->chip->block_erasers[1].eraseblocks;
653 return regspace2_walk_unlockblocks(flash, unlockblocks, &printlock_regspace2_block);
654}
655
Stefan Tauner5859ced2014-12-20 16:45:31 +0000656/* Try to change the lock register at address lockreg from cur to new.
657 *
658 * - Try to unlock the lock bit if requested and it is currently set (although this is probably futile).
659 * - Try to change the read/write bits if requested.
660 * - Try to set the lockdown bit if requested.
661 * Return an error immediately if any of this fails. */
662static int changelock_regspace2_block(const struct flashctx *flash, chipaddr lockreg, uint8_t cur, uint8_t new)
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000663{
Stefan Tauner5859ced2014-12-20 16:45:31 +0000664 /* Only allow changes to known read/write/lockdown bits */
665 if (((cur ^ new) & ~REG2_MASK) != 0) {
666 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 +0000667 "Please report a bug at flashrom@flashrom.org\n",
Stefan Tauner5859ced2014-12-20 16:45:31 +0000668 cur, new, PRIxPTR_WIDTH, lockreg);
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000669 return -1;
670 }
Stefan Tauner5859ced2014-12-20 16:45:31 +0000671
672 /* Exit early if no change (of read/write/lockdown bits) was requested. */
673 if (((cur ^ new) & REG2_MASK) == 0) {
674 msg_cdbg2("Lock bits at 0x%0*" PRIxPTR " not changed.\n", PRIxPTR_WIDTH, lockreg);
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000675 return 0;
676 }
Stefan Tauner5859ced2014-12-20 16:45:31 +0000677
678 /* Normally the lockdown bit can not be cleared. Try nevertheless if requested. */
679 if ((cur & REG2_LOCKDOWN) && !(new & REG2_LOCKDOWN)) {
680 chip_writeb(flash, cur & ~REG2_LOCKDOWN, lockreg);
681 cur = chip_readb(flash, lockreg);
682 if ((cur & REG2_LOCKDOWN) == REG2_LOCKDOWN) {
683 msg_cwarn("Lockdown can't be removed at 0x%0*" PRIxPTR "! New value: 0x%02x.\n",
684 PRIxPTR_WIDTH, lockreg, cur);
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000685 return -1;
686 }
687 }
Stefan Tauner5859ced2014-12-20 16:45:31 +0000688
689 /* Change read and/or write bit */
690 if ((cur ^ new) & REG2_RWLOCK) {
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000691 /* Do not lockdown yet. */
Stefan Tauner5859ced2014-12-20 16:45:31 +0000692 uint8_t wanted = (cur & ~REG2_RWLOCK) | (new & REG2_RWLOCK);
693 chip_writeb(flash, wanted, lockreg);
694 cur = chip_readb(flash, lockreg);
695 if (cur != wanted) {
696 msg_cerr("Changing lock bits failed at 0x%0*" PRIxPTR "! New value: 0x%02x.\n",
697 PRIxPTR_WIDTH, lockreg, cur);
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000698 return -1;
699 }
Stefan Tauner5859ced2014-12-20 16:45:31 +0000700 msg_cdbg("Changed lock bits at 0x%0*" PRIxPTR " to 0x%02x.\n",
701 PRIxPTR_WIDTH, lockreg, cur);
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000702 }
Stefan Tauner5859ced2014-12-20 16:45:31 +0000703
704 /* Eventually, enable lockdown if requested. */
705 if (!(cur & REG2_LOCKDOWN) && (new & REG2_LOCKDOWN)) {
706 chip_writeb(flash, new, lockreg);
707 cur = chip_readb(flash, lockreg);
708 if (cur != new) {
709 msg_cerr("Enabling lockdown FAILED at 0x%0*" PRIxPTR "! New value: 0x%02x.\n",
710 PRIxPTR_WIDTH, lockreg, cur);
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000711 return -1;
712 }
Stefan Tauner5859ced2014-12-20 16:45:31 +0000713 msg_cdbg("Enabled lockdown at 0x%0*" PRIxPTR ".\n", PRIxPTR_WIDTH, lockreg);
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000714 }
715
716 return 0;
717}
718
Stefan Tauner5859ced2014-12-20 16:45:31 +0000719static int unlock_regspace2_block_generic(const struct flashctx *flash, chipaddr lockreg)
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000720{
Stefan Tauner5859ced2014-12-20 16:45:31 +0000721 uint8_t old = chip_readb(flash, lockreg);
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000722 /* 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 +0000723 return changelock_regspace2_block(flash, lockreg, old, old & ~REG2_RWLOCK);
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000724}
725
726static int unlock_regspace2_uniform(struct flashctx *flash, unsigned long block_size)
727{
728 const unsigned int elems = flash->chip->total_size * 1024 / block_size;
729 struct unlockblock blocks[2] = {{.size = block_size, .count = elems}};
Stefan Tauner5859ced2014-12-20 16:45:31 +0000730 return regspace2_walk_unlockblocks(flash, blocks, &unlock_regspace2_block_generic);
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000731}
732
733int unlock_regspace2_uniform_64k(struct flashctx *flash)
734{
735 return unlock_regspace2_uniform(flash, 64 * 1024);
736}
737
738int unlock_regspace2_uniform_32k(struct flashctx *flash)
739{
740 return unlock_regspace2_uniform(flash, 32 * 1024);
741}
742
743int unlock_regspace2_block_eraser_0(struct flashctx *flash)
744{
745 // FIXME: this depends on the eraseblocks not to be filled up completely (i.e. to be null-terminated).
746 const struct unlockblock *unlockblocks =
747 (const struct unlockblock *)flash->chip->block_erasers[0].eraseblocks;
Stefan Tauner5859ced2014-12-20 16:45:31 +0000748 return regspace2_walk_unlockblocks(flash, unlockblocks, &unlock_regspace2_block_generic);
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000749}
750
751int unlock_regspace2_block_eraser_1(struct flashctx *flash)
752{
753 // FIXME: this depends on the eraseblocks not to be filled up completely (i.e. to be null-terminated).
754 const struct unlockblock *unlockblocks =
755 (const struct unlockblock *)flash->chip->block_erasers[1].eraseblocks;
Stefan Tauner5859ced2014-12-20 16:45:31 +0000756 return regspace2_walk_unlockblocks(flash, unlockblocks, &unlock_regspace2_block_generic);
Carl-Daniel Hailfingeref3ac8a2014-08-03 13:05:34 +0000757}
758