blob: 41ce6db2f1c88f39826d86e6499c52c351442a9f [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 Hailfingerbfe5b4a2008-05-13 23:03:12 +000026#include <string.h>
Carl-Daniel Hailfingerbb297f72009-07-11 18:05:42 +000027#include <stdlib.h>
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000028#include "flash.h"
29#include "spi.h"
30
31#define ITE_SUPERIO_PORT1 0x2e
32#define ITE_SUPERIO_PORT2 0x4e
33
Carl-Daniel Hailfingerbb297f72009-07-11 18:05:42 +000034char *it87opts = NULL;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000035uint16_t it8716f_flashport = 0;
36/* use fast 33MHz SPI (<>0) or slow 16MHz (0) */
37int fast_spi = 1;
38
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000039/* Helper functions for most recent ITE IT87xx Super I/O chips */
40#define CHIP_ID_BYTE1_REG 0x20
41#define CHIP_ID_BYTE2_REG 0x21
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000042void enter_conf_mode_ite(uint16_t port)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000043{
Andriy Gapon65c1b862008-05-22 13:22:45 +000044 OUTB(0x87, port);
45 OUTB(0x01, port);
46 OUTB(0x55, port);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000047 if (port == ITE_SUPERIO_PORT1)
Andriy Gapon65c1b862008-05-22 13:22:45 +000048 OUTB(0x55, port);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000049 else
Andriy Gapon65c1b862008-05-22 13:22:45 +000050 OUTB(0xaa, port);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000051}
52
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000053void exit_conf_mode_ite(uint16_t port)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000054{
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000055 sio_write(port, 0x02, 0x02);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000056}
57
58static uint16_t find_ite_spi_flash_port(uint16_t port)
59{
60 uint8_t tmp = 0;
Carl-Daniel Hailfingerbb297f72009-07-11 18:05:42 +000061 char *portpos = NULL;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000062 uint16_t id, flashport = 0;
63
64 enter_conf_mode_ite(port);
65
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000066 id = sio_read(port, CHIP_ID_BYTE1_REG) << 8;
67 id |= sio_read(port, CHIP_ID_BYTE2_REG);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000068
69 /* TODO: Handle more IT87xx if they support flash translation */
Peter Stuged3bce832009-01-12 21:28:03 +000070 if (0x8716 == id || 0x8718 == id) {
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000071 /* NOLDN, reg 0x24, mask out lowest bit (suspend) */
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000072 tmp = sio_read(port, 0x24) & 0xFE;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000073 printf("Serial flash segment 0x%08x-0x%08x %sabled\n",
Uwe Hermann394131e2008-10-18 21:14:13 +000074 0xFFFE0000, 0xFFFFFFFF, (tmp & 1 << 1) ? "en" : "dis");
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000075 printf("Serial flash segment 0x%08x-0x%08x %sabled\n",
Uwe Hermann394131e2008-10-18 21:14:13 +000076 0x000E0000, 0x000FFFFF, (tmp & 1 << 1) ? "en" : "dis");
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000077 printf("Serial flash segment 0x%08x-0x%08x %sabled\n",
Uwe Hermann394131e2008-10-18 21:14:13 +000078 0xFFEE0000, 0xFFEFFFFF, (tmp & 1 << 2) ? "en" : "dis");
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000079 printf("Serial flash segment 0x%08x-0x%08x %sabled\n",
Uwe Hermann394131e2008-10-18 21:14:13 +000080 0xFFF80000, 0xFFFEFFFF, (tmp & 1 << 3) ? "en" : "dis");
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000081 printf("LPC write to serial flash %sabled\n",
Uwe Hermann394131e2008-10-18 21:14:13 +000082 (tmp & 1 << 4) ? "en" : "dis");
Carl-Daniel Hailfingerbb297f72009-07-11 18:05:42 +000083 /* The LPC->SPI force write enable below only makes sense for
84 * non-programmer mode.
85 */
Carl-Daniel Hailfinger337df1d2008-05-16 00:19:52 +000086 /* If any serial flash segment is enabled, enable writing. */
87 if ((tmp & 0xe) && (!(tmp & 1 << 4))) {
88 printf("Enabling LPC write to serial flash\n");
89 tmp |= 1 << 4;
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000090 sio_write(port, 0x24, tmp);
Carl-Daniel Hailfinger337df1d2008-05-16 00:19:52 +000091 }
Carl-Daniel Hailfinger34cc6cc2009-06-28 10:57:58 +000092 printf("Serial flash pin %i\n", (tmp & 1 << 5) ? 87 : 29);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000093 /* LDN 0x7, reg 0x64/0x65 */
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000094 sio_write(port, 0x07, 0x7);
95 flashport = sio_read(port, 0x64) << 8;
96 flashport |= sio_read(port, 0x65);
Carl-Daniel Hailfinger34cc6cc2009-06-28 10:57:58 +000097 printf("Serial flash port 0x%04x\n", flashport);
Carl-Daniel Hailfingerbb297f72009-07-11 18:05:42 +000098 if (it87opts && !strlen(it87opts)) {
99 free(it87opts);
100 it87opts = NULL;
101 }
102 if (it87opts && (portpos = strstr(it87opts, "port="))) {
103 portpos += 5;
104 flashport = strtol(portpos, (char **)NULL, 0);
105 printf("Forcing serial flash port 0x%04x\n", flashport);
106 sio_write(port, 0x64, (flashport >> 8));
107 sio_write(port, 0x65, (flashport & 0xff));
108 }
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000109 }
110 exit_conf_mode_ite(port);
111 return flashport;
112}
113
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000114int it87spi_common_init(void)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000115{
116 it8716f_flashport = find_ite_spi_flash_port(ITE_SUPERIO_PORT1);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000117
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000118 if (!it8716f_flashport)
119 it8716f_flashport = find_ite_spi_flash_port(ITE_SUPERIO_PORT2);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000120
121 if (it8716f_flashport)
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000122 spi_controller = SPI_CONTROLLER_IT87XX;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000123
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000124 return (!it8716f_flashport);
125}
126
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000127
128int it87spi_init(void)
129{
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000130 int ret;
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000131
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000132 get_io_perms();
133 ret = it87spi_common_init();
Carl-Daniel Hailfinger34cc6cc2009-06-28 10:57:58 +0000134 if (!ret) {
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000135 buses_supported = CHIP_BUSTYPE_SPI;
Carl-Daniel Hailfinger34cc6cc2009-06-28 10:57:58 +0000136 } else {
137 buses_supported = CHIP_BUSTYPE_NONE;
138 }
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000139 return ret;
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000140}
141
142int it87xx_probe_spi_flash(const char *name)
143{
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000144 int ret;
145
146 ret = it87spi_common_init();
147 if (!ret)
148 buses_supported |= CHIP_BUSTYPE_SPI;
149 return ret;
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000150}
151
Uwe Hermann394131e2008-10-18 21:14:13 +0000152/*
153 * The IT8716F only supports commands with length 1,2,4,5 bytes including
154 * command byte and can not read more than 3 bytes from the device.
155 *
156 * This function expects writearr[0] to be the first byte sent to the device,
157 * whereas the IT8716F splits commands internally into address and non-address
158 * commands with the address in inverse wire order. That's why the register
159 * ordering in case 4 and 5 may seem strange.
160 */
Carl-Daniel Hailfingerd0478292009-07-10 21:08:55 +0000161int it8716f_spi_send_command(unsigned int writecnt, unsigned int readcnt,
Uwe Hermann394131e2008-10-18 21:14:13 +0000162 const unsigned char *writearr, unsigned char *readarr)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000163{
164 uint8_t busy, writeenc;
165 int i;
166
167 do {
Andriy Gapon65c1b862008-05-22 13:22:45 +0000168 busy = INB(it8716f_flashport) & 0x80;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000169 } while (busy);
170 if (readcnt > 3) {
171 printf("%s called with unsupported readcnt %i.\n",
Uwe Hermann394131e2008-10-18 21:14:13 +0000172 __FUNCTION__, readcnt);
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +0000173 return SPI_INVALID_LENGTH;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000174 }
175 switch (writecnt) {
176 case 1:
Andriy Gapon65c1b862008-05-22 13:22:45 +0000177 OUTB(writearr[0], it8716f_flashport + 1);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000178 writeenc = 0x0;
179 break;
180 case 2:
Andriy Gapon65c1b862008-05-22 13:22:45 +0000181 OUTB(writearr[0], it8716f_flashport + 1);
182 OUTB(writearr[1], it8716f_flashport + 7);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000183 writeenc = 0x1;
184 break;
185 case 4:
Andriy Gapon65c1b862008-05-22 13:22:45 +0000186 OUTB(writearr[0], it8716f_flashport + 1);
187 OUTB(writearr[1], it8716f_flashport + 4);
188 OUTB(writearr[2], it8716f_flashport + 3);
189 OUTB(writearr[3], it8716f_flashport + 2);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000190 writeenc = 0x2;
191 break;
192 case 5:
Andriy Gapon65c1b862008-05-22 13:22:45 +0000193 OUTB(writearr[0], it8716f_flashport + 1);
194 OUTB(writearr[1], it8716f_flashport + 4);
195 OUTB(writearr[2], it8716f_flashport + 3);
196 OUTB(writearr[3], it8716f_flashport + 2);
197 OUTB(writearr[4], it8716f_flashport + 7);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000198 writeenc = 0x3;
199 break;
200 default:
201 printf("%s called with unsupported writecnt %i.\n",
Uwe Hermann394131e2008-10-18 21:14:13 +0000202 __FUNCTION__, writecnt);
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +0000203 return SPI_INVALID_LENGTH;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000204 }
Uwe Hermann394131e2008-10-18 21:14:13 +0000205 /*
206 * Start IO, 33 or 16 MHz, readcnt input bytes, writecnt output bytes.
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000207 * Note:
208 * We can't use writecnt directly, but have to use a strange encoding.
Uwe Hermann394131e2008-10-18 21:14:13 +0000209 */
210 OUTB(((0x4 + (fast_spi ? 1 : 0)) << 4)
211 | ((readcnt & 0x3) << 2) | (writeenc), it8716f_flashport);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000212
213 if (readcnt > 0) {
214 do {
Andriy Gapon65c1b862008-05-22 13:22:45 +0000215 busy = INB(it8716f_flashport) & 0x80;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000216 } while (busy);
217
Uwe Hermann394131e2008-10-18 21:14:13 +0000218 for (i = 0; i < readcnt; i++)
Andriy Gapon65c1b862008-05-22 13:22:45 +0000219 readarr[i] = INB(it8716f_flashport + 5 + i);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000220 }
221
222 return 0;
223}
224
225/* Page size is usually 256 bytes */
Carl-Daniel Hailfingerbb297f72009-07-11 18:05:42 +0000226static int it8716f_spi_page_program(struct flashchip *flash, int block, uint8_t *buf)
Uwe Hermann394131e2008-10-18 21:14:13 +0000227{
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000228 int i;
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +0000229 int result;
Carl-Daniel Hailfingerbb297f72009-07-11 18:05:42 +0000230 chipaddr bios = flash->virtual_memory;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000231
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +0000232 result = spi_write_enable();
233 if (result)
234 return result;
Carl-Daniel Hailfinger2f1b36f2009-07-12 12:06:18 +0000235 /* FIXME: The command below seems to be redundant or wrong. */
Uwe Hermann394131e2008-10-18 21:14:13 +0000236 OUTB(0x06, it8716f_flashport + 1);
Andriy Gapon65c1b862008-05-22 13:22:45 +0000237 OUTB(((2 + (fast_spi ? 1 : 0)) << 4), it8716f_flashport);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000238 for (i = 0; i < 256; i++) {
Carl-Daniel Hailfingerbb297f72009-07-11 18:05:42 +0000239 chip_writeb(buf[256 * block + i], bios + 256 * block + i);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000240 }
Andriy Gapon65c1b862008-05-22 13:22:45 +0000241 OUTB(0, it8716f_flashport);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000242 /* Wait until the Write-In-Progress bit is cleared.
243 * This usually takes 1-10 ms, so wait in 1 ms steps.
244 */
245 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000246 programmer_delay(1000);
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +0000247 return 0;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000248}
249
250/*
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000251 * Program chip using firmware cycle byte programming. (SLOW!)
Carl-Daniel Hailfinger96930c32009-05-09 02:30:21 +0000252 * This is for chips which can only handle one byte writes
253 * and for chips where memory mapped programming is impossible due to
254 * size constraints in IT87* (over 512 kB)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000255 */
Carl-Daniel Hailfinger96930c32009-05-09 02:30:21 +0000256int it8716f_spi_chip_write_1(struct flashchip *flash, uint8_t *buf)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000257{
258 int total_size = 1024 * flash->total_size;
259 int i;
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +0000260 int result;
Uwe Hermann394131e2008-10-18 21:14:13 +0000261
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000262 fast_spi = 0;
263
264 spi_disable_blockprotect();
265 for (i = 0; i < total_size; i++) {
Carl-Daniel Hailfinger2f1b36f2009-07-12 12:06:18 +0000266 result = spi_byte_program(i, buf[i]);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000267 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000268 programmer_delay(10);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000269 }
270 /* resume normal ops... */
Andriy Gapon65c1b862008-05-22 13:22:45 +0000271 OUTB(0x20, it8716f_flashport);
Uwe Hermann394131e2008-10-18 21:14:13 +0000272
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000273 return 0;
274}
275
276/*
277 * IT8716F only allows maximum of 512 kb SPI mapped to LPC memory cycles
278 * Need to read this big flash using firmware cycles 3 byte at a time.
279 */
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000280int it8716f_spi_chip_read(struct flashchip *flash, uint8_t *buf, int start, int len)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000281{
282 int total_size = 1024 * flash->total_size;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000283 fast_spi = 0;
284
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000285 if ((programmer == PROGRAMMER_IT87SPI) || (total_size > 512 * 1024)) {
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000286 spi_read_chunked(flash, buf, start, len, 3);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000287 } else {
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000288 read_memmapped(flash, buf, start, len);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000289 }
Uwe Hermann394131e2008-10-18 21:14:13 +0000290
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000291 return 0;
292}
293
Carl-Daniel Hailfinger96930c32009-05-09 02:30:21 +0000294int it8716f_spi_chip_write_256(struct flashchip *flash, uint8_t *buf)
Uwe Hermann394131e2008-10-18 21:14:13 +0000295{
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000296 int total_size = 1024 * flash->total_size;
297 int i;
Uwe Hermann394131e2008-10-18 21:14:13 +0000298
Carl-Daniel Hailfinger96930c32009-05-09 02:30:21 +0000299 /*
300 * IT8716F only allows maximum of 512 kb SPI chip size for memory
301 * mapped access.
302 */
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000303 if ((programmer == PROGRAMMER_IT87SPI) || (total_size > 512 * 1024)) {
Carl-Daniel Hailfinger96930c32009-05-09 02:30:21 +0000304 it8716f_spi_chip_write_1(flash, buf);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000305 } else {
306 for (i = 0; i < total_size / 256; i++) {
Carl-Daniel Hailfingerbb297f72009-07-11 18:05:42 +0000307 it8716f_spi_page_program(flash, i, buf);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000308 }
309 }
Uwe Hermann394131e2008-10-18 21:14:13 +0000310
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000311 return 0;
312}