blob: 7fdad82c4910f35691ebf9697842645e7cdb8ab0 [file] [log] [blame]
stepand4b13752007-10-15 21:45:29 +00001/*
2 * This file is part of the flashrom project.
3 *
hailfingerb8f7e882008-01-19 00:04:46 +00004 * Copyright (C) 2007, 2008 Carl-Daniel Hailfinger
stepandbd3af12008-06-27 16:28:34 +00005 * Copyright (C) 2008 coresystems GmbH
stepand4b13752007-10-15 21:45:29 +00006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
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/*
22 * Contains the generic SPI framework
23 */
24
25#include <stdio.h>
26#include <pci/pci.h>
27#include <stdint.h>
28#include <string.h>
29#include "flash.h"
hailfinger78031562008-05-13 14:58:23 +000030#include "spi.h"
stepand4b13752007-10-15 21:45:29 +000031
hailfingerb8f7e882008-01-19 00:04:46 +000032
33void spi_prettyprint_status_register(struct flashchip *flash);
stepand4b13752007-10-15 21:45:29 +000034
stuge2bb6ab32008-05-10 23:07:52 +000035int spi_command(unsigned int writecnt, unsigned int readcnt, const unsigned char *writearr, unsigned char *readarr)
hailfinger35cc8162007-10-16 21:09:06 +000036{
37 if (it8716f_flashport)
hailfinger8d8beb52008-05-10 23:40:51 +000038 return it8716f_spi_command(writecnt, readcnt, writearr, readarr);
ruik9bc51c02008-06-30 21:38:30 +000039 else if ((ich7_detected) || (viaspi_detected))
40 return ich_spi_command(writecnt, readcnt, writearr, readarr);
hailfinger82e7ddb2008-05-16 12:55:55 +000041 else if (ich9_detected)
42 return ich_spi_command(writecnt, readcnt, writearr, readarr);
hailfingerf1961cb2007-12-29 10:15:58 +000043 printf_debug("%s called, but no SPI chipset detected\n", __FUNCTION__);
hailfinger35cc8162007-10-16 21:09:06 +000044 return 1;
45}
46
ruikdbe18ee2008-06-30 21:45:17 +000047static int spi_rdid(unsigned char *readarr, int bytes)
stepand4b13752007-10-15 21:45:29 +000048{
hailfingereb5dfbd2008-05-13 14:01:22 +000049 const unsigned char cmd[JEDEC_RDID_OUTSIZE] = {JEDEC_RDID};
stepand4b13752007-10-15 21:45:29 +000050
ruikdbe18ee2008-06-30 21:45:17 +000051 if (spi_command(JEDEC_RDID_OUTSIZE, bytes, cmd, readarr))
stepand4b13752007-10-15 21:45:29 +000052 return 1;
hailfingerf1961cb2007-12-29 10:15:58 +000053 printf_debug("RDID returned %02x %02x %02x.\n", readarr[0], readarr[1], readarr[2]);
stepand4b13752007-10-15 21:45:29 +000054 return 0;
55}
56
hailfinger82893122008-05-15 03:19:49 +000057static int spi_res(unsigned char *readarr)
58{
59 const unsigned char cmd[JEDEC_RES_OUTSIZE] = {JEDEC_RES, 0, 0, 0};
60
61 if (spi_command(JEDEC_RES_OUTSIZE, JEDEC_RES_INSIZE, cmd, readarr))
62 return 1;
63 printf_debug("RES returned %02x.\n", readarr[0]);
64 return 0;
65}
66
stuge2bb6ab32008-05-10 23:07:52 +000067void spi_write_enable()
hailfingerf71c0ac2007-10-18 00:24:07 +000068{
hailfingereb5dfbd2008-05-13 14:01:22 +000069 const unsigned char cmd[JEDEC_WREN_OUTSIZE] = {JEDEC_WREN};
hailfingerf71c0ac2007-10-18 00:24:07 +000070
71 /* Send WREN (Write Enable) */
stuge2bb6ab32008-05-10 23:07:52 +000072 spi_command(JEDEC_WREN_OUTSIZE, JEDEC_WREN_INSIZE, cmd, NULL);
hailfingerf71c0ac2007-10-18 00:24:07 +000073}
74
stuge2bb6ab32008-05-10 23:07:52 +000075void spi_write_disable()
hailfingerf71c0ac2007-10-18 00:24:07 +000076{
hailfingereb5dfbd2008-05-13 14:01:22 +000077 const unsigned char cmd[JEDEC_WRDI_OUTSIZE] = {JEDEC_WRDI};
hailfingerf71c0ac2007-10-18 00:24:07 +000078
79 /* Send WRDI (Write Disable) */
stuge2bb6ab32008-05-10 23:07:52 +000080 spi_command(JEDEC_WRDI_OUTSIZE, JEDEC_WRDI_INSIZE, cmd, NULL);
hailfingerf71c0ac2007-10-18 00:24:07 +000081}
82
ruikdbe18ee2008-06-30 21:45:17 +000083static int probe_spi_rdid_generic(struct flashchip *flash, int bytes)
stepand4b13752007-10-15 21:45:29 +000084{
ruikdbe18ee2008-06-30 21:45:17 +000085 unsigned char readarr[4];
hailfinger492e3172008-02-06 22:07:58 +000086 uint32_t manuf_id;
87 uint32_t model_id;
hailfingerf1961cb2007-12-29 10:15:58 +000088
ruikdbe18ee2008-06-30 21:45:17 +000089 if (spi_rdid(readarr, bytes))
stuge7be66832008-06-24 01:22:03 +000090 return 0;
91
92 if (!oddparity(readarr[0]))
93 printf_debug("RDID byte 0 parity violation.\n");
94
95 /* Check if this is a continuation vendor ID */
96 if (readarr[0] == 0x7f) {
97 if (!oddparity(readarr[1]))
98 printf_debug("RDID byte 1 parity violation.\n");
99 manuf_id = (readarr[0] << 8) | readarr[1];
100 model_id = readarr[2];
ruikdbe18ee2008-06-30 21:45:17 +0000101 if (bytes > 3) {
102 model_id <<= 8;
103 model_id |= readarr[3];
104 }
stuge7be66832008-06-24 01:22:03 +0000105 } else {
106 manuf_id = readarr[0];
107 model_id = (readarr[1] << 8) | readarr[2];
stepand4b13752007-10-15 21:45:29 +0000108 }
109
stuge7be66832008-06-24 01:22:03 +0000110 printf_debug("%s: id1 0x%x, id2 0x%x\n", __FUNCTION__, manuf_id, model_id);
111
112 if (manuf_id == flash->manufacture_id &&
113 model_id == flash->model_id) {
114 /* Print the status register to tell the
115 * user about possible write protection.
116 */
117 spi_prettyprint_status_register(flash);
118
119 return 1;
120 }
121
122 /* Test if this is a pure vendor match. */
123 if (manuf_id == flash->manufacture_id &&
124 GENERIC_DEVICE_ID == flash->model_id)
125 return 1;
126
stepand4b13752007-10-15 21:45:29 +0000127 return 0;
128}
129
ruikdbe18ee2008-06-30 21:45:17 +0000130int probe_spi_rdid(struct flashchip *flash) {
131 return probe_spi_rdid_generic(flash, 3);
132}
133
134/* support 4 bytes flash ID */
135int probe_spi_rdid4(struct flashchip *flash) {
136
137 /* only some SPI chipsets support 4 bytes commands */
138 if (!((ich7_detected) || (ich9_detected) || (viaspi_detected)))
139 return 0;
140 return probe_spi_rdid_generic(flash, 4);
141}
142
hailfinger82893122008-05-15 03:19:49 +0000143int probe_spi_res(struct flashchip *flash)
144{
145 unsigned char readarr[3];
146 uint32_t model_id;
stuge7be66832008-06-24 01:22:03 +0000147
ruikdbe18ee2008-06-30 21:45:17 +0000148 if (spi_rdid(readarr, 3))
hailfinger82893122008-05-15 03:19:49 +0000149 /* We couldn't issue RDID, it's pointless to try RES. */
150 return 0;
hailfinger82893122008-05-15 03:19:49 +0000151
stuge7be66832008-06-24 01:22:03 +0000152 /* Check if RDID returns 0xff 0xff 0xff, then we use RES. */
153 if ((readarr[0] != 0xff) || (readarr[1] != 0xff) ||
154 (readarr[2] != 0xff))
155 return 0;
hailfinger82893122008-05-15 03:19:49 +0000156
stuge7be66832008-06-24 01:22:03 +0000157 if (spi_res(readarr))
158 return 0;
159
160 model_id = readarr[0];
161 printf_debug("%s: id 0x%x\n", __FUNCTION__, model_id);
162 if (model_id != flash->model_id)
163 return 0;
164
165 /* Print the status register to tell the
166 * user about possible write protection.
167 */
168 spi_prettyprint_status_register(flash);
169 return 1;
hailfinger82893122008-05-15 03:19:49 +0000170}
171
stuge2bb6ab32008-05-10 23:07:52 +0000172uint8_t spi_read_status_register()
hailfingerf71c0ac2007-10-18 00:24:07 +0000173{
hailfingereb5dfbd2008-05-13 14:01:22 +0000174 const unsigned char cmd[JEDEC_RDSR_OUTSIZE] = {JEDEC_RDSR};
hailfingerf71c0ac2007-10-18 00:24:07 +0000175 unsigned char readarr[1];
176
177 /* Read Status Register */
stuge2bb6ab32008-05-10 23:07:52 +0000178 spi_command(JEDEC_RDSR_OUTSIZE, JEDEC_RDSR_INSIZE, cmd, readarr);
hailfingerf71c0ac2007-10-18 00:24:07 +0000179 return readarr[0];
180}
181
hailfingerb8f7e882008-01-19 00:04:46 +0000182/* Prettyprint the status register. Common definitions.
183 */
184void spi_prettyprint_status_register_common(uint8_t status)
185{
186 printf_debug("Chip status register: Bit 5 / Block Protect 3 (BP3) is "
187 "%sset\n", (status & (1 << 5)) ? "" : "not ");
188 printf_debug("Chip status register: Bit 4 / Block Protect 2 (BP2) is "
189 "%sset\n", (status & (1 << 4)) ? "" : "not ");
190 printf_debug("Chip status register: Bit 3 / Block Protect 1 (BP1) is "
191 "%sset\n", (status & (1 << 3)) ? "" : "not ");
192 printf_debug("Chip status register: Bit 2 / Block Protect 0 (BP0) is "
193 "%sset\n", (status & (1 << 2)) ? "" : "not ");
194 printf_debug("Chip status register: Write Enable Latch (WEL) is "
195 "%sset\n", (status & (1 << 1)) ? "" : "not ");
196 printf_debug("Chip status register: Write In Progress (WIP/BUSY) is "
197 "%sset\n", (status & (1 << 0)) ? "" : "not ");
198}
199
hailfingerf1961cb2007-12-29 10:15:58 +0000200/* Prettyprint the status register. Works for
201 * ST M25P series
202 * MX MX25L series
203 */
hailfingerb8f7e882008-01-19 00:04:46 +0000204void spi_prettyprint_status_register_st_m25p(uint8_t status)
hailfingerf1961cb2007-12-29 10:15:58 +0000205{
206 printf_debug("Chip status register: Status Register Write Disable "
207 "(SRWD) is %sset\n", (status & (1 << 7)) ? "" : "not ");
208 printf_debug("Chip status register: Bit 6 is "
209 "%sset\n", (status & (1 << 6)) ? "" : "not ");
hailfingerb8f7e882008-01-19 00:04:46 +0000210 spi_prettyprint_status_register_common(status);
hailfingerf1961cb2007-12-29 10:15:58 +0000211}
212
hailfingerb8f7e882008-01-19 00:04:46 +0000213/* Prettyprint the status register. Works for
214 * SST 25VF016
215 */
216void spi_prettyprint_status_register_sst25vf016(uint8_t status)
217{
hailfinger9cd4cf12008-01-22 14:37:31 +0000218 const char *bpt[] = {
hailfingerb8f7e882008-01-19 00:04:46 +0000219 "none",
220 "1F0000H-1FFFFFH",
221 "1E0000H-1FFFFFH",
222 "1C0000H-1FFFFFH",
223 "180000H-1FFFFFH",
224 "100000H-1FFFFFH",
hailfinger9cd4cf12008-01-22 14:37:31 +0000225 "all", "all"
hailfingerb8f7e882008-01-19 00:04:46 +0000226 };
227 printf_debug("Chip status register: Block Protect Write Disable "
228 "(BPL) is %sset\n", (status & (1 << 7)) ? "" : "not ");
229 printf_debug("Chip status register: Auto Address Increment Programming "
230 "(AAI) is %sset\n", (status & (1 << 6)) ? "" : "not ");
231 spi_prettyprint_status_register_common(status);
232 printf_debug("Resulting block protection : %s\n",
233 bpt[(status & 0x1c) >> 2]);
234}
235
236void spi_prettyprint_status_register(struct flashchip *flash)
hailfingerf1961cb2007-12-29 10:15:58 +0000237{
238 uint8_t status;
239
stuge2bb6ab32008-05-10 23:07:52 +0000240 status = spi_read_status_register();
hailfingerf1961cb2007-12-29 10:15:58 +0000241 printf_debug("Chip status register is %02x\n", status);
242 switch (flash->manufacture_id) {
243 case ST_ID:
hailfinger8b869132008-05-15 22:32:08 +0000244 if (((flash->model_id & 0xff00) == 0x2000) ||
245 ((flash->model_id & 0xff00) == 0x2500))
246 spi_prettyprint_status_register_st_m25p(status);
247 break;
hailfingerf1961cb2007-12-29 10:15:58 +0000248 case MX_ID:
249 if ((flash->model_id & 0xff00) == 0x2000)
hailfingerb8f7e882008-01-19 00:04:46 +0000250 spi_prettyprint_status_register_st_m25p(status);
251 break;
252 case SST_ID:
253 if (flash->model_id == SST_25VF016B)
254 spi_prettyprint_status_register_sst25vf016(status);
hailfingerf1961cb2007-12-29 10:15:58 +0000255 break;
256 }
257}
258
stuge2bb6ab32008-05-10 23:07:52 +0000259int spi_chip_erase_c7(struct flashchip *flash)
hailfingerf71c0ac2007-10-18 00:24:07 +0000260{
hailfingereb5dfbd2008-05-13 14:01:22 +0000261 const unsigned char cmd[JEDEC_CE_C7_OUTSIZE] = {JEDEC_CE_C7};
hailfingera9698562007-12-16 21:15:27 +0000262
hailfingerb8f7e882008-01-19 00:04:46 +0000263 spi_disable_blockprotect();
stuge2bb6ab32008-05-10 23:07:52 +0000264 spi_write_enable();
hailfingerf71c0ac2007-10-18 00:24:07 +0000265 /* Send CE (Chip Erase) */
stuge2bb6ab32008-05-10 23:07:52 +0000266 spi_command(JEDEC_CE_C7_OUTSIZE, JEDEC_CE_C7_INSIZE, cmd, NULL);
hailfinger1b24dbb2007-10-22 16:15:28 +0000267 /* Wait until the Write-In-Progress bit is cleared.
268 * This usually takes 1-85 s, so wait in 1 s steps.
269 */
stuge2bb6ab32008-05-10 23:07:52 +0000270 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
hailfingerf71c0ac2007-10-18 00:24:07 +0000271 sleep(1);
hailfingerf71c0ac2007-10-18 00:24:07 +0000272 return 0;
273}
274
hailfinger1b24dbb2007-10-22 16:15:28 +0000275/* Block size is usually
276 * 64k for Macronix
277 * 32k for SST
278 * 4-32k non-uniform for EON
279 */
stuge2bb6ab32008-05-10 23:07:52 +0000280int spi_block_erase_d8(const struct flashchip *flash, unsigned long addr)
hailfinger1b24dbb2007-10-22 16:15:28 +0000281{
hailfingereb5dfbd2008-05-13 14:01:22 +0000282 unsigned char cmd[JEDEC_BE_D8_OUTSIZE] = {JEDEC_BE_D8};
hailfinger1b24dbb2007-10-22 16:15:28 +0000283
284 cmd[1] = (addr & 0x00ff0000) >> 16;
285 cmd[2] = (addr & 0x0000ff00) >> 8;
286 cmd[3] = (addr & 0x000000ff);
stuge2bb6ab32008-05-10 23:07:52 +0000287 spi_write_enable();
hailfinger1b24dbb2007-10-22 16:15:28 +0000288 /* Send BE (Block Erase) */
stuge2bb6ab32008-05-10 23:07:52 +0000289 spi_command(JEDEC_BE_D8_OUTSIZE, JEDEC_BE_D8_INSIZE, cmd, NULL);
hailfinger1b24dbb2007-10-22 16:15:28 +0000290 /* Wait until the Write-In-Progress bit is cleared.
291 * This usually takes 100-4000 ms, so wait in 100 ms steps.
292 */
stuge2bb6ab32008-05-10 23:07:52 +0000293 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
hailfinger1b24dbb2007-10-22 16:15:28 +0000294 usleep(100 * 1000);
295 return 0;
296}
297
298/* Sector size is usually 4k, though Macronix eliteflash has 64k */
stuge2bb6ab32008-05-10 23:07:52 +0000299int spi_sector_erase(const struct flashchip *flash, unsigned long addr)
hailfinger1b24dbb2007-10-22 16:15:28 +0000300{
hailfingereb5dfbd2008-05-13 14:01:22 +0000301 unsigned char cmd[JEDEC_SE_OUTSIZE] = {JEDEC_SE};
hailfinger1b24dbb2007-10-22 16:15:28 +0000302 cmd[1] = (addr & 0x00ff0000) >> 16;
303 cmd[2] = (addr & 0x0000ff00) >> 8;
304 cmd[3] = (addr & 0x000000ff);
305
stuge2bb6ab32008-05-10 23:07:52 +0000306 spi_write_enable();
hailfinger1b24dbb2007-10-22 16:15:28 +0000307 /* Send SE (Sector Erase) */
stuge2bb6ab32008-05-10 23:07:52 +0000308 spi_command(JEDEC_SE_OUTSIZE, JEDEC_SE_INSIZE, cmd, NULL);
hailfinger1b24dbb2007-10-22 16:15:28 +0000309 /* Wait until the Write-In-Progress bit is cleared.
310 * This usually takes 15-800 ms, so wait in 10 ms steps.
311 */
stuge2bb6ab32008-05-10 23:07:52 +0000312 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
hailfinger1b24dbb2007-10-22 16:15:28 +0000313 usleep(10 * 1000);
314 return 0;
315}
316
stuge2bb6ab32008-05-10 23:07:52 +0000317void spi_page_program(int block, uint8_t *buf, uint8_t *bios)
hailfingerf71c0ac2007-10-18 00:24:07 +0000318{
hailfinger2c361e42008-05-13 23:03:12 +0000319 if (it8716f_flashport) {
hailfingerf71c0ac2007-10-18 00:24:07 +0000320 it8716f_spi_page_program(block, buf, bios);
hailfinger2c361e42008-05-13 23:03:12 +0000321 return;
322 }
323 printf_debug("%s called, but no SPI chipset detected\n", __FUNCTION__);
hailfingerf71c0ac2007-10-18 00:24:07 +0000324}
325
hailfingerb8f7e882008-01-19 00:04:46 +0000326/*
327 * This is according the SST25VF016 datasheet, who knows it is more
328 * generic that this...
329 */
330void spi_write_status_register(int status)
331{
hailfingereb5dfbd2008-05-13 14:01:22 +0000332 const unsigned char cmd[JEDEC_WRSR_OUTSIZE] = {JEDEC_WRSR, (unsigned char)status};
hailfingerb8f7e882008-01-19 00:04:46 +0000333
334 /* Send WRSR (Write Status Register) */
stuge2bb6ab32008-05-10 23:07:52 +0000335 spi_command(JEDEC_WRSR_OUTSIZE, JEDEC_WRSR_INSIZE, cmd, NULL);
hailfingerb8f7e882008-01-19 00:04:46 +0000336}
337
338void spi_byte_program(int address, uint8_t byte)
339{
340 const unsigned char cmd[JEDEC_BYTE_PROGRAM_OUTSIZE] = {JEDEC_BYTE_PROGRAM,
341 (address>>16)&0xff,
342 (address>>8)&0xff,
343 (address>>0)&0xff,
344 byte
345 };
346
347 /* Send Byte-Program */
stuge2bb6ab32008-05-10 23:07:52 +0000348 spi_command(JEDEC_BYTE_PROGRAM_OUTSIZE, JEDEC_BYTE_PROGRAM_INSIZE, cmd, NULL);
hailfingerb8f7e882008-01-19 00:04:46 +0000349}
350
351void spi_disable_blockprotect(void)
352{
353 uint8_t status;
354
stuge2bb6ab32008-05-10 23:07:52 +0000355 status = spi_read_status_register();
hailfingerb8f7e882008-01-19 00:04:46 +0000356 /* If there is block protection in effect, unprotect it first. */
357 if ((status & 0x3c) != 0) {
358 printf_debug("Some block protection in effect, disabling\n");
stuge2bb6ab32008-05-10 23:07:52 +0000359 spi_write_enable();
hailfingerb8f7e882008-01-19 00:04:46 +0000360 spi_write_status_register(status & ~0x3c);
361 }
362}
363
hailfinger2c361e42008-05-13 23:03:12 +0000364void spi_nbyte_read(int address, uint8_t *bytes, int len)
hailfingerb8f7e882008-01-19 00:04:46 +0000365{
366 const unsigned char cmd[JEDEC_READ_OUTSIZE] = {JEDEC_READ,
hailfinger9cd4cf12008-01-22 14:37:31 +0000367 (address >> 16) & 0xff,
368 (address >> 8) & 0xff,
369 (address >> 0) & 0xff,
hailfingerb8f7e882008-01-19 00:04:46 +0000370 };
371
372 /* Send Read */
stuge2bb6ab32008-05-10 23:07:52 +0000373 spi_command(JEDEC_READ_OUTSIZE, len, cmd, bytes);
hailfingerb8f7e882008-01-19 00:04:46 +0000374}
375
stuge2bb6ab32008-05-10 23:07:52 +0000376int spi_chip_read(struct flashchip *flash, uint8_t *buf)
hailfingerb8f7e882008-01-19 00:04:46 +0000377{
hailfinger2c361e42008-05-13 23:03:12 +0000378 if (it8716f_flashport)
379 return it8716f_spi_chip_read(flash, buf);
ruik9bc51c02008-06-30 21:38:30 +0000380 else if ((ich7_detected) || (viaspi_detected))
381 return ich_spi_read(flash, buf);
hailfinger82e7ddb2008-05-16 12:55:55 +0000382 else if (ich9_detected)
383 return ich_spi_read(flash, buf);
hailfinger2c361e42008-05-13 23:03:12 +0000384 printf_debug("%s called, but no SPI chipset detected\n", __FUNCTION__);
385 return 1;
hailfingerb8f7e882008-01-19 00:04:46 +0000386}
387
hailfinger2c361e42008-05-13 23:03:12 +0000388int spi_chip_write(struct flashchip *flash, uint8_t *buf)
389{
390 if (it8716f_flashport)
391 return it8716f_spi_chip_write(flash, buf);
ruik9bc51c02008-06-30 21:38:30 +0000392 else if ((ich7_detected) || (viaspi_detected))
393 return ich_spi_write(flash, buf);
hailfinger82e7ddb2008-05-16 12:55:55 +0000394 else if (ich9_detected)
395 return ich_spi_write(flash, buf);
hailfinger2c361e42008-05-13 23:03:12 +0000396 printf_debug("%s called, but no SPI chipset detected\n", __FUNCTION__);
397 return 1;
hailfingerf71c0ac2007-10-18 00:24:07 +0000398}
399