blob: e63dc10076992d877782385c2dc8e839c17fefc6 [file] [log] [blame]
hailfinger336d3c32008-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.
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
stepan2e0773b2008-04-24 09:07:57 +000029#include <string.h>
hailfinger9d987ef2009-06-05 18:32:07 +000030#include <stdlib.h>
hailfinger336d3c32008-03-14 00:02:25 +000031#include "flash.h"
snelson8913d082010-02-26 05:48:29 +000032#include "chipdrivers.h"
hailfinger336d3c32008-03-14 00:02:25 +000033
34// I need that Berkeley bit-map printer
35void print_82802ab_status(uint8_t status)
36{
stepana5807bf2009-09-16 08:26:59 +000037 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:");
hailfinger336d3c32008-03-14 00:02:25 +000044}
45
46int probe_82802ab(struct flashchip *flash)
47{
hailfinger82719632009-05-16 21:22:56 +000048 chipaddr bios = flash->virtual_memory;
hailfinger336d3c32008-03-14 00:02:25 +000049 uint8_t id1, id2;
50
hailfinger2fc3c402009-09-05 01:16:30 +000051 /* Reset to get a clean state */
52 chip_writeb(0xFF, bios);
hailfingere5829f62009-06-05 17:48:08 +000053 programmer_delay(10);
hailfinger2fc3c402009-09-05 01:16:30 +000054
55 /* Enter ID mode */
hailfinger1ff6e362009-03-06 22:26:00 +000056 chip_writeb(0x90, bios);
hailfingere5829f62009-06-05 17:48:08 +000057 programmer_delay(10);
hailfinger336d3c32008-03-14 00:02:25 +000058
hailfinger1ff6e362009-03-06 22:26:00 +000059 id1 = chip_readb(bios);
60 id2 = chip_readb(bios + 0x01);
hailfinger336d3c32008-03-14 00:02:25 +000061
62 /* Leave ID mode */
hailfinger2fc3c402009-09-05 01:16:30 +000063 chip_writeb(0xFF, bios);
hailfinger336d3c32008-03-14 00:02:25 +000064
hailfingere5829f62009-06-05 17:48:08 +000065 programmer_delay(10);
hailfinger336d3c32008-03-14 00:02:25 +000066
uwe2a414342009-09-02 22:09:00 +000067 printf_debug("%s: id1 0x%02x, id2 0x%02x\n", __func__, id1, id2);
hailfinger336d3c32008-03-14 00:02:25 +000068
69 if (id1 != flash->manufacture_id || id2 != flash->model_id)
70 return 0;
71
72 map_flash_registers(flash);
73
74 return 1;
75}
76
hailfinger82719632009-05-16 21:22:56 +000077uint8_t wait_82802ab(chipaddr bios)
hailfinger336d3c32008-03-14 00:02:25 +000078{
79 uint8_t status;
hailfinger336d3c32008-03-14 00:02:25 +000080
hailfinger1ff6e362009-03-06 22:26:00 +000081 chip_writeb(0x70, bios);
82 if ((chip_readb(bios) & 0x80) == 0) { // it's busy
83 while ((chip_readb(bios) & 0x80) == 0) ;
hailfinger336d3c32008-03-14 00:02:25 +000084 }
85
hailfinger1ff6e362009-03-06 22:26:00 +000086 status = chip_readb(bios);
hailfinger336d3c32008-03-14 00:02:25 +000087
hailfinger2fc3c402009-09-05 01:16:30 +000088 /* Reset to get a clean state */
89 chip_writeb(0xFF, bios);
hailfinger336d3c32008-03-14 00:02:25 +000090
91 return status;
92}
93
snelson2d471072010-01-09 05:30:14 +000094int erase_82802ab_block(struct flashchip *flash, unsigned int page, unsigned int pagesize)
hailfinger336d3c32008-03-14 00:02:25 +000095{
snelson2d471072010-01-09 05:30:14 +000096 chipaddr bios = flash->virtual_memory;
97 chipaddr wrprotect = flash->virtual_registers + page + 2;
hailfinger336d3c32008-03-14 00:02:25 +000098 uint8_t status;
99
100 // clear status register
snelson2d471072010-01-09 05:30:14 +0000101 chip_writeb(0x50, bios + page);
stepana5807bf2009-09-16 08:26:59 +0000102
hailfinger336d3c32008-03-14 00:02:25 +0000103 // clear write protect
hailfinger1ff6e362009-03-06 22:26:00 +0000104 chip_writeb(0, wrprotect);
hailfinger336d3c32008-03-14 00:02:25 +0000105
106 // now start it
snelson2d471072010-01-09 05:30:14 +0000107 chip_writeb(0x20, bios + page);
108 chip_writeb(0xd0, bios + page);
hailfingere5829f62009-06-05 17:48:08 +0000109 programmer_delay(10);
stepana5807bf2009-09-16 08:26:59 +0000110
hailfinger336d3c32008-03-14 00:02:25 +0000111 // now let's see what the register is
snelson2d471072010-01-09 05:30:14 +0000112 status = wait_82802ab(bios);
stepana5807bf2009-09-16 08:26:59 +0000113 print_82802ab_status(status);
114
snelson2d471072010-01-09 05:30:14 +0000115 if (check_erased_range(flash, page, pagesize)) {
hailfinger7af83692009-06-15 17:23:36 +0000116 fprintf(stderr, "ERASE FAILED!\n");
117 return -1;
stepan2e0773b2008-04-24 09:07:57 +0000118 }
snelson2d471072010-01-09 05:30:14 +0000119 printf("DONE BLOCK 0x%x\n", page);
hailfinger336d3c32008-03-14 00:02:25 +0000120
121 return 0;
122}
123
124int erase_82802ab(struct flashchip *flash)
125{
126 int i;
127 unsigned int total_size = flash->total_size * 1024;
128
129 printf("total_size is %d; flash->page_size is %d\n",
130 total_size, flash->page_size);
131 for (i = 0; i < total_size; i += flash->page_size)
snelson2d471072010-01-09 05:30:14 +0000132 if (erase_82802ab_block(flash, i, flash->page_size)) {
hailfinger7af83692009-06-15 17:23:36 +0000133 fprintf(stderr, "ERASE FAILED!\n");
134 return -1;
135 }
hailfinger336d3c32008-03-14 00:02:25 +0000136 printf("DONE ERASE\n");
137
138 return 0;
139}
140
hailfinger82719632009-05-16 21:22:56 +0000141void write_page_82802ab(chipaddr bios, uint8_t *src,
142 chipaddr dst, int page_size)
hailfinger336d3c32008-03-14 00:02:25 +0000143{
144 int i;
145
146 for (i = 0; i < page_size; i++) {
147 /* transfer data from source to destination */
hailfinger1ff6e362009-03-06 22:26:00 +0000148 chip_writeb(0x40, dst);
149 chip_writeb(*src++, dst++);
hailfinger336d3c32008-03-14 00:02:25 +0000150 wait_82802ab(bios);
151 }
152}
153
154int write_82802ab(struct flashchip *flash, uint8_t *buf)
155{
156 int i;
157 int total_size = flash->total_size * 1024;
158 int page_size = flash->page_size;
hailfinger82719632009-05-16 21:22:56 +0000159 chipaddr bios = flash->virtual_memory;
hailfinger9d987ef2009-06-05 18:32:07 +0000160 uint8_t *tmpbuf = malloc(page_size);
hailfinger336d3c32008-03-14 00:02:25 +0000161
hailfinger9d987ef2009-06-05 18:32:07 +0000162 if (!tmpbuf) {
163 printf("Could not allocate memory!\n");
164 exit(1);
165 }
stepan2e0773b2008-04-24 09:07:57 +0000166 printf("Programming page: \n");
hailfinger336d3c32008-03-14 00:02:25 +0000167 for (i = 0; i < total_size / page_size; i++) {
stepan2e0773b2008-04-24 09:07:57 +0000168 printf
169 ("\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");
hailfinger336d3c32008-03-14 00:02:25 +0000170 printf("%04d at address: 0x%08x", i, i * page_size);
stepan2e0773b2008-04-24 09:07:57 +0000171
172 /* Auto Skip Blocks, which already contain the desired data
173 * Faster, because we only write, what has changed
174 * More secure, because blocks, which are excluded
175 * (with the exclude or layout feature)
176 * or not erased and rewritten; their data is retained also in
177 * sudden power off situations
178 */
hailfinger9d987ef2009-06-05 18:32:07 +0000179 chip_readn(tmpbuf, bios + i * page_size, page_size);
180 if (!memcmp((void *)(buf + i * page_size), tmpbuf, page_size)) {
stepan2e0773b2008-04-24 09:07:57 +0000181 printf("SKIPPED\n");
182 continue;
183 }
184
185 /* erase block by block and write block by block; this is the most secure way */
snelson2d471072010-01-09 05:30:14 +0000186 if (erase_82802ab_block(flash, i * page_size, page_size)) {
hailfinger7af83692009-06-15 17:23:36 +0000187 fprintf(stderr, "ERASE FAILED!\n");
188 return -1;
189 }
hailfinger336d3c32008-03-14 00:02:25 +0000190 write_page_82802ab(bios, buf + i * page_size,
191 bios + i * page_size, page_size);
hailfinger336d3c32008-03-14 00:02:25 +0000192 }
193 printf("\n");
hailfinger9d987ef2009-06-05 18:32:07 +0000194 free(tmpbuf);
hailfinger336d3c32008-03-14 00:02:25 +0000195
196 return 0;
197}