blob: 9f47568d02001fcc48ef935e2b4d69c99d11e30a [file] [log] [blame]
hailfinger336d3c32008-03-14 00:02:25 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2000 Silicon Integrated System Corporation
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
hailfinger336d3c32008-03-14 00:02:25 +000015 */
16
17/*
18 * Datasheet:
19 * - Name: Intel 82802AB/82802AC Firmware Hub (FWH)
20 * - URL: http://www.intel.com/design/chipsets/datashts/290658.htm
21 * - PDF: http://download.intel.com/design/chipsets/datashts/29065804.pdf
22 * - Order number: 290658-004
23 */
24
hailfinger336d3c32008-03-14 00:02:25 +000025#include "flash.h"
snelson8913d082010-02-26 05:48:29 +000026#include "chipdrivers.h"
hailfinger336d3c32008-03-14 00:02:25 +000027
snelsonc0acbeb2010-03-19 18:47:06 +000028void print_status_82802ab(uint8_t status)
hailfinger336d3c32008-03-14 00:02:25 +000029{
snelsonfc007bb2010-03-24 23:14:32 +000030 msg_cdbg("%s", status & 0x80 ? "Ready:" : "Busy:");
31 msg_cdbg("%s", status & 0x40 ? "BE SUSPEND:" : "BE RUN/FINISH:");
32 msg_cdbg("%s", status & 0x20 ? "BE ERROR:" : "BE OK:");
33 msg_cdbg("%s", status & 0x10 ? "PROG ERR:" : "PROG OK:");
34 msg_cdbg("%s", status & 0x8 ? "VP ERR:" : "VPP OK:");
35 msg_cdbg("%s", status & 0x4 ? "PROG SUSPEND:" : "PROG RUN/FINISH:");
36 msg_cdbg("%s", status & 0x2 ? "WP|TBL#|WP#,ABORT:" : "UNLOCK:");
hailfinger336d3c32008-03-14 00:02:25 +000037}
38
Souvik Ghoshd75cd672016-06-17 14:21:39 -070039int probe_82802ab(struct flashctx *flash)
hailfinger336d3c32008-03-14 00:02:25 +000040{
hailfinger82719632009-05-16 21:22:56 +000041 chipaddr bios = flash->virtual_memory;
uwe8d342eb2011-07-28 08:13:25 +000042 uint8_t id1, id2, flashcontent1, flashcontent2;
Edward O'Callaghan3255bd72019-09-09 00:19:56 +100043 int shifted = (flash->chip->feature_bits & FEATURE_ADDR_SHIFTED) ? 1 : 0;
hailfinger336d3c32008-03-14 00:02:25 +000044
hailfinger2fc3c402009-09-05 01:16:30 +000045 /* Reset to get a clean state */
Souvik Ghoshd75cd672016-06-17 14:21:39 -070046 chip_writeb(flash, 0xFF, bios);
hailfingere5829f62009-06-05 17:48:08 +000047 programmer_delay(10);
hailfinger2fc3c402009-09-05 01:16:30 +000048
49 /* Enter ID mode */
Souvik Ghoshd75cd672016-06-17 14:21:39 -070050 chip_writeb(flash, 0x90, bios);
hailfingere5829f62009-06-05 17:48:08 +000051 programmer_delay(10);
hailfinger336d3c32008-03-14 00:02:25 +000052
Souvik Ghoshd75cd672016-06-17 14:21:39 -070053 id1 = chip_readb(flash, bios + (0x00 << shifted));
54 id2 = chip_readb(flash, bios + (0x01 << shifted));
hailfinger336d3c32008-03-14 00:02:25 +000055
56 /* Leave ID mode */
Souvik Ghoshd75cd672016-06-17 14:21:39 -070057 chip_writeb(flash, 0xFF, bios);
hailfinger336d3c32008-03-14 00:02:25 +000058
hailfingere5829f62009-06-05 17:48:08 +000059 programmer_delay(10);
hailfinger336d3c32008-03-14 00:02:25 +000060
snelsonfc007bb2010-03-24 23:14:32 +000061 msg_cdbg("%s: id1 0x%02x, id2 0x%02x", __func__, id1, id2);
hailfinger336d3c32008-03-14 00:02:25 +000062
hailfingercbc09f92010-03-22 23:47:38 +000063 if (!oddparity(id1))
snelsonfc007bb2010-03-24 23:14:32 +000064 msg_cdbg(", id1 parity violation");
hailfingercbc09f92010-03-22 23:47:38 +000065
uwe8d342eb2011-07-28 08:13:25 +000066 /*
67 * Read the product ID location again. We should now see normal
68 * flash contents.
69 */
Souvik Ghoshd75cd672016-06-17 14:21:39 -070070 flashcontent1 = chip_readb(flash, bios + (0x00 << shifted));
71 flashcontent2 = chip_readb(flash, bios + (0x01 << shifted));
hailfingercbc09f92010-03-22 23:47:38 +000072
73 if (id1 == flashcontent1)
snelsonfc007bb2010-03-24 23:14:32 +000074 msg_cdbg(", id1 is normal flash content");
hailfingercbc09f92010-03-22 23:47:38 +000075 if (id2 == flashcontent2)
snelsonfc007bb2010-03-24 23:14:32 +000076 msg_cdbg(", id2 is normal flash content");
hailfingercbc09f92010-03-22 23:47:38 +000077
snelsonfc007bb2010-03-24 23:14:32 +000078 msg_cdbg("\n");
Patrick Georgif3fa2992017-02-02 16:24:44 +010079 if (id1 != flash->chip->manufacture_id || id2 != flash->chip->model_id)
hailfinger336d3c32008-03-14 00:02:25 +000080 return 0;
81
Patrick Georgif3fa2992017-02-02 16:24:44 +010082 if (flash->chip->feature_bits & FEATURE_REGISTERMAP)
hailfingerb8e4e212010-03-15 03:48:42 +000083 map_flash_registers(flash);
hailfinger336d3c32008-03-14 00:02:25 +000084
85 return 1;
86}
87
Edward O'Callaghan3255bd72019-09-09 00:19:56 +100088/* FIXME: needs timeout */
Souvik Ghoshd75cd672016-06-17 14:21:39 -070089uint8_t wait_82802ab(struct flashctx *flash)
hailfinger336d3c32008-03-14 00:02:25 +000090{
91 uint8_t status;
hailfingera10a6072010-10-10 14:02:27 +000092 chipaddr bios = flash->virtual_memory;
hailfinger336d3c32008-03-14 00:02:25 +000093
Souvik Ghoshd75cd672016-06-17 14:21:39 -070094 chip_writeb(flash, 0x70, bios);
95 if ((chip_readb(flash, bios) & 0x80) == 0) { // it's busy
96 while ((chip_readb(flash, bios) & 0x80) == 0) ;
hailfinger336d3c32008-03-14 00:02:25 +000097 }
98
Souvik Ghoshd75cd672016-06-17 14:21:39 -070099 status = chip_readb(flash, bios);
hailfinger336d3c32008-03-14 00:02:25 +0000100
hailfinger2fc3c402009-09-05 01:16:30 +0000101 /* Reset to get a clean state */
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700102 chip_writeb(flash, 0xFF, bios);
hailfinger336d3c32008-03-14 00:02:25 +0000103
104 return status;
105}
106
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700107int erase_block_82802ab(struct flashctx *flash, unsigned int page,
uwe8d342eb2011-07-28 08:13:25 +0000108 unsigned int pagesize)
hailfinger336d3c32008-03-14 00:02:25 +0000109{
snelson2d471072010-01-09 05:30:14 +0000110 chipaddr bios = flash->virtual_memory;
hailfinger336d3c32008-03-14 00:02:25 +0000111 uint8_t status;
112
113 // clear status register
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700114 chip_writeb(flash, 0x50, bios + page);
stepana5807bf2009-09-16 08:26:59 +0000115
hailfinger336d3c32008-03-14 00:02:25 +0000116 // now start it
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700117 chip_writeb(flash, 0x20, bios + page);
118 chip_writeb(flash, 0xd0, bios + page);
hailfingere5829f62009-06-05 17:48:08 +0000119 programmer_delay(10);
stepana5807bf2009-09-16 08:26:59 +0000120
hailfinger336d3c32008-03-14 00:02:25 +0000121 // now let's see what the register is
hailfingera10a6072010-10-10 14:02:27 +0000122 status = wait_82802ab(flash);
snelsonc0acbeb2010-03-19 18:47:06 +0000123 print_status_82802ab(status);
stepana5807bf2009-09-16 08:26:59 +0000124
hailfingerac8e3182011-06-26 17:04:16 +0000125 /* FIXME: Check the status register for errors. */
hailfinger336d3c32008-03-14 00:02:25 +0000126 return 0;
127}
128
hailfinger71e1bd42010-10-13 22:26:56 +0000129/* chunksize is 1 */
Patrick Georgiab8353e2017-02-03 18:32:01 +0100130int write_82802ab(struct flashctx *flash, const uint8_t *src, unsigned int start, unsigned int len)
hailfinger336d3c32008-03-14 00:02:25 +0000131{
Edward O'Callaghan3255bd72019-09-09 00:19:56 +1000132 unsigned int i;
hailfingera10a6072010-10-10 14:02:27 +0000133 chipaddr dst = flash->virtual_memory + start;
hailfinger336d3c32008-03-14 00:02:25 +0000134
hailfingera10a6072010-10-10 14:02:27 +0000135 for (i = 0; i < len; i++) {
hailfinger336d3c32008-03-14 00:02:25 +0000136 /* transfer data from source to destination */
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700137 chip_writeb(flash, 0x40, dst);
138 chip_writeb(flash, *src++, dst++);
hailfingera10a6072010-10-10 14:02:27 +0000139 wait_82802ab(flash);
hailfinger336d3c32008-03-14 00:02:25 +0000140 }
hailfingera10a6072010-10-10 14:02:27 +0000141
142 /* FIXME: Ignore errors for now. */
143 return 0;
hailfinger336d3c32008-03-14 00:02:25 +0000144}
145
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700146int unlock_28f004s5(struct flashctx *flash)
snelsona013bf62010-03-22 04:39:31 +0000147{
148 chipaddr bios = flash->virtual_memory;
snelson6cfa2392010-03-22 07:03:26 +0000149 uint8_t mcfg, bcfg, need_unlock = 0, can_unlock = 0;
Edward O'Callaghan3255bd72019-09-09 00:19:56 +1000150 unsigned int i;
snelsona013bf62010-03-22 04:39:31 +0000151
152 /* Clear status register */
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700153 chip_writeb(flash, 0x50, bios);
snelsona013bf62010-03-22 04:39:31 +0000154
155 /* Read identifier codes */
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700156 chip_writeb(flash, 0x90, bios);
snelsona013bf62010-03-22 04:39:31 +0000157
158 /* Read master lock-bit */
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700159 mcfg = chip_readb(flash, bios + 0x3);
snelsonfc007bb2010-03-24 23:14:32 +0000160 msg_cdbg("master lock is ");
snelsona013bf62010-03-22 04:39:31 +0000161 if (mcfg) {
162 msg_cdbg("locked!\n");
163 } else {
164 msg_cdbg("unlocked!\n");
165 can_unlock = 1;
166 }
uwe8d342eb2011-07-28 08:13:25 +0000167
snelsona013bf62010-03-22 04:39:31 +0000168 /* Read block lock-bits */
Patrick Georgif3fa2992017-02-02 16:24:44 +0100169 for (i = 0; i < flash->chip->total_size * 1024; i+= (64 * 1024)) {
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700170 bcfg = chip_readb(flash, bios + i + 2); // read block lock config
snelsona013bf62010-03-22 04:39:31 +0000171 msg_cdbg("block lock at %06x is %slocked!\n", i, bcfg ? "" : "un");
172 if (bcfg) {
173 need_unlock = 1;
174 }
175 }
176
177 /* Reset chip */
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700178 chip_writeb(flash, 0xFF, bios);
snelsona013bf62010-03-22 04:39:31 +0000179
180 /* Unlock: clear block lock-bits, if needed */
181 if (can_unlock && need_unlock) {
snelsonfc007bb2010-03-24 23:14:32 +0000182 msg_cdbg("Unlock: ");
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700183 chip_writeb(flash, 0x60, bios);
184 chip_writeb(flash, 0xD0, bios);
185 chip_writeb(flash, 0xFF, bios);
snelsonfc007bb2010-03-24 23:14:32 +0000186 msg_cdbg("Done!\n");
snelsona013bf62010-03-22 04:39:31 +0000187 }
188
189 /* Error: master locked or a block is locked */
190 if (!can_unlock && need_unlock) {
191 msg_cerr("At least one block is locked and lockdown is active!\n");
192 return -1;
193 }
194
195 return 0;
196}
uwe8e0cff52011-08-25 22:44:11 +0000197
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700198int unlock_lh28f008bjt(struct flashctx *flash)
uwe8e0cff52011-08-25 22:44:11 +0000199{
200 chipaddr bios = flash->virtual_memory;
201 uint8_t mcfg, bcfg;
202 uint8_t need_unlock = 0, can_unlock = 0;
Edward O'Callaghan3255bd72019-09-09 00:19:56 +1000203 unsigned int i;
uwe8e0cff52011-08-25 22:44:11 +0000204
205 /* Wait if chip is busy */
206 wait_82802ab(flash);
207
208 /* Read identifier codes */
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700209 chip_writeb(flash, 0x90, bios);
uwe8e0cff52011-08-25 22:44:11 +0000210
211 /* Read master lock-bit */
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700212 mcfg = chip_readb(flash, bios + 0x3);
uwe8e0cff52011-08-25 22:44:11 +0000213 msg_cdbg("master lock is ");
214 if (mcfg) {
215 msg_cdbg("locked!\n");
216 } else {
217 msg_cdbg("unlocked!\n");
218 can_unlock = 1;
219 }
220
221 /* Read block lock-bits, 8 * 8 KB + 15 * 64 KB */
Patrick Georgif3fa2992017-02-02 16:24:44 +0100222 for (i = 0; i < flash->chip->total_size * 1024;
uwe8e0cff52011-08-25 22:44:11 +0000223 i += (i >= (64 * 1024) ? 64 * 1024 : 8 * 1024)) {
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700224 bcfg = chip_readb(flash, bios + i + 2); /* read block lock config */
uwe8e0cff52011-08-25 22:44:11 +0000225 msg_cdbg("block lock at %06x is %slocked!\n", i,
226 bcfg ? "" : "un");
227 if (bcfg)
228 need_unlock = 1;
229 }
230
231 /* Reset chip */
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700232 chip_writeb(flash, 0xFF, bios);
uwe8e0cff52011-08-25 22:44:11 +0000233
234 /* Unlock: clear block lock-bits, if needed */
235 if (can_unlock && need_unlock) {
236 msg_cdbg("Unlock: ");
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700237 chip_writeb(flash, 0x60, bios);
238 chip_writeb(flash, 0xD0, bios);
239 chip_writeb(flash, 0xFF, bios);
uwe8e0cff52011-08-25 22:44:11 +0000240 wait_82802ab(flash);
241 msg_cdbg("Done!\n");
242 }
243
244 /* Error: master locked or a block is locked */
245 if (!can_unlock && need_unlock) {
246 msg_cerr("At least one block is locked and lockdown is active!\n");
247 return -1;
248 }
249
250 return 0;
251}