blob: 20e8828697cf1e478f814dc1f0676ae5fcdcd063 [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) */
97int fast_spi=1;
98
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");
158 printf("serial flash pin %i\n", (tmp & 1 << 5) ? 87 : 29);
159 /* 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 Hailfinger70539262007-10-15 21:45:29 +0000230 do {
231 busy = inb(port) & 0x80;
232 } while (busy);
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000233
234 for (i = 0; i < readcnt; i++) {
235 readarr[i] = inb(port + 5 + i);
236 }
237
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000238 return 0;
239}
240
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000241int generic_spi_command(unsigned int writecnt, unsigned int readcnt, const unsigned char *writearr, unsigned char *readarr)
Carl-Daniel Hailfinger3d94a0e2007-10-16 21:09:06 +0000242{
243 if (it8716f_flashport)
244 return it8716f_spi_command(it8716f_flashport, writecnt, readcnt, writearr, readarr);
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000245 printf_debug("%s called, but no SPI chipset detected\n", __FUNCTION__);
Carl-Daniel Hailfinger3d94a0e2007-10-16 21:09:06 +0000246 return 1;
247}
248
249static int generic_spi_rdid(unsigned char *readarr)
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000250{
251 const unsigned char cmd[] = JEDEC_RDID;
252
Carl-Daniel Hailfinger3d94a0e2007-10-16 21:09:06 +0000253 if (generic_spi_command(JEDEC_RDID_OUTSIZE, JEDEC_RDID_INSIZE, cmd, readarr))
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000254 return 1;
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000255 printf_debug("RDID returned %02x %02x %02x.\n", readarr[0], readarr[1], readarr[2]);
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000256 return 0;
257}
258
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000259void generic_spi_write_enable()
260{
261 const unsigned char cmd[] = JEDEC_WREN;
262
263 /* Send WREN (Write Enable) */
264 generic_spi_command(JEDEC_WREN_OUTSIZE, JEDEC_WREN_INSIZE, cmd, NULL);
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000265}
266
267void generic_spi_write_disable()
268{
269 const unsigned char cmd[] = JEDEC_WRDI;
270
271 /* Send WRDI (Write Disable) */
272 generic_spi_command(JEDEC_WRDI_OUTSIZE, JEDEC_WRDI_INSIZE, cmd, NULL);
273}
274
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000275int probe_spi(struct flashchip *flash)
276{
277 unsigned char readarr[3];
278 uint8_t manuf_id;
279 uint16_t model_id;
Carl-Daniel Hailfinger3d94a0e2007-10-16 21:09:06 +0000280 if (!generic_spi_rdid(readarr)) {
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000281 manuf_id = readarr[0];
282 model_id = (readarr[1] << 8) | readarr[2];
283 printf_debug("%s: id1 0x%x, id2 0x%x\n", __FUNCTION__, manuf_id, model_id);
Carl-Daniel Hailfingere973b052008-01-04 16:22:09 +0000284 if (manuf_id == flash->manufacture_id &&
285 model_id == flash->model_id) {
286 /* Print the status register to tell the
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000287 * user about possible write protection.
288 */
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000289 spi_prettyprint_status_register(flash);
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000290
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000291 return 1;
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000292 }
Carl-Daniel Hailfingere973b052008-01-04 16:22:09 +0000293 /* Test if this is a pure vendor match. */
294 if (manuf_id == flash->manufacture_id &&
295 GENERIC_DEVICE_ID == flash->model_id)
296 return 1;
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000297 }
298
299 return 0;
300}
301
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000302uint8_t generic_spi_read_status_register()
303{
304 const unsigned char cmd[] = JEDEC_RDSR;
305 unsigned char readarr[1];
306
307 /* Read Status Register */
308 generic_spi_command(JEDEC_RDSR_OUTSIZE, JEDEC_RDSR_INSIZE, cmd, readarr);
309 return readarr[0];
310}
311
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000312/* Prettyprint the status register. Common definitions.
313 */
314void spi_prettyprint_status_register_common(uint8_t status)
315{
316 printf_debug("Chip status register: Bit 5 / Block Protect 3 (BP3) is "
317 "%sset\n", (status & (1 << 5)) ? "" : "not ");
318 printf_debug("Chip status register: Bit 4 / Block Protect 2 (BP2) is "
319 "%sset\n", (status & (1 << 4)) ? "" : "not ");
320 printf_debug("Chip status register: Bit 3 / Block Protect 1 (BP1) is "
321 "%sset\n", (status & (1 << 3)) ? "" : "not ");
322 printf_debug("Chip status register: Bit 2 / Block Protect 0 (BP0) is "
323 "%sset\n", (status & (1 << 2)) ? "" : "not ");
324 printf_debug("Chip status register: Write Enable Latch (WEL) is "
325 "%sset\n", (status & (1 << 1)) ? "" : "not ");
326 printf_debug("Chip status register: Write In Progress (WIP/BUSY) is "
327 "%sset\n", (status & (1 << 0)) ? "" : "not ");
328}
329
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000330/* Prettyprint the status register. Works for
331 * ST M25P series
332 * MX MX25L series
333 */
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000334void spi_prettyprint_status_register_st_m25p(uint8_t status)
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000335{
336 printf_debug("Chip status register: Status Register Write Disable "
337 "(SRWD) is %sset\n", (status & (1 << 7)) ? "" : "not ");
338 printf_debug("Chip status register: Bit 6 is "
339 "%sset\n", (status & (1 << 6)) ? "" : "not ");
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000340 spi_prettyprint_status_register_common(status);
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000341}
342
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000343/* Prettyprint the status register. Works for
344 * SST 25VF016
345 */
346void spi_prettyprint_status_register_sst25vf016(uint8_t status)
347{
348 const char *bpt[]={
349 "none",
350 "1F0000H-1FFFFFH",
351 "1E0000H-1FFFFFH",
352 "1C0000H-1FFFFFH",
353 "180000H-1FFFFFH",
354 "100000H-1FFFFFH",
355 "all","all"
356 };
357 printf_debug("Chip status register: Block Protect Write Disable "
358 "(BPL) is %sset\n", (status & (1 << 7)) ? "" : "not ");
359 printf_debug("Chip status register: Auto Address Increment Programming "
360 "(AAI) is %sset\n", (status & (1 << 6)) ? "" : "not ");
361 spi_prettyprint_status_register_common(status);
362 printf_debug("Resulting block protection : %s\n",
363 bpt[(status & 0x1c) >> 2]);
364}
365
366void spi_prettyprint_status_register(struct flashchip *flash)
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000367{
368 uint8_t status;
369
370 status = generic_spi_read_status_register();
371 printf_debug("Chip status register is %02x\n", status);
372 switch (flash->manufacture_id) {
373 case ST_ID:
374 case MX_ID:
375 if ((flash->model_id & 0xff00) == 0x2000)
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000376 spi_prettyprint_status_register_st_m25p(status);
377 break;
378 case SST_ID:
379 if (flash->model_id == SST_25VF016B)
380 spi_prettyprint_status_register_sst25vf016(status);
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000381 break;
382 }
383}
384
Carl-Daniel Hailfinger21c78902007-12-17 14:33:32 +0000385int generic_spi_chip_erase_c7(struct flashchip *flash)
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000386{
Carl-Daniel Hailfinger21c78902007-12-17 14:33:32 +0000387 const unsigned char cmd[] = JEDEC_CE_C7;
Carl-Daniel Hailfingerf5df46f2007-12-16 21:15:27 +0000388
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000389 spi_disable_blockprotect();
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000390 generic_spi_write_enable();
391 /* Send CE (Chip Erase) */
Carl-Daniel Hailfinger21c78902007-12-17 14:33:32 +0000392 generic_spi_command(JEDEC_CE_C7_OUTSIZE, JEDEC_CE_C7_INSIZE, cmd, NULL);
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000393 /* Wait until the Write-In-Progress bit is cleared.
394 * This usually takes 1-85 s, so wait in 1 s steps.
395 */
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000396 while (generic_spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
397 sleep(1);
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000398 return 0;
399}
400
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000401/* Block size is usually
402 * 64k for Macronix
403 * 32k for SST
404 * 4-32k non-uniform for EON
405 */
Carl-Daniel Hailfinger21c78902007-12-17 14:33:32 +0000406int generic_spi_block_erase_d8(const struct flashchip *flash, unsigned long addr)
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000407{
Carl-Daniel Hailfinger21c78902007-12-17 14:33:32 +0000408 unsigned char cmd[JEDEC_BE_D8_OUTSIZE] = JEDEC_BE_D8;
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000409
410 cmd[1] = (addr & 0x00ff0000) >> 16;
411 cmd[2] = (addr & 0x0000ff00) >> 8;
412 cmd[3] = (addr & 0x000000ff);
413 generic_spi_write_enable();
414 /* Send BE (Block Erase) */
Carl-Daniel Hailfinger21c78902007-12-17 14:33:32 +0000415 generic_spi_command(JEDEC_BE_D8_OUTSIZE, JEDEC_BE_D8_INSIZE, cmd, NULL);
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000416 /* Wait until the Write-In-Progress bit is cleared.
417 * This usually takes 100-4000 ms, so wait in 100 ms steps.
418 */
419 while (generic_spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
420 usleep(100 * 1000);
421 return 0;
422}
423
424/* Sector size is usually 4k, though Macronix eliteflash has 64k */
425int generic_spi_sector_erase(const struct flashchip *flash, unsigned long addr)
426{
427 unsigned char cmd[JEDEC_SE_OUTSIZE] = JEDEC_SE;
428 cmd[1] = (addr & 0x00ff0000) >> 16;
429 cmd[2] = (addr & 0x0000ff00) >> 8;
430 cmd[3] = (addr & 0x000000ff);
431
432 generic_spi_write_enable();
433 /* Send SE (Sector Erase) */
434 generic_spi_command(JEDEC_SE_OUTSIZE, JEDEC_SE_INSIZE, cmd, NULL);
435 /* Wait until the Write-In-Progress bit is cleared.
436 * This usually takes 15-800 ms, so wait in 10 ms steps.
437 */
438 while (generic_spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
439 usleep(10 * 1000);
440 return 0;
441}
442
443/* Page size is usually 256 bytes */
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000444void it8716f_spi_page_program(int block, uint8_t *buf, uint8_t *bios) {
445 int i;
446
447 generic_spi_write_enable();
448 outb(0x06 , it8716f_flashport + 1);
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000449 outb(((2+(fast_spi?1:0)) << 4), it8716f_flashport);
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000450 for (i = 0; i < 256; i++) {
451 bios[256 * block + i] = buf[256 * block + i];
452 }
453 outb(0, it8716f_flashport);
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000454 /* Wait until the Write-In-Progress bit is cleared.
455 * This usually takes 1-10 ms, so wait in 1 ms steps.
456 */
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000457 while (generic_spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
458 usleep(1000);
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000459}
460
461void generic_spi_page_program(int block, uint8_t *buf, uint8_t *bios)
462{
463 if (it8716f_flashport)
464 it8716f_spi_page_program(block, buf, bios);
465}
466
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000467/*
468 * This is according the SST25VF016 datasheet, who knows it is more
469 * generic that this...
470 */
471void spi_write_status_register(int status)
472{
473 const unsigned char cmd[] = {JEDEC_WRSR, (unsigned char)status};
474
475 /* Send WRSR (Write Status Register) */
476 generic_spi_command(JEDEC_WRSR_OUTSIZE, JEDEC_WRSR_INSIZE, cmd, NULL);
477}
478
479void spi_byte_program(int address, uint8_t byte)
480{
481 const unsigned char cmd[JEDEC_BYTE_PROGRAM_OUTSIZE] = {JEDEC_BYTE_PROGRAM,
482 (address>>16)&0xff,
483 (address>>8)&0xff,
484 (address>>0)&0xff,
485 byte
486 };
487
488 /* Send Byte-Program */
489 generic_spi_command(JEDEC_BYTE_PROGRAM_OUTSIZE, JEDEC_BYTE_PROGRAM_INSIZE, cmd, NULL);
490}
491
492void spi_disable_blockprotect(void)
493{
494 uint8_t status;
495
496 status = generic_spi_read_status_register();
497 /* If there is block protection in effect, unprotect it first. */
498 if ((status & 0x3c) != 0) {
499 printf_debug("Some block protection in effect, disabling\n");
500 generic_spi_write_enable();
501 spi_write_status_register(status & ~0x3c);
502 }
503}
504
505/*
506 * IT8716F only allows maximum of 512 kb SPI mapped to LPC memory cycles
507 * Program chip using firmware cycle byte programming. (SLOW!)
508 */
509int it8716f_over512k_spi_chip_write(struct flashchip *flash, uint8_t *buf)
510{
511 int total_size = 1024 * flash->total_size;
512 int i;
513 fast_spi=0;
514
515 spi_disable_blockprotect();
516 for (i=0; i<total_size; i++) {
517 generic_spi_write_enable();
518 spi_byte_program(i,buf[i]);
519 /* FIXME: We really should read the status register and delay
520 * accordingly.
521 */
522 //while (generic_spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
523 myusec_delay(10);
524 //if (i%1024==0) fputc('b',stderr);
525 }
526 /* resume normal ops... */
527 outb(0x20, it8716f_flashport);
528 return 0;
529}
530
531void spi_3byte_read(int address, uint8_t *bytes, int len)
532{
533 const unsigned char cmd[JEDEC_READ_OUTSIZE] = {JEDEC_READ,
534 (address>>16)&0xff,
535 (address>>8)&0xff,
536 (address>>0)&0xff,
537 };
538
539 /* Send Read */
540 generic_spi_command(JEDEC_READ_OUTSIZE, len, cmd, bytes);
541}
542
543/*
544 * IT8716F only allows maximum of 512 kb SPI mapped to LPC memory cycles
545 * Need to read this big flash using firmware cycles 3 byte at a time.
546 */
547int generic_spi_chip_read(struct flashchip *flash, uint8_t *buf)
548{
549 int total_size = 1024 * flash->total_size;
550 int i;
551 fast_spi=0;
552
553 if (total_size > 512 * 1024) {
554 for (i = 0; i < total_size; i+=3) {
555 int toread=3;
556 if (total_size-i < toread) toread=total_size-i;
557 spi_3byte_read(i, buf+i, toread);
558 }
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