blob: 299725c7e69c05245974f8f6e0c9de06a5f6b1a9 [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 Hailfingerbfe5b4a2008-05-13 23:03:12 +000034uint16_t it8716f_flashport = 0;
35/* use fast 33MHz SPI (<>0) or slow 16MHz (0) */
36int fast_spi = 1;
37
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000038/* Helper functions for most recent ITE IT87xx Super I/O chips */
39#define CHIP_ID_BYTE1_REG 0x20
40#define CHIP_ID_BYTE2_REG 0x21
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000041void enter_conf_mode_ite(uint16_t port)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000042{
Andriy Gapon65c1b862008-05-22 13:22:45 +000043 OUTB(0x87, port);
44 OUTB(0x01, port);
45 OUTB(0x55, port);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000046 if (port == ITE_SUPERIO_PORT1)
Andriy Gapon65c1b862008-05-22 13:22:45 +000047 OUTB(0x55, port);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000048 else
Andriy Gapon65c1b862008-05-22 13:22:45 +000049 OUTB(0xaa, port);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000050}
51
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000052void exit_conf_mode_ite(uint16_t port)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000053{
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000054 sio_write(port, 0x02, 0x02);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000055}
56
57static uint16_t find_ite_spi_flash_port(uint16_t port)
58{
59 uint8_t tmp = 0;
Carl-Daniel Hailfingerbb297f72009-07-11 18:05:42 +000060 char *portpos = NULL;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000061 uint16_t id, flashport = 0;
62
63 enter_conf_mode_ite(port);
64
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000065 id = sio_read(port, CHIP_ID_BYTE1_REG) << 8;
66 id |= sio_read(port, CHIP_ID_BYTE2_REG);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000067
68 /* TODO: Handle more IT87xx if they support flash translation */
Peter Stuged3bce832009-01-12 21:28:03 +000069 if (0x8716 == id || 0x8718 == id) {
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000070 /* NOLDN, reg 0x24, mask out lowest bit (suspend) */
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000071 tmp = sio_read(port, 0x24) & 0xFE;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000072 printf("Serial flash segment 0x%08x-0x%08x %sabled\n",
Uwe Hermann394131e2008-10-18 21:14:13 +000073 0xFFFE0000, 0xFFFFFFFF, (tmp & 1 << 1) ? "en" : "dis");
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000074 printf("Serial flash segment 0x%08x-0x%08x %sabled\n",
Uwe Hermann394131e2008-10-18 21:14:13 +000075 0x000E0000, 0x000FFFFF, (tmp & 1 << 1) ? "en" : "dis");
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000076 printf("Serial flash segment 0x%08x-0x%08x %sabled\n",
Uwe Hermann394131e2008-10-18 21:14:13 +000077 0xFFEE0000, 0xFFEFFFFF, (tmp & 1 << 2) ? "en" : "dis");
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000078 printf("Serial flash segment 0x%08x-0x%08x %sabled\n",
Uwe Hermann394131e2008-10-18 21:14:13 +000079 0xFFF80000, 0xFFFEFFFF, (tmp & 1 << 3) ? "en" : "dis");
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000080 printf("LPC write to serial flash %sabled\n",
Uwe Hermann394131e2008-10-18 21:14:13 +000081 (tmp & 1 << 4) ? "en" : "dis");
Carl-Daniel Hailfingerbb297f72009-07-11 18:05:42 +000082 /* The LPC->SPI force write enable below only makes sense for
83 * non-programmer mode.
84 */
Carl-Daniel Hailfinger337df1d2008-05-16 00:19:52 +000085 /* If any serial flash segment is enabled, enable writing. */
86 if ((tmp & 0xe) && (!(tmp & 1 << 4))) {
87 printf("Enabling LPC write to serial flash\n");
88 tmp |= 1 << 4;
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000089 sio_write(port, 0x24, tmp);
Carl-Daniel Hailfinger337df1d2008-05-16 00:19:52 +000090 }
Carl-Daniel Hailfinger34cc6cc2009-06-28 10:57:58 +000091 printf("Serial flash pin %i\n", (tmp & 1 << 5) ? 87 : 29);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000092 /* LDN 0x7, reg 0x64/0x65 */
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000093 sio_write(port, 0x07, 0x7);
94 flashport = sio_read(port, 0x64) << 8;
95 flashport |= sio_read(port, 0x65);
Carl-Daniel Hailfinger34cc6cc2009-06-28 10:57:58 +000096 printf("Serial flash port 0x%04x\n", flashport);
Carl-Daniel Hailfingeref58a9c2009-08-12 13:32:56 +000097 if (programmer_param && !strlen(programmer_param)) {
98 free(programmer_param);
99 programmer_param = NULL;
Carl-Daniel Hailfingerbb297f72009-07-11 18:05:42 +0000100 }
Carl-Daniel Hailfingeref58a9c2009-08-12 13:32:56 +0000101 if (programmer_param && (portpos = strstr(programmer_param, "port="))) {
Carl-Daniel Hailfingerbb297f72009-07-11 18:05:42 +0000102 portpos += 5;
103 flashport = strtol(portpos, (char **)NULL, 0);
104 printf("Forcing serial flash port 0x%04x\n", flashport);
105 sio_write(port, 0x64, (flashport >> 8));
106 sio_write(port, 0x65, (flashport & 0xff));
107 }
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000108 }
109 exit_conf_mode_ite(port);
110 return flashport;
111}
112
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000113int it87spi_common_init(void)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000114{
115 it8716f_flashport = find_ite_spi_flash_port(ITE_SUPERIO_PORT1);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000116
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000117 if (!it8716f_flashport)
118 it8716f_flashport = find_ite_spi_flash_port(ITE_SUPERIO_PORT2);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000119
120 if (it8716f_flashport)
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000121 spi_controller = SPI_CONTROLLER_IT87XX;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000122
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000123 return (!it8716f_flashport);
124}
125
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000126
127int it87spi_init(void)
128{
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000129 int ret;
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000130
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000131 get_io_perms();
132 ret = it87spi_common_init();
Carl-Daniel Hailfinger34cc6cc2009-06-28 10:57:58 +0000133 if (!ret) {
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000134 buses_supported = CHIP_BUSTYPE_SPI;
Carl-Daniel Hailfinger34cc6cc2009-06-28 10:57:58 +0000135 } else {
136 buses_supported = CHIP_BUSTYPE_NONE;
137 }
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000138 return ret;
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000139}
140
141int it87xx_probe_spi_flash(const char *name)
142{
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000143 int ret;
144
145 ret = it87spi_common_init();
146 if (!ret)
147 buses_supported |= CHIP_BUSTYPE_SPI;
148 return ret;
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000149}
150
Uwe Hermann394131e2008-10-18 21:14:13 +0000151/*
152 * The IT8716F only supports commands with length 1,2,4,5 bytes including
153 * command byte and can not read more than 3 bytes from the device.
154 *
155 * This function expects writearr[0] to be the first byte sent to the device,
156 * whereas the IT8716F splits commands internally into address and non-address
157 * commands with the address in inverse wire order. That's why the register
158 * ordering in case 4 and 5 may seem strange.
159 */
Carl-Daniel Hailfingerd0478292009-07-10 21:08:55 +0000160int it8716f_spi_send_command(unsigned int writecnt, unsigned int readcnt,
Uwe Hermann394131e2008-10-18 21:14:13 +0000161 const unsigned char *writearr, unsigned char *readarr)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000162{
163 uint8_t busy, writeenc;
164 int i;
165
166 do {
Andriy Gapon65c1b862008-05-22 13:22:45 +0000167 busy = INB(it8716f_flashport) & 0x80;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000168 } while (busy);
169 if (readcnt > 3) {
170 printf("%s called with unsupported readcnt %i.\n",
Uwe Hermann394131e2008-10-18 21:14:13 +0000171 __FUNCTION__, readcnt);
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +0000172 return SPI_INVALID_LENGTH;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000173 }
174 switch (writecnt) {
175 case 1:
Andriy Gapon65c1b862008-05-22 13:22:45 +0000176 OUTB(writearr[0], it8716f_flashport + 1);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000177 writeenc = 0x0;
178 break;
179 case 2:
Andriy Gapon65c1b862008-05-22 13:22:45 +0000180 OUTB(writearr[0], it8716f_flashport + 1);
181 OUTB(writearr[1], it8716f_flashport + 7);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000182 writeenc = 0x1;
183 break;
184 case 4:
Andriy Gapon65c1b862008-05-22 13:22:45 +0000185 OUTB(writearr[0], it8716f_flashport + 1);
186 OUTB(writearr[1], it8716f_flashport + 4);
187 OUTB(writearr[2], it8716f_flashport + 3);
188 OUTB(writearr[3], it8716f_flashport + 2);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000189 writeenc = 0x2;
190 break;
191 case 5:
Andriy Gapon65c1b862008-05-22 13:22:45 +0000192 OUTB(writearr[0], it8716f_flashport + 1);
193 OUTB(writearr[1], it8716f_flashport + 4);
194 OUTB(writearr[2], it8716f_flashport + 3);
195 OUTB(writearr[3], it8716f_flashport + 2);
196 OUTB(writearr[4], it8716f_flashport + 7);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000197 writeenc = 0x3;
198 break;
199 default:
200 printf("%s called with unsupported writecnt %i.\n",
Uwe Hermann394131e2008-10-18 21:14:13 +0000201 __FUNCTION__, writecnt);
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +0000202 return SPI_INVALID_LENGTH;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000203 }
Uwe Hermann394131e2008-10-18 21:14:13 +0000204 /*
205 * Start IO, 33 or 16 MHz, readcnt input bytes, writecnt output bytes.
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000206 * Note:
207 * We can't use writecnt directly, but have to use a strange encoding.
Uwe Hermann394131e2008-10-18 21:14:13 +0000208 */
209 OUTB(((0x4 + (fast_spi ? 1 : 0)) << 4)
210 | ((readcnt & 0x3) << 2) | (writeenc), it8716f_flashport);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000211
212 if (readcnt > 0) {
213 do {
Andriy Gapon65c1b862008-05-22 13:22:45 +0000214 busy = INB(it8716f_flashport) & 0x80;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000215 } while (busy);
216
Uwe Hermann394131e2008-10-18 21:14:13 +0000217 for (i = 0; i < readcnt; i++)
Andriy Gapon65c1b862008-05-22 13:22:45 +0000218 readarr[i] = INB(it8716f_flashport + 5 + i);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000219 }
220
221 return 0;
222}
223
224/* Page size is usually 256 bytes */
Carl-Daniel Hailfingerbb297f72009-07-11 18:05:42 +0000225static int it8716f_spi_page_program(struct flashchip *flash, int block, uint8_t *buf)
Uwe Hermann394131e2008-10-18 21:14:13 +0000226{
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000227 int i;
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +0000228 int result;
Carl-Daniel Hailfingerbb297f72009-07-11 18:05:42 +0000229 chipaddr bios = flash->virtual_memory;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000230
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +0000231 result = spi_write_enable();
232 if (result)
233 return result;
Carl-Daniel Hailfinger2f1b36f2009-07-12 12:06:18 +0000234 /* FIXME: The command below seems to be redundant or wrong. */
Uwe Hermann394131e2008-10-18 21:14:13 +0000235 OUTB(0x06, it8716f_flashport + 1);
Andriy Gapon65c1b862008-05-22 13:22:45 +0000236 OUTB(((2 + (fast_spi ? 1 : 0)) << 4), it8716f_flashport);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000237 for (i = 0; i < 256; i++) {
Carl-Daniel Hailfingerbb297f72009-07-11 18:05:42 +0000238 chip_writeb(buf[256 * block + i], bios + 256 * block + i);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000239 }
Andriy Gapon65c1b862008-05-22 13:22:45 +0000240 OUTB(0, it8716f_flashport);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000241 /* Wait until the Write-In-Progress bit is cleared.
242 * This usually takes 1-10 ms, so wait in 1 ms steps.
243 */
244 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000245 programmer_delay(1000);
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +0000246 return 0;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000247}
248
249/*
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000250 * IT8716F only allows maximum of 512 kb SPI mapped to LPC memory cycles
251 * Need to read this big flash using firmware cycles 3 byte at a time.
252 */
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000253int it8716f_spi_chip_read(struct flashchip *flash, uint8_t *buf, int start, int len)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000254{
255 int total_size = 1024 * flash->total_size;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000256 fast_spi = 0;
257
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000258 if ((programmer == PROGRAMMER_IT87SPI) || (total_size > 512 * 1024)) {
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000259 spi_read_chunked(flash, buf, start, len, 3);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000260 } else {
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000261 read_memmapped(flash, buf, start, len);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000262 }
Uwe Hermann394131e2008-10-18 21:14:13 +0000263
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000264 return 0;
265}
266
Carl-Daniel Hailfinger96930c32009-05-09 02:30:21 +0000267int it8716f_spi_chip_write_256(struct flashchip *flash, uint8_t *buf)
Uwe Hermann394131e2008-10-18 21:14:13 +0000268{
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000269 int total_size = 1024 * flash->total_size;
270 int i;
Uwe Hermann394131e2008-10-18 21:14:13 +0000271
Carl-Daniel Hailfinger96930c32009-05-09 02:30:21 +0000272 /*
273 * IT8716F only allows maximum of 512 kb SPI chip size for memory
274 * mapped access.
275 */
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000276 if ((programmer == PROGRAMMER_IT87SPI) || (total_size > 512 * 1024)) {
Carl-Daniel Hailfinger116081a2009-08-10 02:29:21 +0000277 spi_chip_write_1(flash, buf);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000278 } else {
Carl-Daniel Hailfinger116081a2009-08-10 02:29:21 +0000279 spi_disable_blockprotect();
280 /* Erase first */
281 printf("Erasing flash before programming... ");
282 if (flash->erase(flash)) {
283 fprintf(stderr, "ERASE FAILED!\n");
284 return -1;
285 }
286 printf("done.\n");
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000287 for (i = 0; i < total_size / 256; i++) {
Carl-Daniel Hailfingerbb297f72009-07-11 18:05:42 +0000288 it8716f_spi_page_program(flash, i, buf);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000289 }
290 }
Uwe Hermann394131e2008-10-18 21:14:13 +0000291
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000292 return 0;
293}