blob: ddb9ff8fdc36c900167769e9a30f3a13154329a8 [file] [log] [blame]
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +00001/*
2 * This file is part of the flashrom project.
3 *
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +00004 * Copyright (C) 2007, 2008 Carl-Daniel Hailfinger
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +00005 *
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.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20/*
21 * Contains the generic SPI framework
22 */
23
24#include <stdio.h>
25#include <pci/pci.h>
26#include <stdint.h>
27#include <string.h>
28#include "flash.h"
Carl-Daniel Hailfingerd6cbf762008-05-13 14:58:23 +000029#include "spi.h"
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +000030
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +000031
32void spi_prettyprint_status_register(struct flashchip *flash);
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +000033
Peter Stugefa8c5502008-05-10 23:07:52 +000034int spi_command(unsigned int writecnt, unsigned int readcnt, const unsigned char *writearr, unsigned char *readarr)
Carl-Daniel Hailfinger3d94a0e2007-10-16 21:09:06 +000035{
36 if (it8716f_flashport)
Carl-Daniel Hailfingera5b8efd2008-05-10 23:40:51 +000037 return it8716f_spi_command(writecnt, readcnt, writearr, readarr);
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +000038 printf_debug("%s called, but no SPI chipset detected\n", __FUNCTION__);
Carl-Daniel Hailfinger3d94a0e2007-10-16 21:09:06 +000039 return 1;
40}
41
Peter Stugefa8c5502008-05-10 23:07:52 +000042static int spi_rdid(unsigned char *readarr)
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +000043{
Carl-Daniel Hailfinger228231f2008-05-13 14:01:22 +000044 const unsigned char cmd[JEDEC_RDID_OUTSIZE] = {JEDEC_RDID};
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +000045
Peter Stugefa8c5502008-05-10 23:07:52 +000046 if (spi_command(JEDEC_RDID_OUTSIZE, JEDEC_RDID_INSIZE, cmd, readarr))
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +000047 return 1;
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +000048 printf_debug("RDID returned %02x %02x %02x.\n", readarr[0], readarr[1], readarr[2]);
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +000049 return 0;
50}
51
Carl-Daniel Hailfinger42c54972008-05-15 03:19:49 +000052static int spi_res(unsigned char *readarr)
53{
54 const unsigned char cmd[JEDEC_RES_OUTSIZE] = {JEDEC_RES, 0, 0, 0};
55
56 if (spi_command(JEDEC_RES_OUTSIZE, JEDEC_RES_INSIZE, cmd, readarr))
57 return 1;
58 printf_debug("RES returned %02x.\n", readarr[0]);
59 return 0;
60}
61
Peter Stugefa8c5502008-05-10 23:07:52 +000062void spi_write_enable()
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +000063{
Carl-Daniel Hailfinger228231f2008-05-13 14:01:22 +000064 const unsigned char cmd[JEDEC_WREN_OUTSIZE] = {JEDEC_WREN};
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +000065
66 /* Send WREN (Write Enable) */
Peter Stugefa8c5502008-05-10 23:07:52 +000067 spi_command(JEDEC_WREN_OUTSIZE, JEDEC_WREN_INSIZE, cmd, NULL);
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +000068}
69
Peter Stugefa8c5502008-05-10 23:07:52 +000070void spi_write_disable()
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +000071{
Carl-Daniel Hailfinger228231f2008-05-13 14:01:22 +000072 const unsigned char cmd[JEDEC_WRDI_OUTSIZE] = {JEDEC_WRDI};
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +000073
74 /* Send WRDI (Write Disable) */
Peter Stugefa8c5502008-05-10 23:07:52 +000075 spi_command(JEDEC_WRDI_OUTSIZE, JEDEC_WRDI_INSIZE, cmd, NULL);
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +000076}
77
Carl-Daniel Hailfinger42c54972008-05-15 03:19:49 +000078int probe_spi_rdid(struct flashchip *flash)
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +000079{
80 unsigned char readarr[3];
Carl-Daniel Hailfinger1263d2a2008-02-06 22:07:58 +000081 uint32_t manuf_id;
82 uint32_t model_id;
Peter Stugefa8c5502008-05-10 23:07:52 +000083 if (!spi_rdid(readarr)) {
Carl-Daniel Hailfingera758f512008-05-14 12:03:06 +000084 if (!oddparity(readarr[0]))
85 printf_debug("RDID byte 0 parity violation.\n");
Carl-Daniel Hailfinger1263d2a2008-02-06 22:07:58 +000086 /* Check if this is a continuation vendor ID */
87 if (readarr[0] == 0x7f) {
Carl-Daniel Hailfingera758f512008-05-14 12:03:06 +000088 if (!oddparity(readarr[1]))
89 printf_debug("RDID byte 1 parity violation.\n");
Carl-Daniel Hailfinger1263d2a2008-02-06 22:07:58 +000090 manuf_id = (readarr[0] << 8) | readarr[1];
91 model_id = readarr[2];
92 } else {
93 manuf_id = readarr[0];
94 model_id = (readarr[1] << 8) | readarr[2];
95 }
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +000096 printf_debug("%s: id1 0x%x, id2 0x%x\n", __FUNCTION__, manuf_id, model_id);
Carl-Daniel Hailfingere973b052008-01-04 16:22:09 +000097 if (manuf_id == flash->manufacture_id &&
98 model_id == flash->model_id) {
99 /* Print the status register to tell the
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000100 * user about possible write protection.
101 */
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000102 spi_prettyprint_status_register(flash);
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000103
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000104 return 1;
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000105 }
Carl-Daniel Hailfingere973b052008-01-04 16:22:09 +0000106 /* Test if this is a pure vendor match. */
107 if (manuf_id == flash->manufacture_id &&
108 GENERIC_DEVICE_ID == flash->model_id)
109 return 1;
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000110 }
111
112 return 0;
113}
114
Carl-Daniel Hailfinger42c54972008-05-15 03:19:49 +0000115int probe_spi_res(struct flashchip *flash)
116{
117 unsigned char readarr[3];
118 uint32_t model_id;
119 if (!spi_rdid(readarr)) {
120 /* Check if RDID returns 0xff 0xff 0xff, then we use RES. */
121 if ((readarr[0] != 0xff) || (readarr[1] != 0xff) ||
122 (readarr[2] != 0xff))
123 return 0;
124 } else {
125 /* We couldn't issue RDID, it's pointless to try RES. */
126 return 0;
127 }
128 if (!spi_res(readarr)) {
129 model_id = readarr[0];
130 printf_debug("%s: id 0x%x\n", __FUNCTION__, model_id);
131 if (model_id == flash->model_id) {
132 /* Print the status register to tell the
133 * user about possible write protection.
134 */
135 spi_prettyprint_status_register(flash);
136
137 return 1;
138 }
139 }
140
141 return 0;
142}
143
Peter Stugefa8c5502008-05-10 23:07:52 +0000144uint8_t spi_read_status_register()
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000145{
Carl-Daniel Hailfinger228231f2008-05-13 14:01:22 +0000146 const unsigned char cmd[JEDEC_RDSR_OUTSIZE] = {JEDEC_RDSR};
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000147 unsigned char readarr[1];
148
149 /* Read Status Register */
Peter Stugefa8c5502008-05-10 23:07:52 +0000150 spi_command(JEDEC_RDSR_OUTSIZE, JEDEC_RDSR_INSIZE, cmd, readarr);
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000151 return readarr[0];
152}
153
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000154/* Prettyprint the status register. Common definitions.
155 */
156void spi_prettyprint_status_register_common(uint8_t status)
157{
158 printf_debug("Chip status register: Bit 5 / Block Protect 3 (BP3) is "
159 "%sset\n", (status & (1 << 5)) ? "" : "not ");
160 printf_debug("Chip status register: Bit 4 / Block Protect 2 (BP2) is "
161 "%sset\n", (status & (1 << 4)) ? "" : "not ");
162 printf_debug("Chip status register: Bit 3 / Block Protect 1 (BP1) is "
163 "%sset\n", (status & (1 << 3)) ? "" : "not ");
164 printf_debug("Chip status register: Bit 2 / Block Protect 0 (BP0) is "
165 "%sset\n", (status & (1 << 2)) ? "" : "not ");
166 printf_debug("Chip status register: Write Enable Latch (WEL) is "
167 "%sset\n", (status & (1 << 1)) ? "" : "not ");
168 printf_debug("Chip status register: Write In Progress (WIP/BUSY) is "
169 "%sset\n", (status & (1 << 0)) ? "" : "not ");
170}
171
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000172/* Prettyprint the status register. Works for
173 * ST M25P series
174 * MX MX25L series
175 */
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000176void spi_prettyprint_status_register_st_m25p(uint8_t status)
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000177{
178 printf_debug("Chip status register: Status Register Write Disable "
179 "(SRWD) is %sset\n", (status & (1 << 7)) ? "" : "not ");
180 printf_debug("Chip status register: Bit 6 is "
181 "%sset\n", (status & (1 << 6)) ? "" : "not ");
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000182 spi_prettyprint_status_register_common(status);
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000183}
184
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000185/* Prettyprint the status register. Works for
186 * SST 25VF016
187 */
188void spi_prettyprint_status_register_sst25vf016(uint8_t status)
189{
Carl-Daniel Hailfingerd3568ad2008-01-22 14:37:31 +0000190 const char *bpt[] = {
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000191 "none",
192 "1F0000H-1FFFFFH",
193 "1E0000H-1FFFFFH",
194 "1C0000H-1FFFFFH",
195 "180000H-1FFFFFH",
196 "100000H-1FFFFFH",
Carl-Daniel Hailfingerd3568ad2008-01-22 14:37:31 +0000197 "all", "all"
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000198 };
199 printf_debug("Chip status register: Block Protect Write Disable "
200 "(BPL) is %sset\n", (status & (1 << 7)) ? "" : "not ");
201 printf_debug("Chip status register: Auto Address Increment Programming "
202 "(AAI) is %sset\n", (status & (1 << 6)) ? "" : "not ");
203 spi_prettyprint_status_register_common(status);
204 printf_debug("Resulting block protection : %s\n",
205 bpt[(status & 0x1c) >> 2]);
206}
207
208void spi_prettyprint_status_register(struct flashchip *flash)
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000209{
210 uint8_t status;
211
Peter Stugefa8c5502008-05-10 23:07:52 +0000212 status = spi_read_status_register();
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000213 printf_debug("Chip status register is %02x\n", status);
214 switch (flash->manufacture_id) {
215 case ST_ID:
216 case MX_ID:
217 if ((flash->model_id & 0xff00) == 0x2000)
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000218 spi_prettyprint_status_register_st_m25p(status);
219 break;
220 case SST_ID:
221 if (flash->model_id == SST_25VF016B)
222 spi_prettyprint_status_register_sst25vf016(status);
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000223 break;
224 }
225}
226
Peter Stugefa8c5502008-05-10 23:07:52 +0000227int spi_chip_erase_c7(struct flashchip *flash)
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000228{
Carl-Daniel Hailfinger228231f2008-05-13 14:01:22 +0000229 const unsigned char cmd[JEDEC_CE_C7_OUTSIZE] = {JEDEC_CE_C7};
Carl-Daniel Hailfingerf5df46f2007-12-16 21:15:27 +0000230
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000231 spi_disable_blockprotect();
Peter Stugefa8c5502008-05-10 23:07:52 +0000232 spi_write_enable();
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000233 /* Send CE (Chip Erase) */
Peter Stugefa8c5502008-05-10 23:07:52 +0000234 spi_command(JEDEC_CE_C7_OUTSIZE, JEDEC_CE_C7_INSIZE, cmd, NULL);
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000235 /* Wait until the Write-In-Progress bit is cleared.
236 * This usually takes 1-85 s, so wait in 1 s steps.
237 */
Peter Stugefa8c5502008-05-10 23:07:52 +0000238 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000239 sleep(1);
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000240 return 0;
241}
242
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000243/* Block size is usually
244 * 64k for Macronix
245 * 32k for SST
246 * 4-32k non-uniform for EON
247 */
Peter Stugefa8c5502008-05-10 23:07:52 +0000248int spi_block_erase_d8(const struct flashchip *flash, unsigned long addr)
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000249{
Carl-Daniel Hailfinger228231f2008-05-13 14:01:22 +0000250 unsigned char cmd[JEDEC_BE_D8_OUTSIZE] = {JEDEC_BE_D8};
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000251
252 cmd[1] = (addr & 0x00ff0000) >> 16;
253 cmd[2] = (addr & 0x0000ff00) >> 8;
254 cmd[3] = (addr & 0x000000ff);
Peter Stugefa8c5502008-05-10 23:07:52 +0000255 spi_write_enable();
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000256 /* Send BE (Block Erase) */
Peter Stugefa8c5502008-05-10 23:07:52 +0000257 spi_command(JEDEC_BE_D8_OUTSIZE, JEDEC_BE_D8_INSIZE, cmd, NULL);
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000258 /* Wait until the Write-In-Progress bit is cleared.
259 * This usually takes 100-4000 ms, so wait in 100 ms steps.
260 */
Peter Stugefa8c5502008-05-10 23:07:52 +0000261 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000262 usleep(100 * 1000);
263 return 0;
264}
265
266/* Sector size is usually 4k, though Macronix eliteflash has 64k */
Peter Stugefa8c5502008-05-10 23:07:52 +0000267int spi_sector_erase(const struct flashchip *flash, unsigned long addr)
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000268{
Carl-Daniel Hailfinger228231f2008-05-13 14:01:22 +0000269 unsigned char cmd[JEDEC_SE_OUTSIZE] = {JEDEC_SE};
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000270 cmd[1] = (addr & 0x00ff0000) >> 16;
271 cmd[2] = (addr & 0x0000ff00) >> 8;
272 cmd[3] = (addr & 0x000000ff);
273
Peter Stugefa8c5502008-05-10 23:07:52 +0000274 spi_write_enable();
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000275 /* Send SE (Sector Erase) */
Peter Stugefa8c5502008-05-10 23:07:52 +0000276 spi_command(JEDEC_SE_OUTSIZE, JEDEC_SE_INSIZE, cmd, NULL);
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000277 /* Wait until the Write-In-Progress bit is cleared.
278 * This usually takes 15-800 ms, so wait in 10 ms steps.
279 */
Peter Stugefa8c5502008-05-10 23:07:52 +0000280 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000281 usleep(10 * 1000);
282 return 0;
283}
284
Peter Stugefa8c5502008-05-10 23:07:52 +0000285void spi_page_program(int block, uint8_t *buf, uint8_t *bios)
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000286{
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000287 if (it8716f_flashport) {
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000288 it8716f_spi_page_program(block, buf, bios);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000289 return;
290 }
291 printf_debug("%s called, but no SPI chipset detected\n", __FUNCTION__);
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000292}
293
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000294/*
295 * This is according the SST25VF016 datasheet, who knows it is more
296 * generic that this...
297 */
298void spi_write_status_register(int status)
299{
Carl-Daniel Hailfinger228231f2008-05-13 14:01:22 +0000300 const unsigned char cmd[JEDEC_WRSR_OUTSIZE] = {JEDEC_WRSR, (unsigned char)status};
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000301
302 /* Send WRSR (Write Status Register) */
Peter Stugefa8c5502008-05-10 23:07:52 +0000303 spi_command(JEDEC_WRSR_OUTSIZE, JEDEC_WRSR_INSIZE, cmd, NULL);
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000304}
305
306void spi_byte_program(int address, uint8_t byte)
307{
308 const unsigned char cmd[JEDEC_BYTE_PROGRAM_OUTSIZE] = {JEDEC_BYTE_PROGRAM,
309 (address>>16)&0xff,
310 (address>>8)&0xff,
311 (address>>0)&0xff,
312 byte
313 };
314
315 /* Send Byte-Program */
Peter Stugefa8c5502008-05-10 23:07:52 +0000316 spi_command(JEDEC_BYTE_PROGRAM_OUTSIZE, JEDEC_BYTE_PROGRAM_INSIZE, cmd, NULL);
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000317}
318
319void spi_disable_blockprotect(void)
320{
321 uint8_t status;
322
Peter Stugefa8c5502008-05-10 23:07:52 +0000323 status = spi_read_status_register();
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000324 /* If there is block protection in effect, unprotect it first. */
325 if ((status & 0x3c) != 0) {
326 printf_debug("Some block protection in effect, disabling\n");
Peter Stugefa8c5502008-05-10 23:07:52 +0000327 spi_write_enable();
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000328 spi_write_status_register(status & ~0x3c);
329 }
330}
331
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000332void spi_nbyte_read(int address, uint8_t *bytes, int len)
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000333{
334 const unsigned char cmd[JEDEC_READ_OUTSIZE] = {JEDEC_READ,
Carl-Daniel Hailfingerd3568ad2008-01-22 14:37:31 +0000335 (address >> 16) & 0xff,
336 (address >> 8) & 0xff,
337 (address >> 0) & 0xff,
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000338 };
339
340 /* Send Read */
Peter Stugefa8c5502008-05-10 23:07:52 +0000341 spi_command(JEDEC_READ_OUTSIZE, len, cmd, bytes);
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000342}
343
Peter Stugefa8c5502008-05-10 23:07:52 +0000344int spi_chip_read(struct flashchip *flash, uint8_t *buf)
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000345{
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000346 if (it8716f_flashport)
347 return it8716f_spi_chip_read(flash, buf);
348 printf_debug("%s called, but no SPI chipset detected\n", __FUNCTION__);
349 return 1;
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000350}
351
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000352int spi_chip_write(struct flashchip *flash, uint8_t *buf)
353{
354 if (it8716f_flashport)
355 return it8716f_spi_chip_write(flash, buf);
356 printf_debug("%s called, but no SPI chipset detected\n", __FUNCTION__);
357 return 1;
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000358}
359