blob: 4f413badd60e97a1b84e85d0f85906d2f938180d [file] [log] [blame]
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +00001/*
2 * This file is part of the flashrom project.
3 *
Carl-Daniel Hailfingerbb297f72009-07-11 18:05:42 +00004 * Copyright (C) 2007, 2008, 2009 Carl-Daniel Hailfinger
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +00005 * Copyright (C) 2008 Ronald Hoogenboom <ronald@zonnet.nl>
Stefan Reinauer2cb94e12008-06-30 23:45:22 +00006 * Copyright (C) 2008 coresystems GmbH
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +00007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22/*
23 * Contains the ITE IT87* SPI specific routines
24 */
25
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +000026#if defined(__i386__) || defined(__x86_64__)
27
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000028#include <string.h>
Carl-Daniel Hailfingerbb297f72009-07-11 18:05:42 +000029#include <stdlib.h>
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000030#include "flash.h"
Sean Nelson14ba6682010-02-26 05:48:29 +000031#include "chipdrivers.h"
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000032#include "spi.h"
33
34#define ITE_SUPERIO_PORT1 0x2e
35#define ITE_SUPERIO_PORT2 0x4e
36
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000037uint16_t it8716f_flashport = 0;
38/* use fast 33MHz SPI (<>0) or slow 16MHz (0) */
39int fast_spi = 1;
40
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000041/* Helper functions for most recent ITE IT87xx Super I/O chips */
42#define CHIP_ID_BYTE1_REG 0x20
43#define CHIP_ID_BYTE2_REG 0x21
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000044void enter_conf_mode_ite(uint16_t port)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000045{
Andriy Gapon65c1b862008-05-22 13:22:45 +000046 OUTB(0x87, port);
47 OUTB(0x01, port);
48 OUTB(0x55, port);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000049 if (port == ITE_SUPERIO_PORT1)
Andriy Gapon65c1b862008-05-22 13:22:45 +000050 OUTB(0x55, port);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000051 else
Andriy Gapon65c1b862008-05-22 13:22:45 +000052 OUTB(0xaa, port);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000053}
54
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000055void exit_conf_mode_ite(uint16_t port)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000056{
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000057 sio_write(port, 0x02, 0x02);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000058}
59
Carl-Daniel Hailfinger14e100c2009-12-22 23:42:04 +000060uint16_t probe_id_ite(uint16_t port)
61{
62 uint16_t id;
63
64 enter_conf_mode_ite(port);
65 id = sio_read(port, CHIP_ID_BYTE1_REG) << 8;
66 id |= sio_read(port, CHIP_ID_BYTE2_REG);
67 exit_conf_mode_ite(port);
68
69 return id;
70}
71
72struct superio probe_superio_ite(void)
73{
74 struct superio ret = {};
75 uint16_t ite_ports[] = {ITE_SUPERIO_PORT1, ITE_SUPERIO_PORT2, 0};
76 uint16_t *i = ite_ports;
77
78 ret.vendor = SUPERIO_VENDOR_ITE;
79 for (; *i; i++) {
80 ret.port = *i;
81 ret.model = probe_id_ite(ret.port);
82 switch (ret.model >> 8) {
83 case 0x82:
84 case 0x86:
85 case 0x87:
Uwe Hermann43959702010-03-13 17:28:29 +000086 msg_pinfo("Found ITE Super I/O, id %04hx\n",
Carl-Daniel Hailfinger14e100c2009-12-22 23:42:04 +000087 ret.model);
88 return ret;
89 }
90 }
91
92 /* No good ID found. */
93 ret.vendor = SUPERIO_VENDOR_NONE;
94 ret.port = 0;
95 ret.model = 0;
96 return ret;
97}
98
99static uint16_t find_ite_spi_flash_port(uint16_t port, uint16_t id)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000100{
101 uint8_t tmp = 0;
Carl-Daniel Hailfingerbb297f72009-07-11 18:05:42 +0000102 char *portpos = NULL;
Carl-Daniel Hailfinger14e100c2009-12-22 23:42:04 +0000103 uint16_t flashport = 0;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000104
Carl-Daniel Hailfinger14e100c2009-12-22 23:42:04 +0000105 switch (id) {
106 case 0x8716:
107 case 0x8718:
Vadim Girlin957d2602010-03-30 02:45:18 +0000108 case 0x8720:
Carl-Daniel Hailfinger14e100c2009-12-22 23:42:04 +0000109 enter_conf_mode_ite(port);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000110 /* NOLDN, reg 0x24, mask out lowest bit (suspend) */
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +0000111 tmp = sio_read(port, 0x24) & 0xFE;
Carl-Daniel Hailfinger01f3ef42010-03-25 02:50:40 +0000112 /* If IT87SPI was not explicitly selected, we want to check
113 * quickly if LPC->SPI translation is active.
114 */
115 if ((programmer == PROGRAMMER_INTERNAL) && !(tmp & (0x0E))) {
116 msg_pdbg("No IT87* serial flash segment enabled.\n");
117 exit_conf_mode_ite(port);
118 break;
119 }
Sean Nelson01e532d2010-01-10 01:09:58 +0000120 msg_pdbg("Serial flash segment 0x%08x-0x%08x %sabled\n",
Uwe Hermann394131e2008-10-18 21:14:13 +0000121 0xFFFE0000, 0xFFFFFFFF, (tmp & 1 << 1) ? "en" : "dis");
Sean Nelson01e532d2010-01-10 01:09:58 +0000122 msg_pdbg("Serial flash segment 0x%08x-0x%08x %sabled\n",
Uwe Hermann394131e2008-10-18 21:14:13 +0000123 0x000E0000, 0x000FFFFF, (tmp & 1 << 1) ? "en" : "dis");
Sean Nelson01e532d2010-01-10 01:09:58 +0000124 msg_pdbg("Serial flash segment 0x%08x-0x%08x %sabled\n",
Uwe Hermann394131e2008-10-18 21:14:13 +0000125 0xFFEE0000, 0xFFEFFFFF, (tmp & 1 << 2) ? "en" : "dis");
Sean Nelson01e532d2010-01-10 01:09:58 +0000126 msg_pdbg("Serial flash segment 0x%08x-0x%08x %sabled\n",
Uwe Hermann394131e2008-10-18 21:14:13 +0000127 0xFFF80000, 0xFFFEFFFF, (tmp & 1 << 3) ? "en" : "dis");
Sean Nelson01e532d2010-01-10 01:09:58 +0000128 msg_pdbg("LPC write to serial flash %sabled\n",
Uwe Hermann394131e2008-10-18 21:14:13 +0000129 (tmp & 1 << 4) ? "en" : "dis");
Carl-Daniel Hailfingerbb297f72009-07-11 18:05:42 +0000130 /* The LPC->SPI force write enable below only makes sense for
131 * non-programmer mode.
132 */
Carl-Daniel Hailfinger337df1d2008-05-16 00:19:52 +0000133 /* If any serial flash segment is enabled, enable writing. */
134 if ((tmp & 0xe) && (!(tmp & 1 << 4))) {
Sean Nelson01e532d2010-01-10 01:09:58 +0000135 msg_pdbg("Enabling LPC write to serial flash\n");
Carl-Daniel Hailfinger337df1d2008-05-16 00:19:52 +0000136 tmp |= 1 << 4;
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +0000137 sio_write(port, 0x24, tmp);
Carl-Daniel Hailfinger337df1d2008-05-16 00:19:52 +0000138 }
Sean Nelson01e532d2010-01-10 01:09:58 +0000139 msg_pdbg("Serial flash pin %i\n", (tmp & 1 << 5) ? 87 : 29);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000140 /* LDN 0x7, reg 0x64/0x65 */
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +0000141 sio_write(port, 0x07, 0x7);
142 flashport = sio_read(port, 0x64) << 8;
143 flashport |= sio_read(port, 0x65);
Sean Nelson01e532d2010-01-10 01:09:58 +0000144 msg_pdbg("Serial flash port 0x%04x\n", flashport);
Carl-Daniel Hailfingeref58a9c2009-08-12 13:32:56 +0000145 if (programmer_param && !strlen(programmer_param)) {
146 free(programmer_param);
147 programmer_param = NULL;
Carl-Daniel Hailfingerbb297f72009-07-11 18:05:42 +0000148 }
Carl-Daniel Hailfinger01f3ef42010-03-25 02:50:40 +0000149 if (programmer_param) {
150 portpos = extract_param(&programmer_param,
151 "it87spiport=", ",:");
152 if (portpos) {
153 flashport = strtol(portpos, (char **)NULL, 0);
154 msg_pinfo("Forcing serial flash port 0x%04x\n",
155 flashport);
156 sio_write(port, 0x64, (flashport >> 8));
157 sio_write(port, 0x65, (flashport & 0xff));
158 free(portpos);
159 }
Carl-Daniel Hailfingerbb297f72009-07-11 18:05:42 +0000160 }
Carl-Daniel Hailfinger14e100c2009-12-22 23:42:04 +0000161 exit_conf_mode_ite(port);
162 break;
163 /* TODO: Handle more IT87xx if they support flash translation */
164 default:
Vadim Girlin957d2602010-03-30 02:45:18 +0000165 msg_pdbg("SuperI/O ID %04hx is not on the controller list.\n", id);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000166 }
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000167 return flashport;
168}
169
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000170int it87spi_common_init(void)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000171{
Carl-Daniel Hailfinger14e100c2009-12-22 23:42:04 +0000172 if (superio.vendor != SUPERIO_VENDOR_ITE)
173 return 1;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000174
Carl-Daniel Hailfinger14e100c2009-12-22 23:42:04 +0000175 it8716f_flashport = find_ite_spi_flash_port(superio.port, superio.model);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000176
177 if (it8716f_flashport)
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000178 spi_controller = SPI_CONTROLLER_IT87XX;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000179
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000180 return (!it8716f_flashport);
181}
182
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000183
184int it87spi_init(void)
185{
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000186 int ret;
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000187
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000188 get_io_perms();
Uwe Hermann43959702010-03-13 17:28:29 +0000189 /* Probe for the Super I/O chip and fill global struct superio. */
Carl-Daniel Hailfinger14e100c2009-12-22 23:42:04 +0000190 probe_superio();
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000191 ret = it87spi_common_init();
Carl-Daniel Hailfinger34cc6cc2009-06-28 10:57:58 +0000192 if (!ret) {
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000193 buses_supported = CHIP_BUSTYPE_SPI;
Carl-Daniel Hailfinger34cc6cc2009-06-28 10:57:58 +0000194 } else {
195 buses_supported = CHIP_BUSTYPE_NONE;
196 }
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000197 return ret;
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000198}
199
200int it87xx_probe_spi_flash(const char *name)
201{
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000202 int ret;
203
204 ret = it87spi_common_init();
Vadim Girlin957d2602010-03-30 02:45:18 +0000205 if (!ret) {
206 if (buses_supported & CHIP_BUSTYPE_SPI)
207 msg_pdbg("Overriding chipset SPI with IT87 SPI.\n");
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000208 buses_supported |= CHIP_BUSTYPE_SPI;
Vadim Girlin957d2602010-03-30 02:45:18 +0000209 }
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000210 return ret;
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000211}
212
Uwe Hermann394131e2008-10-18 21:14:13 +0000213/*
214 * The IT8716F only supports commands with length 1,2,4,5 bytes including
215 * command byte and can not read more than 3 bytes from the device.
216 *
217 * This function expects writearr[0] to be the first byte sent to the device,
218 * whereas the IT8716F splits commands internally into address and non-address
219 * commands with the address in inverse wire order. That's why the register
220 * ordering in case 4 and 5 may seem strange.
221 */
Carl-Daniel Hailfingerd0478292009-07-10 21:08:55 +0000222int it8716f_spi_send_command(unsigned int writecnt, unsigned int readcnt,
Uwe Hermann394131e2008-10-18 21:14:13 +0000223 const unsigned char *writearr, unsigned char *readarr)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000224{
225 uint8_t busy, writeenc;
226 int i;
227
228 do {
Andriy Gapon65c1b862008-05-22 13:22:45 +0000229 busy = INB(it8716f_flashport) & 0x80;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000230 } while (busy);
231 if (readcnt > 3) {
Sean Nelson01e532d2010-01-10 01:09:58 +0000232 msg_pinfo("%s called with unsupported readcnt %i.\n",
Uwe Hermann04aa59a2009-09-02 22:09:00 +0000233 __func__, readcnt);
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +0000234 return SPI_INVALID_LENGTH;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000235 }
236 switch (writecnt) {
237 case 1:
Andriy Gapon65c1b862008-05-22 13:22:45 +0000238 OUTB(writearr[0], it8716f_flashport + 1);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000239 writeenc = 0x0;
240 break;
241 case 2:
Andriy Gapon65c1b862008-05-22 13:22:45 +0000242 OUTB(writearr[0], it8716f_flashport + 1);
243 OUTB(writearr[1], it8716f_flashport + 7);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000244 writeenc = 0x1;
245 break;
246 case 4:
Andriy Gapon65c1b862008-05-22 13:22:45 +0000247 OUTB(writearr[0], it8716f_flashport + 1);
248 OUTB(writearr[1], it8716f_flashport + 4);
249 OUTB(writearr[2], it8716f_flashport + 3);
250 OUTB(writearr[3], it8716f_flashport + 2);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000251 writeenc = 0x2;
252 break;
253 case 5:
Andriy Gapon65c1b862008-05-22 13:22:45 +0000254 OUTB(writearr[0], it8716f_flashport + 1);
255 OUTB(writearr[1], it8716f_flashport + 4);
256 OUTB(writearr[2], it8716f_flashport + 3);
257 OUTB(writearr[3], it8716f_flashport + 2);
258 OUTB(writearr[4], it8716f_flashport + 7);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000259 writeenc = 0x3;
260 break;
261 default:
Sean Nelson01e532d2010-01-10 01:09:58 +0000262 msg_pinfo("%s called with unsupported writecnt %i.\n",
Uwe Hermann04aa59a2009-09-02 22:09:00 +0000263 __func__, writecnt);
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +0000264 return SPI_INVALID_LENGTH;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000265 }
Uwe Hermann394131e2008-10-18 21:14:13 +0000266 /*
267 * Start IO, 33 or 16 MHz, readcnt input bytes, writecnt output bytes.
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000268 * Note:
269 * We can't use writecnt directly, but have to use a strange encoding.
Uwe Hermann394131e2008-10-18 21:14:13 +0000270 */
271 OUTB(((0x4 + (fast_spi ? 1 : 0)) << 4)
272 | ((readcnt & 0x3) << 2) | (writeenc), it8716f_flashport);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000273
274 if (readcnt > 0) {
275 do {
Andriy Gapon65c1b862008-05-22 13:22:45 +0000276 busy = INB(it8716f_flashport) & 0x80;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000277 } while (busy);
278
Uwe Hermann394131e2008-10-18 21:14:13 +0000279 for (i = 0; i < readcnt; i++)
Andriy Gapon65c1b862008-05-22 13:22:45 +0000280 readarr[i] = INB(it8716f_flashport + 5 + i);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000281 }
282
283 return 0;
284}
285
286/* Page size is usually 256 bytes */
Carl-Daniel Hailfingerbb297f72009-07-11 18:05:42 +0000287static int it8716f_spi_page_program(struct flashchip *flash, int block, uint8_t *buf)
Uwe Hermann394131e2008-10-18 21:14:13 +0000288{
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000289 int i;
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +0000290 int result;
Carl-Daniel Hailfingerbb297f72009-07-11 18:05:42 +0000291 chipaddr bios = flash->virtual_memory;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000292
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +0000293 result = spi_write_enable();
294 if (result)
295 return result;
Carl-Daniel Hailfinger2f1b36f2009-07-12 12:06:18 +0000296 /* FIXME: The command below seems to be redundant or wrong. */
Uwe Hermann394131e2008-10-18 21:14:13 +0000297 OUTB(0x06, it8716f_flashport + 1);
Andriy Gapon65c1b862008-05-22 13:22:45 +0000298 OUTB(((2 + (fast_spi ? 1 : 0)) << 4), it8716f_flashport);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000299 for (i = 0; i < 256; i++) {
Carl-Daniel Hailfingerbb297f72009-07-11 18:05:42 +0000300 chip_writeb(buf[256 * block + i], bios + 256 * block + i);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000301 }
Andriy Gapon65c1b862008-05-22 13:22:45 +0000302 OUTB(0, it8716f_flashport);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000303 /* Wait until the Write-In-Progress bit is cleared.
304 * This usually takes 1-10 ms, so wait in 1 ms steps.
305 */
306 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000307 programmer_delay(1000);
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +0000308 return 0;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000309}
310
311/*
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000312 * IT8716F only allows maximum of 512 kb SPI mapped to LPC memory cycles
313 * Need to read this big flash using firmware cycles 3 byte at a time.
314 */
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000315int it8716f_spi_chip_read(struct flashchip *flash, uint8_t *buf, int start, int len)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000316{
317 int total_size = 1024 * flash->total_size;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000318 fast_spi = 0;
319
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000320 if ((programmer == PROGRAMMER_IT87SPI) || (total_size > 512 * 1024)) {
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000321 spi_read_chunked(flash, buf, start, len, 3);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000322 } else {
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000323 read_memmapped(flash, buf, start, len);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000324 }
Uwe Hermann394131e2008-10-18 21:14:13 +0000325
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000326 return 0;
327}
328
Carl-Daniel Hailfinger96930c32009-05-09 02:30:21 +0000329int it8716f_spi_chip_write_256(struct flashchip *flash, uint8_t *buf)
Uwe Hermann394131e2008-10-18 21:14:13 +0000330{
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000331 int total_size = 1024 * flash->total_size;
332 int i;
Uwe Hermann394131e2008-10-18 21:14:13 +0000333
Carl-Daniel Hailfinger96930c32009-05-09 02:30:21 +0000334 /*
335 * IT8716F only allows maximum of 512 kb SPI chip size for memory
336 * mapped access.
337 */
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000338 if ((programmer == PROGRAMMER_IT87SPI) || (total_size > 512 * 1024)) {
Carl-Daniel Hailfinger116081a2009-08-10 02:29:21 +0000339 spi_chip_write_1(flash, buf);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000340 } else {
Carl-Daniel Hailfinger116081a2009-08-10 02:29:21 +0000341 spi_disable_blockprotect();
342 /* Erase first */
Sean Nelson01e532d2010-01-10 01:09:58 +0000343 msg_pinfo("Erasing flash before programming... ");
Carl-Daniel Hailfingerf38431a2009-09-05 02:30:58 +0000344 if (erase_flash(flash)) {
Sean Nelson01e532d2010-01-10 01:09:58 +0000345 msg_perr("ERASE FAILED!\n");
Carl-Daniel Hailfinger116081a2009-08-10 02:29:21 +0000346 return -1;
347 }
Sean Nelson01e532d2010-01-10 01:09:58 +0000348 msg_pinfo("done.\n");
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000349 for (i = 0; i < total_size / 256; i++) {
Carl-Daniel Hailfingerbb297f72009-07-11 18:05:42 +0000350 it8716f_spi_page_program(flash, i, buf);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000351 }
352 }
Uwe Hermann394131e2008-10-18 21:14:13 +0000353
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000354 return 0;
355}
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000356
357#endif