blob: 1aeeee15c94b6d3b6b27e21ae8b4913b12ef063b [file] [log] [blame]
hailfinger2c361e42008-05-13 23:03:12 +00001/*
2 * This file is part of the flashrom project.
3 *
hailfinger4500b082009-07-11 18:05:42 +00004 * Copyright (C) 2007, 2008, 2009 Carl-Daniel Hailfinger
hailfinger2c361e42008-05-13 23:03:12 +00005 * Copyright (C) 2008 Ronald Hoogenboom <ronald@zonnet.nl>
stepan3bdf6182008-06-30 23:45:22 +00006 * Copyright (C) 2008 coresystems GmbH
hailfinger2c361e42008-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
hailfinger324a9cc2010-05-26 01:45:41 +000026#if defined(__i386__) || defined(__x86_64__)
27
hailfinger2c361e42008-05-13 23:03:12 +000028#include <string.h>
hailfinger4500b082009-07-11 18:05:42 +000029#include <stdlib.h>
hailfinger2c361e42008-05-13 23:03:12 +000030#include "flash.h"
snelson8913d082010-02-26 05:48:29 +000031#include "chipdrivers.h"
hailfinger428f6852010-07-27 22:41:39 +000032#include "programmer.h"
hailfinger2c361e42008-05-13 23:03:12 +000033#include "spi.h"
34
35#define ITE_SUPERIO_PORT1 0x2e
36#define ITE_SUPERIO_PORT2 0x4e
37
hailfinger2c361e42008-05-13 23:03:12 +000038uint16_t it8716f_flashport = 0;
39/* use fast 33MHz SPI (<>0) or slow 16MHz (0) */
hailfinger1ff33dc2010-07-03 11:02:10 +000040static int fast_spi = 1;
hailfinger2c361e42008-05-13 23:03:12 +000041
hailfinger2c361e42008-05-13 23:03:12 +000042/* Helper functions for most recent ITE IT87xx Super I/O chips */
43#define CHIP_ID_BYTE1_REG 0x20
44#define CHIP_ID_BYTE2_REG 0x21
hailfinger94e090c2011-04-27 14:34:08 +000045#define CHIP_VER_REG 0x22
hailfinger7bac0e52009-05-25 23:26:50 +000046void enter_conf_mode_ite(uint16_t port)
hailfinger2c361e42008-05-13 23:03:12 +000047{
hailfingere1f062f2008-05-22 13:22:45 +000048 OUTB(0x87, port);
49 OUTB(0x01, port);
50 OUTB(0x55, port);
hailfinger2c361e42008-05-13 23:03:12 +000051 if (port == ITE_SUPERIO_PORT1)
hailfingere1f062f2008-05-22 13:22:45 +000052 OUTB(0x55, port);
hailfinger2c361e42008-05-13 23:03:12 +000053 else
hailfingere1f062f2008-05-22 13:22:45 +000054 OUTB(0xaa, port);
hailfinger2c361e42008-05-13 23:03:12 +000055}
56
hailfinger7bac0e52009-05-25 23:26:50 +000057void exit_conf_mode_ite(uint16_t port)
hailfinger2c361e42008-05-13 23:03:12 +000058{
hailfinger7bac0e52009-05-25 23:26:50 +000059 sio_write(port, 0x02, 0x02);
hailfinger2c361e42008-05-13 23:03:12 +000060}
61
hailfingerc236f9e2009-12-22 23:42:04 +000062uint16_t probe_id_ite(uint16_t port)
63{
64 uint16_t id;
65
66 enter_conf_mode_ite(port);
67 id = sio_read(port, CHIP_ID_BYTE1_REG) << 8;
68 id |= sio_read(port, CHIP_ID_BYTE2_REG);
69 exit_conf_mode_ite(port);
70
71 return id;
72}
73
hailfinger94e090c2011-04-27 14:34:08 +000074void probe_superio_ite(void)
hailfingerc236f9e2009-12-22 23:42:04 +000075{
Patrick Georgi8ddfee92017-03-20 14:54:28 +010076 struct superio s = {0};
hailfingerc236f9e2009-12-22 23:42:04 +000077 uint16_t ite_ports[] = {ITE_SUPERIO_PORT1, ITE_SUPERIO_PORT2, 0};
78 uint16_t *i = ite_ports;
79
hailfinger94e090c2011-04-27 14:34:08 +000080 s.vendor = SUPERIO_VENDOR_ITE;
hailfingerc236f9e2009-12-22 23:42:04 +000081 for (; *i; i++) {
hailfinger94e090c2011-04-27 14:34:08 +000082 s.port = *i;
83 s.model = probe_id_ite(s.port);
84 switch (s.model >> 8) {
hailfingerc236f9e2009-12-22 23:42:04 +000085 case 0x82:
86 case 0x86:
87 case 0x87:
hailfinger94e090c2011-04-27 14:34:08 +000088 /* FIXME: Print revision for all models? */
Patrick Georgi05482992017-03-20 21:56:33 +010089 msg_pdbg("Found ITE Super I/O, ID 0x%04hx on port 0x%x\n", s.model, s.port);
hailfinger94e090c2011-04-27 14:34:08 +000090 register_superio(s);
91 break;
92 case 0x85:
Patrick Georgi05482992017-03-20 21:56:33 +010093 msg_pdbg("Found ITE EC, ID 0x%04hx, Rev 0x%02x on port 0x%x.\n",
94 s.model, sio_read(s.port, CHIP_VER_REG), s.port);
hailfinger94e090c2011-04-27 14:34:08 +000095 register_superio(s);
96 break;
hailfingerc236f9e2009-12-22 23:42:04 +000097 }
98 }
99
hailfinger94e090c2011-04-27 14:34:08 +0000100 return;
hailfingerc236f9e2009-12-22 23:42:04 +0000101}
102
Patrick Georgi05482992017-03-20 21:56:33 +0100103static int it8716f_spi_send_command(const struct flashctx *flash,
104 unsigned int writecnt, unsigned int readcnt,
105 const unsigned char *writearr,
106 unsigned char *readarr);
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700107static int it8716f_spi_chip_read(struct flashctx *flash, uint8_t *buf,
stefanctc5eb8a92011-11-23 09:13:48 +0000108 unsigned int start, unsigned int len);
Patrick Georgiab8353e2017-02-03 18:32:01 +0100109static int it8716f_spi_chip_write_256(struct flashctx *flash, const uint8_t *buf,
stefanctc5eb8a92011-11-23 09:13:48 +0000110 unsigned int start, unsigned int len);
mkarcherd264e9e2011-05-11 17:07:07 +0000111
Patrick Georgif4f1e2f2017-03-10 17:38:40 +0100112static const struct spi_master spi_master_it87xx = {
uwe8d342eb2011-07-28 08:13:25 +0000113 .type = SPI_CONTROLLER_IT87XX,
114 .max_data_read = MAX_DATA_UNSPECIFIED,
115 .max_data_write = MAX_DATA_UNSPECIFIED,
116 .command = it8716f_spi_send_command,
117 .multicommand = default_spi_send_multicommand,
118 .read = it8716f_spi_chip_read,
119 .write_256 = it8716f_spi_chip_write_256,
mkarcherd264e9e2011-05-11 17:07:07 +0000120};
121
hailfingerc73ce6e2010-07-10 16:56:32 +0000122static uint16_t it87spi_probe(uint16_t port)
hailfinger2c361e42008-05-13 23:03:12 +0000123{
124 uint8_t tmp = 0;
hailfinger4500b082009-07-11 18:05:42 +0000125 char *portpos = NULL;
hailfingerc236f9e2009-12-22 23:42:04 +0000126 uint16_t flashport = 0;
hailfinger2c361e42008-05-13 23:03:12 +0000127
hailfingerc73ce6e2010-07-10 16:56:32 +0000128 enter_conf_mode_ite(port);
129 /* NOLDN, reg 0x24, mask out lowest bit (suspend) */
130 tmp = sio_read(port, 0x24) & 0xFE;
hailfinger969e2f32011-09-08 00:00:29 +0000131 /* Check if LPC->SPI translation is active. */
132 if (!(tmp & 0x0e)) {
hailfingerc73ce6e2010-07-10 16:56:32 +0000133 msg_pdbg("No IT87* serial flash segment enabled.\n");
134 exit_conf_mode_ite(port);
135 /* Nothing to do. */
David Hendricks5e79c9f2013-11-04 22:05:08 -0800136 return 1;
hailfingerc73ce6e2010-07-10 16:56:32 +0000137 }
138 msg_pdbg("Serial flash segment 0x%08x-0x%08x %sabled\n",
139 0xFFFE0000, 0xFFFFFFFF, (tmp & 1 << 1) ? "en" : "dis");
140 msg_pdbg("Serial flash segment 0x%08x-0x%08x %sabled\n",
141 0x000E0000, 0x000FFFFF, (tmp & 1 << 1) ? "en" : "dis");
142 msg_pdbg("Serial flash segment 0x%08x-0x%08x %sabled\n",
143 0xFFEE0000, 0xFFEFFFFF, (tmp & 1 << 2) ? "en" : "dis");
144 msg_pdbg("Serial flash segment 0x%08x-0x%08x %sabled\n",
145 0xFFF80000, 0xFFFEFFFF, (tmp & 1 << 3) ? "en" : "dis");
146 msg_pdbg("LPC write to serial flash %sabled\n",
147 (tmp & 1 << 4) ? "en" : "dis");
148 /* The LPC->SPI force write enable below only makes sense for
149 * non-programmer mode.
150 */
151 /* If any serial flash segment is enabled, enable writing. */
152 if ((tmp & 0xe) && (!(tmp & 1 << 4))) {
153 msg_pdbg("Enabling LPC write to serial flash\n");
154 tmp |= 1 << 4;
155 sio_write(port, 0x24, tmp);
156 }
157 msg_pdbg("Serial flash pin %i\n", (tmp & 1 << 5) ? 87 : 29);
158 /* LDN 0x7, reg 0x64/0x65 */
159 sio_write(port, 0x07, 0x7);
160 flashport = sio_read(port, 0x64) << 8;
161 flashport |= sio_read(port, 0x65);
162 msg_pdbg("Serial flash port 0x%04x\n", flashport);
163 /* Non-default port requested? */
164 portpos = extract_programmer_param("it87spiport");
165 if (portpos) {
166 char *endptr = NULL;
167 unsigned long forced_flashport;
168 forced_flashport = strtoul(portpos, &endptr, 0);
169 /* Port 0, port >0x1000, unaligned ports and garbage strings
170 * are rejected.
hailfingerddd5d7b2010-03-25 02:50:40 +0000171 */
hailfingerc73ce6e2010-07-10 16:56:32 +0000172 if (!forced_flashport || (forced_flashport >= 0x1000) ||
173 (forced_flashport & 0x7) || (*endptr != '\0')) {
174 /* Using ports below 0x100 is a really bad idea, and
175 * should only be done if no port between 0x100 and
176 * 0xff8 works due to routing issues.
177 */
178 msg_perr("Error: it87spiport specified, but no valid "
179 "port specified.\nPort must be a multiple of "
180 "0x8 and lie between 0x100 and 0xff8.\n");
hailfinger1ef766d2010-07-06 09:55:48 +0000181 free(portpos);
hailfinger94e090c2011-04-27 14:34:08 +0000182 return 1;
hailfingerc73ce6e2010-07-10 16:56:32 +0000183 } else {
184 flashport = (uint16_t)forced_flashport;
185 msg_pinfo("Forcing serial flash port 0x%04x\n",
186 flashport);
187 sio_write(port, 0x64, (flashport >> 8));
188 sio_write(port, 0x65, (flashport & 0xff));
hailfinger4500b082009-07-11 18:05:42 +0000189 }
hailfinger2c361e42008-05-13 23:03:12 +0000190 }
hailfingerc73ce6e2010-07-10 16:56:32 +0000191 free(portpos);
192 exit_conf_mode_ite(port);
193 it8716f_flashport = flashport;
hailfinger76bb7e92011-11-09 23:40:00 +0000194 if (internal_buses_supported & BUS_SPI)
hailfingerc73ce6e2010-07-10 16:56:32 +0000195 msg_pdbg("Overriding chipset SPI with IT87 SPI.\n");
hailfinger94e090c2011-04-27 14:34:08 +0000196 /* FIXME: Add the SPI bus or replace the other buses with it? */
Patrick Georgif4f1e2f2017-03-10 17:38:40 +0100197 register_spi_master(&spi_master_it87xx);
hailfingerc73ce6e2010-07-10 16:56:32 +0000198 return 0;
hailfinger2c361e42008-05-13 23:03:12 +0000199}
200
David Hendricksac1d25c2016-08-09 17:00:58 -0700201int init_superio_ite(void)
hailfinger2c361e42008-05-13 23:03:12 +0000202{
David Hendricks5e79c9f2013-11-04 22:05:08 -0800203 int i, ret, chips_found = 0;
stepan3bdf6182008-06-30 23:45:22 +0000204
hailfinger94e090c2011-04-27 14:34:08 +0000205 for (i = 0; i < superio_count; i++) {
206 if (superios[i].vendor != SUPERIO_VENDOR_ITE)
207 continue;
hailfinger2c361e42008-05-13 23:03:12 +0000208
hailfinger94e090c2011-04-27 14:34:08 +0000209 switch (superios[i].model) {
210 case 0x8500:
211 case 0x8502:
212 case 0x8510:
213 case 0x8511:
214 case 0x8512:
215 /* FIXME: This should be enabled, but we need a check
216 * for laptop whitelisting due to the amount of things
217 * which can go wrong if the EC firmware does not
218 * implement the interface we want.
219 */
David Hendricksac1d25c2016-08-09 17:00:58 -0700220 if (!it85xx_spi_init(superios[i]))
David Hendricks5e79c9f2013-11-04 22:05:08 -0800221 chips_found++;
hailfinger94e090c2011-04-27 14:34:08 +0000222 break;
Shawn Nematbakhsh3404b1a2012-07-26 15:19:58 -0700223 case 0x8518:
David Hendricksac1d25c2016-08-09 17:00:58 -0700224 if (!it8518_spi_init(superios[i]))
David Hendricks5e79c9f2013-11-04 22:05:08 -0800225 chips_found++;
Shawn Nematbakhsh3404b1a2012-07-26 15:19:58 -0700226 break;
hailfinger94e090c2011-04-27 14:34:08 +0000227 case 0x8705:
David Hendricks5e79c9f2013-11-04 22:05:08 -0800228 if (!it8705f_write_enable(superios[i].port))
229 chips_found++;
hailfinger94e090c2011-04-27 14:34:08 +0000230 break;
231 case 0x8716:
232 case 0x8718:
233 case 0x8720:
David Hendricks5e79c9f2013-11-04 22:05:08 -0800234 if (!it87spi_probe(superios[i].port))
235 chips_found++;
hailfinger94e090c2011-04-27 14:34:08 +0000236 break;
237 default:
238 msg_pdbg("Super I/O ID 0x%04hx is not on the list of "
239 "flash capable controllers.\n",
240 superios[i].model);
241 }
hailfingerd9f5da22009-06-28 10:57:58 +0000242 }
David Hendricks5e79c9f2013-11-04 22:05:08 -0800243
244 if (chips_found == 0) {
245 ret = 1; /* failed to probe/initialize/enable chip */
246 } else if (chips_found == 1) {
247 ret = 0; /* success */
248 } else {
249 msg_pdbg("%s: Found %d programmable ECs/SuperIOs, aborting.\n",
250 __func__, chips_found);
251 ret = 1;
252 }
hailfingera916b422009-06-01 02:08:58 +0000253 return ret;
hailfinger26e212b2009-05-31 18:00:57 +0000254}
255
uwefa98ca12008-10-18 21:14:13 +0000256/*
257 * The IT8716F only supports commands with length 1,2,4,5 bytes including
258 * command byte and can not read more than 3 bytes from the device.
259 *
260 * This function expects writearr[0] to be the first byte sent to the device,
261 * whereas the IT8716F splits commands internally into address and non-address
262 * commands with the address in inverse wire order. That's why the register
263 * ordering in case 4 and 5 may seem strange.
264 */
Patrick Georgi05482992017-03-20 21:56:33 +0100265static int it8716f_spi_send_command(const struct flashctx *flash,
266 unsigned int writecnt, unsigned int readcnt,
267 const unsigned char *writearr,
268 unsigned char *readarr)
hailfinger2c361e42008-05-13 23:03:12 +0000269{
270 uint8_t busy, writeenc;
271 int i;
272
273 do {
hailfingere1f062f2008-05-22 13:22:45 +0000274 busy = INB(it8716f_flashport) & 0x80;
hailfinger2c361e42008-05-13 23:03:12 +0000275 } while (busy);
276 if (readcnt > 3) {
snelson55fe91c2010-01-10 01:09:58 +0000277 msg_pinfo("%s called with unsupported readcnt %i.\n",
uwe8d342eb2011-07-28 08:13:25 +0000278 __func__, readcnt);
hailfinger9c290a72009-07-14 10:26:56 +0000279 return SPI_INVALID_LENGTH;
hailfinger2c361e42008-05-13 23:03:12 +0000280 }
281 switch (writecnt) {
282 case 1:
hailfingere1f062f2008-05-22 13:22:45 +0000283 OUTB(writearr[0], it8716f_flashport + 1);
hailfinger2c361e42008-05-13 23:03:12 +0000284 writeenc = 0x0;
285 break;
286 case 2:
hailfingere1f062f2008-05-22 13:22:45 +0000287 OUTB(writearr[0], it8716f_flashport + 1);
288 OUTB(writearr[1], it8716f_flashport + 7);
hailfinger2c361e42008-05-13 23:03:12 +0000289 writeenc = 0x1;
290 break;
291 case 4:
hailfingere1f062f2008-05-22 13:22:45 +0000292 OUTB(writearr[0], it8716f_flashport + 1);
293 OUTB(writearr[1], it8716f_flashport + 4);
294 OUTB(writearr[2], it8716f_flashport + 3);
295 OUTB(writearr[3], it8716f_flashport + 2);
hailfinger2c361e42008-05-13 23:03:12 +0000296 writeenc = 0x2;
297 break;
298 case 5:
hailfingere1f062f2008-05-22 13:22:45 +0000299 OUTB(writearr[0], it8716f_flashport + 1);
300 OUTB(writearr[1], it8716f_flashport + 4);
301 OUTB(writearr[2], it8716f_flashport + 3);
302 OUTB(writearr[3], it8716f_flashport + 2);
303 OUTB(writearr[4], it8716f_flashport + 7);
hailfinger2c361e42008-05-13 23:03:12 +0000304 writeenc = 0x3;
305 break;
306 default:
snelson55fe91c2010-01-10 01:09:58 +0000307 msg_pinfo("%s called with unsupported writecnt %i.\n",
uwe8d342eb2011-07-28 08:13:25 +0000308 __func__, writecnt);
hailfinger9c290a72009-07-14 10:26:56 +0000309 return SPI_INVALID_LENGTH;
hailfinger2c361e42008-05-13 23:03:12 +0000310 }
uwefa98ca12008-10-18 21:14:13 +0000311 /*
312 * Start IO, 33 or 16 MHz, readcnt input bytes, writecnt output bytes.
hailfinger2c361e42008-05-13 23:03:12 +0000313 * Note:
314 * We can't use writecnt directly, but have to use a strange encoding.
uwefa98ca12008-10-18 21:14:13 +0000315 */
316 OUTB(((0x4 + (fast_spi ? 1 : 0)) << 4)
317 | ((readcnt & 0x3) << 2) | (writeenc), it8716f_flashport);
hailfinger2c361e42008-05-13 23:03:12 +0000318
319 if (readcnt > 0) {
320 do {
hailfingere1f062f2008-05-22 13:22:45 +0000321 busy = INB(it8716f_flashport) & 0x80;
hailfinger2c361e42008-05-13 23:03:12 +0000322 } while (busy);
323
uwefa98ca12008-10-18 21:14:13 +0000324 for (i = 0; i < readcnt; i++)
hailfingere1f062f2008-05-22 13:22:45 +0000325 readarr[i] = INB(it8716f_flashport + 5 + i);
hailfinger2c361e42008-05-13 23:03:12 +0000326 }
327
328 return 0;
329}
330
331/* Page size is usually 256 bytes */
Patrick Georgi05482992017-03-20 21:56:33 +0100332static int it8716f_spi_page_program(struct flashctx *flash, const uint8_t *buf, unsigned int start)
uwefa98ca12008-10-18 21:14:13 +0000333{
stefanctc5eb8a92011-11-23 09:13:48 +0000334 unsigned int i;
335 int result;
hailfinger4500b082009-07-11 18:05:42 +0000336 chipaddr bios = flash->virtual_memory;
hailfinger2c361e42008-05-13 23:03:12 +0000337
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700338 result = spi_write_enable(flash);
hailfinger61949942009-05-09 02:09:45 +0000339 if (result)
340 return result;
hailfingerec9334b2009-07-12 12:06:18 +0000341 /* FIXME: The command below seems to be redundant or wrong. */
uwefa98ca12008-10-18 21:14:13 +0000342 OUTB(0x06, it8716f_flashport + 1);
hailfingere1f062f2008-05-22 13:22:45 +0000343 OUTB(((2 + (fast_spi ? 1 : 0)) << 4), it8716f_flashport);
uwe8d342eb2011-07-28 08:13:25 +0000344 for (i = 0; i < flash->page_size; i++)
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700345 chip_writeb(flash, buf[i], bios + start + i);
hailfingere1f062f2008-05-22 13:22:45 +0000346 OUTB(0, it8716f_flashport);
hailfinger2c361e42008-05-13 23:03:12 +0000347 /* Wait until the Write-In-Progress bit is cleared.
348 * This usually takes 1-10 ms, so wait in 1 ms steps.
349 */
Ramya Vijaykumar4af3f822016-01-27 11:51:27 +0530350 while (spi_read_status_register(flash) & JEDEC_RDSR_BIT_WIP)
hailfingere5829f62009-06-05 17:48:08 +0000351 programmer_delay(1000);
hailfinger61949942009-05-09 02:09:45 +0000352 return 0;
hailfinger2c361e42008-05-13 23:03:12 +0000353}
354
355/*
hailfinger2c361e42008-05-13 23:03:12 +0000356 * IT8716F only allows maximum of 512 kb SPI mapped to LPC memory cycles
357 * Need to read this big flash using firmware cycles 3 byte at a time.
358 */
Souvik Ghoshd75cd672016-06-17 14:21:39 -0700359static int it8716f_spi_chip_read(struct flashctx *flash, uint8_t *buf,
stefanctc5eb8a92011-11-23 09:13:48 +0000360 unsigned int start, unsigned int len)
hailfinger2c361e42008-05-13 23:03:12 +0000361{
hailfinger2c361e42008-05-13 23:03:12 +0000362 fast_spi = 0;
363
hailfinger94e090c2011-04-27 14:34:08 +0000364 /* FIXME: Check if someone explicitly requested to use IT87 SPI although
365 * the mainboard does not use IT87 SPI translation. This should be done
366 * via a programmer parameter for the internal programmer.
367 */
368 if ((flash->total_size * 1024 > 512 * 1024)) {
hailfinger0f08b7a2009-06-16 08:55:44 +0000369 spi_read_chunked(flash, buf, start, len, 3);
hailfinger2c361e42008-05-13 23:03:12 +0000370 } else {
hailfinger0f08b7a2009-06-16 08:55:44 +0000371 read_memmapped(flash, buf, start, len);
hailfinger2c361e42008-05-13 23:03:12 +0000372 }
uwefa98ca12008-10-18 21:14:13 +0000373
hailfinger2c361e42008-05-13 23:03:12 +0000374 return 0;
375}
376
Patrick Georgiab8353e2017-02-03 18:32:01 +0100377static int it8716f_spi_chip_write_256(struct flashctx *flash, const uint8_t *buf,
stefanctc5eb8a92011-11-23 09:13:48 +0000378 unsigned int start, unsigned int len)
uwefa98ca12008-10-18 21:14:13 +0000379{
hailfingered063f52009-05-09 02:30:21 +0000380 /*
381 * IT8716F only allows maximum of 512 kb SPI chip size for memory
hailfingerdef852d2010-10-27 22:07:11 +0000382 * mapped access. It also can't write more than 1+3+256 bytes at once,
383 * so page_size > 256 bytes needs a fallback.
384 * FIXME: Split too big page writes into chunks IT87* can handle instead
385 * of degrading to single-byte program.
hailfinger94e090c2011-04-27 14:34:08 +0000386 * FIXME: Check if someone explicitly requested to use IT87 SPI although
387 * the mainboard does not use IT87 SPI translation. This should be done
388 * via a programmer parameter for the internal programmer.
hailfingered063f52009-05-09 02:30:21 +0000389 */
hailfinger94e090c2011-04-27 14:34:08 +0000390 if ((flash->total_size * 1024 > 512 * 1024) ||
hailfinger71e1bd42010-10-13 22:26:56 +0000391 (flash->page_size > 256)) {
392 spi_chip_write_1(flash, buf, start, len);
hailfinger2c361e42008-05-13 23:03:12 +0000393 } else {
stefanctc5eb8a92011-11-23 09:13:48 +0000394 unsigned int lenhere;
hailfingerc7d06c62010-07-14 16:19:05 +0000395
hailfinger71e1bd42010-10-13 22:26:56 +0000396 if (start % flash->page_size) {
hailfingerdef852d2010-10-27 22:07:11 +0000397 /* start to the end of the page or to start + len,
398 * whichever is smaller.
hailfingerc7d06c62010-07-14 16:19:05 +0000399 */
hailfinger71e1bd42010-10-13 22:26:56 +0000400 lenhere = min(len, flash->page_size - start % flash->page_size);
401 spi_chip_write_1(flash, buf, start, lenhere);
hailfingerc7d06c62010-07-14 16:19:05 +0000402 start += lenhere;
403 len -= lenhere;
404 buf += lenhere;
hailfingere8b674c2009-08-10 02:29:21 +0000405 }
hailfingerc7d06c62010-07-14 16:19:05 +0000406
hailfinger71e1bd42010-10-13 22:26:56 +0000407 while (len >= flash->page_size) {
hailfingerc7d06c62010-07-14 16:19:05 +0000408 it8716f_spi_page_program(flash, buf, start);
hailfinger71e1bd42010-10-13 22:26:56 +0000409 start += flash->page_size;
410 len -= flash->page_size;
411 buf += flash->page_size;
hailfinger2c361e42008-05-13 23:03:12 +0000412 }
hailfingerc7d06c62010-07-14 16:19:05 +0000413 if (len)
hailfinger71e1bd42010-10-13 22:26:56 +0000414 spi_chip_write_1(flash, buf, start, len);
hailfinger2c361e42008-05-13 23:03:12 +0000415 }
uwefa98ca12008-10-18 21:14:13 +0000416
hailfinger2c361e42008-05-13 23:03:12 +0000417 return 0;
418}
hailfinger324a9cc2010-05-26 01:45:41 +0000419
420#endif