blob: 0e45e3d58977d690bd6986cde0823dbb7f886b46 [file] [log] [blame]
Carl-Daniel Hailfingere7bcb192008-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.
Carl-Daniel Hailfingere7bcb192008-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
Felix Singer2e003a02022-08-19 02:36:28 +020025#include <stdbool.h>
Carl-Daniel Hailfingere7bcb192008-03-14 00:02:25 +000026#include "flash.h"
Sean Nelson14ba6682010-02-26 05:48:29 +000027#include "chipdrivers.h"
Carl-Daniel Hailfingere7bcb192008-03-14 00:02:25 +000028
Sean Nelson28accc22010-03-19 18:47:06 +000029void print_status_82802ab(uint8_t status)
Carl-Daniel Hailfingere7bcb192008-03-14 00:02:25 +000030{
Sean Nelsoned479d22010-03-24 23:14:32 +000031 msg_cdbg("%s", status & 0x80 ? "Ready:" : "Busy:");
32 msg_cdbg("%s", status & 0x40 ? "BE SUSPEND:" : "BE RUN/FINISH:");
33 msg_cdbg("%s", status & 0x20 ? "BE ERROR:" : "BE OK:");
34 msg_cdbg("%s", status & 0x10 ? "PROG ERR:" : "PROG OK:");
35 msg_cdbg("%s", status & 0x8 ? "VP ERR:" : "VPP OK:");
36 msg_cdbg("%s", status & 0x4 ? "PROG SUSPEND:" : "PROG RUN/FINISH:");
37 msg_cdbg("%s", status & 0x2 ? "WP|TBL#|WP#,ABORT:" : "UNLOCK:");
Carl-Daniel Hailfingere7bcb192008-03-14 00:02:25 +000038}
39
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +000040int probe_82802ab(struct flashctx *flash)
Carl-Daniel Hailfingere7bcb192008-03-14 00:02:25 +000041{
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +000042 chipaddr bios = flash->virtual_memory;
Uwe Hermann91f4afa2011-07-28 08:13:25 +000043 uint8_t id1, id2, flashcontent1, flashcontent2;
Carl-Daniel Hailfingera8cf3622014-08-08 08:33:01 +000044 int shifted = (flash->chip->feature_bits & FEATURE_ADDR_SHIFTED) ? 1 : 0;
Carl-Daniel Hailfingere7bcb192008-03-14 00:02:25 +000045
Carl-Daniel Hailfinger4e9cebb2009-09-05 01:16:30 +000046 /* Reset to get a clean state */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000047 chip_writeb(flash, 0xFF, bios);
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +000048 programmer_delay(10);
Carl-Daniel Hailfinger4e9cebb2009-09-05 01:16:30 +000049
50 /* Enter ID mode */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000051 chip_writeb(flash, 0x90, bios);
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +000052 programmer_delay(10);
Carl-Daniel Hailfingere7bcb192008-03-14 00:02:25 +000053
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000054 id1 = chip_readb(flash, bios + (0x00 << shifted));
55 id2 = chip_readb(flash, bios + (0x01 << shifted));
Carl-Daniel Hailfingere7bcb192008-03-14 00:02:25 +000056
57 /* Leave ID mode */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000058 chip_writeb(flash, 0xFF, bios);
Carl-Daniel Hailfingere7bcb192008-03-14 00:02:25 +000059
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +000060 programmer_delay(10);
Carl-Daniel Hailfingere7bcb192008-03-14 00:02:25 +000061
Sean Nelsoned479d22010-03-24 23:14:32 +000062 msg_cdbg("%s: id1 0x%02x, id2 0x%02x", __func__, id1, id2);
Carl-Daniel Hailfingere7bcb192008-03-14 00:02:25 +000063
Carl-Daniel Hailfinger12aa0be2010-03-22 23:47:38 +000064 if (!oddparity(id1))
Sean Nelsoned479d22010-03-24 23:14:32 +000065 msg_cdbg(", id1 parity violation");
Carl-Daniel Hailfinger12aa0be2010-03-22 23:47:38 +000066
Uwe Hermann91f4afa2011-07-28 08:13:25 +000067 /*
68 * Read the product ID location again. We should now see normal
69 * flash contents.
70 */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000071 flashcontent1 = chip_readb(flash, bios + (0x00 << shifted));
72 flashcontent2 = chip_readb(flash, bios + (0x01 << shifted));
Carl-Daniel Hailfinger12aa0be2010-03-22 23:47:38 +000073
74 if (id1 == flashcontent1)
Sean Nelsoned479d22010-03-24 23:14:32 +000075 msg_cdbg(", id1 is normal flash content");
Carl-Daniel Hailfinger12aa0be2010-03-22 23:47:38 +000076 if (id2 == flashcontent2)
Sean Nelsoned479d22010-03-24 23:14:32 +000077 msg_cdbg(", id2 is normal flash content");
Carl-Daniel Hailfinger12aa0be2010-03-22 23:47:38 +000078
Sean Nelsoned479d22010-03-24 23:14:32 +000079 msg_cdbg("\n");
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +000080 if (id1 != flash->chip->manufacture_id || id2 != flash->chip->model_id)
Carl-Daniel Hailfingere7bcb192008-03-14 00:02:25 +000081 return 0;
82
Carl-Daniel Hailfingere7bcb192008-03-14 00:02:25 +000083 return 1;
84}
85
Stefan Tauner4404f732013-09-12 08:28:56 +000086/* FIXME: needs timeout */
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +000087uint8_t wait_82802ab(struct flashctx *flash)
Carl-Daniel Hailfingere7bcb192008-03-14 00:02:25 +000088{
89 uint8_t status;
Carl-Daniel Hailfingerb30a5ed2010-10-10 14:02:27 +000090 chipaddr bios = flash->virtual_memory;
Carl-Daniel Hailfingere7bcb192008-03-14 00:02:25 +000091
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000092 chip_writeb(flash, 0x70, bios);
Angel Pons68c32db2020-01-31 11:16:42 +010093
94 while ((chip_readb(flash, bios) & 0x80) == 0) // it's busy
95 ;
Carl-Daniel Hailfingere7bcb192008-03-14 00:02:25 +000096
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000097 status = chip_readb(flash, bios);
Carl-Daniel Hailfingere7bcb192008-03-14 00:02:25 +000098
Carl-Daniel Hailfinger4e9cebb2009-09-05 01:16:30 +000099 /* Reset to get a clean state */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000100 chip_writeb(flash, 0xFF, bios);
Carl-Daniel Hailfingere7bcb192008-03-14 00:02:25 +0000101
102 return status;
103}
104
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000105int erase_block_82802ab(struct flashctx *flash, unsigned int page,
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000106 unsigned int pagesize)
Carl-Daniel Hailfingere7bcb192008-03-14 00:02:25 +0000107{
Sean Nelson54596372010-01-09 05:30:14 +0000108 chipaddr bios = flash->virtual_memory;
Carl-Daniel Hailfingere7bcb192008-03-14 00:02:25 +0000109 uint8_t status;
110
111 // clear status register
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000112 chip_writeb(flash, 0x50, bios + page);
Stefan Reinauerab044b22009-09-16 08:26:59 +0000113
Carl-Daniel Hailfingere7bcb192008-03-14 00:02:25 +0000114 // now start it
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000115 chip_writeb(flash, 0x20, bios + page);
116 chip_writeb(flash, 0xd0, bios + page);
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000117 programmer_delay(10);
Stefan Reinauerab044b22009-09-16 08:26:59 +0000118
Carl-Daniel Hailfingere7bcb192008-03-14 00:02:25 +0000119 // now let's see what the register is
Carl-Daniel Hailfingerb30a5ed2010-10-10 14:02:27 +0000120 status = wait_82802ab(flash);
Sean Nelson28accc22010-03-19 18:47:06 +0000121 print_status_82802ab(status);
Stefan Reinauerab044b22009-09-16 08:26:59 +0000122
Carl-Daniel Hailfingerb4061f62011-06-26 17:04:16 +0000123 /* FIXME: Check the status register for errors. */
Carl-Daniel Hailfingere7bcb192008-03-14 00:02:25 +0000124 return 0;
125}
126
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +0000127/* chunksize is 1 */
Mark Marshallf20b7be2014-05-09 21:16:21 +0000128int write_82802ab(struct flashctx *flash, const uint8_t *src, unsigned int start, unsigned int len)
Carl-Daniel Hailfingere7bcb192008-03-14 00:02:25 +0000129{
Nico Huber519be662018-12-23 20:03:35 +0100130 unsigned int i;
Carl-Daniel Hailfingerb30a5ed2010-10-10 14:02:27 +0000131 chipaddr dst = flash->virtual_memory + start;
Carl-Daniel Hailfingere7bcb192008-03-14 00:02:25 +0000132
Carl-Daniel Hailfingerb30a5ed2010-10-10 14:02:27 +0000133 for (i = 0; i < len; i++) {
Carl-Daniel Hailfingere7bcb192008-03-14 00:02:25 +0000134 /* transfer data from source to destination */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000135 chip_writeb(flash, 0x40, dst);
136 chip_writeb(flash, *src++, dst++);
Carl-Daniel Hailfingerb30a5ed2010-10-10 14:02:27 +0000137 wait_82802ab(flash);
Richard Hughes842d6782021-01-15 09:48:12 +0000138 flashprog_progress_add(flash, 1);
Carl-Daniel Hailfingere7bcb192008-03-14 00:02:25 +0000139 }
Carl-Daniel Hailfingerb30a5ed2010-10-10 14:02:27 +0000140
141 /* FIXME: Ignore errors for now. */
142 return 0;
Carl-Daniel Hailfingere7bcb192008-03-14 00:02:25 +0000143}
144
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000145int unlock_28f004s5(struct flashctx *flash)
Sean Nelsondee4a832010-03-22 04:39:31 +0000146{
147 chipaddr bios = flash->virtual_memory;
Felix Singer2e003a02022-08-19 02:36:28 +0200148 uint8_t mcfg, bcfg;
149 bool need_unlock = false, can_unlock = false;
Nico Huber519be662018-12-23 20:03:35 +0100150 unsigned int i;
Sean Nelsondee4a832010-03-22 04:39:31 +0000151
152 /* Clear status register */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000153 chip_writeb(flash, 0x50, bios);
Sean Nelsondee4a832010-03-22 04:39:31 +0000154
155 /* Read identifier codes */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000156 chip_writeb(flash, 0x90, bios);
Sean Nelsondee4a832010-03-22 04:39:31 +0000157
158 /* Read master lock-bit */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000159 mcfg = chip_readb(flash, bios + 0x3);
Sean Nelsoned479d22010-03-24 23:14:32 +0000160 msg_cdbg("master lock is ");
Sean Nelsondee4a832010-03-22 04:39:31 +0000161 if (mcfg) {
162 msg_cdbg("locked!\n");
163 } else {
164 msg_cdbg("unlocked!\n");
Felix Singer2e003a02022-08-19 02:36:28 +0200165 can_unlock = true;
Sean Nelsondee4a832010-03-22 04:39:31 +0000166 }
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000167
Sean Nelsondee4a832010-03-22 04:39:31 +0000168 /* Read block lock-bits */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000169 for (i = 0; i < flash->chip->total_size * 1024; i+= (64 * 1024)) {
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000170 bcfg = chip_readb(flash, bios + i + 2); // read block lock config
Sean Nelsondee4a832010-03-22 04:39:31 +0000171 msg_cdbg("block lock at %06x is %slocked!\n", i, bcfg ? "" : "un");
172 if (bcfg) {
Felix Singer2e003a02022-08-19 02:36:28 +0200173 need_unlock = true;
Sean Nelsondee4a832010-03-22 04:39:31 +0000174 }
175 }
176
177 /* Reset chip */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000178 chip_writeb(flash, 0xFF, bios);
Sean Nelsondee4a832010-03-22 04:39:31 +0000179
180 /* Unlock: clear block lock-bits, if needed */
181 if (can_unlock && need_unlock) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000182 msg_cdbg("Unlock: ");
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000183 chip_writeb(flash, 0x60, bios);
184 chip_writeb(flash, 0xD0, bios);
185 chip_writeb(flash, 0xFF, bios);
Sean Nelsoned479d22010-03-24 23:14:32 +0000186 msg_cdbg("Done!\n");
Sean Nelsondee4a832010-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}
Mattias Mattssonfca3b012011-08-25 22:44:11 +0000197
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000198int unlock_lh28f008bjt(struct flashctx *flash)
Mattias Mattssonfca3b012011-08-25 22:44:11 +0000199{
200 chipaddr bios = flash->virtual_memory;
201 uint8_t mcfg, bcfg;
Felix Singer2e003a02022-08-19 02:36:28 +0200202 bool need_unlock = false, can_unlock = false;
Nico Huber519be662018-12-23 20:03:35 +0100203 unsigned int i;
Mattias Mattssonfca3b012011-08-25 22:44:11 +0000204
205 /* Wait if chip is busy */
206 wait_82802ab(flash);
207
208 /* Read identifier codes */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000209 chip_writeb(flash, 0x90, bios);
Mattias Mattssonfca3b012011-08-25 22:44:11 +0000210
211 /* Read master lock-bit */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000212 mcfg = chip_readb(flash, bios + 0x3);
Mattias Mattssonfca3b012011-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");
Felix Singer2e003a02022-08-19 02:36:28 +0200218 can_unlock = true;
Mattias Mattssonfca3b012011-08-25 22:44:11 +0000219 }
220
221 /* Read block lock-bits, 8 * 8 KB + 15 * 64 KB */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000222 for (i = 0; i < flash->chip->total_size * 1024;
Mattias Mattssonfca3b012011-08-25 22:44:11 +0000223 i += (i >= (64 * 1024) ? 64 * 1024 : 8 * 1024)) {
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000224 bcfg = chip_readb(flash, bios + i + 2); /* read block lock config */
Mattias Mattssonfca3b012011-08-25 22:44:11 +0000225 msg_cdbg("block lock at %06x is %slocked!\n", i,
226 bcfg ? "" : "un");
227 if (bcfg)
Felix Singer2e003a02022-08-19 02:36:28 +0200228 need_unlock = true;
Mattias Mattssonfca3b012011-08-25 22:44:11 +0000229 }
230
231 /* Reset chip */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000232 chip_writeb(flash, 0xFF, bios);
Mattias Mattssonfca3b012011-08-25 22:44:11 +0000233
234 /* Unlock: clear block lock-bits, if needed */
235 if (can_unlock && need_unlock) {
236 msg_cdbg("Unlock: ");
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000237 chip_writeb(flash, 0x60, bios);
238 chip_writeb(flash, 0xD0, bios);
239 chip_writeb(flash, 0xFF, bios);
Mattias Mattssonfca3b012011-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}