blob: 5cfc052103345699ee5e7db60c2ed3ab346112bc [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
Peter Stugefa8c5502008-05-10 23:07:52 +000052void spi_write_enable()
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +000053{
Carl-Daniel Hailfinger228231f2008-05-13 14:01:22 +000054 const unsigned char cmd[JEDEC_WREN_OUTSIZE] = {JEDEC_WREN};
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +000055
56 /* Send WREN (Write Enable) */
Peter Stugefa8c5502008-05-10 23:07:52 +000057 spi_command(JEDEC_WREN_OUTSIZE, JEDEC_WREN_INSIZE, cmd, NULL);
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +000058}
59
Peter Stugefa8c5502008-05-10 23:07:52 +000060void spi_write_disable()
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +000061{
Carl-Daniel Hailfinger228231f2008-05-13 14:01:22 +000062 const unsigned char cmd[JEDEC_WRDI_OUTSIZE] = {JEDEC_WRDI};
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +000063
64 /* Send WRDI (Write Disable) */
Peter Stugefa8c5502008-05-10 23:07:52 +000065 spi_command(JEDEC_WRDI_OUTSIZE, JEDEC_WRDI_INSIZE, cmd, NULL);
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +000066}
67
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +000068int probe_spi(struct flashchip *flash)
69{
70 unsigned char readarr[3];
Carl-Daniel Hailfinger1263d2a2008-02-06 22:07:58 +000071 uint32_t manuf_id;
72 uint32_t model_id;
Peter Stugefa8c5502008-05-10 23:07:52 +000073 if (!spi_rdid(readarr)) {
Carl-Daniel Hailfinger1263d2a2008-02-06 22:07:58 +000074 /* Check if this is a continuation vendor ID */
75 if (readarr[0] == 0x7f) {
76 manuf_id = (readarr[0] << 8) | readarr[1];
77 model_id = readarr[2];
78 } else {
79 manuf_id = readarr[0];
80 model_id = (readarr[1] << 8) | readarr[2];
81 }
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +000082 printf_debug("%s: id1 0x%x, id2 0x%x\n", __FUNCTION__, manuf_id, model_id);
Carl-Daniel Hailfingere973b052008-01-04 16:22:09 +000083 if (manuf_id == flash->manufacture_id &&
84 model_id == flash->model_id) {
85 /* Print the status register to tell the
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +000086 * user about possible write protection.
87 */
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +000088 spi_prettyprint_status_register(flash);
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +000089
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +000090 return 1;
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +000091 }
Carl-Daniel Hailfingere973b052008-01-04 16:22:09 +000092 /* Test if this is a pure vendor match. */
93 if (manuf_id == flash->manufacture_id &&
94 GENERIC_DEVICE_ID == flash->model_id)
95 return 1;
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +000096 }
97
98 return 0;
99}
100
Peter Stugefa8c5502008-05-10 23:07:52 +0000101uint8_t spi_read_status_register()
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000102{
Carl-Daniel Hailfinger228231f2008-05-13 14:01:22 +0000103 const unsigned char cmd[JEDEC_RDSR_OUTSIZE] = {JEDEC_RDSR};
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000104 unsigned char readarr[1];
105
106 /* Read Status Register */
Peter Stugefa8c5502008-05-10 23:07:52 +0000107 spi_command(JEDEC_RDSR_OUTSIZE, JEDEC_RDSR_INSIZE, cmd, readarr);
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000108 return readarr[0];
109}
110
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000111/* Prettyprint the status register. Common definitions.
112 */
113void spi_prettyprint_status_register_common(uint8_t status)
114{
115 printf_debug("Chip status register: Bit 5 / Block Protect 3 (BP3) is "
116 "%sset\n", (status & (1 << 5)) ? "" : "not ");
117 printf_debug("Chip status register: Bit 4 / Block Protect 2 (BP2) is "
118 "%sset\n", (status & (1 << 4)) ? "" : "not ");
119 printf_debug("Chip status register: Bit 3 / Block Protect 1 (BP1) is "
120 "%sset\n", (status & (1 << 3)) ? "" : "not ");
121 printf_debug("Chip status register: Bit 2 / Block Protect 0 (BP0) is "
122 "%sset\n", (status & (1 << 2)) ? "" : "not ");
123 printf_debug("Chip status register: Write Enable Latch (WEL) is "
124 "%sset\n", (status & (1 << 1)) ? "" : "not ");
125 printf_debug("Chip status register: Write In Progress (WIP/BUSY) is "
126 "%sset\n", (status & (1 << 0)) ? "" : "not ");
127}
128
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000129/* Prettyprint the status register. Works for
130 * ST M25P series
131 * MX MX25L series
132 */
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000133void spi_prettyprint_status_register_st_m25p(uint8_t status)
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000134{
135 printf_debug("Chip status register: Status Register Write Disable "
136 "(SRWD) is %sset\n", (status & (1 << 7)) ? "" : "not ");
137 printf_debug("Chip status register: Bit 6 is "
138 "%sset\n", (status & (1 << 6)) ? "" : "not ");
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000139 spi_prettyprint_status_register_common(status);
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000140}
141
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000142/* Prettyprint the status register. Works for
143 * SST 25VF016
144 */
145void spi_prettyprint_status_register_sst25vf016(uint8_t status)
146{
Carl-Daniel Hailfingerd3568ad2008-01-22 14:37:31 +0000147 const char *bpt[] = {
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000148 "none",
149 "1F0000H-1FFFFFH",
150 "1E0000H-1FFFFFH",
151 "1C0000H-1FFFFFH",
152 "180000H-1FFFFFH",
153 "100000H-1FFFFFH",
Carl-Daniel Hailfingerd3568ad2008-01-22 14:37:31 +0000154 "all", "all"
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000155 };
156 printf_debug("Chip status register: Block Protect Write Disable "
157 "(BPL) is %sset\n", (status & (1 << 7)) ? "" : "not ");
158 printf_debug("Chip status register: Auto Address Increment Programming "
159 "(AAI) is %sset\n", (status & (1 << 6)) ? "" : "not ");
160 spi_prettyprint_status_register_common(status);
161 printf_debug("Resulting block protection : %s\n",
162 bpt[(status & 0x1c) >> 2]);
163}
164
165void spi_prettyprint_status_register(struct flashchip *flash)
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000166{
167 uint8_t status;
168
Peter Stugefa8c5502008-05-10 23:07:52 +0000169 status = spi_read_status_register();
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000170 printf_debug("Chip status register is %02x\n", status);
171 switch (flash->manufacture_id) {
172 case ST_ID:
173 case MX_ID:
174 if ((flash->model_id & 0xff00) == 0x2000)
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000175 spi_prettyprint_status_register_st_m25p(status);
176 break;
177 case SST_ID:
178 if (flash->model_id == SST_25VF016B)
179 spi_prettyprint_status_register_sst25vf016(status);
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000180 break;
181 }
182}
183
Peter Stugefa8c5502008-05-10 23:07:52 +0000184int spi_chip_erase_c7(struct flashchip *flash)
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000185{
Carl-Daniel Hailfinger228231f2008-05-13 14:01:22 +0000186 const unsigned char cmd[JEDEC_CE_C7_OUTSIZE] = {JEDEC_CE_C7};
Carl-Daniel Hailfingerf5df46f2007-12-16 21:15:27 +0000187
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000188 spi_disable_blockprotect();
Peter Stugefa8c5502008-05-10 23:07:52 +0000189 spi_write_enable();
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000190 /* Send CE (Chip Erase) */
Peter Stugefa8c5502008-05-10 23:07:52 +0000191 spi_command(JEDEC_CE_C7_OUTSIZE, JEDEC_CE_C7_INSIZE, cmd, NULL);
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000192 /* Wait until the Write-In-Progress bit is cleared.
193 * This usually takes 1-85 s, so wait in 1 s steps.
194 */
Peter Stugefa8c5502008-05-10 23:07:52 +0000195 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000196 sleep(1);
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000197 return 0;
198}
199
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000200/* Block size is usually
201 * 64k for Macronix
202 * 32k for SST
203 * 4-32k non-uniform for EON
204 */
Peter Stugefa8c5502008-05-10 23:07:52 +0000205int spi_block_erase_d8(const struct flashchip *flash, unsigned long addr)
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000206{
Carl-Daniel Hailfinger228231f2008-05-13 14:01:22 +0000207 unsigned char cmd[JEDEC_BE_D8_OUTSIZE] = {JEDEC_BE_D8};
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000208
209 cmd[1] = (addr & 0x00ff0000) >> 16;
210 cmd[2] = (addr & 0x0000ff00) >> 8;
211 cmd[3] = (addr & 0x000000ff);
Peter Stugefa8c5502008-05-10 23:07:52 +0000212 spi_write_enable();
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000213 /* Send BE (Block Erase) */
Peter Stugefa8c5502008-05-10 23:07:52 +0000214 spi_command(JEDEC_BE_D8_OUTSIZE, JEDEC_BE_D8_INSIZE, cmd, NULL);
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000215 /* Wait until the Write-In-Progress bit is cleared.
216 * This usually takes 100-4000 ms, so wait in 100 ms steps.
217 */
Peter Stugefa8c5502008-05-10 23:07:52 +0000218 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000219 usleep(100 * 1000);
220 return 0;
221}
222
223/* Sector size is usually 4k, though Macronix eliteflash has 64k */
Peter Stugefa8c5502008-05-10 23:07:52 +0000224int spi_sector_erase(const struct flashchip *flash, unsigned long addr)
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000225{
Carl-Daniel Hailfinger228231f2008-05-13 14:01:22 +0000226 unsigned char cmd[JEDEC_SE_OUTSIZE] = {JEDEC_SE};
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000227 cmd[1] = (addr & 0x00ff0000) >> 16;
228 cmd[2] = (addr & 0x0000ff00) >> 8;
229 cmd[3] = (addr & 0x000000ff);
230
Peter Stugefa8c5502008-05-10 23:07:52 +0000231 spi_write_enable();
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000232 /* Send SE (Sector Erase) */
Peter Stugefa8c5502008-05-10 23:07:52 +0000233 spi_command(JEDEC_SE_OUTSIZE, JEDEC_SE_INSIZE, cmd, NULL);
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000234 /* Wait until the Write-In-Progress bit is cleared.
235 * This usually takes 15-800 ms, so wait in 10 ms steps.
236 */
Peter Stugefa8c5502008-05-10 23:07:52 +0000237 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000238 usleep(10 * 1000);
239 return 0;
240}
241
Peter Stugefa8c5502008-05-10 23:07:52 +0000242void spi_page_program(int block, uint8_t *buf, uint8_t *bios)
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000243{
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000244 if (it8716f_flashport) {
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000245 it8716f_spi_page_program(block, buf, bios);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000246 return;
247 }
248 printf_debug("%s called, but no SPI chipset detected\n", __FUNCTION__);
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000249}
250
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000251/*
252 * This is according the SST25VF016 datasheet, who knows it is more
253 * generic that this...
254 */
255void spi_write_status_register(int status)
256{
Carl-Daniel Hailfinger228231f2008-05-13 14:01:22 +0000257 const unsigned char cmd[JEDEC_WRSR_OUTSIZE] = {JEDEC_WRSR, (unsigned char)status};
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000258
259 /* Send WRSR (Write Status Register) */
Peter Stugefa8c5502008-05-10 23:07:52 +0000260 spi_command(JEDEC_WRSR_OUTSIZE, JEDEC_WRSR_INSIZE, cmd, NULL);
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000261}
262
263void spi_byte_program(int address, uint8_t byte)
264{
265 const unsigned char cmd[JEDEC_BYTE_PROGRAM_OUTSIZE] = {JEDEC_BYTE_PROGRAM,
266 (address>>16)&0xff,
267 (address>>8)&0xff,
268 (address>>0)&0xff,
269 byte
270 };
271
272 /* Send Byte-Program */
Peter Stugefa8c5502008-05-10 23:07:52 +0000273 spi_command(JEDEC_BYTE_PROGRAM_OUTSIZE, JEDEC_BYTE_PROGRAM_INSIZE, cmd, NULL);
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000274}
275
276void spi_disable_blockprotect(void)
277{
278 uint8_t status;
279
Peter Stugefa8c5502008-05-10 23:07:52 +0000280 status = spi_read_status_register();
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000281 /* If there is block protection in effect, unprotect it first. */
282 if ((status & 0x3c) != 0) {
283 printf_debug("Some block protection in effect, disabling\n");
Peter Stugefa8c5502008-05-10 23:07:52 +0000284 spi_write_enable();
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000285 spi_write_status_register(status & ~0x3c);
286 }
287}
288
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000289void spi_nbyte_read(int address, uint8_t *bytes, int len)
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000290{
291 const unsigned char cmd[JEDEC_READ_OUTSIZE] = {JEDEC_READ,
Carl-Daniel Hailfingerd3568ad2008-01-22 14:37:31 +0000292 (address >> 16) & 0xff,
293 (address >> 8) & 0xff,
294 (address >> 0) & 0xff,
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000295 };
296
297 /* Send Read */
Peter Stugefa8c5502008-05-10 23:07:52 +0000298 spi_command(JEDEC_READ_OUTSIZE, len, cmd, bytes);
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000299}
300
Peter Stugefa8c5502008-05-10 23:07:52 +0000301int spi_chip_read(struct flashchip *flash, uint8_t *buf)
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000302{
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000303 if (it8716f_flashport)
304 return it8716f_spi_chip_read(flash, buf);
305 printf_debug("%s called, but no SPI chipset detected\n", __FUNCTION__);
306 return 1;
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000307}
308
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000309int spi_chip_write(struct flashchip *flash, uint8_t *buf)
310{
311 if (it8716f_flashport)
312 return it8716f_spi_chip_write(flash, buf);
313 printf_debug("%s called, but no SPI chipset detected\n", __FUNCTION__);
314 return 1;
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000315}
316