blob: d3148561409ed41b2f8d9fc92b484880ff4a318a [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"
hailfinger2c361e42008-05-13 23:03:12 +000032#include "spi.h"
33
34#define ITE_SUPERIO_PORT1 0x2e
35#define ITE_SUPERIO_PORT2 0x4e
36
hailfinger2c361e42008-05-13 23:03:12 +000037uint16_t it8716f_flashport = 0;
38/* use fast 33MHz SPI (<>0) or slow 16MHz (0) */
hailfinger1ff33dc2010-07-03 11:02:10 +000039static int fast_spi = 1;
hailfinger2c361e42008-05-13 23:03:12 +000040
hailfinger2c361e42008-05-13 23:03:12 +000041/* Helper functions for most recent ITE IT87xx Super I/O chips */
42#define CHIP_ID_BYTE1_REG 0x20
43#define CHIP_ID_BYTE2_REG 0x21
hailfinger7bac0e52009-05-25 23:26:50 +000044void enter_conf_mode_ite(uint16_t port)
hailfinger2c361e42008-05-13 23:03:12 +000045{
hailfingere1f062f2008-05-22 13:22:45 +000046 OUTB(0x87, port);
47 OUTB(0x01, port);
48 OUTB(0x55, port);
hailfinger2c361e42008-05-13 23:03:12 +000049 if (port == ITE_SUPERIO_PORT1)
hailfingere1f062f2008-05-22 13:22:45 +000050 OUTB(0x55, port);
hailfinger2c361e42008-05-13 23:03:12 +000051 else
hailfingere1f062f2008-05-22 13:22:45 +000052 OUTB(0xaa, port);
hailfinger2c361e42008-05-13 23:03:12 +000053}
54
hailfinger7bac0e52009-05-25 23:26:50 +000055void exit_conf_mode_ite(uint16_t port)
hailfinger2c361e42008-05-13 23:03:12 +000056{
hailfinger7bac0e52009-05-25 23:26:50 +000057 sio_write(port, 0x02, 0x02);
hailfinger2c361e42008-05-13 23:03:12 +000058}
59
hailfingerc236f9e2009-12-22 23:42:04 +000060uint16_t probe_id_ite(uint16_t port)
61{
62 uint16_t id;
63
64 enter_conf_mode_ite(port);
65 id = sio_read(port, CHIP_ID_BYTE1_REG) << 8;
66 id |= sio_read(port, CHIP_ID_BYTE2_REG);
67 exit_conf_mode_ite(port);
68
69 return id;
70}
71
72struct superio probe_superio_ite(void)
73{
74 struct superio ret = {};
75 uint16_t ite_ports[] = {ITE_SUPERIO_PORT1, ITE_SUPERIO_PORT2, 0};
76 uint16_t *i = ite_ports;
77
78 ret.vendor = SUPERIO_VENDOR_ITE;
79 for (; *i; i++) {
80 ret.port = *i;
81 ret.model = probe_id_ite(ret.port);
82 switch (ret.model >> 8) {
83 case 0x82:
84 case 0x86:
85 case 0x87:
uwef6f94d42010-03-13 17:28:29 +000086 msg_pinfo("Found ITE Super I/O, id %04hx\n",
hailfingerc236f9e2009-12-22 23:42:04 +000087 ret.model);
88 return ret;
89 }
90 }
91
92 /* No good ID found. */
93 ret.vendor = SUPERIO_VENDOR_NONE;
94 ret.port = 0;
95 ret.model = 0;
96 return ret;
97}
98
99static uint16_t find_ite_spi_flash_port(uint16_t port, uint16_t id)
hailfinger2c361e42008-05-13 23:03:12 +0000100{
101 uint8_t tmp = 0;
hailfinger4500b082009-07-11 18:05:42 +0000102 char *portpos = NULL;
hailfingerc236f9e2009-12-22 23:42:04 +0000103 uint16_t flashport = 0;
hailfinger2c361e42008-05-13 23:03:12 +0000104
hailfingerc236f9e2009-12-22 23:42:04 +0000105 switch (id) {
106 case 0x8716:
107 case 0x8718:
hailfinger48acccf2010-03-30 02:45:18 +0000108 case 0x8720:
hailfingerc236f9e2009-12-22 23:42:04 +0000109 enter_conf_mode_ite(port);
hailfinger2c361e42008-05-13 23:03:12 +0000110 /* NOLDN, reg 0x24, mask out lowest bit (suspend) */
hailfinger7bac0e52009-05-25 23:26:50 +0000111 tmp = sio_read(port, 0x24) & 0xFE;
hailfingerddd5d7b2010-03-25 02:50:40 +0000112 /* If IT87SPI was not explicitly selected, we want to check
113 * quickly if LPC->SPI translation is active.
114 */
115 if ((programmer == PROGRAMMER_INTERNAL) && !(tmp & (0x0E))) {
116 msg_pdbg("No IT87* serial flash segment enabled.\n");
117 exit_conf_mode_ite(port);
118 break;
119 }
snelson55fe91c2010-01-10 01:09:58 +0000120 msg_pdbg("Serial flash segment 0x%08x-0x%08x %sabled\n",
uwefa98ca12008-10-18 21:14:13 +0000121 0xFFFE0000, 0xFFFFFFFF, (tmp & 1 << 1) ? "en" : "dis");
snelson55fe91c2010-01-10 01:09:58 +0000122 msg_pdbg("Serial flash segment 0x%08x-0x%08x %sabled\n",
uwefa98ca12008-10-18 21:14:13 +0000123 0x000E0000, 0x000FFFFF, (tmp & 1 << 1) ? "en" : "dis");
snelson55fe91c2010-01-10 01:09:58 +0000124 msg_pdbg("Serial flash segment 0x%08x-0x%08x %sabled\n",
uwefa98ca12008-10-18 21:14:13 +0000125 0xFFEE0000, 0xFFEFFFFF, (tmp & 1 << 2) ? "en" : "dis");
snelson55fe91c2010-01-10 01:09:58 +0000126 msg_pdbg("Serial flash segment 0x%08x-0x%08x %sabled\n",
uwefa98ca12008-10-18 21:14:13 +0000127 0xFFF80000, 0xFFFEFFFF, (tmp & 1 << 3) ? "en" : "dis");
snelson55fe91c2010-01-10 01:09:58 +0000128 msg_pdbg("LPC write to serial flash %sabled\n",
uwefa98ca12008-10-18 21:14:13 +0000129 (tmp & 1 << 4) ? "en" : "dis");
hailfinger4500b082009-07-11 18:05:42 +0000130 /* The LPC->SPI force write enable below only makes sense for
131 * non-programmer mode.
132 */
hailfinger1c9a4872008-05-16 00:19:52 +0000133 /* If any serial flash segment is enabled, enable writing. */
134 if ((tmp & 0xe) && (!(tmp & 1 << 4))) {
snelson55fe91c2010-01-10 01:09:58 +0000135 msg_pdbg("Enabling LPC write to serial flash\n");
hailfinger1c9a4872008-05-16 00:19:52 +0000136 tmp |= 1 << 4;
hailfinger7bac0e52009-05-25 23:26:50 +0000137 sio_write(port, 0x24, tmp);
hailfinger1c9a4872008-05-16 00:19:52 +0000138 }
snelson55fe91c2010-01-10 01:09:58 +0000139 msg_pdbg("Serial flash pin %i\n", (tmp & 1 << 5) ? 87 : 29);
hailfinger2c361e42008-05-13 23:03:12 +0000140 /* LDN 0x7, reg 0x64/0x65 */
hailfinger7bac0e52009-05-25 23:26:50 +0000141 sio_write(port, 0x07, 0x7);
142 flashport = sio_read(port, 0x64) << 8;
143 flashport |= sio_read(port, 0x65);
snelson55fe91c2010-01-10 01:09:58 +0000144 msg_pdbg("Serial flash port 0x%04x\n", flashport);
hailfinger1ef766d2010-07-06 09:55:48 +0000145 /* Non-default port requested? */
146 portpos = extract_param(&programmer_param, "it87spiport", ",:");
147 if (portpos && strlen(portpos)) {
148 flashport = strtol(portpos, (char **)NULL, 0);
149 msg_pinfo("Forcing serial flash port 0x%04x\n",
150 flashport);
151 sio_write(port, 0x64, (flashport >> 8));
152 sio_write(port, 0x65, (flashport & 0xff));
153 } else if (portpos) {
154 msg_perr("Error: it87spiport specified, but no port "
155 "given.\n");
156 free(portpos);
157 /* FIXME: Return failure here once it87spi_common_init()
158 * can handle the return value sanely.
159 */
160 exit(1);
hailfinger4500b082009-07-11 18:05:42 +0000161 }
hailfinger1ef766d2010-07-06 09:55:48 +0000162 free(portpos);
hailfingerc236f9e2009-12-22 23:42:04 +0000163 exit_conf_mode_ite(port);
164 break;
165 /* TODO: Handle more IT87xx if they support flash translation */
166 default:
hailfinger48acccf2010-03-30 02:45:18 +0000167 msg_pdbg("SuperI/O ID %04hx is not on the controller list.\n", id);
hailfinger2c361e42008-05-13 23:03:12 +0000168 }
hailfinger2c361e42008-05-13 23:03:12 +0000169 return flashport;
170}
171
hailfinger26e212b2009-05-31 18:00:57 +0000172int it87spi_common_init(void)
hailfinger2c361e42008-05-13 23:03:12 +0000173{
hailfingerc236f9e2009-12-22 23:42:04 +0000174 if (superio.vendor != SUPERIO_VENDOR_ITE)
175 return 1;
stepan3bdf6182008-06-30 23:45:22 +0000176
hailfingerc236f9e2009-12-22 23:42:04 +0000177 it8716f_flashport = find_ite_spi_flash_port(superio.port, superio.model);
stepan3bdf6182008-06-30 23:45:22 +0000178
179 if (it8716f_flashport)
hailfinger40167462009-05-31 17:57:34 +0000180 spi_controller = SPI_CONTROLLER_IT87XX;
stepan3bdf6182008-06-30 23:45:22 +0000181
hailfinger2c361e42008-05-13 23:03:12 +0000182 return (!it8716f_flashport);
183}
184
hailfinger26e212b2009-05-31 18:00:57 +0000185
186int it87spi_init(void)
187{
hailfingera916b422009-06-01 02:08:58 +0000188 int ret;
hailfinger26e212b2009-05-31 18:00:57 +0000189
hailfingera916b422009-06-01 02:08:58 +0000190 get_io_perms();
uwef6f94d42010-03-13 17:28:29 +0000191 /* Probe for the Super I/O chip and fill global struct superio. */
hailfingerc236f9e2009-12-22 23:42:04 +0000192 probe_superio();
hailfingera916b422009-06-01 02:08:58 +0000193 ret = it87spi_common_init();
hailfingerd9f5da22009-06-28 10:57:58 +0000194 if (!ret) {
hailfingera916b422009-06-01 02:08:58 +0000195 buses_supported = CHIP_BUSTYPE_SPI;
hailfingerd9f5da22009-06-28 10:57:58 +0000196 } else {
197 buses_supported = CHIP_BUSTYPE_NONE;
198 }
hailfingera916b422009-06-01 02:08:58 +0000199 return ret;
hailfinger26e212b2009-05-31 18:00:57 +0000200}
201
202int it87xx_probe_spi_flash(const char *name)
203{
hailfingera916b422009-06-01 02:08:58 +0000204 int ret;
205
206 ret = it87spi_common_init();
hailfinger48acccf2010-03-30 02:45:18 +0000207 if (!ret) {
208 if (buses_supported & CHIP_BUSTYPE_SPI)
209 msg_pdbg("Overriding chipset SPI with IT87 SPI.\n");
hailfingera916b422009-06-01 02:08:58 +0000210 buses_supported |= CHIP_BUSTYPE_SPI;
hailfinger48acccf2010-03-30 02:45:18 +0000211 }
hailfingera916b422009-06-01 02:08:58 +0000212 return ret;
hailfinger26e212b2009-05-31 18:00:57 +0000213}
214
uwefa98ca12008-10-18 21:14:13 +0000215/*
216 * The IT8716F only supports commands with length 1,2,4,5 bytes including
217 * command byte and can not read more than 3 bytes from the device.
218 *
219 * This function expects writearr[0] to be the first byte sent to the device,
220 * whereas the IT8716F splits commands internally into address and non-address
221 * commands with the address in inverse wire order. That's why the register
222 * ordering in case 4 and 5 may seem strange.
223 */
hailfinger68002c22009-07-10 21:08:55 +0000224int it8716f_spi_send_command(unsigned int writecnt, unsigned int readcnt,
uwefa98ca12008-10-18 21:14:13 +0000225 const unsigned char *writearr, unsigned char *readarr)
hailfinger2c361e42008-05-13 23:03:12 +0000226{
227 uint8_t busy, writeenc;
228 int i;
229
230 do {
hailfingere1f062f2008-05-22 13:22:45 +0000231 busy = INB(it8716f_flashport) & 0x80;
hailfinger2c361e42008-05-13 23:03:12 +0000232 } while (busy);
233 if (readcnt > 3) {
snelson55fe91c2010-01-10 01:09:58 +0000234 msg_pinfo("%s called with unsupported readcnt %i.\n",
uwe2a414342009-09-02 22:09:00 +0000235 __func__, readcnt);
hailfinger9c290a72009-07-14 10:26:56 +0000236 return SPI_INVALID_LENGTH;
hailfinger2c361e42008-05-13 23:03:12 +0000237 }
238 switch (writecnt) {
239 case 1:
hailfingere1f062f2008-05-22 13:22:45 +0000240 OUTB(writearr[0], it8716f_flashport + 1);
hailfinger2c361e42008-05-13 23:03:12 +0000241 writeenc = 0x0;
242 break;
243 case 2:
hailfingere1f062f2008-05-22 13:22:45 +0000244 OUTB(writearr[0], it8716f_flashport + 1);
245 OUTB(writearr[1], it8716f_flashport + 7);
hailfinger2c361e42008-05-13 23:03:12 +0000246 writeenc = 0x1;
247 break;
248 case 4:
hailfingere1f062f2008-05-22 13:22:45 +0000249 OUTB(writearr[0], it8716f_flashport + 1);
250 OUTB(writearr[1], it8716f_flashport + 4);
251 OUTB(writearr[2], it8716f_flashport + 3);
252 OUTB(writearr[3], it8716f_flashport + 2);
hailfinger2c361e42008-05-13 23:03:12 +0000253 writeenc = 0x2;
254 break;
255 case 5:
hailfingere1f062f2008-05-22 13:22:45 +0000256 OUTB(writearr[0], it8716f_flashport + 1);
257 OUTB(writearr[1], it8716f_flashport + 4);
258 OUTB(writearr[2], it8716f_flashport + 3);
259 OUTB(writearr[3], it8716f_flashport + 2);
260 OUTB(writearr[4], it8716f_flashport + 7);
hailfinger2c361e42008-05-13 23:03:12 +0000261 writeenc = 0x3;
262 break;
263 default:
snelson55fe91c2010-01-10 01:09:58 +0000264 msg_pinfo("%s called with unsupported writecnt %i.\n",
uwe2a414342009-09-02 22:09:00 +0000265 __func__, writecnt);
hailfinger9c290a72009-07-14 10:26:56 +0000266 return SPI_INVALID_LENGTH;
hailfinger2c361e42008-05-13 23:03:12 +0000267 }
uwefa98ca12008-10-18 21:14:13 +0000268 /*
269 * Start IO, 33 or 16 MHz, readcnt input bytes, writecnt output bytes.
hailfinger2c361e42008-05-13 23:03:12 +0000270 * Note:
271 * We can't use writecnt directly, but have to use a strange encoding.
uwefa98ca12008-10-18 21:14:13 +0000272 */
273 OUTB(((0x4 + (fast_spi ? 1 : 0)) << 4)
274 | ((readcnt & 0x3) << 2) | (writeenc), it8716f_flashport);
hailfinger2c361e42008-05-13 23:03:12 +0000275
276 if (readcnt > 0) {
277 do {
hailfingere1f062f2008-05-22 13:22:45 +0000278 busy = INB(it8716f_flashport) & 0x80;
hailfinger2c361e42008-05-13 23:03:12 +0000279 } while (busy);
280
uwefa98ca12008-10-18 21:14:13 +0000281 for (i = 0; i < readcnt; i++)
hailfingere1f062f2008-05-22 13:22:45 +0000282 readarr[i] = INB(it8716f_flashport + 5 + i);
hailfinger2c361e42008-05-13 23:03:12 +0000283 }
284
285 return 0;
286}
287
288/* Page size is usually 256 bytes */
hailfinger4500b082009-07-11 18:05:42 +0000289static int it8716f_spi_page_program(struct flashchip *flash, int block, uint8_t *buf)
uwefa98ca12008-10-18 21:14:13 +0000290{
hailfinger2c361e42008-05-13 23:03:12 +0000291 int i;
hailfinger61949942009-05-09 02:09:45 +0000292 int result;
hailfinger4500b082009-07-11 18:05:42 +0000293 chipaddr bios = flash->virtual_memory;
hailfinger2c361e42008-05-13 23:03:12 +0000294
hailfinger61949942009-05-09 02:09:45 +0000295 result = spi_write_enable();
296 if (result)
297 return result;
hailfingerec9334b2009-07-12 12:06:18 +0000298 /* FIXME: The command below seems to be redundant or wrong. */
uwefa98ca12008-10-18 21:14:13 +0000299 OUTB(0x06, it8716f_flashport + 1);
hailfingere1f062f2008-05-22 13:22:45 +0000300 OUTB(((2 + (fast_spi ? 1 : 0)) << 4), it8716f_flashport);
hailfinger2c361e42008-05-13 23:03:12 +0000301 for (i = 0; i < 256; i++) {
hailfinger4500b082009-07-11 18:05:42 +0000302 chip_writeb(buf[256 * block + i], bios + 256 * block + i);
hailfinger2c361e42008-05-13 23:03:12 +0000303 }
hailfingere1f062f2008-05-22 13:22:45 +0000304 OUTB(0, it8716f_flashport);
hailfinger2c361e42008-05-13 23:03:12 +0000305 /* Wait until the Write-In-Progress bit is cleared.
306 * This usually takes 1-10 ms, so wait in 1 ms steps.
307 */
308 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
hailfingere5829f62009-06-05 17:48:08 +0000309 programmer_delay(1000);
hailfinger61949942009-05-09 02:09:45 +0000310 return 0;
hailfinger2c361e42008-05-13 23:03:12 +0000311}
312
313/*
hailfinger2c361e42008-05-13 23:03:12 +0000314 * IT8716F only allows maximum of 512 kb SPI mapped to LPC memory cycles
315 * Need to read this big flash using firmware cycles 3 byte at a time.
316 */
hailfinger0f08b7a2009-06-16 08:55:44 +0000317int it8716f_spi_chip_read(struct flashchip *flash, uint8_t *buf, int start, int len)
hailfinger2c361e42008-05-13 23:03:12 +0000318{
319 int total_size = 1024 * flash->total_size;
hailfinger2c361e42008-05-13 23:03:12 +0000320 fast_spi = 0;
321
hailfinger26e212b2009-05-31 18:00:57 +0000322 if ((programmer == PROGRAMMER_IT87SPI) || (total_size > 512 * 1024)) {
hailfinger0f08b7a2009-06-16 08:55:44 +0000323 spi_read_chunked(flash, buf, start, len, 3);
hailfinger2c361e42008-05-13 23:03:12 +0000324 } else {
hailfinger0f08b7a2009-06-16 08:55:44 +0000325 read_memmapped(flash, buf, start, len);
hailfinger2c361e42008-05-13 23:03:12 +0000326 }
uwefa98ca12008-10-18 21:14:13 +0000327
hailfinger2c361e42008-05-13 23:03:12 +0000328 return 0;
329}
330
hailfingered063f52009-05-09 02:30:21 +0000331int it8716f_spi_chip_write_256(struct flashchip *flash, uint8_t *buf)
uwefa98ca12008-10-18 21:14:13 +0000332{
hailfinger2c361e42008-05-13 23:03:12 +0000333 int total_size = 1024 * flash->total_size;
334 int i;
uwefa98ca12008-10-18 21:14:13 +0000335
hailfingered063f52009-05-09 02:30:21 +0000336 /*
337 * IT8716F only allows maximum of 512 kb SPI chip size for memory
338 * mapped access.
339 */
hailfinger26e212b2009-05-31 18:00:57 +0000340 if ((programmer == PROGRAMMER_IT87SPI) || (total_size > 512 * 1024)) {
hailfingere8b674c2009-08-10 02:29:21 +0000341 spi_chip_write_1(flash, buf);
hailfinger2c361e42008-05-13 23:03:12 +0000342 } else {
hailfingere8b674c2009-08-10 02:29:21 +0000343 spi_disable_blockprotect();
344 /* Erase first */
snelson55fe91c2010-01-10 01:09:58 +0000345 msg_pinfo("Erasing flash before programming... ");
hailfinger7df21362009-09-05 02:30:58 +0000346 if (erase_flash(flash)) {
snelson55fe91c2010-01-10 01:09:58 +0000347 msg_perr("ERASE FAILED!\n");
hailfingere8b674c2009-08-10 02:29:21 +0000348 return -1;
349 }
snelson55fe91c2010-01-10 01:09:58 +0000350 msg_pinfo("done.\n");
hailfinger2c361e42008-05-13 23:03:12 +0000351 for (i = 0; i < total_size / 256; i++) {
hailfinger4500b082009-07-11 18:05:42 +0000352 it8716f_spi_page_program(flash, i, buf);
hailfinger2c361e42008-05-13 23:03:12 +0000353 }
354 }
uwefa98ca12008-10-18 21:14:13 +0000355
hailfinger2c361e42008-05-13 23:03:12 +0000356 return 0;
357}
hailfinger324a9cc2010-05-26 01:45:41 +0000358
359#endif