blob: 931385052179ff4b6e661dfe0624a8364cca2ead [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
5 * Copyright (C) 2008 Ronald Hoogenboom <ronald@zonnet.nl>
Carl-Daniel Hailfinger70539262007-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"
30
31#define ITE_SUPERIO_PORT1 0x2e
32#define ITE_SUPERIO_PORT2 0x4e
33
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +000034/* Read Electronic ID */
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +000035#define JEDEC_RDID {0x9f}
36#define JEDEC_RDID_OUTSIZE 0x01
37#define JEDEC_RDID_INSIZE 0x03
38
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +000039/* Write Enable */
40#define JEDEC_WREN {0x06}
41#define JEDEC_WREN_OUTSIZE 0x01
42#define JEDEC_WREN_INSIZE 0x00
43
44/* Write Disable */
45#define JEDEC_WRDI {0x04}
46#define JEDEC_WRDI_OUTSIZE 0x01
47#define JEDEC_WRDI_INSIZE 0x00
48
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +000049/* Chip Erase 0x60 is supported by Macronix/SST chips. */
Carl-Daniel Hailfinger21c78902007-12-17 14:33:32 +000050#define JEDEC_CE_60 {0x60};
51#define JEDEC_CE_60_OUTSIZE 0x01
52#define JEDEC_CE_60_INSIZE 0x00
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +000053
Carl-Daniel Hailfinger21c78902007-12-17 14:33:32 +000054/* Chip Erase 0xc7 is supported by ST/EON/Macronix chips. */
55#define JEDEC_CE_C7 {0xc7};
56#define JEDEC_CE_C7_OUTSIZE 0x01
57#define JEDEC_CE_C7_INSIZE 0x00
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +000058
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +000059/* Block Erase 0x52 is supported by SST chips. */
Carl-Daniel Hailfinger21c78902007-12-17 14:33:32 +000060#define JEDEC_BE_52 {0x52};
61#define JEDEC_BE_52_OUTSIZE 0x04
62#define JEDEC_BE_52_INSIZE 0x00
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +000063
64/* Block Erase 0xd8 is supported by EON/Macronix chips. */
Carl-Daniel Hailfinger21c78902007-12-17 14:33:32 +000065#define JEDEC_BE_D8 {0xd8};
66#define JEDEC_BE_D8_OUTSIZE 0x04
67#define JEDEC_BE_D8_INSIZE 0x00
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +000068
69/* Sector Erase 0x20 is supported by Macronix/SST chips. */
70#define JEDEC_SE {0x20};
71#define JEDEC_SE_OUTSIZE 0x04
72#define JEDEC_SE_INSIZE 0x00
73
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +000074/* Read Status Register */
75#define JEDEC_RDSR {0x05};
76#define JEDEC_RDSR_OUTSIZE 0x01
77#define JEDEC_RDSR_INSIZE 0x01
78#define JEDEC_RDSR_BIT_WIP (0x01 << 0)
79
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +000080/* Write Status Register */
81#define JEDEC_WRSR 0x01
82#define JEDEC_WRSR_OUTSIZE 0x02
83#define JEDEC_WRSR_INSIZE 0x00
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +000084
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +000085/* Read the memory */
86#define JEDEC_READ 0x03
87#define JEDEC_READ_OUTSIZE 0x04
88/* JEDEC_READ_INSIZE : any length */
89
90/* Write memory byte */
91#define JEDEC_BYTE_PROGRAM 0x02
92#define JEDEC_BYTE_PROGRAM_OUTSIZE 0x05
93#define JEDEC_BYTE_PROGRAM_INSIZE 0x00
94
95uint16_t it8716f_flashport = 0;
96/* use fast 33MHz SPI (<>0) or slow 16MHz (0) */
Carl-Daniel Hailfingerd3568ad2008-01-22 14:37:31 +000097int fast_spi = 1;
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +000098
99void spi_prettyprint_status_register(struct flashchip *flash);
100void spi_disable_blockprotect(void);
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000101
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000102/* Generic Super I/O helper functions */
103uint8_t regval(uint16_t port, uint8_t reg)
104{
105 outb(reg, port);
106 return inb(port + 1);
107}
108
109void regwrite(uint16_t port, uint8_t reg, uint8_t val)
110{
111 outb(reg, port);
112 outb(val, port + 1);
113}
114
115/* Helper functions for most recent ITE IT87xx Super I/O chips */
116#define CHIP_ID_BYTE1_REG 0x20
117#define CHIP_ID_BYTE2_REG 0x21
118static void enter_conf_mode_ite(uint16_t port)
119{
120 outb(0x87, port);
121 outb(0x01, port);
122 outb(0x55, port);
123 if (port == ITE_SUPERIO_PORT1)
124 outb(0x55, port);
125 else
126 outb(0xaa, port);
127}
128
129static void exit_conf_mode_ite(uint16_t port)
130{
131 regwrite(port, 0x02, 0x02);
132}
133
Carl-Daniel Hailfinger3d94a0e2007-10-16 21:09:06 +0000134static uint16_t find_ite_spi_flash_port(uint16_t port)
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000135{
136 uint8_t tmp = 0;
137 uint16_t id, flashport = 0;
138
139 enter_conf_mode_ite(port);
140
141 id = regval(port, CHIP_ID_BYTE1_REG) << 8;
142 id |= regval(port, CHIP_ID_BYTE2_REG);
143
144 /* TODO: Handle more IT87xx if they support flash translation */
145 if (id == 0x8716) {
146 /* NOLDN, reg 0x24, mask out lowest bit (suspend) */
147 tmp = regval(port, 0x24) & 0xFE;
148 printf("Serial flash segment 0x%08x-0x%08x %sabled\n",
149 0xFFFE0000, 0xFFFFFFFF, (tmp & 1 << 1) ? "en" : "dis");
150 printf("Serial flash segment 0x%08x-0x%08x %sabled\n",
151 0x000E0000, 0x000FFFFF, (tmp & 1 << 1) ? "en" : "dis");
152 printf("Serial flash segment 0x%08x-0x%08x %sabled\n",
153 0xFFEE0000, 0xFFEFFFFF, (tmp & 1 << 2) ? "en" : "dis");
154 printf("Serial flash segment 0x%08x-0x%08x %sabled\n",
155 0xFFF80000, 0xFFFEFFFF, (tmp & 1 << 3) ? "en" : "dis");
156 printf("LPC write to serial flash %sabled\n",
157 (tmp & 1 << 4) ? "en" : "dis");
Carl-Daniel Hailfingerd3568ad2008-01-22 14:37:31 +0000158 printf("serial flash pin %i\n", (tmp & 1 << 5) ? 87 : 29);
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000159 /* LDN 0x7, reg 0x64/0x65 */
160 regwrite(port, 0x07, 0x7);
161 flashport = regval(port, 0x64) << 8;
162 flashport |= regval(port, 0x65);
163 }
164 exit_conf_mode_ite(port);
165 return flashport;
166}
167
Carl-Daniel Hailfinger3d94a0e2007-10-16 21:09:06 +0000168int it87xx_probe_spi_flash(const char *name)
169{
170 it8716f_flashport = find_ite_spi_flash_port(ITE_SUPERIO_PORT1);
171 if (!it8716f_flashport)
172 it8716f_flashport = find_ite_spi_flash_port(ITE_SUPERIO_PORT2);
173 return (!it8716f_flashport);
174}
175
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000176/* The IT8716F only supports commands with length 1,2,4,5 bytes including
177 command byte and can not read more than 3 bytes from the device.
178 This function expects writearr[0] to be the first byte sent to the device,
179 whereas the IT8716F splits commands internally into address and non-address
180 commands with the address in inverse wire order. That's why the register
181 ordering in case 4 and 5 may seem strange. */
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000182static int it8716f_spi_command(uint16_t port, unsigned int writecnt, unsigned int readcnt, const unsigned char *writearr, unsigned char *readarr)
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000183{
184 uint8_t busy, writeenc;
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000185 int i;
186
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000187 do {
188 busy = inb(port) & 0x80;
189 } while (busy);
190 if (readcnt > 3) {
Uwe Hermanna502dce2007-10-17 23:55:15 +0000191 printf("%s called with unsupported readcnt %i.\n",
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000192 __FUNCTION__, readcnt);
193 return 1;
194 }
195 switch (writecnt) {
196 case 1:
197 outb(writearr[0], port + 1);
198 writeenc = 0x0;
199 break;
200 case 2:
201 outb(writearr[0], port + 1);
202 outb(writearr[1], port + 7);
203 writeenc = 0x1;
204 break;
205 case 4:
206 outb(writearr[0], port + 1);
207 outb(writearr[1], port + 4);
208 outb(writearr[2], port + 3);
209 outb(writearr[3], port + 2);
210 writeenc = 0x2;
211 break;
212 case 5:
213 outb(writearr[0], port + 1);
214 outb(writearr[1], port + 4);
215 outb(writearr[2], port + 3);
216 outb(writearr[3], port + 2);
217 outb(writearr[4], port + 7);
218 writeenc = 0x3;
219 break;
220 default:
Uwe Hermanna502dce2007-10-17 23:55:15 +0000221 printf("%s called with unsupported writecnt %i.\n",
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000222 __FUNCTION__, writecnt);
223 return 1;
224 }
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000225 /* Start IO, 33 or 16 MHz, readcnt input bytes, writecnt output bytes.
226 * Note:
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000227 * We can't use writecnt directly, but have to use a strange encoding.
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000228 */
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000229 outb(((0x4 + (fast_spi ? 1 : 0)) << 4) | ((readcnt & 0x3) << 2) | (writeenc), port);
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000230
Ronald Hoogenboomd4554c52008-01-21 23:55:08 +0000231 if (readcnt > 0) {
232 do {
233 busy = inb(port) & 0x80;
234 } while (busy);
235
236 for (i = 0; i < readcnt; i++) {
237 readarr[i] = inb(port + 5 + i);
238 }
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000239 }
240
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000241 return 0;
242}
243
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000244int generic_spi_command(unsigned int writecnt, unsigned int readcnt, const unsigned char *writearr, unsigned char *readarr)
Carl-Daniel Hailfinger3d94a0e2007-10-16 21:09:06 +0000245{
246 if (it8716f_flashport)
247 return it8716f_spi_command(it8716f_flashport, writecnt, readcnt, writearr, readarr);
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000248 printf_debug("%s called, but no SPI chipset detected\n", __FUNCTION__);
Carl-Daniel Hailfinger3d94a0e2007-10-16 21:09:06 +0000249 return 1;
250}
251
252static int generic_spi_rdid(unsigned char *readarr)
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000253{
254 const unsigned char cmd[] = JEDEC_RDID;
255
Carl-Daniel Hailfinger3d94a0e2007-10-16 21:09:06 +0000256 if (generic_spi_command(JEDEC_RDID_OUTSIZE, JEDEC_RDID_INSIZE, cmd, readarr))
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000257 return 1;
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000258 printf_debug("RDID returned %02x %02x %02x.\n", readarr[0], readarr[1], readarr[2]);
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000259 return 0;
260}
261
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000262void generic_spi_write_enable()
263{
264 const unsigned char cmd[] = JEDEC_WREN;
265
266 /* Send WREN (Write Enable) */
267 generic_spi_command(JEDEC_WREN_OUTSIZE, JEDEC_WREN_INSIZE, cmd, NULL);
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000268}
269
270void generic_spi_write_disable()
271{
272 const unsigned char cmd[] = JEDEC_WRDI;
273
274 /* Send WRDI (Write Disable) */
275 generic_spi_command(JEDEC_WRDI_OUTSIZE, JEDEC_WRDI_INSIZE, cmd, NULL);
276}
277
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000278int probe_spi(struct flashchip *flash)
279{
280 unsigned char readarr[3];
281 uint8_t manuf_id;
282 uint16_t model_id;
Carl-Daniel Hailfinger3d94a0e2007-10-16 21:09:06 +0000283 if (!generic_spi_rdid(readarr)) {
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000284 manuf_id = readarr[0];
285 model_id = (readarr[1] << 8) | readarr[2];
286 printf_debug("%s: id1 0x%x, id2 0x%x\n", __FUNCTION__, manuf_id, model_id);
Carl-Daniel Hailfingere973b052008-01-04 16:22:09 +0000287 if (manuf_id == flash->manufacture_id &&
288 model_id == flash->model_id) {
289 /* Print the status register to tell the
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000290 * user about possible write protection.
291 */
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000292 spi_prettyprint_status_register(flash);
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000293
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000294 return 1;
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000295 }
Carl-Daniel Hailfingere973b052008-01-04 16:22:09 +0000296 /* Test if this is a pure vendor match. */
297 if (manuf_id == flash->manufacture_id &&
298 GENERIC_DEVICE_ID == flash->model_id)
299 return 1;
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000300 }
301
302 return 0;
303}
304
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000305uint8_t generic_spi_read_status_register()
306{
307 const unsigned char cmd[] = JEDEC_RDSR;
308 unsigned char readarr[1];
309
310 /* Read Status Register */
311 generic_spi_command(JEDEC_RDSR_OUTSIZE, JEDEC_RDSR_INSIZE, cmd, readarr);
312 return readarr[0];
313}
314
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000315/* Prettyprint the status register. Common definitions.
316 */
317void spi_prettyprint_status_register_common(uint8_t status)
318{
319 printf_debug("Chip status register: Bit 5 / Block Protect 3 (BP3) is "
320 "%sset\n", (status & (1 << 5)) ? "" : "not ");
321 printf_debug("Chip status register: Bit 4 / Block Protect 2 (BP2) is "
322 "%sset\n", (status & (1 << 4)) ? "" : "not ");
323 printf_debug("Chip status register: Bit 3 / Block Protect 1 (BP1) is "
324 "%sset\n", (status & (1 << 3)) ? "" : "not ");
325 printf_debug("Chip status register: Bit 2 / Block Protect 0 (BP0) is "
326 "%sset\n", (status & (1 << 2)) ? "" : "not ");
327 printf_debug("Chip status register: Write Enable Latch (WEL) is "
328 "%sset\n", (status & (1 << 1)) ? "" : "not ");
329 printf_debug("Chip status register: Write In Progress (WIP/BUSY) is "
330 "%sset\n", (status & (1 << 0)) ? "" : "not ");
331}
332
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000333/* Prettyprint the status register. Works for
334 * ST M25P series
335 * MX MX25L series
336 */
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000337void spi_prettyprint_status_register_st_m25p(uint8_t status)
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000338{
339 printf_debug("Chip status register: Status Register Write Disable "
340 "(SRWD) is %sset\n", (status & (1 << 7)) ? "" : "not ");
341 printf_debug("Chip status register: Bit 6 is "
342 "%sset\n", (status & (1 << 6)) ? "" : "not ");
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000343 spi_prettyprint_status_register_common(status);
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000344}
345
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000346/* Prettyprint the status register. Works for
347 * SST 25VF016
348 */
349void spi_prettyprint_status_register_sst25vf016(uint8_t status)
350{
Carl-Daniel Hailfingerd3568ad2008-01-22 14:37:31 +0000351 const char *bpt[] = {
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000352 "none",
353 "1F0000H-1FFFFFH",
354 "1E0000H-1FFFFFH",
355 "1C0000H-1FFFFFH",
356 "180000H-1FFFFFH",
357 "100000H-1FFFFFH",
Carl-Daniel Hailfingerd3568ad2008-01-22 14:37:31 +0000358 "all", "all"
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000359 };
360 printf_debug("Chip status register: Block Protect Write Disable "
361 "(BPL) is %sset\n", (status & (1 << 7)) ? "" : "not ");
362 printf_debug("Chip status register: Auto Address Increment Programming "
363 "(AAI) is %sset\n", (status & (1 << 6)) ? "" : "not ");
364 spi_prettyprint_status_register_common(status);
365 printf_debug("Resulting block protection : %s\n",
366 bpt[(status & 0x1c) >> 2]);
367}
368
369void spi_prettyprint_status_register(struct flashchip *flash)
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000370{
371 uint8_t status;
372
373 status = generic_spi_read_status_register();
374 printf_debug("Chip status register is %02x\n", status);
375 switch (flash->manufacture_id) {
376 case ST_ID:
377 case MX_ID:
378 if ((flash->model_id & 0xff00) == 0x2000)
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000379 spi_prettyprint_status_register_st_m25p(status);
380 break;
381 case SST_ID:
382 if (flash->model_id == SST_25VF016B)
383 spi_prettyprint_status_register_sst25vf016(status);
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000384 break;
385 }
386}
387
Carl-Daniel Hailfinger21c78902007-12-17 14:33:32 +0000388int generic_spi_chip_erase_c7(struct flashchip *flash)
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000389{
Carl-Daniel Hailfinger21c78902007-12-17 14:33:32 +0000390 const unsigned char cmd[] = JEDEC_CE_C7;
Carl-Daniel Hailfingerf5df46f2007-12-16 21:15:27 +0000391
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000392 spi_disable_blockprotect();
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000393 generic_spi_write_enable();
394 /* Send CE (Chip Erase) */
Carl-Daniel Hailfinger21c78902007-12-17 14:33:32 +0000395 generic_spi_command(JEDEC_CE_C7_OUTSIZE, JEDEC_CE_C7_INSIZE, cmd, NULL);
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000396 /* Wait until the Write-In-Progress bit is cleared.
397 * This usually takes 1-85 s, so wait in 1 s steps.
398 */
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000399 while (generic_spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
400 sleep(1);
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000401 return 0;
402}
403
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000404/* Block size is usually
405 * 64k for Macronix
406 * 32k for SST
407 * 4-32k non-uniform for EON
408 */
Carl-Daniel Hailfinger21c78902007-12-17 14:33:32 +0000409int generic_spi_block_erase_d8(const struct flashchip *flash, unsigned long addr)
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000410{
Carl-Daniel Hailfinger21c78902007-12-17 14:33:32 +0000411 unsigned char cmd[JEDEC_BE_D8_OUTSIZE] = JEDEC_BE_D8;
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000412
413 cmd[1] = (addr & 0x00ff0000) >> 16;
414 cmd[2] = (addr & 0x0000ff00) >> 8;
415 cmd[3] = (addr & 0x000000ff);
416 generic_spi_write_enable();
417 /* Send BE (Block Erase) */
Carl-Daniel Hailfinger21c78902007-12-17 14:33:32 +0000418 generic_spi_command(JEDEC_BE_D8_OUTSIZE, JEDEC_BE_D8_INSIZE, cmd, NULL);
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000419 /* Wait until the Write-In-Progress bit is cleared.
420 * This usually takes 100-4000 ms, so wait in 100 ms steps.
421 */
422 while (generic_spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
423 usleep(100 * 1000);
424 return 0;
425}
426
427/* Sector size is usually 4k, though Macronix eliteflash has 64k */
428int generic_spi_sector_erase(const struct flashchip *flash, unsigned long addr)
429{
430 unsigned char cmd[JEDEC_SE_OUTSIZE] = JEDEC_SE;
431 cmd[1] = (addr & 0x00ff0000) >> 16;
432 cmd[2] = (addr & 0x0000ff00) >> 8;
433 cmd[3] = (addr & 0x000000ff);
434
435 generic_spi_write_enable();
436 /* Send SE (Sector Erase) */
437 generic_spi_command(JEDEC_SE_OUTSIZE, JEDEC_SE_INSIZE, cmd, NULL);
438 /* Wait until the Write-In-Progress bit is cleared.
439 * This usually takes 15-800 ms, so wait in 10 ms steps.
440 */
441 while (generic_spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
442 usleep(10 * 1000);
443 return 0;
444}
445
446/* Page size is usually 256 bytes */
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000447void it8716f_spi_page_program(int block, uint8_t *buf, uint8_t *bios) {
448 int i;
449
450 generic_spi_write_enable();
451 outb(0x06 , it8716f_flashport + 1);
Carl-Daniel Hailfingerd3568ad2008-01-22 14:37:31 +0000452 outb(((2 + (fast_spi ? 1 : 0)) << 4), it8716f_flashport);
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000453 for (i = 0; i < 256; i++) {
454 bios[256 * block + i] = buf[256 * block + i];
455 }
456 outb(0, it8716f_flashport);
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000457 /* Wait until the Write-In-Progress bit is cleared.
458 * This usually takes 1-10 ms, so wait in 1 ms steps.
459 */
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000460 while (generic_spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
461 usleep(1000);
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000462}
463
464void generic_spi_page_program(int block, uint8_t *buf, uint8_t *bios)
465{
466 if (it8716f_flashport)
467 it8716f_spi_page_program(block, buf, bios);
468}
469
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000470/*
471 * This is according the SST25VF016 datasheet, who knows it is more
472 * generic that this...
473 */
474void spi_write_status_register(int status)
475{
476 const unsigned char cmd[] = {JEDEC_WRSR, (unsigned char)status};
477
478 /* Send WRSR (Write Status Register) */
479 generic_spi_command(JEDEC_WRSR_OUTSIZE, JEDEC_WRSR_INSIZE, cmd, NULL);
480}
481
482void spi_byte_program(int address, uint8_t byte)
483{
484 const unsigned char cmd[JEDEC_BYTE_PROGRAM_OUTSIZE] = {JEDEC_BYTE_PROGRAM,
485 (address>>16)&0xff,
486 (address>>8)&0xff,
487 (address>>0)&0xff,
488 byte
489 };
490
491 /* Send Byte-Program */
492 generic_spi_command(JEDEC_BYTE_PROGRAM_OUTSIZE, JEDEC_BYTE_PROGRAM_INSIZE, cmd, NULL);
493}
494
495void spi_disable_blockprotect(void)
496{
497 uint8_t status;
498
499 status = generic_spi_read_status_register();
500 /* If there is block protection in effect, unprotect it first. */
501 if ((status & 0x3c) != 0) {
502 printf_debug("Some block protection in effect, disabling\n");
503 generic_spi_write_enable();
504 spi_write_status_register(status & ~0x3c);
505 }
506}
507
508/*
509 * IT8716F only allows maximum of 512 kb SPI mapped to LPC memory cycles
510 * Program chip using firmware cycle byte programming. (SLOW!)
511 */
512int it8716f_over512k_spi_chip_write(struct flashchip *flash, uint8_t *buf)
513{
514 int total_size = 1024 * flash->total_size;
515 int i;
Carl-Daniel Hailfingerd3568ad2008-01-22 14:37:31 +0000516 fast_spi = 0;
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000517
518 spi_disable_blockprotect();
Carl-Daniel Hailfingerd3568ad2008-01-22 14:37:31 +0000519 for (i = 0; i < total_size; i++) {
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000520 generic_spi_write_enable();
Carl-Daniel Hailfingerd3568ad2008-01-22 14:37:31 +0000521 spi_byte_program(i, buf[i]);
522 while (generic_spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
523 myusec_delay(10);
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000524 }
525 /* resume normal ops... */
526 outb(0x20, it8716f_flashport);
527 return 0;
528}
529
530void spi_3byte_read(int address, uint8_t *bytes, int len)
531{
532 const unsigned char cmd[JEDEC_READ_OUTSIZE] = {JEDEC_READ,
Carl-Daniel Hailfingerd3568ad2008-01-22 14:37:31 +0000533 (address >> 16) & 0xff,
534 (address >> 8) & 0xff,
535 (address >> 0) & 0xff,
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000536 };
537
538 /* Send Read */
539 generic_spi_command(JEDEC_READ_OUTSIZE, len, cmd, bytes);
540}
541
542/*
543 * IT8716F only allows maximum of 512 kb SPI mapped to LPC memory cycles
544 * Need to read this big flash using firmware cycles 3 byte at a time.
545 */
546int generic_spi_chip_read(struct flashchip *flash, uint8_t *buf)
547{
548 int total_size = 1024 * flash->total_size;
549 int i;
Carl-Daniel Hailfingerd3568ad2008-01-22 14:37:31 +0000550 fast_spi = 0;
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000551
552 if (total_size > 512 * 1024) {
Carl-Daniel Hailfingerd3568ad2008-01-22 14:37:31 +0000553 for (i = 0; i < total_size; i += 3) {
554 int toread = 3;
555 if (total_size - i < toread)
556 toread = total_size - i;
557 spi_3byte_read(i, buf + i, toread);
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000558 }
559 } else {
560 memcpy(buf, (const char *)flash->virtual_memory, total_size);
561 }
562 return 0;
563}
564
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000565int generic_spi_chip_write(struct flashchip *flash, uint8_t *buf) {
566 int total_size = 1024 * flash->total_size;
567 int i;
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000568 if (total_size > 512 * 1024) {
569 it8716f_over512k_spi_chip_write(flash, buf);
570 } else {
571 for (i = 0; i < total_size / 256; i++) {
572 generic_spi_page_program(i, buf, (uint8_t *)flash->virtual_memory);
573 }
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000574 }
575 return 0;
576}
577