blob: a348347395e33d87950318da66637d6c862dd2c9 [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);
Carl-Daniel Hailfingere7bcb192008-03-14 00:02:25 +0000138 }
Carl-Daniel Hailfingerb30a5ed2010-10-10 14:02:27 +0000139
140 /* FIXME: Ignore errors for now. */
141 return 0;
Carl-Daniel Hailfingere7bcb192008-03-14 00:02:25 +0000142}
143
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000144int unlock_28f004s5(struct flashctx *flash)
Sean Nelsondee4a832010-03-22 04:39:31 +0000145{
146 chipaddr bios = flash->virtual_memory;
Felix Singer2e003a02022-08-19 02:36:28 +0200147 uint8_t mcfg, bcfg;
148 bool need_unlock = false, can_unlock = false;
Nico Huber519be662018-12-23 20:03:35 +0100149 unsigned int i;
Sean Nelsondee4a832010-03-22 04:39:31 +0000150
151 /* Clear status register */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000152 chip_writeb(flash, 0x50, bios);
Sean Nelsondee4a832010-03-22 04:39:31 +0000153
154 /* Read identifier codes */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000155 chip_writeb(flash, 0x90, bios);
Sean Nelsondee4a832010-03-22 04:39:31 +0000156
157 /* Read master lock-bit */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000158 mcfg = chip_readb(flash, bios + 0x3);
Sean Nelsoned479d22010-03-24 23:14:32 +0000159 msg_cdbg("master lock is ");
Sean Nelsondee4a832010-03-22 04:39:31 +0000160 if (mcfg) {
161 msg_cdbg("locked!\n");
162 } else {
163 msg_cdbg("unlocked!\n");
Felix Singer2e003a02022-08-19 02:36:28 +0200164 can_unlock = true;
Sean Nelsondee4a832010-03-22 04:39:31 +0000165 }
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000166
Sean Nelsondee4a832010-03-22 04:39:31 +0000167 /* Read block lock-bits */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000168 for (i = 0; i < flash->chip->total_size * 1024; i+= (64 * 1024)) {
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000169 bcfg = chip_readb(flash, bios + i + 2); // read block lock config
Sean Nelsondee4a832010-03-22 04:39:31 +0000170 msg_cdbg("block lock at %06x is %slocked!\n", i, bcfg ? "" : "un");
171 if (bcfg) {
Felix Singer2e003a02022-08-19 02:36:28 +0200172 need_unlock = true;
Sean Nelsondee4a832010-03-22 04:39:31 +0000173 }
174 }
175
176 /* Reset chip */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000177 chip_writeb(flash, 0xFF, bios);
Sean Nelsondee4a832010-03-22 04:39:31 +0000178
179 /* Unlock: clear block lock-bits, if needed */
180 if (can_unlock && need_unlock) {
Sean Nelsoned479d22010-03-24 23:14:32 +0000181 msg_cdbg("Unlock: ");
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000182 chip_writeb(flash, 0x60, bios);
183 chip_writeb(flash, 0xD0, bios);
184 chip_writeb(flash, 0xFF, bios);
Sean Nelsoned479d22010-03-24 23:14:32 +0000185 msg_cdbg("Done!\n");
Sean Nelsondee4a832010-03-22 04:39:31 +0000186 }
187
188 /* Error: master locked or a block is locked */
189 if (!can_unlock && need_unlock) {
190 msg_cerr("At least one block is locked and lockdown is active!\n");
191 return -1;
192 }
193
194 return 0;
195}
Mattias Mattssonfca3b012011-08-25 22:44:11 +0000196
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000197int unlock_lh28f008bjt(struct flashctx *flash)
Mattias Mattssonfca3b012011-08-25 22:44:11 +0000198{
199 chipaddr bios = flash->virtual_memory;
200 uint8_t mcfg, bcfg;
Felix Singer2e003a02022-08-19 02:36:28 +0200201 bool need_unlock = false, can_unlock = false;
Nico Huber519be662018-12-23 20:03:35 +0100202 unsigned int i;
Mattias Mattssonfca3b012011-08-25 22:44:11 +0000203
204 /* Wait if chip is busy */
205 wait_82802ab(flash);
206
207 /* Read identifier codes */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000208 chip_writeb(flash, 0x90, bios);
Mattias Mattssonfca3b012011-08-25 22:44:11 +0000209
210 /* Read master lock-bit */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000211 mcfg = chip_readb(flash, bios + 0x3);
Mattias Mattssonfca3b012011-08-25 22:44:11 +0000212 msg_cdbg("master lock is ");
213 if (mcfg) {
214 msg_cdbg("locked!\n");
215 } else {
216 msg_cdbg("unlocked!\n");
Felix Singer2e003a02022-08-19 02:36:28 +0200217 can_unlock = true;
Mattias Mattssonfca3b012011-08-25 22:44:11 +0000218 }
219
220 /* Read block lock-bits, 8 * 8 KB + 15 * 64 KB */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000221 for (i = 0; i < flash->chip->total_size * 1024;
Mattias Mattssonfca3b012011-08-25 22:44:11 +0000222 i += (i >= (64 * 1024) ? 64 * 1024 : 8 * 1024)) {
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000223 bcfg = chip_readb(flash, bios + i + 2); /* read block lock config */
Mattias Mattssonfca3b012011-08-25 22:44:11 +0000224 msg_cdbg("block lock at %06x is %slocked!\n", i,
225 bcfg ? "" : "un");
226 if (bcfg)
Felix Singer2e003a02022-08-19 02:36:28 +0200227 need_unlock = true;
Mattias Mattssonfca3b012011-08-25 22:44:11 +0000228 }
229
230 /* Reset chip */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000231 chip_writeb(flash, 0xFF, bios);
Mattias Mattssonfca3b012011-08-25 22:44:11 +0000232
233 /* Unlock: clear block lock-bits, if needed */
234 if (can_unlock && need_unlock) {
235 msg_cdbg("Unlock: ");
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000236 chip_writeb(flash, 0x60, bios);
237 chip_writeb(flash, 0xD0, bios);
238 chip_writeb(flash, 0xFF, bios);
Mattias Mattssonfca3b012011-08-25 22:44:11 +0000239 wait_82802ab(flash);
240 msg_cdbg("Done!\n");
241 }
242
243 /* Error: master locked or a block is locked */
244 if (!can_unlock && need_unlock) {
245 msg_cerr("At least one block is locked and lockdown is active!\n");
246 return -1;
247 }
248
249 return 0;
250}