blob: b485c114c2ee135dd36af16c4bc367ef511e9d06 [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
hailfinger336d3c32008-03-14 00:02:25 +000082 return 1;
83}
84
Edward O'Callaghan3255bd72019-09-09 00:19:56 +100085/* FIXME: needs timeout */
Souvik Ghoshd75cd672016-06-17 14:21:39 -070086uint8_t wait_82802ab(struct flashctx *flash)
hailfinger336d3c32008-03-14 00:02:25 +000087{
88 uint8_t status;
hailfingera10a6072010-10-10 14:02:27 +000089 chipaddr bios = flash->virtual_memory;
hailfinger336d3c32008-03-14 00:02:25 +000090
Souvik Ghoshd75cd672016-06-17 14:21:39 -070091 chip_writeb(flash, 0x70, bios);
Angel Pons21d07432020-01-31 11:16:42 +010092
93 while ((chip_readb(flash, bios) & 0x80) == 0) // it's busy
94 ;
hailfinger336d3c32008-03-14 00:02:25 +000095
Souvik Ghoshd75cd672016-06-17 14:21:39 -070096 status = chip_readb(flash, bios);
hailfinger336d3c32008-03-14 00:02:25 +000097
hailfinger2fc3c402009-09-05 01:16:30 +000098 /* Reset to get a clean state */
Souvik Ghoshd75cd672016-06-17 14:21:39 -070099 chip_writeb(flash, 0xFF, bios);
hailfinger336d3c32008-03-14 00:02:25 +0000100
101 return status;
102}
103
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700104int erase_block_82802ab(struct flashctx *flash, unsigned int page,
uwe8d342eb2011-07-28 08:13:25 +0000105 unsigned int pagesize)
hailfinger336d3c32008-03-14 00:02:25 +0000106{
snelson2d471072010-01-09 05:30:14 +0000107 chipaddr bios = flash->virtual_memory;
hailfinger336d3c32008-03-14 00:02:25 +0000108 uint8_t status;
109
110 // clear status register
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700111 chip_writeb(flash, 0x50, bios + page);
stepana5807bf2009-09-16 08:26:59 +0000112
hailfinger336d3c32008-03-14 00:02:25 +0000113 // now start it
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700114 chip_writeb(flash, 0x20, bios + page);
115 chip_writeb(flash, 0xd0, bios + page);
hailfingere5829f62009-06-05 17:48:08 +0000116 programmer_delay(10);
stepana5807bf2009-09-16 08:26:59 +0000117
hailfinger336d3c32008-03-14 00:02:25 +0000118 // now let's see what the register is
hailfingera10a6072010-10-10 14:02:27 +0000119 status = wait_82802ab(flash);
snelsonc0acbeb2010-03-19 18:47:06 +0000120 print_status_82802ab(status);
stepana5807bf2009-09-16 08:26:59 +0000121
hailfingerac8e3182011-06-26 17:04:16 +0000122 /* FIXME: Check the status register for errors. */
hailfinger336d3c32008-03-14 00:02:25 +0000123 return 0;
124}
125
hailfinger71e1bd42010-10-13 22:26:56 +0000126/* chunksize is 1 */
Patrick Georgiab8353e2017-02-03 18:32:01 +0100127int write_82802ab(struct flashctx *flash, const uint8_t *src, unsigned int start, unsigned int len)
hailfinger336d3c32008-03-14 00:02:25 +0000128{
Edward O'Callaghan3255bd72019-09-09 00:19:56 +1000129 unsigned int i;
hailfingera10a6072010-10-10 14:02:27 +0000130 chipaddr dst = flash->virtual_memory + start;
hailfinger336d3c32008-03-14 00:02:25 +0000131
hailfingera10a6072010-10-10 14:02:27 +0000132 for (i = 0; i < len; i++) {
hailfinger336d3c32008-03-14 00:02:25 +0000133 /* transfer data from source to destination */
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700134 chip_writeb(flash, 0x40, dst);
135 chip_writeb(flash, *src++, dst++);
hailfingera10a6072010-10-10 14:02:27 +0000136 wait_82802ab(flash);
hailfinger336d3c32008-03-14 00:02:25 +0000137 }
hailfingera10a6072010-10-10 14:02:27 +0000138
139 /* FIXME: Ignore errors for now. */
140 return 0;
hailfinger336d3c32008-03-14 00:02:25 +0000141}
142
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700143int unlock_28f004s5(struct flashctx *flash)
snelsona013bf62010-03-22 04:39:31 +0000144{
145 chipaddr bios = flash->virtual_memory;
snelson6cfa2392010-03-22 07:03:26 +0000146 uint8_t mcfg, bcfg, need_unlock = 0, can_unlock = 0;
Edward O'Callaghan3255bd72019-09-09 00:19:56 +1000147 unsigned int i;
snelsona013bf62010-03-22 04:39:31 +0000148
149 /* Clear status register */
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700150 chip_writeb(flash, 0x50, bios);
snelsona013bf62010-03-22 04:39:31 +0000151
152 /* Read identifier codes */
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700153 chip_writeb(flash, 0x90, bios);
snelsona013bf62010-03-22 04:39:31 +0000154
155 /* Read master lock-bit */
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700156 mcfg = chip_readb(flash, bios + 0x3);
snelsonfc007bb2010-03-24 23:14:32 +0000157 msg_cdbg("master lock is ");
snelsona013bf62010-03-22 04:39:31 +0000158 if (mcfg) {
159 msg_cdbg("locked!\n");
160 } else {
161 msg_cdbg("unlocked!\n");
162 can_unlock = 1;
163 }
uwe8d342eb2011-07-28 08:13:25 +0000164
snelsona013bf62010-03-22 04:39:31 +0000165 /* Read block lock-bits */
Patrick Georgif3fa2992017-02-02 16:24:44 +0100166 for (i = 0; i < flash->chip->total_size * 1024; i+= (64 * 1024)) {
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700167 bcfg = chip_readb(flash, bios + i + 2); // read block lock config
snelsona013bf62010-03-22 04:39:31 +0000168 msg_cdbg("block lock at %06x is %slocked!\n", i, bcfg ? "" : "un");
169 if (bcfg) {
170 need_unlock = 1;
171 }
172 }
173
174 /* Reset chip */
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700175 chip_writeb(flash, 0xFF, bios);
snelsona013bf62010-03-22 04:39:31 +0000176
177 /* Unlock: clear block lock-bits, if needed */
178 if (can_unlock && need_unlock) {
snelsonfc007bb2010-03-24 23:14:32 +0000179 msg_cdbg("Unlock: ");
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700180 chip_writeb(flash, 0x60, bios);
181 chip_writeb(flash, 0xD0, bios);
182 chip_writeb(flash, 0xFF, bios);
snelsonfc007bb2010-03-24 23:14:32 +0000183 msg_cdbg("Done!\n");
snelsona013bf62010-03-22 04:39:31 +0000184 }
185
186 /* Error: master locked or a block is locked */
187 if (!can_unlock && need_unlock) {
188 msg_cerr("At least one block is locked and lockdown is active!\n");
189 return -1;
190 }
191
192 return 0;
193}
uwe8e0cff52011-08-25 22:44:11 +0000194
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700195int unlock_lh28f008bjt(struct flashctx *flash)
uwe8e0cff52011-08-25 22:44:11 +0000196{
197 chipaddr bios = flash->virtual_memory;
198 uint8_t mcfg, bcfg;
199 uint8_t need_unlock = 0, can_unlock = 0;
Edward O'Callaghan3255bd72019-09-09 00:19:56 +1000200 unsigned int i;
uwe8e0cff52011-08-25 22:44:11 +0000201
202 /* Wait if chip is busy */
203 wait_82802ab(flash);
204
205 /* Read identifier codes */
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700206 chip_writeb(flash, 0x90, bios);
uwe8e0cff52011-08-25 22:44:11 +0000207
208 /* Read master lock-bit */
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700209 mcfg = chip_readb(flash, bios + 0x3);
uwe8e0cff52011-08-25 22:44:11 +0000210 msg_cdbg("master lock is ");
211 if (mcfg) {
212 msg_cdbg("locked!\n");
213 } else {
214 msg_cdbg("unlocked!\n");
215 can_unlock = 1;
216 }
217
218 /* Read block lock-bits, 8 * 8 KB + 15 * 64 KB */
Patrick Georgif3fa2992017-02-02 16:24:44 +0100219 for (i = 0; i < flash->chip->total_size * 1024;
uwe8e0cff52011-08-25 22:44:11 +0000220 i += (i >= (64 * 1024) ? 64 * 1024 : 8 * 1024)) {
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700221 bcfg = chip_readb(flash, bios + i + 2); /* read block lock config */
uwe8e0cff52011-08-25 22:44:11 +0000222 msg_cdbg("block lock at %06x is %slocked!\n", i,
223 bcfg ? "" : "un");
224 if (bcfg)
225 need_unlock = 1;
226 }
227
228 /* Reset chip */
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700229 chip_writeb(flash, 0xFF, bios);
uwe8e0cff52011-08-25 22:44:11 +0000230
231 /* Unlock: clear block lock-bits, if needed */
232 if (can_unlock && need_unlock) {
233 msg_cdbg("Unlock: ");
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700234 chip_writeb(flash, 0x60, bios);
235 chip_writeb(flash, 0xD0, bios);
236 chip_writeb(flash, 0xFF, bios);
uwe8e0cff52011-08-25 22:44:11 +0000237 wait_82802ab(flash);
238 msg_cdbg("Done!\n");
239 }
240
241 /* Error: master locked or a block is locked */
242 if (!can_unlock && need_unlock) {
243 msg_cerr("At least one block is locked and lockdown is active!\n");
244 return -1;
245 }
246
247 return 0;
248}