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" |
| 32 | |
| 33 | // I need that Berkeley bit-map printer |
| 34 | void print_82802ab_status(uint8_t status) |
| 35 | { |
Stefan Reinauer | ab044b2 | 2009-09-16 08:26:59 +0000 | [diff] [blame] | 36 | printf_debug("%s", status & 0x80 ? "Ready:" : "Busy:"); |
| 37 | printf_debug("%s", status & 0x40 ? "BE SUSPEND:" : "BE RUN/FINISH:"); |
| 38 | printf_debug("%s", status & 0x20 ? "BE ERROR:" : "BE OK:"); |
| 39 | printf_debug("%s", status & 0x10 ? "PROG ERR:" : "PROG OK:"); |
| 40 | printf_debug("%s", status & 0x8 ? "VP ERR:" : "VPP OK:"); |
| 41 | printf_debug("%s", status & 0x4 ? "PROG SUSPEND:" : "PROG RUN/FINISH:"); |
| 42 | printf_debug("%s", status & 0x2 ? "WP|TBL#|WP#,ABORT:" : "UNLOCK:"); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 43 | } |
| 44 | |
| 45 | int probe_82802ab(struct flashchip *flash) |
| 46 | { |
Carl-Daniel Hailfinger | 5820f42 | 2009-05-16 21:22:56 +0000 | [diff] [blame] | 47 | chipaddr bios = flash->virtual_memory; |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 48 | uint8_t id1, id2; |
| 49 | |
Carl-Daniel Hailfinger | 4e9cebb | 2009-09-05 01:16:30 +0000 | [diff] [blame] | 50 | /* Reset to get a clean state */ |
| 51 | chip_writeb(0xFF, bios); |
Carl-Daniel Hailfinger | ca8bfc6 | 2009-06-05 17:48:08 +0000 | [diff] [blame] | 52 | programmer_delay(10); |
Carl-Daniel Hailfinger | 4e9cebb | 2009-09-05 01:16:30 +0000 | [diff] [blame] | 53 | |
| 54 | /* Enter ID mode */ |
Carl-Daniel Hailfinger | 0472f3d | 2009-03-06 22:26:00 +0000 | [diff] [blame] | 55 | chip_writeb(0x90, bios); |
Carl-Daniel Hailfinger | ca8bfc6 | 2009-06-05 17:48:08 +0000 | [diff] [blame] | 56 | programmer_delay(10); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 57 | |
Carl-Daniel Hailfinger | 0472f3d | 2009-03-06 22:26:00 +0000 | [diff] [blame] | 58 | id1 = chip_readb(bios); |
| 59 | id2 = chip_readb(bios + 0x01); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 60 | |
| 61 | /* Leave ID mode */ |
Carl-Daniel Hailfinger | 4e9cebb | 2009-09-05 01:16:30 +0000 | [diff] [blame] | 62 | chip_writeb(0xFF, bios); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 63 | |
Carl-Daniel Hailfinger | ca8bfc6 | 2009-06-05 17:48:08 +0000 | [diff] [blame] | 64 | programmer_delay(10); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 65 | |
Uwe Hermann | 04aa59a | 2009-09-02 22:09:00 +0000 | [diff] [blame] | 66 | printf_debug("%s: id1 0x%02x, id2 0x%02x\n", __func__, id1, id2); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 67 | |
| 68 | if (id1 != flash->manufacture_id || id2 != flash->model_id) |
| 69 | return 0; |
| 70 | |
| 71 | map_flash_registers(flash); |
| 72 | |
| 73 | return 1; |
| 74 | } |
| 75 | |
Carl-Daniel Hailfinger | 5820f42 | 2009-05-16 21:22:56 +0000 | [diff] [blame] | 76 | uint8_t wait_82802ab(chipaddr bios) |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 77 | { |
| 78 | uint8_t status; |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 79 | |
Carl-Daniel Hailfinger | 0472f3d | 2009-03-06 22:26:00 +0000 | [diff] [blame] | 80 | chip_writeb(0x70, bios); |
| 81 | if ((chip_readb(bios) & 0x80) == 0) { // it's busy |
| 82 | while ((chip_readb(bios) & 0x80) == 0) ; |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 83 | } |
| 84 | |
Carl-Daniel Hailfinger | 0472f3d | 2009-03-06 22:26:00 +0000 | [diff] [blame] | 85 | status = chip_readb(bios); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 86 | |
Carl-Daniel Hailfinger | 4e9cebb | 2009-09-05 01:16:30 +0000 | [diff] [blame] | 87 | /* Reset to get a clean state */ |
| 88 | chip_writeb(0xFF, bios); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 89 | |
| 90 | return status; |
| 91 | } |
| 92 | |
| 93 | int erase_82802ab_block(struct flashchip *flash, int offset) |
| 94 | { |
Carl-Daniel Hailfinger | 5820f42 | 2009-05-16 21:22:56 +0000 | [diff] [blame] | 95 | chipaddr bios = flash->virtual_memory + offset; |
| 96 | chipaddr wrprotect = flash->virtual_registers + offset + 2; |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 97 | uint8_t status; |
| 98 | |
| 99 | // clear status register |
Carl-Daniel Hailfinger | 0472f3d | 2009-03-06 22:26:00 +0000 | [diff] [blame] | 100 | chip_writeb(0x50, bios); |
Stefan Reinauer | ab044b2 | 2009-09-16 08:26:59 +0000 | [diff] [blame] | 101 | |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 102 | // clear write protect |
Carl-Daniel Hailfinger | 0472f3d | 2009-03-06 22:26:00 +0000 | [diff] [blame] | 103 | chip_writeb(0, wrprotect); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 104 | |
| 105 | // now start it |
Carl-Daniel Hailfinger | 0472f3d | 2009-03-06 22:26:00 +0000 | [diff] [blame] | 106 | chip_writeb(0x20, bios); |
| 107 | chip_writeb(0xd0, bios); |
Carl-Daniel Hailfinger | ca8bfc6 | 2009-06-05 17:48:08 +0000 | [diff] [blame] | 108 | programmer_delay(10); |
Stefan Reinauer | ab044b2 | 2009-09-16 08:26:59 +0000 | [diff] [blame] | 109 | |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 110 | // now let's see what the register is |
| 111 | status = wait_82802ab(flash->virtual_memory); |
Stefan Reinauer | ab044b2 | 2009-09-16 08:26:59 +0000 | [diff] [blame] | 112 | print_82802ab_status(status); |
| 113 | |
Carl-Daniel Hailfinger | 30f7cb2 | 2009-06-15 17:23:36 +0000 | [diff] [blame] | 114 | if (check_erased_range(flash, offset, flash->page_size)) { |
| 115 | fprintf(stderr, "ERASE FAILED!\n"); |
| 116 | return -1; |
Claus Gindhart | ef30023 | 2008-04-24 09:07:57 +0000 | [diff] [blame] | 117 | } |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 118 | printf("DONE BLOCK 0x%x\n", offset); |
| 119 | |
| 120 | return 0; |
| 121 | } |
| 122 | |
| 123 | int erase_82802ab(struct flashchip *flash) |
| 124 | { |
| 125 | int i; |
| 126 | unsigned int total_size = flash->total_size * 1024; |
| 127 | |
| 128 | printf("total_size is %d; flash->page_size is %d\n", |
| 129 | total_size, flash->page_size); |
| 130 | for (i = 0; i < total_size; i += flash->page_size) |
Carl-Daniel Hailfinger | 30f7cb2 | 2009-06-15 17:23:36 +0000 | [diff] [blame] | 131 | if (erase_82802ab_block(flash, i)) { |
| 132 | fprintf(stderr, "ERASE FAILED!\n"); |
| 133 | return -1; |
| 134 | } |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 135 | printf("DONE ERASE\n"); |
| 136 | |
| 137 | return 0; |
| 138 | } |
| 139 | |
Carl-Daniel Hailfinger | 5820f42 | 2009-05-16 21:22:56 +0000 | [diff] [blame] | 140 | void write_page_82802ab(chipaddr bios, uint8_t *src, |
| 141 | chipaddr dst, int page_size) |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 142 | { |
| 143 | int i; |
| 144 | |
| 145 | for (i = 0; i < page_size; i++) { |
| 146 | /* transfer data from source to destination */ |
Carl-Daniel Hailfinger | 0472f3d | 2009-03-06 22:26:00 +0000 | [diff] [blame] | 147 | chip_writeb(0x40, dst); |
| 148 | chip_writeb(*src++, dst++); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 149 | wait_82802ab(bios); |
| 150 | } |
| 151 | } |
| 152 | |
| 153 | int write_82802ab(struct flashchip *flash, uint8_t *buf) |
| 154 | { |
| 155 | int i; |
| 156 | int total_size = flash->total_size * 1024; |
| 157 | int page_size = flash->page_size; |
Carl-Daniel Hailfinger | 5820f42 | 2009-05-16 21:22:56 +0000 | [diff] [blame] | 158 | chipaddr bios = flash->virtual_memory; |
Carl-Daniel Hailfinger | 0bd2a2b | 2009-06-05 18:32:07 +0000 | [diff] [blame] | 159 | uint8_t *tmpbuf = malloc(page_size); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 160 | |
Carl-Daniel Hailfinger | 0bd2a2b | 2009-06-05 18:32:07 +0000 | [diff] [blame] | 161 | if (!tmpbuf) { |
| 162 | printf("Could not allocate memory!\n"); |
| 163 | exit(1); |
| 164 | } |
Claus Gindhart | ef30023 | 2008-04-24 09:07:57 +0000 | [diff] [blame] | 165 | printf("Programming page: \n"); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 166 | for (i = 0; i < total_size / page_size; i++) { |
Claus Gindhart | ef30023 | 2008-04-24 09:07:57 +0000 | [diff] [blame] | 167 | printf |
| 168 | ("\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] | 169 | printf("%04d at address: 0x%08x", i, i * page_size); |
Claus Gindhart | ef30023 | 2008-04-24 09:07:57 +0000 | [diff] [blame] | 170 | |
| 171 | /* Auto Skip Blocks, which already contain the desired data |
| 172 | * Faster, because we only write, what has changed |
| 173 | * More secure, because blocks, which are excluded |
| 174 | * (with the exclude or layout feature) |
| 175 | * or not erased and rewritten; their data is retained also in |
| 176 | * sudden power off situations |
| 177 | */ |
Carl-Daniel Hailfinger | 0bd2a2b | 2009-06-05 18:32:07 +0000 | [diff] [blame] | 178 | chip_readn(tmpbuf, bios + i * page_size, page_size); |
| 179 | if (!memcmp((void *)(buf + i * page_size), tmpbuf, page_size)) { |
Claus Gindhart | ef30023 | 2008-04-24 09:07:57 +0000 | [diff] [blame] | 180 | printf("SKIPPED\n"); |
| 181 | continue; |
| 182 | } |
| 183 | |
| 184 | /* erase block by block and write block by block; this is the most secure way */ |
Carl-Daniel Hailfinger | 30f7cb2 | 2009-06-15 17:23:36 +0000 | [diff] [blame] | 185 | if (erase_82802ab_block(flash, i * page_size)) { |
| 186 | fprintf(stderr, "ERASE FAILED!\n"); |
| 187 | return -1; |
| 188 | } |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 189 | write_page_82802ab(bios, buf + i * page_size, |
| 190 | bios + i * page_size, page_size); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 191 | } |
| 192 | printf("\n"); |
| 193 | protect_jedec(bios); |
Carl-Daniel Hailfinger | 0bd2a2b | 2009-06-05 18:32:07 +0000 | [diff] [blame] | 194 | free(tmpbuf); |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 195 | |
| 196 | return 0; |
| 197 | } |