Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 1 | /* |
| 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. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 19 | */ |
| 20 | |
| 21 | /* |
| 22 | * Datasheet: |
| 23 | * - Name: Intel 82802AB/82802AC Firmware Hub (FWH) |
| 24 | * - URL: http://www.intel.com/design/chipsets/datashts/290658.htm |
| 25 | * - PDF: http://download.intel.com/design/chipsets/datashts/29065804.pdf |
| 26 | * - Order number: 290658-004 |
| 27 | */ |
| 28 | |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 29 | #include "flash.h" |
Sean Nelson | 14ba668 | 2010-02-26 05:48:29 +0000 | [diff] [blame] | 30 | #include "chipdrivers.h" |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 31 | |
Sean Nelson | 28accc2 | 2010-03-19 18:47:06 +0000 | [diff] [blame] | 32 | void print_status_82802ab(uint8_t status) |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 33 | { |
Sean Nelson | ed479d2 | 2010-03-24 23:14:32 +0000 | [diff] [blame] | 34 | msg_cdbg("%s", status & 0x80 ? "Ready:" : "Busy:"); |
| 35 | msg_cdbg("%s", status & 0x40 ? "BE SUSPEND:" : "BE RUN/FINISH:"); |
| 36 | msg_cdbg("%s", status & 0x20 ? "BE ERROR:" : "BE OK:"); |
| 37 | msg_cdbg("%s", status & 0x10 ? "PROG ERR:" : "PROG OK:"); |
| 38 | msg_cdbg("%s", status & 0x8 ? "VP ERR:" : "VPP OK:"); |
| 39 | msg_cdbg("%s", status & 0x4 ? "PROG SUSPEND:" : "PROG RUN/FINISH:"); |
| 40 | msg_cdbg("%s", status & 0x2 ? "WP|TBL#|WP#,ABORT:" : "UNLOCK:"); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 41 | } |
| 42 | |
| 43 | int probe_82802ab(struct flashchip *flash) |
| 44 | { |
Carl-Daniel Hailfinger | 5820f42 | 2009-05-16 21:22:56 +0000 | [diff] [blame] | 45 | chipaddr bios = flash->virtual_memory; |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 46 | uint8_t id1, id2, flashcontent1, flashcontent2; |
Michael Karcher | ad0010a | 2010-04-03 10:27:08 +0000 | [diff] [blame] | 47 | int shifted = (flash->feature_bits & FEATURE_ADDR_SHIFTED) != 0; |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 48 | |
Carl-Daniel Hailfinger | 4e9cebb | 2009-09-05 01:16:30 +0000 | [diff] [blame] | 49 | /* Reset to get a clean state */ |
| 50 | chip_writeb(0xFF, bios); |
Carl-Daniel Hailfinger | ca8bfc6 | 2009-06-05 17:48:08 +0000 | [diff] [blame] | 51 | programmer_delay(10); |
Carl-Daniel Hailfinger | 4e9cebb | 2009-09-05 01:16:30 +0000 | [diff] [blame] | 52 | |
| 53 | /* Enter ID mode */ |
Carl-Daniel Hailfinger | 0472f3d | 2009-03-06 22:26:00 +0000 | [diff] [blame] | 54 | chip_writeb(0x90, bios); |
Carl-Daniel Hailfinger | ca8bfc6 | 2009-06-05 17:48:08 +0000 | [diff] [blame] | 55 | programmer_delay(10); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 56 | |
Michael Karcher | ad0010a | 2010-04-03 10:27:08 +0000 | [diff] [blame] | 57 | id1 = chip_readb(bios + (0x00 << shifted)); |
| 58 | id2 = chip_readb(bios + (0x01 << shifted)); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 59 | |
| 60 | /* Leave ID mode */ |
Carl-Daniel Hailfinger | 4e9cebb | 2009-09-05 01:16:30 +0000 | [diff] [blame] | 61 | chip_writeb(0xFF, bios); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 62 | |
Carl-Daniel Hailfinger | ca8bfc6 | 2009-06-05 17:48:08 +0000 | [diff] [blame] | 63 | programmer_delay(10); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 64 | |
Sean Nelson | ed479d2 | 2010-03-24 23:14:32 +0000 | [diff] [blame] | 65 | msg_cdbg("%s: id1 0x%02x, id2 0x%02x", __func__, id1, id2); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 66 | |
Carl-Daniel Hailfinger | 12aa0be | 2010-03-22 23:47:38 +0000 | [diff] [blame] | 67 | if (!oddparity(id1)) |
Sean Nelson | ed479d2 | 2010-03-24 23:14:32 +0000 | [diff] [blame] | 68 | msg_cdbg(", id1 parity violation"); |
Carl-Daniel Hailfinger | 12aa0be | 2010-03-22 23:47:38 +0000 | [diff] [blame] | 69 | |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 70 | /* |
| 71 | * Read the product ID location again. We should now see normal |
| 72 | * flash contents. |
| 73 | */ |
Michael Karcher | ad0010a | 2010-04-03 10:27:08 +0000 | [diff] [blame] | 74 | flashcontent1 = chip_readb(bios + (0x00 << shifted)); |
| 75 | flashcontent2 = chip_readb(bios + (0x01 << shifted)); |
Carl-Daniel Hailfinger | 12aa0be | 2010-03-22 23:47:38 +0000 | [diff] [blame] | 76 | |
| 77 | if (id1 == flashcontent1) |
Sean Nelson | ed479d2 | 2010-03-24 23:14:32 +0000 | [diff] [blame] | 78 | msg_cdbg(", id1 is normal flash content"); |
Carl-Daniel Hailfinger | 12aa0be | 2010-03-22 23:47:38 +0000 | [diff] [blame] | 79 | if (id2 == flashcontent2) |
Sean Nelson | ed479d2 | 2010-03-24 23:14:32 +0000 | [diff] [blame] | 80 | msg_cdbg(", id2 is normal flash content"); |
Carl-Daniel Hailfinger | 12aa0be | 2010-03-22 23:47:38 +0000 | [diff] [blame] | 81 | |
Sean Nelson | ed479d2 | 2010-03-24 23:14:32 +0000 | [diff] [blame] | 82 | msg_cdbg("\n"); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 83 | if (id1 != flash->manufacture_id || id2 != flash->model_id) |
| 84 | return 0; |
| 85 | |
Carl-Daniel Hailfinger | 81449a2 | 2010-03-15 03:48:42 +0000 | [diff] [blame] | 86 | if (flash->feature_bits & FEATURE_REGISTERMAP) |
| 87 | map_flash_registers(flash); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 88 | |
| 89 | return 1; |
| 90 | } |
| 91 | |
Carl-Daniel Hailfinger | b30a5ed | 2010-10-10 14:02:27 +0000 | [diff] [blame] | 92 | uint8_t wait_82802ab(struct flashchip *flash) |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 93 | { |
| 94 | uint8_t status; |
Carl-Daniel Hailfinger | b30a5ed | 2010-10-10 14:02:27 +0000 | [diff] [blame] | 95 | chipaddr bios = flash->virtual_memory; |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 96 | |
Carl-Daniel Hailfinger | 0472f3d | 2009-03-06 22:26:00 +0000 | [diff] [blame] | 97 | chip_writeb(0x70, bios); |
| 98 | if ((chip_readb(bios) & 0x80) == 0) { // it's busy |
| 99 | while ((chip_readb(bios) & 0x80) == 0) ; |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 100 | } |
| 101 | |
Carl-Daniel Hailfinger | 0472f3d | 2009-03-06 22:26:00 +0000 | [diff] [blame] | 102 | status = chip_readb(bios); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 103 | |
Carl-Daniel Hailfinger | 4e9cebb | 2009-09-05 01:16:30 +0000 | [diff] [blame] | 104 | /* Reset to get a clean state */ |
| 105 | chip_writeb(0xFF, bios); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 106 | |
| 107 | return status; |
| 108 | } |
| 109 | |
Sean Nelson | 28accc2 | 2010-03-19 18:47:06 +0000 | [diff] [blame] | 110 | int unlock_82802ab(struct flashchip *flash) |
| 111 | { |
| 112 | int i; |
| 113 | //chipaddr wrprotect = flash->virtual_registers + page + 2; |
| 114 | |
Sean Nelson | 4631319 | 2010-03-20 15:15:36 +0000 | [diff] [blame] | 115 | for (i = 0; i < flash->total_size * 1024; i+= flash->page_size) |
Sean Nelson | 28accc2 | 2010-03-19 18:47:06 +0000 | [diff] [blame] | 116 | chip_writeb(0, flash->virtual_registers + i + 2); |
Sean Nelson | 28accc2 | 2010-03-19 18:47:06 +0000 | [diff] [blame] | 117 | |
| 118 | return 0; |
| 119 | } |
| 120 | |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 121 | int erase_block_82802ab(struct flashchip *flash, unsigned int page, |
| 122 | unsigned int pagesize) |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 123 | { |
Sean Nelson | 5459637 | 2010-01-09 05:30:14 +0000 | [diff] [blame] | 124 | chipaddr bios = flash->virtual_memory; |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 125 | uint8_t status; |
| 126 | |
| 127 | // clear status register |
Sean Nelson | 5459637 | 2010-01-09 05:30:14 +0000 | [diff] [blame] | 128 | chip_writeb(0x50, bios + page); |
Stefan Reinauer | ab044b2 | 2009-09-16 08:26:59 +0000 | [diff] [blame] | 129 | |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 130 | // now start it |
Sean Nelson | 5459637 | 2010-01-09 05:30:14 +0000 | [diff] [blame] | 131 | chip_writeb(0x20, bios + page); |
| 132 | chip_writeb(0xd0, bios + page); |
Carl-Daniel Hailfinger | ca8bfc6 | 2009-06-05 17:48:08 +0000 | [diff] [blame] | 133 | programmer_delay(10); |
Stefan Reinauer | ab044b2 | 2009-09-16 08:26:59 +0000 | [diff] [blame] | 134 | |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 135 | // now let's see what the register is |
Carl-Daniel Hailfinger | b30a5ed | 2010-10-10 14:02:27 +0000 | [diff] [blame] | 136 | status = wait_82802ab(flash); |
Sean Nelson | 28accc2 | 2010-03-19 18:47:06 +0000 | [diff] [blame] | 137 | print_status_82802ab(status); |
Stefan Reinauer | ab044b2 | 2009-09-16 08:26:59 +0000 | [diff] [blame] | 138 | |
Carl-Daniel Hailfinger | b4061f6 | 2011-06-26 17:04:16 +0000 | [diff] [blame] | 139 | /* FIXME: Check the status register for errors. */ |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 140 | return 0; |
| 141 | } |
| 142 | |
Carl-Daniel Hailfinger | 75a58f9 | 2010-10-13 22:26:56 +0000 | [diff] [blame] | 143 | /* chunksize is 1 */ |
| 144 | int write_82802ab(struct flashchip *flash, uint8_t *src, int start, int len) |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 145 | { |
| 146 | int i; |
Carl-Daniel Hailfinger | b30a5ed | 2010-10-10 14:02:27 +0000 | [diff] [blame] | 147 | chipaddr dst = flash->virtual_memory + start; |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 148 | |
Carl-Daniel Hailfinger | b30a5ed | 2010-10-10 14:02:27 +0000 | [diff] [blame] | 149 | for (i = 0; i < len; i++) { |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 150 | /* transfer data from source to destination */ |
Carl-Daniel Hailfinger | 0472f3d | 2009-03-06 22:26:00 +0000 | [diff] [blame] | 151 | chip_writeb(0x40, dst); |
| 152 | chip_writeb(*src++, dst++); |
Carl-Daniel Hailfinger | b30a5ed | 2010-10-10 14:02:27 +0000 | [diff] [blame] | 153 | wait_82802ab(flash); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 154 | } |
Carl-Daniel Hailfinger | b30a5ed | 2010-10-10 14:02:27 +0000 | [diff] [blame] | 155 | |
| 156 | /* FIXME: Ignore errors for now. */ |
| 157 | return 0; |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 158 | } |
| 159 | |
Sean Nelson | 8864710 | 2010-03-22 06:57:02 +0000 | [diff] [blame] | 160 | int unlock_28f004s5(struct flashchip *flash) |
Sean Nelson | dee4a83 | 2010-03-22 04:39:31 +0000 | [diff] [blame] | 161 | { |
| 162 | chipaddr bios = flash->virtual_memory; |
Sean Nelson | 4e54de9 | 2010-03-22 07:03:26 +0000 | [diff] [blame] | 163 | uint8_t mcfg, bcfg, need_unlock = 0, can_unlock = 0; |
| 164 | int i; |
Sean Nelson | dee4a83 | 2010-03-22 04:39:31 +0000 | [diff] [blame] | 165 | |
| 166 | /* Clear status register */ |
| 167 | chip_writeb(0x50, bios); |
| 168 | |
| 169 | /* Read identifier codes */ |
| 170 | chip_writeb(0x90, bios); |
| 171 | |
| 172 | /* Read master lock-bit */ |
| 173 | mcfg = chip_readb(bios + 0x3); |
Sean Nelson | ed479d2 | 2010-03-24 23:14:32 +0000 | [diff] [blame] | 174 | msg_cdbg("master lock is "); |
Sean Nelson | dee4a83 | 2010-03-22 04:39:31 +0000 | [diff] [blame] | 175 | if (mcfg) { |
| 176 | msg_cdbg("locked!\n"); |
| 177 | } else { |
| 178 | msg_cdbg("unlocked!\n"); |
| 179 | can_unlock = 1; |
| 180 | } |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 181 | |
Sean Nelson | dee4a83 | 2010-03-22 04:39:31 +0000 | [diff] [blame] | 182 | /* Read block lock-bits */ |
| 183 | for (i = 0; i < flash->total_size * 1024; i+= (64 * 1024)) { |
| 184 | bcfg = chip_readb(bios + i + 2); // read block lock config |
| 185 | msg_cdbg("block lock at %06x is %slocked!\n", i, bcfg ? "" : "un"); |
| 186 | if (bcfg) { |
| 187 | need_unlock = 1; |
| 188 | } |
| 189 | } |
| 190 | |
| 191 | /* Reset chip */ |
| 192 | chip_writeb(0xFF, bios); |
| 193 | |
| 194 | /* Unlock: clear block lock-bits, if needed */ |
| 195 | if (can_unlock && need_unlock) { |
Sean Nelson | ed479d2 | 2010-03-24 23:14:32 +0000 | [diff] [blame] | 196 | msg_cdbg("Unlock: "); |
Sean Nelson | dee4a83 | 2010-03-22 04:39:31 +0000 | [diff] [blame] | 197 | chip_writeb(0x60, bios); |
| 198 | chip_writeb(0xD0, bios); |
| 199 | chip_writeb(0xFF, bios); |
Sean Nelson | ed479d2 | 2010-03-24 23:14:32 +0000 | [diff] [blame] | 200 | msg_cdbg("Done!\n"); |
Sean Nelson | dee4a83 | 2010-03-22 04:39:31 +0000 | [diff] [blame] | 201 | } |
| 202 | |
| 203 | /* Error: master locked or a block is locked */ |
| 204 | if (!can_unlock && need_unlock) { |
| 205 | msg_cerr("At least one block is locked and lockdown is active!\n"); |
| 206 | return -1; |
| 207 | } |
| 208 | |
| 209 | return 0; |
| 210 | } |
Mattias Mattsson | fca3b01 | 2011-08-25 22:44:11 +0000 | [diff] [blame] | 211 | |
| 212 | int unlock_lh28f008bjt(struct flashchip *flash) |
| 213 | { |
| 214 | chipaddr bios = flash->virtual_memory; |
| 215 | uint8_t mcfg, bcfg; |
| 216 | uint8_t need_unlock = 0, can_unlock = 0; |
| 217 | int i; |
| 218 | |
| 219 | /* Wait if chip is busy */ |
| 220 | wait_82802ab(flash); |
| 221 | |
| 222 | /* Read identifier codes */ |
| 223 | chip_writeb(0x90, bios); |
| 224 | |
| 225 | /* Read master lock-bit */ |
| 226 | mcfg = chip_readb(bios + 0x3); |
| 227 | msg_cdbg("master lock is "); |
| 228 | if (mcfg) { |
| 229 | msg_cdbg("locked!\n"); |
| 230 | } else { |
| 231 | msg_cdbg("unlocked!\n"); |
| 232 | can_unlock = 1; |
| 233 | } |
| 234 | |
| 235 | /* Read block lock-bits, 8 * 8 KB + 15 * 64 KB */ |
| 236 | for (i = 0; i < flash->total_size * 1024; |
| 237 | i += (i >= (64 * 1024) ? 64 * 1024 : 8 * 1024)) { |
| 238 | bcfg = chip_readb(bios + i + 2); /* read block lock config */ |
| 239 | msg_cdbg("block lock at %06x is %slocked!\n", i, |
| 240 | bcfg ? "" : "un"); |
| 241 | if (bcfg) |
| 242 | need_unlock = 1; |
| 243 | } |
| 244 | |
| 245 | /* Reset chip */ |
| 246 | chip_writeb(0xFF, bios); |
| 247 | |
| 248 | /* Unlock: clear block lock-bits, if needed */ |
| 249 | if (can_unlock && need_unlock) { |
| 250 | msg_cdbg("Unlock: "); |
| 251 | chip_writeb(0x60, bios); |
| 252 | chip_writeb(0xD0, bios); |
| 253 | chip_writeb(0xFF, bios); |
| 254 | wait_82802ab(flash); |
| 255 | msg_cdbg("Done!\n"); |
| 256 | } |
| 257 | |
| 258 | /* Error: master locked or a block is locked */ |
| 259 | if (!can_unlock && need_unlock) { |
| 260 | msg_cerr("At least one block is locked and lockdown is active!\n"); |
| 261 | return -1; |
| 262 | } |
| 263 | |
| 264 | return 0; |
| 265 | } |