blob: 20e53fa7ba990fcf45dffa0ab111ab366a91a410 [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"
Sean Nelson14ba6682010-02-26 05:48:29 +000022#include "chipdrivers.h"
Peter Stugecce26822008-07-21 17:48:40 +000023
24int probe_w39v040c(struct flashchip *flash)
25{
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +000026 chipaddr bios = flash->virtual_memory;
Carl-Daniel Hailfinger4e9cebb2009-09-05 01:16:30 +000027 int result = probe_jedec(flash);
28 uint8_t lock;
29
30 if (!result)
31 return result;
Peter Stugecce26822008-07-21 17:48:40 +000032
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +000033 chip_writeb(0xAA, bios + 0x5555);
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +000034 programmer_delay(10);
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +000035 chip_writeb(0x55, bios + 0x2AAA);
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +000036 programmer_delay(10);
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +000037 chip_writeb(0x90, bios + 0x5555);
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +000038 programmer_delay(10);
Peter Stugecce26822008-07-21 17:48:40 +000039
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +000040 lock = chip_readb(bios + 0xfff2);
Peter Stugecce26822008-07-21 17:48:40 +000041
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +000042 chip_writeb(0xAA, bios + 0x5555);
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +000043 programmer_delay(10);
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +000044 chip_writeb(0x55, bios + 0x2AAA);
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +000045 programmer_delay(10);
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +000046 chip_writeb(0xF0, bios + 0x5555);
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +000047 programmer_delay(40);
Peter Stugecce26822008-07-21 17:48:40 +000048
Carl-Daniel Hailfinger4e9cebb2009-09-05 01:16:30 +000049 printf("%s: Boot block #TBL is %slocked, rest of chip #WP is %slocked.\n",
50 __func__, lock & 0x4 ? "" : "un", lock & 0x8 ? "" : "un");
51 return 1;
Peter Stugecce26822008-07-21 17:48:40 +000052}
53
Sean Nelson6e0b9122010-02-19 00:52:10 +000054int printlock_w39v040c(struct flashchip *flash)
55{
56 chipaddr bios = flash->virtual_memory;
57 uint8_t lock;
58
59 chip_writeb(0xAA, bios + 0x5555);
60 programmer_delay(10);
61 chip_writeb(0x55, bios + 0x2AAA);
62 programmer_delay(10);
63 chip_writeb(0x90, bios + 0x5555);
64 programmer_delay(10);
65
66 lock = chip_readb(bios + 0xfff2);
67
68 chip_writeb(0xAA, bios + 0x5555);
69 programmer_delay(10);
70 chip_writeb(0x55, bios + 0x2AAA);
71 programmer_delay(10);
72 chip_writeb(0xF0, bios + 0x5555);
73 programmer_delay(40);
74
75 printf("%s: Boot block #TBL is %slocked, rest of chip #WP is %slocked.\n",
76 __func__, lock & 0x4 ? "" : "un", lock & 0x8 ? "" : "un");
77 return 0;
78}
79
Peter Stugecce26822008-07-21 17:48:40 +000080int erase_w39v040c(struct flashchip *flash)
81{
82 int i;
83 unsigned int total_size = flash->total_size * 1024;
Peter Stugecce26822008-07-21 17:48:40 +000084
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +000085 for (i = 0; i < total_size; i += flash->page_size) {
86 if (erase_sector_jedec(flash, i, flash->page_size)) {
87 fprintf(stderr, "ERASE FAILED!\n");
Peter Stugecce26822008-07-21 17:48:40 +000088 return -1;
89 }
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +000090 }
Peter Stugecce26822008-07-21 17:48:40 +000091
92 return 0;
93}
94
95int write_w39v040c(struct flashchip *flash, uint8_t *buf)
96{
97 int i;
98 int total_size = flash->total_size * 1024;
99 int page_size = flash->page_size;
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000100 chipaddr bios = flash->virtual_memory;
Peter Stugecce26822008-07-21 17:48:40 +0000101
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +0000102 if (erase_flash(flash)) {
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000103 fprintf(stderr, "ERASE FAILED!\n");
Peter Stugecce26822008-07-21 17:48:40 +0000104 return -1;
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000105 }
Peter Stugecce26822008-07-21 17:48:40 +0000106
107 printf("Programming page: ");
108 for (i = 0; i < total_size / page_size; i++) {
109 printf("%04d at address: 0x%08x", i, i * page_size);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000110 write_sector_jedec_common(flash, buf + i * page_size,
111 bios + i * page_size, page_size, 0xffff);
Peter Stugecce26822008-07-21 17:48:40 +0000112 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");
113 }
114 printf("\n");
115
116 return 0;
117}