blob: f56d7bd29c04099c535d4563a0222d0465cc9152 [file] [log] [blame]
Donald Huang44ebb042011-02-22 17:16:34 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2007, 2008, 2009 Carl-Daniel Hailfinger
5 * Copyright (C) 2008 Ronald Hoogenboom <ronald@zonnet.nl>
6 * Copyright (C) 2008 coresystems GmbH
7 * Copyright (C) 2010 Google Inc.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; version 2 of the License.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23/*
24 * Contains the ITE IT85* SPI specific routines
25 */
26
27#if defined(__i386__) || defined(__x86_64__)
28
29#include <string.h>
David Hendricks4e748392011-02-28 23:58:15 +000030#include <stdio.h>
Donald Huang44ebb042011-02-22 17:16:34 +000031#include <stdlib.h>
32#include "flash.h"
33#include "chipdrivers.h"
34#include "spi.h"
35#include "programmer.h"
36
David Hendricks4e748392011-02-28 23:58:15 +000037#define MAX_TIMEOUT 100000
38#define MAX_TRY 5
39
Carl-Daniel Hailfinger7f517a72011-03-08 00:23:49 +000040/* Constants for I/O ports */
Donald Huang44ebb042011-02-22 17:16:34 +000041#define ITE_SUPERIO_PORT1 0x2e
42#define ITE_SUPERIO_PORT2 0x4e
43
44/* Legacy I/O */
David Hendricks4e748392011-02-28 23:58:15 +000045#define LEGACY_KBC_PORT_DATA 0x60
46#define LEGACY_KBC_PORT_CMD 0x64
Donald Huang44ebb042011-02-22 17:16:34 +000047
48/* Constants for Logical Device registers */
49#define LDNSEL 0x07
Donald Huang44ebb042011-02-22 17:16:34 +000050
51/* These are standard Super I/O 16-bit base address registers */
Carl-Daniel Hailfinger7f517a72011-03-08 00:23:49 +000052#define SHM_IO_BAR0 0x60 /* big-endian, this is high bits */
53#define SHM_IO_BAR1 0x61
Donald Huang44ebb042011-02-22 17:16:34 +000054
Carl-Daniel Hailfinger7f517a72011-03-08 00:23:49 +000055/* The 8042 keyboard controller uses an input buffer and an output buffer to
56 * communicate with the host CPU. Both buffers are 1-byte depth. That means
57 * IBF is set to 1 when the host CPU sends a command to the input buffer
58 * of the EC. IBF is cleared to 0 once the command is read by the EC.
59 */
David Hendricks4e748392011-02-28 23:58:15 +000060#define KB_IBF (1 << 1) /* Input Buffer Full */
61#define KB_OBF (1 << 0) /* Output Buffer Full */
62
Donald Huang44ebb042011-02-22 17:16:34 +000063/* IT8502 supports two access modes:
64 * LPC_MEMORY: through the memory window in 0xFFFFFxxx (follow mode)
65 * LPC_IO: through I/O port (so called indirect memory)
66 */
67#undef LPC_MEMORY
68#define LPC_IO
69
70#ifdef LPC_IO
71/* macro to fill in indirect-access registers. */
72#define INDIRECT_A0(base, value) OUTB(value, (base) + 0) /* little-endian */
73#define INDIRECT_A1(base, value) OUTB(value, (base) + 1)
74#define INDIRECT_A2(base, value) OUTB(value, (base) + 2)
75#define INDIRECT_A3(base, value) OUTB(value, (base) + 3)
76#define INDIRECT_READ(base) INB((base) + 4)
77#define INDIRECT_WRITE(base, value) OUTB(value, (base) + 4)
78#endif /* LPC_IO */
79
80#ifdef LPC_IO
81unsigned int shm_io_base;
82#endif
83unsigned char *ce_high, *ce_low;
84static int it85xx_scratch_rom_reenter = 0;
85
David Hendricks4e748392011-02-28 23:58:15 +000086/* This function will poll the keyboard status register until either
87 * an expected value shows up, or
88 * timeout reaches.
89 *
90 * Returns: 0 -- the expected value has shown.
91 * 1 -- timeout reached.
92 */
Uwe Hermann91f4afa2011-07-28 08:13:25 +000093static int wait_for(const unsigned int mask, const unsigned int expected_value,
94 const int timeout /* in usec */, const char *error_message,
95 const char *function_name, const int lineno)
96{
David Hendricks4e748392011-02-28 23:58:15 +000097 int time_passed;
98
99 for (time_passed = 0;; ++time_passed) {
100 if ((INB(LEGACY_KBC_PORT_CMD) & mask) == expected_value)
101 return 0;
102 if (time_passed >= timeout)
103 break;
104 programmer_delay(1);
105 }
106 if (error_message)
107 msg_perr("%s():%d %s", function_name, lineno, error_message);
108 return 1;
109}
110
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000111/* IT8502 employs a scratch RAM when flash is being updated. Call the following
David Hendricks4e748392011-02-28 23:58:15 +0000112 * two functions before/after flash erase/program. */
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000113void it85xx_enter_scratch_rom(void)
Donald Huang44ebb042011-02-22 17:16:34 +0000114{
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000115 int ret, tries;
David Hendricks4e748392011-02-28 23:58:15 +0000116
117 msg_pdbg("%s():%d was called ...\n", __FUNCTION__, __LINE__);
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000118 if (it85xx_scratch_rom_reenter > 0)
119 return;
David Hendricks4e748392011-02-28 23:58:15 +0000120
121#if 0
122 /* FIXME: this a workaround for the bug that SMBus signal would
123 * interfere the EC firmware update. Should be removed if
124 * we find out the root cause. */
125 ret = system("stop powerd >&2");
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000126 if (ret)
David Hendricks4e748392011-02-28 23:58:15 +0000127 msg_perr("Cannot stop powerd.\n");
David Hendricks4e748392011-02-28 23:58:15 +0000128#endif
129
130 for (tries = 0; tries < MAX_TRY; ++tries) {
131 /* Wait until IBF (input buffer) is not full. */
132 if (wait_for(KB_IBF, 0, MAX_TIMEOUT,
133 "* timeout at waiting for IBF==0.\n",
134 __FUNCTION__, __LINE__))
135 continue;
136
137 /* Copy EC firmware to SRAM. */
138 OUTB(0xb4, LEGACY_KBC_PORT_CMD);
139
140 /* Confirm EC has taken away the command. */
141 if (wait_for(KB_IBF, 0, MAX_TIMEOUT,
142 "* timeout at taking command.\n",
143 __FUNCTION__, __LINE__))
144 continue;
145
146 /* Waiting for OBF (output buffer) has data.
147 * Note sometimes the replied command might be stolen by kernel
148 * ISR so that it is okay as long as the command is 0xFA. */
149 if (wait_for(KB_OBF, KB_OBF, MAX_TIMEOUT, NULL, NULL, 0))
150 msg_pdbg("%s():%d * timeout at waiting for OBF.\n",
151 __FUNCTION__, __LINE__);
152 if ((ret = INB(LEGACY_KBC_PORT_DATA)) == 0xFA) {
153 break;
154 } else {
155 msg_perr("%s():%d * not run on SRAM ret=%d\n",
156 __FUNCTION__, __LINE__, ret);
157 continue;
158 }
159 }
160
161 if (tries < MAX_TRY) {
162 /* EC already runs on SRAM */
163 it85xx_scratch_rom_reenter++;
164 msg_pdbg("%s():%d * SUCCESS.\n", __FUNCTION__, __LINE__);
165 } else {
166 msg_perr("%s():%d * Max try reached.\n",
167 __FUNCTION__, __LINE__);
168 }
Donald Huang44ebb042011-02-22 17:16:34 +0000169}
170
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000171void it85xx_exit_scratch_rom(void)
Donald Huang44ebb042011-02-22 17:16:34 +0000172{
David Hendricks4e748392011-02-28 23:58:15 +0000173#if 0
174 int ret;
175#endif
176 int tries;
177
178 msg_pdbg("%s():%d was called ...\n", __FUNCTION__, __LINE__);
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000179 if (it85xx_scratch_rom_reenter <= 0)
180 return;
David Hendricks4e748392011-02-28 23:58:15 +0000181
182 for (tries = 0; tries < MAX_TRY; ++tries) {
183 /* Wait until IBF (input buffer) is not full. */
184 if (wait_for(KB_IBF, 0, MAX_TIMEOUT,
185 "* timeout at waiting for IBF==0.\n",
186 __FUNCTION__, __LINE__))
187 continue;
188
189 /* Exit SRAM. Run on flash. */
190 OUTB(0xFE, LEGACY_KBC_PORT_CMD);
191
192 /* Confirm EC has taken away the command. */
193 if (wait_for(KB_IBF, 0, MAX_TIMEOUT,
194 "* timeout at taking command.\n",
195 __FUNCTION__, __LINE__)) {
196 /* We cannot ensure if EC has exited update mode.
197 * If EC is in normal mode already, a further 0xFE
198 * command will reboot system. So, exit loop here. */
199 tries = MAX_TRY;
200 break;
201 }
202
203 break;
204 }
205
206 if (tries < MAX_TRY) {
207 it85xx_scratch_rom_reenter = 0;
208 msg_pdbg("%s():%d * SUCCESS.\n", __FUNCTION__, __LINE__);
209 } else {
210 msg_perr("%s():%d * Max try reached.\n",
211 __FUNCTION__, __LINE__);
212 }
213
214#if 0
215 /* FIXME: this a workaround for the bug that SMBus signal would
216 * interfere the EC firmware update. Should be removed if
217 * we find out the root cause. */
218 ret = system("start powerd >&2");
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000219 if (ret)
David Hendricks4e748392011-02-28 23:58:15 +0000220 msg_perr("Cannot start powerd again.\n");
David Hendricks4e748392011-02-28 23:58:15 +0000221#endif
Donald Huang44ebb042011-02-22 17:16:34 +0000222}
223
David Hendricks8bb20212011-06-14 01:35:36 +0000224static int it85xx_shutdown(void *data)
225{
226 msg_pdbg("%s():%d\n", __func__, __LINE__);
227 it85xx_exit_scratch_rom();
228
229 return 0; /* FIXME: Should probably return something meaningful */
230}
231
Carl-Daniel Hailfingerbfecef62011-04-27 14:34:08 +0000232static int it85xx_spi_common_init(struct superio s)
Donald Huang44ebb042011-02-22 17:16:34 +0000233{
234 chipaddr base;
235
236 msg_pdbg("%s():%d superio.vendor=0x%02x\n", __func__, __LINE__,
Carl-Daniel Hailfingerbfecef62011-04-27 14:34:08 +0000237 s.vendor);
Donald Huang44ebb042011-02-22 17:16:34 +0000238
David Hendricks8bb20212011-06-14 01:35:36 +0000239 if (register_shutdown(it85xx_shutdown, NULL))
240 return 1;
241
Donald Huang44ebb042011-02-22 17:16:34 +0000242#ifdef LPC_IO
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000243 /* Get LPCPNP of SHM. That's big-endian. */
Carl-Daniel Hailfingerbfecef62011-04-27 14:34:08 +0000244 sio_write(s.port, LDNSEL, 0x0F); /* Set LDN to SHM (0x0F) */
245 shm_io_base = (sio_read(s.port, SHM_IO_BAR0) << 8) +
246 sio_read(s.port, SHM_IO_BAR1);
Donald Huang44ebb042011-02-22 17:16:34 +0000247 msg_pdbg("%s():%d shm_io_base=0x%04x\n", __func__, __LINE__,
248 shm_io_base);
249
250 /* These pointers are not used directly. They will be send to EC's
251 * register for indirect access. */
252 base = 0xFFFFF000;
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000253 ce_high = ((unsigned char *)base) + 0xE00; /* 0xFFFFFE00 */
254 ce_low = ((unsigned char *)base) + 0xD00; /* 0xFFFFFD00 */
Donald Huang44ebb042011-02-22 17:16:34 +0000255
256 /* pre-set indirect-access registers since in most of cases they are
257 * 0xFFFFxx00. */
258 INDIRECT_A0(shm_io_base, base & 0xFF);
259 INDIRECT_A2(shm_io_base, (base >> 16) & 0xFF);
260 INDIRECT_A3(shm_io_base, (base >> 24));
261#endif
262#ifdef LPC_MEMORY
Carl-Daniel Hailfinger7f517a72011-03-08 00:23:49 +0000263 base = (chipaddr)programmer_map_flash_region("it85 communication",
264 0xFFFFF000, 0x1000);
Donald Huang44ebb042011-02-22 17:16:34 +0000265 msg_pdbg("%s():%d base=0x%08x\n", __func__, __LINE__,
266 (unsigned int)base);
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000267 ce_high = (unsigned char *)(base + 0xE00); /* 0xFFFFFE00 */
268 ce_low = (unsigned char *)(base + 0xD00); /* 0xFFFFFD00 */
Donald Huang44ebb042011-02-22 17:16:34 +0000269#endif
270
Donald Huang44ebb042011-02-22 17:16:34 +0000271 return 0;
272}
273
Michael Karcherb9dbe482011-05-11 17:07:07 +0000274static int it85xx_spi_send_command(unsigned int writecnt, unsigned int readcnt,
275 const unsigned char *writearr, unsigned char *readarr);
276
277static const struct spi_programmer spi_programmer_it85xx = {
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000278 .type = SPI_CONTROLLER_IT85XX,
279 .max_data_read = 64,
280 .max_data_write = 64,
281 .command = it85xx_spi_send_command,
282 .multicommand = default_spi_send_multicommand,
283 .read = default_spi_read,
284 .write_256 = default_spi_write_256,
Michael Karcherb9dbe482011-05-11 17:07:07 +0000285};
286
Carl-Daniel Hailfingerbfecef62011-04-27 14:34:08 +0000287int it85xx_spi_init(struct superio s)
Donald Huang44ebb042011-02-22 17:16:34 +0000288{
289 int ret;
290
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000291 if (!(buses_supported & BUS_FWH)) {
Donald Huang44ebb042011-02-22 17:16:34 +0000292 msg_pdbg("%s():%d buses not support FWH\n", __func__, __LINE__);
293 return 1;
294 }
Carl-Daniel Hailfingerbfecef62011-04-27 14:34:08 +0000295 ret = it85xx_spi_common_init(s);
Donald Huang44ebb042011-02-22 17:16:34 +0000296 msg_pdbg("FWH: %s():%d ret=%d\n", __func__, __LINE__, ret);
297 if (!ret) {
298 msg_pdbg("%s():%d buses_supported=0x%x\n", __func__, __LINE__,
299 buses_supported);
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +0000300 if (buses_supported & BUS_FWH)
Donald Huang44ebb042011-02-22 17:16:34 +0000301 msg_pdbg("Overriding chipset SPI with IT85 FWH|SPI.\n");
Carl-Daniel Hailfingerbfecef62011-04-27 14:34:08 +0000302 /* Really leave FWH enabled? */
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000303 /* Set this as SPI controller. */
Michael Karcherb9dbe482011-05-11 17:07:07 +0000304 register_spi_programmer(&spi_programmer_it85xx);
Donald Huang44ebb042011-02-22 17:16:34 +0000305 }
306 return ret;
307}
308
Donald Huang44ebb042011-02-22 17:16:34 +0000309/* According to ITE 8502 document, the procedure to follow mode is following:
310 * 1. write 0x00 to LPC/FWH address 0xffff_fexxh (drive CE# high)
311 * 2. write data to LPC/FWH address 0xffff_fdxxh (drive CE# low and MOSI
312 * with data)
313 * 3. read date from LPC/FWH address 0xffff_fdxxh (drive CE# low and get
314 * data from MISO)
315 */
Michael Karcherb9dbe482011-05-11 17:07:07 +0000316static int it85xx_spi_send_command(unsigned int writecnt, unsigned int readcnt,
Donald Huang44ebb042011-02-22 17:16:34 +0000317 const unsigned char *writearr, unsigned char *readarr)
318{
319 int i;
320
321 it85xx_enter_scratch_rom();
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000322 /* exit scratch ROM ONLY when programmer shuts down. Otherwise, the
Donald Huang44ebb042011-02-22 17:16:34 +0000323 * temporary flash state may halt EC. */
324
325#ifdef LPC_IO
326 INDIRECT_A1(shm_io_base, (((unsigned long int)ce_high) >> 8) & 0xff);
327 INDIRECT_WRITE(shm_io_base, 0xFF); /* Write anything to this address.*/
328 INDIRECT_A1(shm_io_base, (((unsigned long int)ce_low) >> 8) & 0xff);
329#endif
330#ifdef LPC_MEMORY
Carl-Daniel Hailfinger7f517a72011-03-08 00:23:49 +0000331 mmio_writeb(0, ce_high);
Donald Huang44ebb042011-02-22 17:16:34 +0000332#endif
333 for (i = 0; i < writecnt; ++i) {
334#ifdef LPC_IO
335 INDIRECT_WRITE(shm_io_base, writearr[i]);
336#endif
337#ifdef LPC_MEMORY
Carl-Daniel Hailfinger7f517a72011-03-08 00:23:49 +0000338 mmio_writeb(writearr[i], ce_low);
Donald Huang44ebb042011-02-22 17:16:34 +0000339#endif
340 }
341 for (i = 0; i < readcnt; ++i) {
342#ifdef LPC_IO
343 readarr[i] = INDIRECT_READ(shm_io_base);
344#endif
345#ifdef LPC_MEMORY
Carl-Daniel Hailfinger7f517a72011-03-08 00:23:49 +0000346 readarr[i] = mmio_readb(ce_low);
Donald Huang44ebb042011-02-22 17:16:34 +0000347#endif
348 }
David Hendricks4e748392011-02-28 23:58:15 +0000349#ifdef LPC_IO
350 INDIRECT_A1(shm_io_base, (((unsigned long int)ce_high) >> 8) & 0xff);
351 INDIRECT_WRITE(shm_io_base, 0xFF); /* Write anything to this address.*/
352#endif
353#ifdef LPC_MEMORY
Carl-Daniel Hailfinger7f517a72011-03-08 00:23:49 +0000354 mmio_writeb(0, ce_high);
David Hendricks4e748392011-02-28 23:58:15 +0000355#endif
356
Donald Huang44ebb042011-02-22 17:16:34 +0000357 return 0;
358}
359
Donald Huang44ebb042011-02-22 17:16:34 +0000360#endif