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 | |
Claus Gindhart | ef30023 | 2008-04-24 09:07:57 +0000 | [diff] [blame] | 29 | #include <string.h> |
Carl-Daniel Hailfinger | 0bd2a2b | 2009-06-05 18:32:07 +0000 | [diff] [blame] | 30 | #include <stdlib.h> |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 31 | #include "flash.h" |
Sean Nelson | 14ba668 | 2010-02-26 05:48:29 +0000 | [diff] [blame] | 32 | #include "chipdrivers.h" |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 33 | |
| 34 | // I need that Berkeley bit-map printer |
Sean Nelson | 28accc2 | 2010-03-19 18:47:06 +0000 | [diff] [blame] | 35 | void print_status_82802ab(uint8_t status) |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 36 | { |
Stefan Reinauer | ab044b2 | 2009-09-16 08:26:59 +0000 | [diff] [blame] | 37 | printf_debug("%s", status & 0x80 ? "Ready:" : "Busy:"); |
| 38 | printf_debug("%s", status & 0x40 ? "BE SUSPEND:" : "BE RUN/FINISH:"); |
| 39 | printf_debug("%s", status & 0x20 ? "BE ERROR:" : "BE OK:"); |
| 40 | printf_debug("%s", status & 0x10 ? "PROG ERR:" : "PROG OK:"); |
| 41 | printf_debug("%s", status & 0x8 ? "VP ERR:" : "VPP OK:"); |
| 42 | printf_debug("%s", status & 0x4 ? "PROG SUSPEND:" : "PROG RUN/FINISH:"); |
| 43 | printf_debug("%s", status & 0x2 ? "WP|TBL#|WP#,ABORT:" : "UNLOCK:"); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | int probe_82802ab(struct flashchip *flash) |
| 47 | { |
Carl-Daniel Hailfinger | 5820f42 | 2009-05-16 21:22:56 +0000 | [diff] [blame] | 48 | chipaddr bios = flash->virtual_memory; |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 49 | uint8_t id1, id2; |
Carl-Daniel Hailfinger | 12aa0be | 2010-03-22 23:47:38 +0000 | [diff] [blame] | 50 | uint8_t flashcontent1, flashcontent2; |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 51 | |
Carl-Daniel Hailfinger | 4e9cebb | 2009-09-05 01:16:30 +0000 | [diff] [blame] | 52 | /* Reset to get a clean state */ |
| 53 | chip_writeb(0xFF, bios); |
Carl-Daniel Hailfinger | ca8bfc6 | 2009-06-05 17:48:08 +0000 | [diff] [blame] | 54 | programmer_delay(10); |
Carl-Daniel Hailfinger | 4e9cebb | 2009-09-05 01:16:30 +0000 | [diff] [blame] | 55 | |
| 56 | /* Enter ID mode */ |
Carl-Daniel Hailfinger | 0472f3d | 2009-03-06 22:26:00 +0000 | [diff] [blame] | 57 | chip_writeb(0x90, bios); |
Carl-Daniel Hailfinger | ca8bfc6 | 2009-06-05 17:48:08 +0000 | [diff] [blame] | 58 | programmer_delay(10); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 59 | |
Carl-Daniel Hailfinger | 0472f3d | 2009-03-06 22:26:00 +0000 | [diff] [blame] | 60 | id1 = chip_readb(bios); |
| 61 | id2 = chip_readb(bios + 0x01); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 62 | |
| 63 | /* Leave ID mode */ |
Carl-Daniel Hailfinger | 4e9cebb | 2009-09-05 01:16:30 +0000 | [diff] [blame] | 64 | chip_writeb(0xFF, bios); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 65 | |
Carl-Daniel Hailfinger | ca8bfc6 | 2009-06-05 17:48:08 +0000 | [diff] [blame] | 66 | programmer_delay(10); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 67 | |
Carl-Daniel Hailfinger | 12aa0be | 2010-03-22 23:47:38 +0000 | [diff] [blame] | 68 | printf_debug("%s: id1 0x%02x, id2 0x%02x", __func__, id1, id2); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 69 | |
Carl-Daniel Hailfinger | 12aa0be | 2010-03-22 23:47:38 +0000 | [diff] [blame] | 70 | if (!oddparity(id1)) |
| 71 | printf_debug(", id1 parity violation"); |
| 72 | |
| 73 | /* Read the product ID location again. We should now see normal flash contents. */ |
| 74 | flashcontent1 = chip_readb(bios); |
| 75 | flashcontent2 = chip_readb(bios + 0x01); |
| 76 | |
| 77 | if (id1 == flashcontent1) |
| 78 | printf_debug(", id1 is normal flash content"); |
| 79 | if (id2 == flashcontent2) |
| 80 | printf_debug(", id2 is normal flash content"); |
| 81 | |
| 82 | printf_debug("\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 | 5820f42 | 2009-05-16 21:22:56 +0000 | [diff] [blame] | 92 | uint8_t wait_82802ab(chipaddr bios) |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 93 | { |
| 94 | uint8_t status; |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 95 | |
Carl-Daniel Hailfinger | 0472f3d | 2009-03-06 22:26:00 +0000 | [diff] [blame] | 96 | chip_writeb(0x70, bios); |
| 97 | if ((chip_readb(bios) & 0x80) == 0) { // it's busy |
| 98 | while ((chip_readb(bios) & 0x80) == 0) ; |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 99 | } |
| 100 | |
Carl-Daniel Hailfinger | 0472f3d | 2009-03-06 22:26:00 +0000 | [diff] [blame] | 101 | status = chip_readb(bios); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 102 | |
Carl-Daniel Hailfinger | 4e9cebb | 2009-09-05 01:16:30 +0000 | [diff] [blame] | 103 | /* Reset to get a clean state */ |
| 104 | chip_writeb(0xFF, bios); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 105 | |
| 106 | return status; |
| 107 | } |
| 108 | |
Sean Nelson | 28accc2 | 2010-03-19 18:47:06 +0000 | [diff] [blame] | 109 | int unlock_82802ab(struct flashchip *flash) |
| 110 | { |
| 111 | int i; |
| 112 | //chipaddr wrprotect = flash->virtual_registers + page + 2; |
| 113 | |
Sean Nelson | 4631319 | 2010-03-20 15:15:36 +0000 | [diff] [blame] | 114 | for (i = 0; i < flash->total_size * 1024; i+= flash->page_size) |
Sean Nelson | 28accc2 | 2010-03-19 18:47:06 +0000 | [diff] [blame] | 115 | { |
| 116 | chip_writeb(0, flash->virtual_registers + i + 2); |
| 117 | } |
| 118 | |
| 119 | return 0; |
| 120 | } |
| 121 | |
| 122 | int erase_block_82802ab(struct flashchip *flash, unsigned int page, 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 |
Sean Nelson | 5459637 | 2010-01-09 05:30:14 +0000 | [diff] [blame] | 136 | status = wait_82802ab(bios); |
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 | |
Sean Nelson | 5459637 | 2010-01-09 05:30:14 +0000 | [diff] [blame] | 139 | if (check_erased_range(flash, page, pagesize)) { |
Carl-Daniel Hailfinger | 30f7cb2 | 2009-06-15 17:23:36 +0000 | [diff] [blame] | 140 | fprintf(stderr, "ERASE FAILED!\n"); |
| 141 | return -1; |
Claus Gindhart | ef30023 | 2008-04-24 09:07:57 +0000 | [diff] [blame] | 142 | } |
Sean Nelson | 5459637 | 2010-01-09 05:30:14 +0000 | [diff] [blame] | 143 | printf("DONE BLOCK 0x%x\n", page); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 144 | |
| 145 | return 0; |
| 146 | } |
| 147 | |
| 148 | int erase_82802ab(struct flashchip *flash) |
| 149 | { |
| 150 | int i; |
| 151 | unsigned int total_size = flash->total_size * 1024; |
| 152 | |
| 153 | printf("total_size is %d; flash->page_size is %d\n", |
| 154 | total_size, flash->page_size); |
| 155 | for (i = 0; i < total_size; i += flash->page_size) |
Sean Nelson | 28accc2 | 2010-03-19 18:47:06 +0000 | [diff] [blame] | 156 | if (erase_block_82802ab(flash, i, flash->page_size)) { |
Carl-Daniel Hailfinger | 30f7cb2 | 2009-06-15 17:23:36 +0000 | [diff] [blame] | 157 | fprintf(stderr, "ERASE FAILED!\n"); |
| 158 | return -1; |
| 159 | } |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 160 | printf("DONE ERASE\n"); |
| 161 | |
| 162 | return 0; |
| 163 | } |
| 164 | |
Carl-Daniel Hailfinger | 5820f42 | 2009-05-16 21:22:56 +0000 | [diff] [blame] | 165 | void write_page_82802ab(chipaddr bios, uint8_t *src, |
| 166 | chipaddr dst, int page_size) |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 167 | { |
| 168 | int i; |
| 169 | |
| 170 | for (i = 0; i < page_size; i++) { |
| 171 | /* transfer data from source to destination */ |
Carl-Daniel Hailfinger | 0472f3d | 2009-03-06 22:26:00 +0000 | [diff] [blame] | 172 | chip_writeb(0x40, dst); |
| 173 | chip_writeb(*src++, dst++); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 174 | wait_82802ab(bios); |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | int write_82802ab(struct flashchip *flash, uint8_t *buf) |
| 179 | { |
| 180 | int i; |
| 181 | int total_size = flash->total_size * 1024; |
| 182 | int page_size = flash->page_size; |
Carl-Daniel Hailfinger | 5820f42 | 2009-05-16 21:22:56 +0000 | [diff] [blame] | 183 | chipaddr bios = flash->virtual_memory; |
Carl-Daniel Hailfinger | 0bd2a2b | 2009-06-05 18:32:07 +0000 | [diff] [blame] | 184 | uint8_t *tmpbuf = malloc(page_size); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 185 | |
Carl-Daniel Hailfinger | 0bd2a2b | 2009-06-05 18:32:07 +0000 | [diff] [blame] | 186 | if (!tmpbuf) { |
| 187 | printf("Could not allocate memory!\n"); |
| 188 | exit(1); |
| 189 | } |
Claus Gindhart | ef30023 | 2008-04-24 09:07:57 +0000 | [diff] [blame] | 190 | printf("Programming page: \n"); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 191 | for (i = 0; i < total_size / page_size; i++) { |
Claus Gindhart | ef30023 | 2008-04-24 09:07:57 +0000 | [diff] [blame] | 192 | printf |
| 193 | ("\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b"); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 194 | printf("%04d at address: 0x%08x", i, i * page_size); |
Claus Gindhart | ef30023 | 2008-04-24 09:07:57 +0000 | [diff] [blame] | 195 | |
| 196 | /* Auto Skip Blocks, which already contain the desired data |
| 197 | * Faster, because we only write, what has changed |
| 198 | * More secure, because blocks, which are excluded |
| 199 | * (with the exclude or layout feature) |
| 200 | * or not erased and rewritten; their data is retained also in |
| 201 | * sudden power off situations |
| 202 | */ |
Carl-Daniel Hailfinger | 0bd2a2b | 2009-06-05 18:32:07 +0000 | [diff] [blame] | 203 | chip_readn(tmpbuf, bios + i * page_size, page_size); |
| 204 | if (!memcmp((void *)(buf + i * page_size), tmpbuf, page_size)) { |
Claus Gindhart | ef30023 | 2008-04-24 09:07:57 +0000 | [diff] [blame] | 205 | printf("SKIPPED\n"); |
| 206 | continue; |
| 207 | } |
| 208 | |
| 209 | /* erase block by block and write block by block; this is the most secure way */ |
Sean Nelson | 28accc2 | 2010-03-19 18:47:06 +0000 | [diff] [blame] | 210 | if (erase_block_82802ab(flash, i * page_size, page_size)) { |
Carl-Daniel Hailfinger | 30f7cb2 | 2009-06-15 17:23:36 +0000 | [diff] [blame] | 211 | fprintf(stderr, "ERASE FAILED!\n"); |
| 212 | return -1; |
| 213 | } |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 214 | write_page_82802ab(bios, buf + i * page_size, |
| 215 | bios + i * page_size, page_size); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 216 | } |
| 217 | printf("\n"); |
Carl-Daniel Hailfinger | 0bd2a2b | 2009-06-05 18:32:07 +0000 | [diff] [blame] | 218 | free(tmpbuf); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 219 | |
| 220 | return 0; |
| 221 | } |
Sean Nelson | dee4a83 | 2010-03-22 04:39:31 +0000 | [diff] [blame] | 222 | |
Sean Nelson | 8864710 | 2010-03-22 06:57:02 +0000 | [diff] [blame] | 223 | int unlock_28f004s5(struct flashchip *flash) |
Sean Nelson | dee4a83 | 2010-03-22 04:39:31 +0000 | [diff] [blame] | 224 | { |
| 225 | chipaddr bios = flash->virtual_memory; |
Sean Nelson | 4e54de9 | 2010-03-22 07:03:26 +0000 | [diff] [blame] | 226 | uint8_t mcfg, bcfg, need_unlock = 0, can_unlock = 0; |
| 227 | int i; |
Sean Nelson | dee4a83 | 2010-03-22 04:39:31 +0000 | [diff] [blame] | 228 | |
| 229 | /* Clear status register */ |
| 230 | chip_writeb(0x50, bios); |
| 231 | |
| 232 | /* Read identifier codes */ |
| 233 | chip_writeb(0x90, bios); |
| 234 | |
| 235 | /* Read master lock-bit */ |
| 236 | mcfg = chip_readb(bios + 0x3); |
| 237 | msg_cinfo("master lock is "); |
| 238 | if (mcfg) { |
| 239 | msg_cdbg("locked!\n"); |
| 240 | } else { |
| 241 | msg_cdbg("unlocked!\n"); |
| 242 | can_unlock = 1; |
| 243 | } |
| 244 | |
| 245 | /* Read block lock-bits */ |
| 246 | for (i = 0; i < flash->total_size * 1024; i+= (64 * 1024)) { |
| 247 | bcfg = chip_readb(bios + i + 2); // read block lock config |
| 248 | msg_cdbg("block lock at %06x is %slocked!\n", i, bcfg ? "" : "un"); |
| 249 | if (bcfg) { |
| 250 | need_unlock = 1; |
| 251 | } |
| 252 | } |
| 253 | |
| 254 | /* Reset chip */ |
| 255 | chip_writeb(0xFF, bios); |
| 256 | |
| 257 | /* Unlock: clear block lock-bits, if needed */ |
| 258 | if (can_unlock && need_unlock) { |
| 259 | chip_writeb(0x60, bios); |
| 260 | chip_writeb(0xD0, bios); |
| 261 | chip_writeb(0xFF, bios); |
| 262 | } |
| 263 | |
| 264 | /* Error: master locked or a block is locked */ |
| 265 | if (!can_unlock && need_unlock) { |
| 266 | msg_cerr("At least one block is locked and lockdown is active!\n"); |
| 267 | return -1; |
| 268 | } |
| 269 | |
| 270 | return 0; |
| 271 | } |