blob: 8e4e0ad1197288b3d082a3f19a8e1a08ffc1df38 [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 Hailfinger5b997c32010-07-27 22:41:39 +000032#include "programmer.h"
Patrick Georgi32508eb2012-07-20 20:35:14 +000033#include "hwaccess.h"
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000034#include "spi.h"
35
36#define ITE_SUPERIO_PORT1 0x2e
37#define ITE_SUPERIO_PORT2 0x4e
38
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000039uint16_t it8716f_flashport = 0;
40/* use fast 33MHz SPI (<>0) or slow 16MHz (0) */
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +000041static int fast_spi = 1;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000042
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000043/* Helper functions for most recent ITE IT87xx Super I/O chips */
44#define CHIP_ID_BYTE1_REG 0x20
45#define CHIP_ID_BYTE2_REG 0x21
Carl-Daniel Hailfingerbfecef62011-04-27 14:34:08 +000046#define CHIP_VER_REG 0x22
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000047void enter_conf_mode_ite(uint16_t port)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000048{
Andriy Gapon65c1b862008-05-22 13:22:45 +000049 OUTB(0x87, port);
50 OUTB(0x01, port);
51 OUTB(0x55, port);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000052 if (port == ITE_SUPERIO_PORT1)
Andriy Gapon65c1b862008-05-22 13:22:45 +000053 OUTB(0x55, port);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000054 else
Andriy Gapon65c1b862008-05-22 13:22:45 +000055 OUTB(0xaa, port);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000056}
57
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000058void exit_conf_mode_ite(uint16_t port)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000059{
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000060 sio_write(port, 0x02, 0x02);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000061}
62
Carl-Daniel Hailfinger14e100c2009-12-22 23:42:04 +000063uint16_t probe_id_ite(uint16_t port)
64{
65 uint16_t id;
66
67 enter_conf_mode_ite(port);
68 id = sio_read(port, CHIP_ID_BYTE1_REG) << 8;
69 id |= sio_read(port, CHIP_ID_BYTE2_REG);
70 exit_conf_mode_ite(port);
71
72 return id;
73}
74
Carl-Daniel Hailfingerbfecef62011-04-27 14:34:08 +000075void probe_superio_ite(void)
Carl-Daniel Hailfinger14e100c2009-12-22 23:42:04 +000076{
Carl-Daniel Hailfinger1c6d2ff2012-08-27 00:44:42 +000077 struct superio s = {0};
Carl-Daniel Hailfinger14e100c2009-12-22 23:42:04 +000078 uint16_t ite_ports[] = {ITE_SUPERIO_PORT1, ITE_SUPERIO_PORT2, 0};
79 uint16_t *i = ite_ports;
80
Carl-Daniel Hailfingerbfecef62011-04-27 14:34:08 +000081 s.vendor = SUPERIO_VENDOR_ITE;
Carl-Daniel Hailfinger14e100c2009-12-22 23:42:04 +000082 for (; *i; i++) {
Carl-Daniel Hailfingerbfecef62011-04-27 14:34:08 +000083 s.port = *i;
84 s.model = probe_id_ite(s.port);
85 switch (s.model >> 8) {
Carl-Daniel Hailfinger14e100c2009-12-22 23:42:04 +000086 case 0x82:
87 case 0x86:
88 case 0x87:
Carl-Daniel Hailfingerbfecef62011-04-27 14:34:08 +000089 /* FIXME: Print revision for all models? */
Stefan Tauner352e50b2013-02-22 15:58:45 +000090 msg_pdbg("Found ITE Super I/O, ID 0x%04hx on port 0x%x\n", s.model, s.port);
Carl-Daniel Hailfingerbfecef62011-04-27 14:34:08 +000091 register_superio(s);
92 break;
93 case 0x85:
Stefan Tauner352e50b2013-02-22 15:58:45 +000094 msg_pdbg("Found ITE EC, ID 0x%04hx, Rev 0x%02x on port 0x%x.\n",
95 s.model, sio_read(s.port, CHIP_VER_REG), s.port);
Carl-Daniel Hailfingerbfecef62011-04-27 14:34:08 +000096 register_superio(s);
97 break;
Carl-Daniel Hailfinger14e100c2009-12-22 23:42:04 +000098 }
99 }
100
Carl-Daniel Hailfingerbfecef62011-04-27 14:34:08 +0000101 return;
Carl-Daniel Hailfinger14e100c2009-12-22 23:42:04 +0000102}
103
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000104static int it8716f_spi_send_command(struct flashctx *flash,
105 unsigned int writecnt, unsigned int readcnt,
106 const unsigned char *writearr,
107 unsigned char *readarr);
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000108static int it8716f_spi_chip_read(struct flashctx *flash, uint8_t *buf,
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000109 unsigned int start, unsigned int len);
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000110static int it8716f_spi_chip_write_256(struct flashctx *flash, uint8_t *buf,
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000111 unsigned int start, unsigned int len);
Michael Karcherb9dbe482011-05-11 17:07:07 +0000112
113static const struct spi_programmer spi_programmer_it87xx = {
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000114 .type = SPI_CONTROLLER_IT87XX,
115 .max_data_read = MAX_DATA_UNSPECIFIED,
116 .max_data_write = MAX_DATA_UNSPECIFIED,
117 .command = it8716f_spi_send_command,
118 .multicommand = default_spi_send_multicommand,
119 .read = it8716f_spi_chip_read,
120 .write_256 = it8716f_spi_chip_write_256,
Nico Huber7bca1262012-06-15 22:28:12 +0000121 .write_aai = default_spi_write_aai,
Michael Karcherb9dbe482011-05-11 17:07:07 +0000122};
123
Carl-Daniel Hailfinger76d4b372010-07-10 16:56:32 +0000124static uint16_t it87spi_probe(uint16_t port)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000125{
126 uint8_t tmp = 0;
Carl-Daniel Hailfingerbb297f72009-07-11 18:05:42 +0000127 char *portpos = NULL;
Carl-Daniel Hailfinger14e100c2009-12-22 23:42:04 +0000128 uint16_t flashport = 0;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000129
Carl-Daniel Hailfinger76d4b372010-07-10 16:56:32 +0000130 enter_conf_mode_ite(port);
131 /* NOLDN, reg 0x24, mask out lowest bit (suspend) */
132 tmp = sio_read(port, 0x24) & 0xFE;
Carl-Daniel Hailfinger2e681602011-09-08 00:00:29 +0000133 /* Check if LPC->SPI translation is active. */
134 if (!(tmp & 0x0e)) {
Carl-Daniel Hailfinger76d4b372010-07-10 16:56:32 +0000135 msg_pdbg("No IT87* serial flash segment enabled.\n");
136 exit_conf_mode_ite(port);
137 /* Nothing to do. */
Carl-Daniel Hailfingerbfecef62011-04-27 14:34:08 +0000138 return 0;
Carl-Daniel Hailfinger76d4b372010-07-10 16:56:32 +0000139 }
140 msg_pdbg("Serial flash segment 0x%08x-0x%08x %sabled\n",
141 0xFFFE0000, 0xFFFFFFFF, (tmp & 1 << 1) ? "en" : "dis");
142 msg_pdbg("Serial flash segment 0x%08x-0x%08x %sabled\n",
143 0x000E0000, 0x000FFFFF, (tmp & 1 << 1) ? "en" : "dis");
144 msg_pdbg("Serial flash segment 0x%08x-0x%08x %sabled\n",
145 0xFFEE0000, 0xFFEFFFFF, (tmp & 1 << 2) ? "en" : "dis");
146 msg_pdbg("Serial flash segment 0x%08x-0x%08x %sabled\n",
147 0xFFF80000, 0xFFFEFFFF, (tmp & 1 << 3) ? "en" : "dis");
148 msg_pdbg("LPC write to serial flash %sabled\n",
149 (tmp & 1 << 4) ? "en" : "dis");
150 /* The LPC->SPI force write enable below only makes sense for
151 * non-programmer mode.
152 */
153 /* If any serial flash segment is enabled, enable writing. */
154 if ((tmp & 0xe) && (!(tmp & 1 << 4))) {
155 msg_pdbg("Enabling LPC write to serial flash\n");
156 tmp |= 1 << 4;
157 sio_write(port, 0x24, tmp);
158 }
159 msg_pdbg("Serial flash pin %i\n", (tmp & 1 << 5) ? 87 : 29);
160 /* LDN 0x7, reg 0x64/0x65 */
161 sio_write(port, 0x07, 0x7);
162 flashport = sio_read(port, 0x64) << 8;
163 flashport |= sio_read(port, 0x65);
164 msg_pdbg("Serial flash port 0x%04x\n", flashport);
165 /* Non-default port requested? */
166 portpos = extract_programmer_param("it87spiport");
167 if (portpos) {
168 char *endptr = NULL;
169 unsigned long forced_flashport;
170 forced_flashport = strtoul(portpos, &endptr, 0);
171 /* Port 0, port >0x1000, unaligned ports and garbage strings
172 * are rejected.
Carl-Daniel Hailfinger01f3ef42010-03-25 02:50:40 +0000173 */
Carl-Daniel Hailfinger76d4b372010-07-10 16:56:32 +0000174 if (!forced_flashport || (forced_flashport >= 0x1000) ||
175 (forced_flashport & 0x7) || (*endptr != '\0')) {
176 /* Using ports below 0x100 is a really bad idea, and
177 * should only be done if no port between 0x100 and
178 * 0xff8 works due to routing issues.
179 */
180 msg_perr("Error: it87spiport specified, but no valid "
181 "port specified.\nPort must be a multiple of "
182 "0x8 and lie between 0x100 and 0xff8.\n");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000183 free(portpos);
Carl-Daniel Hailfingerbfecef62011-04-27 14:34:08 +0000184 return 1;
Carl-Daniel Hailfinger76d4b372010-07-10 16:56:32 +0000185 } else {
186 flashport = (uint16_t)forced_flashport;
187 msg_pinfo("Forcing serial flash port 0x%04x\n",
188 flashport);
189 sio_write(port, 0x64, (flashport >> 8));
190 sio_write(port, 0x65, (flashport & 0xff));
Carl-Daniel Hailfingerbb297f72009-07-11 18:05:42 +0000191 }
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000192 }
Carl-Daniel Hailfinger76d4b372010-07-10 16:56:32 +0000193 free(portpos);
194 exit_conf_mode_ite(port);
195 it8716f_flashport = flashport;
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +0000196 if (internal_buses_supported & BUS_SPI)
Carl-Daniel Hailfinger76d4b372010-07-10 16:56:32 +0000197 msg_pdbg("Overriding chipset SPI with IT87 SPI.\n");
Carl-Daniel Hailfingerbfecef62011-04-27 14:34:08 +0000198 /* FIXME: Add the SPI bus or replace the other buses with it? */
Michael Karcherb9dbe482011-05-11 17:07:07 +0000199 register_spi_programmer(&spi_programmer_it87xx);
Carl-Daniel Hailfinger76d4b372010-07-10 16:56:32 +0000200 return 0;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000201}
202
Carl-Daniel Hailfinger76d4b372010-07-10 16:56:32 +0000203int init_superio_ite(void)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000204{
Carl-Daniel Hailfinger082c8b52011-08-15 19:54:20 +0000205 int i;
206 int ret = 0;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000207
Carl-Daniel Hailfingerbfecef62011-04-27 14:34:08 +0000208 for (i = 0; i < superio_count; i++) {
209 if (superios[i].vendor != SUPERIO_VENDOR_ITE)
210 continue;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000211
Carl-Daniel Hailfingerbfecef62011-04-27 14:34:08 +0000212 switch (superios[i].model) {
213 case 0x8500:
214 case 0x8502:
215 case 0x8510:
216 case 0x8511:
217 case 0x8512:
218 /* FIXME: This should be enabled, but we need a check
219 * for laptop whitelisting due to the amount of things
220 * which can go wrong if the EC firmware does not
221 * implement the interface we want.
222 */
223 //it85xx_spi_init(superios[i]);
224 break;
225 case 0x8705:
226 ret |= it8705f_write_enable(superios[i].port);
227 break;
228 case 0x8716:
229 case 0x8718:
230 case 0x8720:
231 ret |= it87spi_probe(superios[i].port);
232 break;
233 default:
234 msg_pdbg("Super I/O ID 0x%04hx is not on the list of "
235 "flash capable controllers.\n",
236 superios[i].model);
237 }
Carl-Daniel Hailfinger34cc6cc2009-06-28 10:57:58 +0000238 }
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000239 return ret;
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000240}
241
Uwe Hermann394131e2008-10-18 21:14:13 +0000242/*
243 * The IT8716F only supports commands with length 1,2,4,5 bytes including
244 * command byte and can not read more than 3 bytes from the device.
245 *
246 * This function expects writearr[0] to be the first byte sent to the device,
247 * whereas the IT8716F splits commands internally into address and non-address
248 * commands with the address in inverse wire order. That's why the register
249 * ordering in case 4 and 5 may seem strange.
250 */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000251static int it8716f_spi_send_command(struct flashctx *flash,
252 unsigned int writecnt, unsigned int readcnt,
253 const unsigned char *writearr,
254 unsigned char *readarr)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000255{
256 uint8_t busy, writeenc;
257 int i;
258
259 do {
Andriy Gapon65c1b862008-05-22 13:22:45 +0000260 busy = INB(it8716f_flashport) & 0x80;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000261 } while (busy);
262 if (readcnt > 3) {
Sean Nelson01e532d2010-01-10 01:09:58 +0000263 msg_pinfo("%s called with unsupported readcnt %i.\n",
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000264 __func__, readcnt);
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +0000265 return SPI_INVALID_LENGTH;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000266 }
267 switch (writecnt) {
268 case 1:
Andriy Gapon65c1b862008-05-22 13:22:45 +0000269 OUTB(writearr[0], it8716f_flashport + 1);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000270 writeenc = 0x0;
271 break;
272 case 2:
Andriy Gapon65c1b862008-05-22 13:22:45 +0000273 OUTB(writearr[0], it8716f_flashport + 1);
274 OUTB(writearr[1], it8716f_flashport + 7);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000275 writeenc = 0x1;
276 break;
277 case 4:
Andriy Gapon65c1b862008-05-22 13:22:45 +0000278 OUTB(writearr[0], it8716f_flashport + 1);
279 OUTB(writearr[1], it8716f_flashport + 4);
280 OUTB(writearr[2], it8716f_flashport + 3);
281 OUTB(writearr[3], it8716f_flashport + 2);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000282 writeenc = 0x2;
283 break;
284 case 5:
Andriy Gapon65c1b862008-05-22 13:22:45 +0000285 OUTB(writearr[0], it8716f_flashport + 1);
286 OUTB(writearr[1], it8716f_flashport + 4);
287 OUTB(writearr[2], it8716f_flashport + 3);
288 OUTB(writearr[3], it8716f_flashport + 2);
289 OUTB(writearr[4], it8716f_flashport + 7);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000290 writeenc = 0x3;
291 break;
292 default:
Sean Nelson01e532d2010-01-10 01:09:58 +0000293 msg_pinfo("%s called with unsupported writecnt %i.\n",
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000294 __func__, writecnt);
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +0000295 return SPI_INVALID_LENGTH;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000296 }
Uwe Hermann394131e2008-10-18 21:14:13 +0000297 /*
298 * Start IO, 33 or 16 MHz, readcnt input bytes, writecnt output bytes.
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000299 * Note:
300 * We can't use writecnt directly, but have to use a strange encoding.
Uwe Hermann394131e2008-10-18 21:14:13 +0000301 */
302 OUTB(((0x4 + (fast_spi ? 1 : 0)) << 4)
303 | ((readcnt & 0x3) << 2) | (writeenc), it8716f_flashport);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000304
305 if (readcnt > 0) {
306 do {
Andriy Gapon65c1b862008-05-22 13:22:45 +0000307 busy = INB(it8716f_flashport) & 0x80;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000308 } while (busy);
309
Uwe Hermann394131e2008-10-18 21:14:13 +0000310 for (i = 0; i < readcnt; i++)
Andriy Gapon65c1b862008-05-22 13:22:45 +0000311 readarr[i] = INB(it8716f_flashport + 5 + i);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000312 }
313
314 return 0;
315}
316
317/* Page size is usually 256 bytes */
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000318static int it8716f_spi_page_program(struct flashctx *flash, uint8_t *buf,
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000319 unsigned int start)
Uwe Hermann394131e2008-10-18 21:14:13 +0000320{
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000321 unsigned int i;
322 int result;
Carl-Daniel Hailfingerbb297f72009-07-11 18:05:42 +0000323 chipaddr bios = flash->virtual_memory;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000324
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000325 result = spi_write_enable(flash);
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +0000326 if (result)
327 return result;
Carl-Daniel Hailfinger2f1b36f2009-07-12 12:06:18 +0000328 /* FIXME: The command below seems to be redundant or wrong. */
Uwe Hermann394131e2008-10-18 21:14:13 +0000329 OUTB(0x06, it8716f_flashport + 1);
Andriy Gapon65c1b862008-05-22 13:22:45 +0000330 OUTB(((2 + (fast_spi ? 1 : 0)) << 4), it8716f_flashport);
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000331 for (i = 0; i < flash->chip->page_size; i++)
Carl-Daniel Hailfingerccd71c22012-03-01 22:38:27 +0000332 mmio_writeb(buf[i], (void *)(bios + start + i));
Andriy Gapon65c1b862008-05-22 13:22:45 +0000333 OUTB(0, it8716f_flashport);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000334 /* Wait until the Write-In-Progress bit is cleared.
335 * This usually takes 1-10 ms, so wait in 1 ms steps.
336 */
Stefan Tauner5e695ab2012-05-06 17:03:40 +0000337 while (spi_read_status_register(flash) & SPI_SR_WIP)
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000338 programmer_delay(1000);
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +0000339 return 0;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000340}
341
342/*
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000343 * IT8716F only allows maximum of 512 kb SPI mapped to LPC memory cycles
344 * Need to read this big flash using firmware cycles 3 byte at a time.
345 */
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000346static int it8716f_spi_chip_read(struct flashctx *flash, uint8_t *buf,
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000347 unsigned int start, unsigned int len)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000348{
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000349 fast_spi = 0;
350
Carl-Daniel Hailfingerbfecef62011-04-27 14:34:08 +0000351 /* FIXME: Check if someone explicitly requested to use IT87 SPI although
352 * the mainboard does not use IT87 SPI translation. This should be done
353 * via a programmer parameter for the internal programmer.
354 */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000355 if ((flash->chip->total_size * 1024 > 512 * 1024)) {
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000356 spi_read_chunked(flash, buf, start, len, 3);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000357 } else {
Carl-Daniel Hailfingerccd71c22012-03-01 22:38:27 +0000358 mmio_readn((void *)(flash->virtual_memory + start), buf, len);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000359 }
Uwe Hermann394131e2008-10-18 21:14:13 +0000360
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000361 return 0;
362}
363
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +0000364static int it8716f_spi_chip_write_256(struct flashctx *flash, uint8_t *buf,
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000365 unsigned int start, unsigned int len)
Uwe Hermann394131e2008-10-18 21:14:13 +0000366{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000367 const struct flashchip *chip = flash->chip;
Carl-Daniel Hailfinger96930c32009-05-09 02:30:21 +0000368 /*
369 * IT8716F only allows maximum of 512 kb SPI chip size for memory
Carl-Daniel Hailfingerccfe0ac2010-10-27 22:07:11 +0000370 * mapped access. It also can't write more than 1+3+256 bytes at once,
371 * so page_size > 256 bytes needs a fallback.
372 * FIXME: Split too big page writes into chunks IT87* can handle instead
373 * of degrading to single-byte program.
Carl-Daniel Hailfingerbfecef62011-04-27 14:34:08 +0000374 * FIXME: Check if someone explicitly requested to use IT87 SPI although
375 * the mainboard does not use IT87 SPI translation. This should be done
376 * via a programmer parameter for the internal programmer.
Carl-Daniel Hailfinger96930c32009-05-09 02:30:21 +0000377 */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000378 if ((chip->total_size * 1024 > 512 * 1024) || (chip->page_size > 256)) {
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +0000379 spi_chip_write_1(flash, buf, start, len);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000380 } else {
Stefan Taunerc69c9c82011-11-23 09:13:48 +0000381 unsigned int lenhere;
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +0000382
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000383 if (start % chip->page_size) {
Carl-Daniel Hailfingerccfe0ac2010-10-27 22:07:11 +0000384 /* start to the end of the page or to start + len,
385 * whichever is smaller.
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +0000386 */
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000387 lenhere = min(len, chip->page_size - start % chip->page_size);
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +0000388 spi_chip_write_1(flash, buf, start, lenhere);
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +0000389 start += lenhere;
390 len -= lenhere;
391 buf += lenhere;
Carl-Daniel Hailfinger116081a2009-08-10 02:29:21 +0000392 }
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +0000393
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000394 while (len >= chip->page_size) {
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +0000395 it8716f_spi_page_program(flash, buf, start);
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +0000396 start += chip->page_size;
397 len -= chip->page_size;
398 buf += chip->page_size;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000399 }
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +0000400 if (len)
Carl-Daniel Hailfinger75a58f92010-10-13 22:26:56 +0000401 spi_chip_write_1(flash, buf, start, len);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000402 }
Uwe Hermann394131e2008-10-18 21:14:13 +0000403
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000404 return 0;
405}
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000406
407#endif