blob: 67dfd2b6d14bcd0c209b7bc3cc055805b9742ae5 [file] [log] [blame]
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2007, 2008 Carl-Daniel Hailfinger
5 * 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>
27#include "flash.h"
28#include "spi.h"
29
30#define ITE_SUPERIO_PORT1 0x2e
31#define ITE_SUPERIO_PORT2 0x4e
32
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000033uint16_t it8716f_flashport = 0;
34/* use fast 33MHz SPI (<>0) or slow 16MHz (0) */
35int fast_spi = 1;
36
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000037/* Helper functions for most recent ITE IT87xx Super I/O chips */
38#define CHIP_ID_BYTE1_REG 0x20
39#define CHIP_ID_BYTE2_REG 0x21
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000040void enter_conf_mode_ite(uint16_t port)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000041{
Andriy Gapon65c1b862008-05-22 13:22:45 +000042 OUTB(0x87, port);
43 OUTB(0x01, port);
44 OUTB(0x55, port);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000045 if (port == ITE_SUPERIO_PORT1)
Andriy Gapon65c1b862008-05-22 13:22:45 +000046 OUTB(0x55, port);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000047 else
Andriy Gapon65c1b862008-05-22 13:22:45 +000048 OUTB(0xaa, port);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000049}
50
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000051void exit_conf_mode_ite(uint16_t port)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000052{
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000053 sio_write(port, 0x02, 0x02);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000054}
55
56static uint16_t find_ite_spi_flash_port(uint16_t port)
57{
58 uint8_t tmp = 0;
59 uint16_t id, flashport = 0;
60
61 enter_conf_mode_ite(port);
62
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000063 id = sio_read(port, CHIP_ID_BYTE1_REG) << 8;
64 id |= sio_read(port, CHIP_ID_BYTE2_REG);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000065
66 /* TODO: Handle more IT87xx if they support flash translation */
Peter Stuged3bce832009-01-12 21:28:03 +000067 if (0x8716 == id || 0x8718 == id) {
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000068 /* NOLDN, reg 0x24, mask out lowest bit (suspend) */
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000069 tmp = sio_read(port, 0x24) & 0xFE;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000070 printf("Serial flash segment 0x%08x-0x%08x %sabled\n",
Uwe Hermann394131e2008-10-18 21:14:13 +000071 0xFFFE0000, 0xFFFFFFFF, (tmp & 1 << 1) ? "en" : "dis");
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 0x000E0000, 0x000FFFFF, (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 0xFFEE0000, 0xFFEFFFFF, (tmp & 1 << 2) ? "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 0xFFF80000, 0xFFFEFFFF, (tmp & 1 << 3) ? "en" : "dis");
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000078 printf("LPC write to serial flash %sabled\n",
Uwe Hermann394131e2008-10-18 21:14:13 +000079 (tmp & 1 << 4) ? "en" : "dis");
Carl-Daniel Hailfinger337df1d2008-05-16 00:19:52 +000080 /* If any serial flash segment is enabled, enable writing. */
81 if ((tmp & 0xe) && (!(tmp & 1 << 4))) {
82 printf("Enabling LPC write to serial flash\n");
83 tmp |= 1 << 4;
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000084 sio_write(port, 0x24, tmp);
Carl-Daniel Hailfinger337df1d2008-05-16 00:19:52 +000085 }
Carl-Daniel Hailfinger34cc6cc2009-06-28 10:57:58 +000086 printf("Serial flash pin %i\n", (tmp & 1 << 5) ? 87 : 29);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000087 /* LDN 0x7, reg 0x64/0x65 */
Carl-Daniel Hailfinger24c1a162009-05-25 23:26:50 +000088 sio_write(port, 0x07, 0x7);
89 flashport = sio_read(port, 0x64) << 8;
90 flashport |= sio_read(port, 0x65);
Carl-Daniel Hailfinger34cc6cc2009-06-28 10:57:58 +000091 printf("Serial flash port 0x%04x\n", flashport);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000092 }
93 exit_conf_mode_ite(port);
94 return flashport;
95}
96
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +000097int it87spi_common_init(void)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +000098{
99 it8716f_flashport = find_ite_spi_flash_port(ITE_SUPERIO_PORT1);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000100
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000101 if (!it8716f_flashport)
102 it8716f_flashport = find_ite_spi_flash_port(ITE_SUPERIO_PORT2);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000103
104 if (it8716f_flashport)
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000105 spi_controller = SPI_CONTROLLER_IT87XX;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000106
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000107 return (!it8716f_flashport);
108}
109
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000110
111int it87spi_init(void)
112{
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000113 int ret;
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000114
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000115 get_io_perms();
116 ret = it87spi_common_init();
Carl-Daniel Hailfinger34cc6cc2009-06-28 10:57:58 +0000117 if (!ret) {
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000118 buses_supported = CHIP_BUSTYPE_SPI;
Carl-Daniel Hailfinger34cc6cc2009-06-28 10:57:58 +0000119 } else {
120 buses_supported = CHIP_BUSTYPE_NONE;
121 }
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000122 return ret;
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000123}
124
125int it87xx_probe_spi_flash(const char *name)
126{
Carl-Daniel Hailfingerb22918c2009-06-01 02:08:58 +0000127 int ret;
128
129 ret = it87spi_common_init();
130 if (!ret)
131 buses_supported |= CHIP_BUSTYPE_SPI;
132 return ret;
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000133}
134
Uwe Hermann394131e2008-10-18 21:14:13 +0000135/*
136 * The IT8716F only supports commands with length 1,2,4,5 bytes including
137 * command byte and can not read more than 3 bytes from the device.
138 *
139 * This function expects writearr[0] to be the first byte sent to the device,
140 * whereas the IT8716F splits commands internally into address and non-address
141 * commands with the address in inverse wire order. That's why the register
142 * ordering in case 4 and 5 may seem strange.
143 */
144int it8716f_spi_command(unsigned int writecnt, unsigned int readcnt,
145 const unsigned char *writearr, unsigned char *readarr)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000146{
147 uint8_t busy, writeenc;
148 int i;
149
150 do {
Andriy Gapon65c1b862008-05-22 13:22:45 +0000151 busy = INB(it8716f_flashport) & 0x80;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000152 } while (busy);
153 if (readcnt > 3) {
154 printf("%s called with unsupported readcnt %i.\n",
Uwe Hermann394131e2008-10-18 21:14:13 +0000155 __FUNCTION__, readcnt);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000156 return 1;
157 }
158 switch (writecnt) {
159 case 1:
Andriy Gapon65c1b862008-05-22 13:22:45 +0000160 OUTB(writearr[0], it8716f_flashport + 1);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000161 writeenc = 0x0;
162 break;
163 case 2:
Andriy Gapon65c1b862008-05-22 13:22:45 +0000164 OUTB(writearr[0], it8716f_flashport + 1);
165 OUTB(writearr[1], it8716f_flashport + 7);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000166 writeenc = 0x1;
167 break;
168 case 4:
Andriy Gapon65c1b862008-05-22 13:22:45 +0000169 OUTB(writearr[0], it8716f_flashport + 1);
170 OUTB(writearr[1], it8716f_flashport + 4);
171 OUTB(writearr[2], it8716f_flashport + 3);
172 OUTB(writearr[3], it8716f_flashport + 2);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000173 writeenc = 0x2;
174 break;
175 case 5:
Andriy Gapon65c1b862008-05-22 13:22:45 +0000176 OUTB(writearr[0], it8716f_flashport + 1);
177 OUTB(writearr[1], it8716f_flashport + 4);
178 OUTB(writearr[2], it8716f_flashport + 3);
179 OUTB(writearr[3], it8716f_flashport + 2);
180 OUTB(writearr[4], it8716f_flashport + 7);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000181 writeenc = 0x3;
182 break;
183 default:
184 printf("%s called with unsupported writecnt %i.\n",
Uwe Hermann394131e2008-10-18 21:14:13 +0000185 __FUNCTION__, writecnt);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000186 return 1;
187 }
Uwe Hermann394131e2008-10-18 21:14:13 +0000188 /*
189 * Start IO, 33 or 16 MHz, readcnt input bytes, writecnt output bytes.
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000190 * Note:
191 * We can't use writecnt directly, but have to use a strange encoding.
Uwe Hermann394131e2008-10-18 21:14:13 +0000192 */
193 OUTB(((0x4 + (fast_spi ? 1 : 0)) << 4)
194 | ((readcnt & 0x3) << 2) | (writeenc), it8716f_flashport);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000195
196 if (readcnt > 0) {
197 do {
Andriy Gapon65c1b862008-05-22 13:22:45 +0000198 busy = INB(it8716f_flashport) & 0x80;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000199 } while (busy);
200
Uwe Hermann394131e2008-10-18 21:14:13 +0000201 for (i = 0; i < readcnt; i++)
Andriy Gapon65c1b862008-05-22 13:22:45 +0000202 readarr[i] = INB(it8716f_flashport + 5 + i);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000203 }
204
205 return 0;
206}
207
208/* Page size is usually 256 bytes */
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +0000209static int it8716f_spi_page_program(int block, uint8_t *buf, uint8_t *bios)
Uwe Hermann394131e2008-10-18 21:14:13 +0000210{
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000211 int i;
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +0000212 int result;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000213
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +0000214 result = spi_write_enable();
215 if (result)
216 return result;
Uwe Hermann394131e2008-10-18 21:14:13 +0000217 OUTB(0x06, it8716f_flashport + 1);
Andriy Gapon65c1b862008-05-22 13:22:45 +0000218 OUTB(((2 + (fast_spi ? 1 : 0)) << 4), it8716f_flashport);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000219 for (i = 0; i < 256; i++) {
220 bios[256 * block + i] = buf[256 * block + i];
221 }
Andriy Gapon65c1b862008-05-22 13:22:45 +0000222 OUTB(0, it8716f_flashport);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000223 /* Wait until the Write-In-Progress bit is cleared.
224 * This usually takes 1-10 ms, so wait in 1 ms steps.
225 */
226 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000227 programmer_delay(1000);
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +0000228 return 0;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000229}
230
231/*
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000232 * Program chip using firmware cycle byte programming. (SLOW!)
Carl-Daniel Hailfinger96930c32009-05-09 02:30:21 +0000233 * This is for chips which can only handle one byte writes
234 * and for chips where memory mapped programming is impossible due to
235 * size constraints in IT87* (over 512 kB)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000236 */
Carl-Daniel Hailfinger96930c32009-05-09 02:30:21 +0000237int it8716f_spi_chip_write_1(struct flashchip *flash, uint8_t *buf)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000238{
239 int total_size = 1024 * flash->total_size;
240 int i;
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +0000241 int result;
Uwe Hermann394131e2008-10-18 21:14:13 +0000242
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000243 fast_spi = 0;
244
245 spi_disable_blockprotect();
246 for (i = 0; i < total_size; i++) {
Carl-Daniel Hailfinger03adbe12009-05-09 02:09:45 +0000247 result = spi_write_enable();
248 if (result)
249 return result;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000250 spi_byte_program(i, buf[i]);
251 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000252 programmer_delay(10);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000253 }
254 /* resume normal ops... */
Andriy Gapon65c1b862008-05-22 13:22:45 +0000255 OUTB(0x20, it8716f_flashport);
Uwe Hermann394131e2008-10-18 21:14:13 +0000256
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000257 return 0;
258}
259
260/*
261 * IT8716F only allows maximum of 512 kb SPI mapped to LPC memory cycles
262 * Need to read this big flash using firmware cycles 3 byte at a time.
263 */
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000264int it8716f_spi_chip_read(struct flashchip *flash, uint8_t *buf, int start, int len)
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000265{
266 int total_size = 1024 * flash->total_size;
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000267 fast_spi = 0;
268
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000269 if ((programmer == PROGRAMMER_IT87SPI) || (total_size > 512 * 1024)) {
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000270 spi_read_chunked(flash, buf, start, len, 3);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000271 } else {
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000272 read_memmapped(flash, buf, start, len);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000273 }
Uwe Hermann394131e2008-10-18 21:14:13 +0000274
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000275 return 0;
276}
277
Carl-Daniel Hailfinger96930c32009-05-09 02:30:21 +0000278int it8716f_spi_chip_write_256(struct flashchip *flash, uint8_t *buf)
Uwe Hermann394131e2008-10-18 21:14:13 +0000279{
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000280 int total_size = 1024 * flash->total_size;
281 int i;
Uwe Hermann394131e2008-10-18 21:14:13 +0000282
Carl-Daniel Hailfinger96930c32009-05-09 02:30:21 +0000283 /*
284 * IT8716F only allows maximum of 512 kb SPI chip size for memory
285 * mapped access.
286 */
Carl-Daniel Hailfingerb8afecd2009-05-31 18:00:57 +0000287 if ((programmer == PROGRAMMER_IT87SPI) || (total_size > 512 * 1024)) {
Carl-Daniel Hailfinger96930c32009-05-09 02:30:21 +0000288 it8716f_spi_chip_write_1(flash, buf);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000289 } else {
290 for (i = 0; i < total_size / 256; i++) {
Uwe Hermann394131e2008-10-18 21:14:13 +0000291 it8716f_spi_page_program(i, buf,
292 (uint8_t *)flash->virtual_memory);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000293 }
294 }
Uwe Hermann394131e2008-10-18 21:14:13 +0000295
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000296 return 0;
297}