blob: 48e9bd3d26fb750aa0f6b38adaca7c743832d4f2 [file] [log] [blame]
Peter Stugecce26822008-07-21 17:48:40 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2008 Peter Stuge <peter@stuge.se>
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
Peter Stugecce26822008-07-21 17:48:40 +000021#include "flash.h"
22
23int probe_w39v040c(struct flashchip *flash)
24{
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +000025 chipaddr bios = flash->virtual_memory;
Peter Stugecce26822008-07-21 17:48:40 +000026 uint8_t id1, id2, lock;
27
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +000028 chip_writeb(0xAA, bios + 0x5555);
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +000029 programmer_delay(10);
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +000030 chip_writeb(0x55, bios + 0x2AAA);
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +000031 programmer_delay(10);
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +000032 chip_writeb(0x90, bios + 0x5555);
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +000033 programmer_delay(10);
Peter Stugecce26822008-07-21 17:48:40 +000034
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +000035 id1 = chip_readb(bios);
36 id2 = chip_readb(bios + 1);
37 lock = chip_readb(bios + 0xfff2);
Peter Stugecce26822008-07-21 17:48:40 +000038
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +000039 chip_writeb(0xAA, bios + 0x5555);
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +000040 programmer_delay(10);
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +000041 chip_writeb(0x55, bios + 0x2AAA);
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +000042 programmer_delay(10);
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +000043 chip_writeb(0xF0, bios + 0x5555);
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +000044 programmer_delay(40);
Peter Stugecce26822008-07-21 17:48:40 +000045
Peter Stuge5cafc332009-01-25 23:52:45 +000046 printf_debug("%s: id1 0x%02x, id2 0x%02x", __func__, id1, id2);
Peter Stugecce26822008-07-21 17:48:40 +000047 if (!oddparity(id1))
48 printf_debug(", id1 parity violation");
49 printf_debug("\n");
50 if (flash->manufacture_id == id1 && flash->model_id == id2) {
51 printf("%s: Boot block #TBL is %slocked, rest of chip #WP is %slocked.\n",
52 __func__, lock & 0x4 ? "" : "un", lock & 0x8 ? "" : "un");
53 return 1;
54 }
55
56 return 0;
57}
58
59int erase_w39v040c(struct flashchip *flash)
60{
61 int i;
62 unsigned int total_size = flash->total_size * 1024;
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +000063 chipaddr bios = flash->virtual_memory;
Peter Stugecce26822008-07-21 17:48:40 +000064
65 for (i = 0; i < total_size; i += flash->page_size)
66 erase_sector_jedec(flash->virtual_memory, i);
67
68 for (i = 0; i < total_size; i++)
Carl-Daniel Hailfinger01624f42009-05-12 15:38:55 +000069 if (0xff != chip_readb(bios + i)) {
70 printf("ERASE FAILED at 0x%08x! Expected=0xff, Read=0x%02x\n", i, chip_readb(bios + i));
Peter Stugecce26822008-07-21 17:48:40 +000071 return -1;
72 }
73
74 return 0;
75}
76
77int write_w39v040c(struct flashchip *flash, uint8_t *buf)
78{
79 int i;
80 int total_size = flash->total_size * 1024;
81 int page_size = flash->page_size;
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +000082 chipaddr bios = flash->virtual_memory;
Peter Stugecce26822008-07-21 17:48:40 +000083
84 if (flash->erase(flash))
85 return -1;
86
87 printf("Programming page: ");
88 for (i = 0; i < total_size / page_size; i++) {
89 printf("%04d at address: 0x%08x", i, i * page_size);
90 write_sector_jedec(bios, buf + i * page_size,
91 bios + i * page_size, page_size);
92 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");
93 }
94 printf("\n");
95
96 return 0;
97}