blob: 66534ce911ec16b3628d3f182f990bb9b2ac61b1 [file] [log] [blame]
Stefan Reinauerc34ce2e2008-03-18 00:36:18 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2008 coresystems GmbH
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#include <stdio.h>
22#include "flash.h"
23
24int probe_winbond_fwhub(struct flashchip *flash)
25{
26 volatile uint8_t *bios = flash->virtual_memory;
27 uint8_t vid, did;
28
29 /* Product Identification Entry */
30 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
31 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
32 *(volatile uint8_t *)(bios + 0x5555) = 0x90;
33 myusec_delay(10);
34
35 /* Read product ID */
36 vid = *(volatile uint8_t *)bios;
37 did = *(volatile uint8_t *)(bios + 0x01);
38
39 /* Product Identifixation Exit */
40 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
41 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
42 *(volatile uint8_t *)(bios + 0x5555) = 0xF0;
43 myusec_delay(10);
44
45 printf_debug("%s: vid 0x%x, did 0x%x\n", __FUNCTION__, vid, did);
46
47 if (vid != flash->manufacture_id || did != flash->model_id)
48 return 0;
49
50 map_flash_registers(flash);
51
52 return 1;
53}
54
55static int unlock_block_winbond_fwhub(struct flashchip *flash, int offset)
56{
57 volatile uint8_t *wrprotect = flash->virtual_registers + offset + 2;
58 uint8_t locking;
59
Uwe Hermann394131e2008-10-18 21:14:13 +000060 printf_debug("Trying to unlock block @0x%08x = 0x%02x\n", offset,
61 *wrprotect);
Stefan Reinauerc34ce2e2008-03-18 00:36:18 +000062
63 locking = *wrprotect;
Uwe Hermann394131e2008-10-18 21:14:13 +000064 switch (locking & 0x7) {
Stefan Reinauerc34ce2e2008-03-18 00:36:18 +000065 case 0:
66 printf_debug("Full Access.\n");
67 return 0;
68 case 1:
69 printf_debug("Write Lock (Default State).\n");
70 *wrprotect = 0;
71 return 0;
72 case 2:
73 printf_debug("Locked Open (Full Access, Lock Down).\n");
74 return 0;
75 case 3:
76 fprintf(stderr, "Error: Write Lock, Locked Down.\n");
77 return -1;
78 case 4:
79 printf_debug("Read Lock.\n");
80 *wrprotect = 0;
81 return 0;
82 case 5:
83 printf_debug("Read/Write Lock.\n");
84 *wrprotect = 0;
85 return 0;
86 case 6:
87 fprintf(stderr, "Error: Read Lock, Locked Down.\n");
88 return -1;
89 case 7:
90 fprintf(stderr, "Error: Read/Write Lock, Locked Down.\n");
91 return -1;
92 }
93
94 /* We will never reach this point, but GCC doesn't know */
95 return -1;
96}
97
98int unlock_winbond_fwhub(struct flashchip *flash)
99{
100 int i, total_size = flash->total_size * 1024;
101 volatile uint8_t *bios = flash->virtual_memory;
102 uint8_t locking;
Uwe Hermann394131e2008-10-18 21:14:13 +0000103
Stefan Reinauerc34ce2e2008-03-18 00:36:18 +0000104 /* Are there any hardware restrictions that we can't overcome?
105 * If flashrom fail here, someone's got to check all those GPIOs.
106 */
107
108 /* Product Identification Entry */
109 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
110 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
111 *(volatile uint8_t *)(bios + 0x5555) = 0x90;
112 myusec_delay(10);
113
114 /* Read Hardware Lock Bits */
115 locking = *(volatile uint8_t *)(bios + 0xffff2);
116
117 /* Product Identification Exit */
118 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
119 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
120 *(volatile uint8_t *)(bios + 0x5555) = 0xF0;
121 myusec_delay(10);
122
123 printf_debug("Lockout bits:\n");
124
Uwe Hermann394131e2008-10-18 21:14:13 +0000125 if (locking & (1 << 2))
Stefan Reinauerc34ce2e2008-03-18 00:36:18 +0000126 fprintf(stderr, "Error: hardware bootblock locking (#TBL).\n");
127 else
128 printf_debug("No hardware bootblock locking (good!)\n");
129
Uwe Hermann394131e2008-10-18 21:14:13 +0000130 if (locking & (1 << 3))
Stefan Reinauerc34ce2e2008-03-18 00:36:18 +0000131 fprintf(stderr, "Error: hardware block locking (#WP).\n");
132 else
133 printf_debug("No hardware block locking (good!)\n");
134
Uwe Hermann394131e2008-10-18 21:14:13 +0000135 if (locking & ((1 << 2) | (1 << 3)))
Stefan Reinauerc34ce2e2008-03-18 00:36:18 +0000136 return -1;
137
138 /* Unlock the complete chip */
139 for (i = 0; i < total_size; i += flash->page_size)
140 if (unlock_block_winbond_fwhub(flash, i))
141 return -1;
142
143 return 0;
144}
145
Uwe Hermann394131e2008-10-18 21:14:13 +0000146static int erase_sector_winbond_fwhub(volatile uint8_t *bios,
147 unsigned int sector)
Stefan Reinauerc34ce2e2008-03-18 00:36:18 +0000148{
149 /* Remember: too much sleep can waste your day. */
150
151 printf("0x%08x\b\b\b\b\b\b\b\b\b\b", sector);
152
153 /* Sector Erase */
154 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
155 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
156 *(volatile uint8_t *)(bios + 0x5555) = 0x80;
157
158 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
159 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
160 *(volatile uint8_t *)(bios + sector) = 0x30;
161
162 /* wait for Toggle bit ready */
163 toggle_ready_jedec(bios);
164
165 return 0;
166}
167
168int erase_winbond_fwhub(struct flashchip *flash)
169{
170 int i, total_size = flash->total_size * 1024;
171 volatile uint8_t *bios = flash->virtual_memory;
Uwe Hermann394131e2008-10-18 21:14:13 +0000172
Stefan Reinauer4c390c82008-07-02 13:33:09 +0000173 unlock_winbond_fwhub(flash);
174
Stefan Reinauerc34ce2e2008-03-18 00:36:18 +0000175 printf("Erasing: ");
176
177 for (i = 0; i < total_size; i += flash->page_size)
178 erase_sector_winbond_fwhub(bios, i);
179
180 printf("\n");
181
182 for (i = 0; i < total_size; i++) {
183 if (bios[i] != 0xff) {
184 fprintf(stderr, "Error: Flash chip erase failed at 0x%08x(0x%02x)\n", i, bios[i]);
185 return -1;
186 }
187 }
188
189 return 0;
190}
191
192int write_winbond_fwhub(struct flashchip *flash, uint8_t *buf)
193{
194 int i;
195 int total_size = flash->total_size * 1024;
196 volatile uint8_t *bios = flash->virtual_memory;
197
198 if (erase_winbond_fwhub(flash))
199 return -1;
200
201 printf("Programming: ");
Uwe Hermann394131e2008-10-18 21:14:13 +0000202 for (i = 0; i < total_size; i += flash->page_size) {
Stefan Reinauerc34ce2e2008-03-18 00:36:18 +0000203 printf("0x%08x\b\b\b\b\b\b\b\b\b\b", i);
204 write_sector_jedec(bios, buf + i, bios + i, flash->page_size);
205 }
206 printf("\n");
207
208 return 0;
209}