blob: 9dcb06a4840dd092271d12bcdaddcdd142484d48 [file] [log] [blame]
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2008 coresystems GmbH
5 * Copyright (C) 2010 Carl-Daniel Hailfinger
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#include "flash.h"
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000023
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +000024static int printlock_w39_fwh_block(struct flashctx *flash, unsigned int offset)
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000025{
26 chipaddr wrprotect = flash->virtual_registers + offset + 2;
27 uint8_t locking;
28
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000029 locking = chip_readb(flash, wrprotect);
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000030 msg_cdbg("Lock status of block at 0x%08x is ", offset);
31 switch (locking & 0x7) {
32 case 0:
33 msg_cdbg("Full Access.\n");
34 break;
35 case 1:
36 msg_cdbg("Write Lock (Default State).\n");
37 break;
38 case 2:
39 msg_cdbg("Locked Open (Full Access, Lock Down).\n");
40 break;
41 case 3:
42 msg_cerr("Error: Write Lock, Locked Down.\n");
43 break;
44 case 4:
45 msg_cdbg("Read Lock.\n");
46 break;
47 case 5:
48 msg_cdbg("Read/Write Lock.\n");
49 break;
50 case 6:
51 msg_cerr("Error: Read Lock, Locked Down.\n");
52 break;
53 case 7:
54 msg_cerr("Error: Read/Write Lock, Locked Down.\n");
55 break;
56 }
57
58 /* Read or write lock present? */
59 return (locking & ((1 << 2) | (1 << 0))) ? -1 : 0;
60}
61
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +000062static int unlock_w39_fwh_block(struct flashctx *flash, unsigned int offset)
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000063{
64 chipaddr wrprotect = flash->virtual_registers + offset + 2;
65 uint8_t locking;
66
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000067 locking = chip_readb(flash, wrprotect);
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000068 /* Read or write lock present? */
69 if (locking & ((1 << 2) | (1 << 0))) {
70 /* Lockdown active? */
71 if (locking & (1 << 1)) {
Stefan Tauner716e0982011-07-25 20:38:52 +000072 msg_cerr("Can't unlock block at 0x%08x!\n", offset);
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000073 return -1;
74 } else {
Stefan Tauner716e0982011-07-25 20:38:52 +000075 msg_cdbg("Unlocking block at 0x%08x\n", offset);
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000076 chip_writeb(flash, 0, wrprotect);
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000077 }
78 }
79
80 return 0;
81}
82
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +000083static uint8_t w39_idmode_readb(struct flashctx *flash, unsigned int offset)
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000084{
85 chipaddr bios = flash->virtual_memory;
86 uint8_t val;
87
88 /* Product Identification Entry */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000089 chip_writeb(flash, 0xAA, bios + 0x5555);
90 chip_writeb(flash, 0x55, bios + 0x2AAA);
91 chip_writeb(flash, 0x90, bios + 0x5555);
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000092 programmer_delay(10);
93
94 /* Read something, maybe hardware lock bits */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000095 val = chip_readb(flash, bios + offset);
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +000096
97 /* Product Identification Exit */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000098 chip_writeb(flash, 0xAA, bios + 0x5555);
99 chip_writeb(flash, 0x55, bios + 0x2AAA);
100 chip_writeb(flash, 0xF0, bios + 0x5555);
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +0000101 programmer_delay(10);
102
103 return val;
104}
105
106static int printlock_w39_tblwp(uint8_t lock)
107{
108 msg_cdbg("Hardware bootblock locking (#TBL) is %sactive.\n",
109 (lock & (1 << 2)) ? "" : "not ");
110 msg_cdbg("Hardware remaining chip locking (#WP) is %sactive..\n",
111 (lock & (1 << 3)) ? "" : "not ");
112 if (lock & ((1 << 2) | (1 << 3)))
113 return -1;
114
115 return 0;
116}
117
Kyösti Mälkkic31243e2012-10-28 01:50:08 +0000118static int printlock_w39_single_bootblock(uint8_t lock, uint16_t kB)
119{
120 msg_cdbg("Software %d kB bootblock locking is %sactive.\n", kB, (lock & 0x03) ? "" : "not ");
121 if (lock & 0x03)
122 return -1;
123
124 return 0;
125}
126
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +0000127static int printlock_w39_bootblock_64k16k(uint8_t lock)
128{
129 msg_cdbg("Software 64 kB bootblock locking is %sactive.\n",
130 (lock & (1 << 0)) ? "" : "not ");
131 msg_cdbg("Software 16 kB bootblock locking is %sactive.\n",
132 (lock & (1 << 1)) ? "" : "not ");
133 if (lock & ((1 << 1) | (1 << 0)))
134 return -1;
135
136 return 0;
137}
138
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000139static int printlock_w39_common(struct flashctx *flash, unsigned int offset)
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +0000140{
141 uint8_t lock;
142
143 lock = w39_idmode_readb(flash, offset);
144 msg_cdbg("Lockout bits:\n");
145 return printlock_w39_tblwp(lock);
146}
147
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000148static int printlock_w39_fwh(struct flashctx *flash)
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +0000149{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000150 unsigned int i, total_size = flash->chip->total_size * 1024;
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +0000151 int ret = 0;
152
153 /* Print lock status of the complete chip */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000154 for (i = 0; i < total_size; i += flash->chip->page_size)
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +0000155 ret |= printlock_w39_fwh_block(flash, i);
156
157 return ret;
158}
159
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000160static int unlock_w39_fwh(struct flashctx *flash)
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +0000161{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000162 unsigned int i, total_size = flash->chip->total_size * 1024;
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +0000163
164 /* Unlock the complete chip */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000165 for (i = 0; i < total_size; i += flash->chip->page_size)
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +0000166 if (unlock_w39_fwh_block(flash, i))
167 return -1;
168
169 return 0;
170}
171
Kyösti Mälkkic31243e2012-10-28 01:50:08 +0000172int printlock_w39f010(struct flashctx *flash)
173{
174 uint8_t lock;
175 int ret;
176
177 lock = w39_idmode_readb(flash, 0x00002);
178 msg_cdbg("Bottom boot block:\n");
179 ret = printlock_w39_single_bootblock(lock, 16);
180
181 lock = w39_idmode_readb(flash, 0x1fff2);
182 msg_cdbg("Top boot block:\n");
183 ret |= printlock_w39_single_bootblock(lock, 16);
184
185 return ret;
186}
187
188int printlock_w39l010(struct flashctx *flash)
189{
190 uint8_t lock;
191 int ret;
192
193 lock = w39_idmode_readb(flash, 0x00002);
194 msg_cdbg("Bottom boot block:\n");
195 ret = printlock_w39_single_bootblock(lock, 8);
196
197 lock = w39_idmode_readb(flash, 0x1fff2);
198 msg_cdbg("Top boot block:\n");
199 ret |= printlock_w39_single_bootblock(lock, 8);
200
201 return ret;
202}
203
204int printlock_w39l020(struct flashctx *flash)
205{
206 uint8_t lock;
207 int ret;
208
209 lock = w39_idmode_readb(flash, 0x00002);
210 msg_cdbg("Bottom boot block:\n");
211 ret = printlock_w39_bootblock_64k16k(lock);
212
213 lock = w39_idmode_readb(flash, 0x3fff2);
214 msg_cdbg("Top boot block:\n");
215 ret |= printlock_w39_bootblock_64k16k(lock);
216
217 return ret;
218}
219
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000220int printlock_w39l040(struct flashctx *flash)
Michael Karcher19e0aac2011-03-06 17:58:05 +0000221{
222 uint8_t lock;
223 int ret;
224
225 lock = w39_idmode_readb(flash, 0x00002);
226 msg_cdbg("Bottom boot block:\n");
227 ret = printlock_w39_bootblock_64k16k(lock);
228
229 lock = w39_idmode_readb(flash, 0x7fff2);
230 msg_cdbg("Top boot block:\n");
231 ret |= printlock_w39_bootblock_64k16k(lock);
232
233 return ret;
234}
235
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000236int printlock_w39v040a(struct flashctx *flash)
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +0000237{
238 uint8_t lock;
239 int ret = 0;
240
241 /* The W39V040A datasheet contradicts itself on the lock register
242 * location: 0x00002 and 0x7fff2 are both mentioned. Pick the one
243 * which is similar to the other chips of the same family.
244 */
245 lock = w39_idmode_readb(flash, 0x7fff2);
246 msg_cdbg("Lockout bits:\n");
247
248 ret = printlock_w39_tblwp(lock);
249 ret |= printlock_w39_bootblock_64k16k(lock);
250
251 return ret;
252}
253
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000254int printlock_w39v040b(struct flashctx *flash)
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +0000255{
256 return printlock_w39_common(flash, 0x7fff2);
257}
258
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000259int printlock_w39v040c(struct flashctx *flash)
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +0000260{
261 /* Typo in the datasheet? The other chips use 0x7fff2. */
262 return printlock_w39_common(flash, 0xfff2);
263}
264
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000265int printlock_w39v040fa(struct flashctx *flash)
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +0000266{
267 int ret = 0;
268
269 ret = printlock_w39v040a(flash);
270 ret |= printlock_w39_fwh(flash);
271
272 return ret;
273}
274
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000275int printlock_w39v040fb(struct flashctx *flash)
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +0000276{
277 int ret = 0;
278
279 ret = printlock_w39v040b(flash);
280 ret |= printlock_w39_fwh(flash);
281
282 return ret;
283}
284
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000285int printlock_w39v040fc(struct flashctx *flash)
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +0000286{
287 int ret = 0;
288
289 /* W39V040C and W39V040FC use different WP/TBL offsets. */
290 ret = printlock_w39_common(flash, 0x7fff2);
291 ret |= printlock_w39_fwh(flash);
292
293 return ret;
294}
295
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000296int printlock_w39v080a(struct flashctx *flash)
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +0000297{
298 return printlock_w39_common(flash, 0xffff2);
299}
300
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000301int printlock_w39v080fa(struct flashctx *flash)
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +0000302{
303 int ret = 0;
304
305 ret = printlock_w39v080a(flash);
306 ret |= printlock_w39_fwh(flash);
307
308 return ret;
309}
310
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000311int printlock_w39v080fa_dual(struct flashctx *flash)
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +0000312{
313 msg_cinfo("Block locking for W39V080FA in dual mode is "
314 "undocumented.\n");
315 /* Better safe than sorry. */
316 return -1;
317}
318
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000319int unlock_w39v040fb(struct flashctx *flash)
Idwer Volleringecc67072010-12-26 23:55:12 +0000320{
321 if (unlock_w39_fwh(flash))
322 return -1;
323 if (printlock_w39_common(flash, 0x7fff2))
324 return -1;
325
326 return 0;
327}
328
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000329int unlock_w39v080fa(struct flashctx *flash)
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +0000330{
331 if (unlock_w39_fwh(flash))
332 return -1;
333 if (printlock_w39_common(flash, 0xffff2))
334 return -1;
335
336 return 0;
337}
David Borgf5a30f62012-04-15 13:16:32 +0000338
339int printlock_at49f(struct flashctx *flash)
340{
341 uint8_t lock = w39_idmode_readb(flash, 0x00002);
342 msg_cdbg("Hardware bootblock lockout is %sactive.\n",
343 (lock & 0x01) ? "" : "not ");
344 return 0;
345}