blob: e2257d4a65fe5e83aac5746d583db6d6d186ff5c [file] [log] [blame]
Ronald G. Minnich5b582f22006-02-23 17:16:44 +00001/*
Uwe Hermannd1107642007-08-29 17:52:32 +00002 * This file is part of the flashrom project.
Ronald G. Minnich5b582f22006-02-23 17:16:44 +00003 *
Uwe Hermannd22a1d42007-09-09 20:21:05 +00004 * Copyright (C) 2000 Silicon Integrated System Corporation
Ronald G. Minnich5b582f22006-02-23 17:16:44 +00005 *
Uwe Hermannd1107642007-08-29 17:52:32 +00006 * 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.
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000010 *
Uwe Hermannd1107642007-08-29 17:52:32 +000011 * 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.
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000015 *
Uwe Hermannd1107642007-08-29 17:52:32 +000016 * 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
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000019 */
20
Carl-Daniel Hailfingerfe7e9292008-03-13 12:43:31 +000021/*
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
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000029#include <stdio.h>
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000030#include <stdlib.h>
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000031#include "flash.h"
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000032
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000033// I need that Berkeley bit-map printer
34void print_lhf00l04_status(uint8_t status)
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000035{
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000036 printf("%s", status & 0x80 ? "Ready:" : "Busy:");
37 printf("%s", status & 0x40 ? "BE SUSPEND:" : "BE RUN/FINISH:");
38 printf("%s", status & 0x20 ? "BE ERROR:" : "BE OK:");
39 printf("%s", status & 0x10 ? "PROG ERR:" : "PROG OK:");
40 printf("%s", status & 0x8 ? "VP ERR:" : "VPP OK:");
41 printf("%s", status & 0x4 ? "PROG SUSPEND:" : "PROG RUN/FINISH:");
42 printf("%s", status & 0x2 ? "WP|TBL#|WP#,ABORT:" : "UNLOCK:");
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000043}
44
45int probe_lhf00l04(struct flashchip *flash)
46{
Stefan Reinauerce532972007-05-23 17:20:56 +000047 volatile uint8_t *bios = flash->virtual_memory;
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000048 uint8_t id1, id2;
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000049
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000050#if 0
Stefan Reinauerce532972007-05-23 17:20:56 +000051 /* Enter ID mode */
Uwe Hermanna7e05482007-05-09 10:17:44 +000052 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
53 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
54 *(volatile uint8_t *)(bios + 0x5555) = 0x90;
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000055#endif
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000056
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000057 *bios = 0xff;
58 myusec_delay(10);
59 *bios = 0x90;
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000060 myusec_delay(10);
61
Uwe Hermanna7e05482007-05-09 10:17:44 +000062 id1 = *(volatile uint8_t *)bios;
63 id2 = *(volatile uint8_t *)(bios + 0x01);
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000064
Stefan Reinauerce532972007-05-23 17:20:56 +000065 /* Leave ID mode */
Uwe Hermanna7e05482007-05-09 10:17:44 +000066 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
67 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
68 *(volatile uint8_t *)(bios + 0x5555) = 0xF0;
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000069
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000070 myusec_delay(10);
71
72 printf_debug("%s: id1 0x%x, id2 0x%x\n", __FUNCTION__, id1, id2);
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000073
Uwe Hermanna8808852007-05-24 19:17:29 +000074 if (id1 != flash->manufacture_id || id2 != flash->model_id)
Stefan Reinauerff4f1972007-05-24 08:48:10 +000075 return 0;
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000076
Stefan Reinauerff4f1972007-05-24 08:48:10 +000077 map_flash_registers(flash);
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000078
Stefan Reinauerff4f1972007-05-24 08:48:10 +000079 return 1;
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000080}
81
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000082uint8_t wait_lhf00l04(volatile uint8_t *bios)
83{
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000084 uint8_t status;
85 uint8_t id1, id2;
86
87 *bios = 0x70;
88 if ((*bios & 0x80) == 0) { // it's busy
Uwe Hermanna7e05482007-05-09 10:17:44 +000089 while ((*bios & 0x80) == 0) ;
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000090 }
91
92 status = *bios;
93
94 // put another command to get out of status register mode
95
96 *bios = 0x90;
97 myusec_delay(10);
98
Uwe Hermanna7e05482007-05-09 10:17:44 +000099 id1 = *(volatile uint8_t *)bios;
100 id2 = *(volatile uint8_t *)(bios + 0x01);
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000101
102 // this is needed to jam it out of "read id" mode
Uwe Hermanna7e05482007-05-09 10:17:44 +0000103 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
104 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
105 *(volatile uint8_t *)(bios + 0x5555) = 0xF0;
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000106
Uwe Hermannffec5f32007-08-23 16:08:21 +0000107 return status;
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000108}
Uwe Hermannffec5f32007-08-23 16:08:21 +0000109
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000110int erase_lhf00l04_block(struct flashchip *flash, int offset)
111{
Stefan Reinauerce532972007-05-23 17:20:56 +0000112 volatile uint8_t *bios = flash->virtual_memory + offset;
113 volatile uint8_t *wrprotect = flash->virtual_registers + offset + 2;
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000114 uint8_t status;
115
116 // clear status register
117 *bios = 0x50;
118 printf("Erase at %p\n", bios);
Stefan Reinauerce532972007-05-23 17:20:56 +0000119 status = wait_lhf00l04(flash->virtual_memory);
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000120 print_lhf00l04_status(status);
121 // clear write protect
122 printf("write protect is at %p\n", (wrprotect));
123 printf("write protect is 0x%x\n", *(wrprotect));
124 *(wrprotect) = 0;
125 printf("write protect is 0x%x\n", *(wrprotect));
126
127 // now start it
Uwe Hermanna7e05482007-05-09 10:17:44 +0000128 *(volatile uint8_t *)(bios) = 0x20;
129 *(volatile uint8_t *)(bios) = 0xd0;
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000130 myusec_delay(10);
131 // now let's see what the register is
Stefan Reinauerce532972007-05-23 17:20:56 +0000132 status = wait_lhf00l04(flash->virtual_memory);
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000133 print_lhf00l04_status(status);
134 printf("DONE BLOCK 0x%x\n", offset);
Uwe Hermannffec5f32007-08-23 16:08:21 +0000135
136 return 0;
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000137}
Uwe Hermannffec5f32007-08-23 16:08:21 +0000138
Ronald G. Minnich5b582f22006-02-23 17:16:44 +0000139int erase_lhf00l04(struct flashchip *flash)
140{
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000141 int i;
142 unsigned int total_size = flash->total_size * 1024;
Ronald G. Minnich5b582f22006-02-23 17:16:44 +0000143
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000144 printf("total_size is %d; flash->page_size is %d\n",
145 total_size, flash->page_size);
146 for (i = 0; i < total_size; i += flash->page_size)
147 erase_lhf00l04_block(flash, i);
148 printf("DONE ERASE\n");
Uwe Hermannffec5f32007-08-23 16:08:21 +0000149
150 return 0;
Ronald G. Minnich5b582f22006-02-23 17:16:44 +0000151}
152
Uwe Hermanna7e05482007-05-09 10:17:44 +0000153void write_page_lhf00l04(volatile uint8_t *bios, uint8_t *src,
154 volatile uint8_t *dst, int page_size)
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000155{
156 int i;
157
158 for (i = 0; i < page_size; i++) {
159 /* transfer data from source to destination */
160 *dst = 0x40;
161 *dst++ = *src++;
162 wait_lhf00l04(bios);
163 }
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000164}
165
Ronald G. Minnich5b582f22006-02-23 17:16:44 +0000166int write_lhf00l04(struct flashchip *flash, uint8_t *buf)
167{
168 int i;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000169 int total_size = flash->total_size * 1024;
170 int page_size = flash->page_size;
Stefan Reinauerce532972007-05-23 17:20:56 +0000171 volatile uint8_t *bios = flash->virtual_memory;
Ronald G. Minnich5b582f22006-02-23 17:16:44 +0000172
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000173 erase_lhf00l04(flash);
174 if (*bios != 0xff) {
Uwe Hermanna502dce2007-10-17 23:55:15 +0000175 printf("ERASE FAILED!\n");
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000176 return -1;
177 }
Uwe Hermanna502dce2007-10-17 23:55:15 +0000178 printf("Programming page: ");
Ronald G. Minnich5b582f22006-02-23 17:16:44 +0000179 for (i = 0; i < total_size / page_size; i++) {
Ronald G. Minnich5b582f22006-02-23 17:16:44 +0000180 printf("%04d at address: 0x%08x", i, i * page_size);
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000181 write_page_lhf00l04(bios, buf + i * page_size,
Uwe Hermanna7e05482007-05-09 10:17:44 +0000182 bios + i * page_size, page_size);
183 printf("\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");
Ronald G. Minnich5b582f22006-02-23 17:16:44 +0000184 }
185 printf("\n");
Uwe Hermannfd374142007-08-23 15:20:38 +0000186 protect_jedec(bios);
Uwe Hermannffec5f32007-08-23 16:08:21 +0000187
188 return 0;
Ronald G. Minnich5b582f22006-02-23 17:16:44 +0000189}