blob: ca64b74f281bd7f1e449c7eccdf32bfd53625ad1 [file] [log] [blame]
Stefan Taunerac1b4c82012-02-17 14:51:04 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2011-2012 Stefan Tauner
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; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Stefan Taunerac1b4c82012-02-17 14:51:04 +000014 */
15
16#include <stdint.h>
17#include <stdlib.h>
Carl-Daniel Hailfinger2d251242012-02-24 23:49:30 +000018#include <string.h>
Stefan Taunerac1b4c82012-02-17 14:51:04 +000019#include "flash.h"
Nico Huberd5185632024-01-05 18:44:41 +010020#include "spi_command.h"
Stefan Taunerac1b4c82012-02-17 14:51:04 +000021#include "spi.h"
22#include "chipdrivers.h"
23
24static int spi_sfdp_read_sfdp_chunk(struct flashctx *flash, uint32_t address, uint8_t *buf, int len)
25{
26 int i, ret;
Carl-Daniel Hailfinger2d251242012-02-24 23:49:30 +000027 uint8_t *newbuf;
Stefan Taunerac1b4c82012-02-17 14:51:04 +000028 const unsigned char cmd[JEDEC_SFDP_OUTSIZE] = {
29 JEDEC_SFDP,
30 (address >> 16) & 0xff,
31 (address >> 8) & 0xff,
32 (address >> 0) & 0xff,
33 /* FIXME: the following dummy byte explodes on some programmers.
Carl-Daniel Hailfinger2d251242012-02-24 23:49:30 +000034 * One workaround is to read the dummy byte
Stefan Taunerac1b4c82012-02-17 14:51:04 +000035 * instead and discard its value.
36 */
37 0
38 };
39 msg_cspew("%s: addr=0x%x, len=%d, data:\n", __func__, address, len);
Carl-Daniel Hailfinger2d251242012-02-24 23:49:30 +000040 newbuf = malloc(len + 1);
41 if (!newbuf)
42 return SPI_PROGRAMMER_ERROR;
43 ret = spi_send_command(flash, sizeof(cmd) - 1, len + 1, cmd, newbuf);
44 memmove(buf, newbuf + 1, len);
45 free(newbuf);
46 if (ret)
47 return ret;
Stefan Taunerac1b4c82012-02-17 14:51:04 +000048 for (i = 0; i < len; i++)
49 msg_cspew(" 0x%02x", buf[i]);
50 msg_cspew("\n");
Carl-Daniel Hailfinger2d251242012-02-24 23:49:30 +000051 return 0;
Stefan Taunerac1b4c82012-02-17 14:51:04 +000052}
53
54static int spi_sfdp_read_sfdp(struct flashctx *flash, uint32_t address, uint8_t *buf, int len)
55{
Carl-Daniel Hailfinger2d251242012-02-24 23:49:30 +000056 /* FIXME: There are different upper bounds for the number of bytes to
57 * read on the various programmers (even depending on the rest of the
58 * structure of the transaction). 2 is a safe bet. */
59 int maxstep = 2;
Stefan Taunerac1b4c82012-02-17 14:51:04 +000060 int ret = 0;
61 while (len > 0) {
62 int step = min(len, maxstep);
63 ret = spi_sfdp_read_sfdp_chunk(flash, address, buf, step);
64 if (ret)
65 return ret;
66 address += step;
67 buf += step;
68 len -= step;
69 }
70 return ret;
71}
72
73struct sfdp_tbl_hdr {
74 uint8_t id;
75 uint8_t v_minor;
76 uint8_t v_major;
77 uint8_t len;
78 uint32_t ptp; /* 24b pointer */
79};
80
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +000081static int sfdp_add_uniform_eraser(struct flashchip *chip, uint8_t opcode, uint32_t block_size)
Stefan Taunerac1b4c82012-02-17 14:51:04 +000082{
83 int i;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +000084 uint32_t total_size = chip->total_size * 1024;
Thomas Heijligen35614512022-09-19 23:46:58 +020085 erasefunc_t *erasefn = spi25_get_erasefn_from_opcode(opcode);
Stefan Taunerac1b4c82012-02-17 14:51:04 +000086
Stefan Tauner75adf322012-02-22 00:14:14 +000087 if (erasefn == NULL || total_size == 0 || block_size == 0 ||
88 total_size % block_size != 0) {
89 msg_cdbg("%s: invalid input, please report to "
Nico Huberc3b02dc2023-08-12 01:13:45 +020090 "flashprog@flashprog.org\n", __func__);
Stefan Taunerac1b4c82012-02-17 14:51:04 +000091 return 1;
92 }
93
94 for (i = 0; i < NUM_ERASEFUNCTIONS; i++) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +000095 struct block_eraser *eraser = &chip->block_erasers[i];
Stefan Taunerac1b4c82012-02-17 14:51:04 +000096 /* Check for duplicates (including (some) non-uniform ones). */
97 if (eraser->eraseblocks[0].size == block_size &&
98 eraser->block_erase == erasefn) {
99 msg_cdbg2(" Tried to add a duplicate block eraser: "
Stefan Tauner75adf322012-02-22 00:14:14 +0000100 "%d x %d B with opcode 0x%02x.\n",
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000101 total_size/block_size, block_size, opcode);
102 return 1;
103 }
Stefan Tauner75adf322012-02-22 00:14:14 +0000104 if (eraser->eraseblocks[0].size != 0 ||
105 eraser->block_erase != NULL) {
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000106 msg_cspew(" Block Eraser %d is already occupied.\n",
107 i);
108 continue;
109 }
110
111 eraser->block_erase = erasefn;
112 eraser->eraseblocks[0].size = block_size;
113 eraser->eraseblocks[0].count = total_size/block_size;
114 msg_cdbg2(" Block eraser %d: %d x %d B with opcode "
115 "0x%02x\n", i, total_size/block_size, block_size,
116 opcode);
117 return 0;
118 }
Nico Huberac90af62022-12-18 00:22:47 +0000119 msg_cinfo("%s: Not enough space to store another eraser (i=%d).\n"
Nico Huberc3b02dc2023-08-12 01:13:45 +0200120 "Please report this at flashprog@flashprog.org\n",
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000121 __func__, i);
122 return 1;
123}
124
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000125static int sfdp_fill_flash(struct flashchip *chip, uint8_t *buf, uint16_t len)
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000126{
Stefan Tauner75adf322012-02-22 00:14:14 +0000127 uint8_t opcode_4k_erase = 0xFF;
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000128 uint32_t tmp32;
129 uint8_t tmp8;
130 uint32_t total_size; /* in bytes */
131 uint32_t block_size;
Stefan Tauner75adf322012-02-22 00:14:14 +0000132 int j;
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000133
134 msg_cdbg("Parsing JEDEC flash parameter table... ");
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000135 msg_cdbg2("\n");
Elyes HAOUAS0cacb112019-02-04 12:16:38 +0100136
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000137 /* 1. double word */
Stefan Tauner75adf322012-02-22 00:14:14 +0000138 tmp32 = ((unsigned int)buf[(4 * 0) + 0]);
139 tmp32 |= ((unsigned int)buf[(4 * 0) + 1]) << 8;
140 tmp32 |= ((unsigned int)buf[(4 * 0) + 2]) << 16;
141 tmp32 |= ((unsigned int)buf[(4 * 0) + 3]) << 24;
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000142
143 tmp8 = (tmp32 >> 17) & 0x3;
144 switch (tmp8) {
145 case 0x0:
146 msg_cdbg2(" 3-Byte only addressing.\n");
147 break;
148 case 0x1:
149 msg_cdbg2(" 3-Byte (and optionally 4-Byte) addressing.\n");
150 break;
151 case 0x2:
152 msg_cdbg(" 4-Byte only addressing (not supported by "
Nico Huberc3b02dc2023-08-12 01:13:45 +0200153 "flashprog).\n");
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000154 return 1;
155 default:
156 msg_cdbg(" Required addressing mode (0x%x) not supported.\n",
157 tmp8);
158 return 1;
159 }
160
161 msg_cdbg2(" Status register is ");
162 if (tmp32 & (1 << 3)) {
163 msg_cdbg2("volatile and writes to the status register have to "
164 "be enabled with ");
165 if (tmp32 & (1 << 4)) {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000166 chip->feature_bits = FEATURE_WRSR_WREN;
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000167 msg_cdbg2("WREN (0x06).\n");
168 } else {
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000169 chip->feature_bits = FEATURE_WRSR_EWSR;
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000170 msg_cdbg2("EWSR (0x50).\n");
171 }
Steven Zakulec3603a282012-05-02 20:07:57 +0000172 } else {
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000173 msg_cdbg2("non-volatile and the standard does not allow "
174 "vendors to tell us whether EWSR/WREN is needed for "
175 "status register writes - assuming EWSR.\n");
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000176 chip->feature_bits = FEATURE_WRSR_EWSR;
Steven Zakulec3603a282012-05-02 20:07:57 +0000177 }
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000178
179 msg_cdbg2(" Write chunk size is ");
180 if (tmp32 & (1 << 2)) {
181 msg_cdbg2("at least 64 B.\n");
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000182 chip->page_size = 64;
183 chip->write = spi_chip_write_256;
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000184 } else {
185 msg_cdbg2("1 B only.\n");
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000186 chip->page_size = 256;
187 chip->write = spi_chip_write_1;
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000188 }
189
190 if ((tmp32 & 0x3) == 0x1) {
Stefan Tauner75adf322012-02-22 00:14:14 +0000191 opcode_4k_erase = (tmp32 >> 8) & 0xFF;
192 msg_cspew(" 4kB erase opcode is 0x%02x.\n", opcode_4k_erase);
193 /* add the eraser later, because we don't know total_size yet */
194 } else
195 msg_cspew(" 4kB erase opcode is not defined.\n");
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000196
197 /* 2. double word */
Stefan Tauner75adf322012-02-22 00:14:14 +0000198 tmp32 = ((unsigned int)buf[(4 * 1) + 0]);
199 tmp32 |= ((unsigned int)buf[(4 * 1) + 1]) << 8;
200 tmp32 |= ((unsigned int)buf[(4 * 1) + 2]) << 16;
201 tmp32 |= ((unsigned int)buf[(4 * 1) + 3]) << 24;
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000202
203 if (tmp32 & (1 << 31)) {
204 msg_cdbg("Flash chip size >= 4 Gb/512 MB not supported.\n");
205 return 1;
206 }
207 total_size = ((tmp32 & 0x7FFFFFFF) + 1) / 8;
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000208 chip->total_size = total_size / 1024;
209 msg_cdbg2(" Flash chip size is %d kB.\n", chip->total_size);
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000210 if (total_size > (1 << 24)) {
211 msg_cdbg("Flash chip size is bigger than what 3-Byte addressing "
212 "can access.\n");
213 return 1;
214 }
215
Stefan Tauner75adf322012-02-22 00:14:14 +0000216 if (opcode_4k_erase != 0xFF)
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000217 sfdp_add_uniform_eraser(chip, opcode_4k_erase, 4 * 1024);
Stefan Tauner75adf322012-02-22 00:14:14 +0000218
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000219 /* FIXME: double words 3-7 contain unused fast read information */
220
221 if (len == 4 * 4) {
Stefan Tauner75adf322012-02-22 00:14:14 +0000222 msg_cdbg(" It seems like this chip supports the preliminary "
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000223 "Intel version of SFDP, skipping processing of double "
224 "words 3-9.\n");
225 goto done;
226 }
227
Stefan Tauner75adf322012-02-22 00:14:14 +0000228 /* 8. double word */
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000229 for (j = 0; j < 4; j++) {
Stefan Tauner75adf322012-02-22 00:14:14 +0000230 /* 7 double words from the start + 2 bytes for every eraser */
231 tmp8 = buf[(4 * 7) + (j * 2)];
232 msg_cspew(" Erase Sector Type %d Size: 0x%02x\n", j + 1,
233 tmp8);
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000234 if (tmp8 == 0) {
Stefan Tauner75adf322012-02-22 00:14:14 +0000235 msg_cspew(" Erase Sector Type %d is unused.\n", j);
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000236 continue;
237 }
238 if (tmp8 >= 31) {
Stefan Tauner75adf322012-02-22 00:14:14 +0000239 msg_cdbg2(" Block size of erase Sector Type %d (2^%d) "
Nico Huberc3b02dc2023-08-12 01:13:45 +0200240 "is too big for flashprog.\n", j, tmp8);
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000241 continue;
242 }
243 block_size = 1 << (tmp8); /* block_size = 2 ^ field */
244
Stefan Tauner75adf322012-02-22 00:14:14 +0000245 tmp8 = buf[(4 * 7) + (j * 2) + 1];
246 msg_cspew(" Erase Sector Type %d Opcode: 0x%02x\n", j + 1,
247 tmp8);
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000248 sfdp_add_uniform_eraser(chip, tmp8, block_size);
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000249 }
250
251done:
252 msg_cdbg("done.\n");
253 return 0;
254}
255
256int probe_spi_sfdp(struct flashctx *flash)
257{
258 int ret = 0;
259 uint8_t buf[8];
260 uint32_t tmp32;
261 uint8_t nph;
262 /* need to limit the table loop by comparing i to uint8_t nph hence: */
263 uint16_t i;
264 struct sfdp_tbl_hdr *hdrs;
265 uint8_t *hbuf;
266 uint8_t *tbuf;
267
268 if (spi_sfdp_read_sfdp(flash, 0x00, buf, 4)) {
269 msg_cdbg("Receiving SFDP signature failed.\n");
270 return 0;
271 }
272 tmp32 = buf[0];
273 tmp32 |= ((unsigned int)buf[1]) << 8;
274 tmp32 |= ((unsigned int)buf[2]) << 16;
275 tmp32 |= ((unsigned int)buf[3]) << 24;
276
277 if (tmp32 != 0x50444653) {
278 msg_cdbg2("Signature = 0x%08x (should be 0x50444653)\n", tmp32);
279 msg_cdbg("No SFDP signature found.\n");
280 return 0;
281 }
282
283 if (spi_sfdp_read_sfdp(flash, 0x04, buf, 3)) {
284 msg_cdbg("Receiving SFDP revision and number of parameter "
285 "headers (NPH) failed. ");
286 return 0;
287 }
288 msg_cdbg2("SFDP revision = %d.%d\n", buf[1], buf[0]);
289 if (buf[1] != 0x01) {
290 msg_cdbg("The chip supports an unknown version of SFDP. "
291 "Aborting SFDP probe!\n");
292 return 0;
293 }
294 nph = buf[2];
295 msg_cdbg2("SFDP number of parameter headers is %d (NPH = %d).\n",
296 nph + 1, nph);
297
298 /* Fetch all parameter headers, even if we don't use them all (yet). */
299 hbuf = malloc((nph + 1) * 8);
Angel Pons690a9442021-06-07 12:33:53 +0200300 hdrs = malloc((nph + 1) * sizeof(*hdrs));
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000301 if (hbuf == NULL || hdrs == NULL ) {
302 msg_gerr("Out of memory!\n");
303 goto cleanup_hdrs;
304 }
305 if (spi_sfdp_read_sfdp(flash, 0x08, hbuf, (nph + 1) * 8)) {
306 msg_cdbg("Receiving SFDP parameter table headers failed.\n");
307 goto cleanup_hdrs;
308 }
309
310 for (i = 0; i <= nph; i++) {
311 uint16_t len;
312 hdrs[i].id = hbuf[(8 * i) + 0];
313 hdrs[i].v_minor = hbuf[(8 * i) + 1];
314 hdrs[i].v_major = hbuf[(8 * i) + 2];
315 hdrs[i].len = hbuf[(8 * i) + 3];
316 hdrs[i].ptp = hbuf[(8 * i) + 4];
317 hdrs[i].ptp |= ((unsigned int)hbuf[(8 * i) + 5]) << 8;
318 hdrs[i].ptp |= ((unsigned int)hbuf[(8 * i) + 6]) << 16;
319 msg_cdbg2("\nSFDP parameter table header %d/%d:\n", i, nph);
320 msg_cdbg2(" ID 0x%02x, version %d.%d\n", hdrs[i].id,
321 hdrs[i].v_major, hdrs[i].v_minor);
322 len = hdrs[i].len * 4;
323 tmp32 = hdrs[i].ptp;
324 msg_cdbg2(" Length %d B, Parameter Table Pointer 0x%06x\n",
325 len, tmp32);
326
327 if (tmp32 + len >= (1 << 24)) {
328 msg_cdbg("SFDP Parameter Table %d supposedly overflows "
329 "addressable SFDP area. This most\nprobably "
330 "indicates a corrupt SFDP parameter table "
331 "header. Skipping it.\n", i);
332 continue;
333 }
334
335 tbuf = malloc(len);
336 if (tbuf == NULL) {
337 msg_gerr("Out of memory!\n");
338 goto cleanup_hdrs;
339 }
340 if (spi_sfdp_read_sfdp(flash, tmp32, tbuf, len)){
341 msg_cdbg("Fetching SFDP parameter table %d failed.\n",
342 i);
343 free(tbuf);
344 continue;
345 }
346 msg_cspew(" Parameter table contents:\n");
347 for (tmp32 = 0; tmp32 < len; tmp32++) {
348 if ((tmp32 % 8) == 0) {
349 msg_cspew(" 0x%04x: ", tmp32);
350 }
Stefan Tauner75adf322012-02-22 00:14:14 +0000351 msg_cspew(" %02x", tbuf[tmp32]);
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000352 if ((tmp32 % 8) == 7) {
353 msg_cspew("\n");
354 continue;
355 }
356 if ((tmp32 % 8) == 3) {
357 msg_cspew(" ");
358 continue;
359 }
360 }
Stefan Tauner75adf322012-02-22 00:14:14 +0000361 msg_cspew("\n");
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000362
363 if (i == 0) { /* Mandatory JEDEC SFDP parameter table */
364 if (hdrs[i].id != 0)
365 msg_cdbg("ID of the mandatory JEDEC SFDP "
366 "parameter table is not 0 as demanded "
367 "by JESD216 (warning only).\n");
368
369 if (hdrs[i].v_major != 0x01) {
370 msg_cdbg("The chip contains an unknown "
371 "version of the JEDEC flash "
372 "parameters table, skipping it.\n");
Michael Niewöhnerde307c02021-12-11 22:15:06 +0100373 } else if (len != 4 * 4 && len < 9 * 4) {
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000374 msg_cdbg("Length of the mandatory JEDEC SFDP "
375 "parameter table is wrong (%d B), "
376 "skipping it.\n", len);
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000377 } else if (sfdp_fill_flash(flash->chip, tbuf, len) == 0)
Stefan Taunerac1b4c82012-02-17 14:51:04 +0000378 ret = 1;
379 }
380 free(tbuf);
381 }
382
383cleanup_hdrs:
384 free(hdrs);
385 free(hbuf);
386 return ret;
387}