Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 1 | /* |
| 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. |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 17 | */ |
| 18 | |
| 19 | /* |
| 20 | * Contains the ITE IT85* SPI specific routines |
| 21 | */ |
| 22 | |
| 23 | #if defined(__i386__) || defined(__x86_64__) |
| 24 | |
| 25 | #include <string.h> |
David Hendricks | 4e74839 | 2011-02-28 23:58:15 +0000 | [diff] [blame] | 26 | #include <stdio.h> |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 27 | #include <stdlib.h> |
| 28 | #include "flash.h" |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 29 | #include "spi.h" |
| 30 | #include "programmer.h" |
Patrick Georgi | 32508eb | 2012-07-20 20:35:14 +0000 | [diff] [blame] | 31 | #include "hwaccess.h" |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 32 | |
David Hendricks | 4e74839 | 2011-02-28 23:58:15 +0000 | [diff] [blame] | 33 | #define MAX_TIMEOUT 100000 |
| 34 | #define MAX_TRY 5 |
| 35 | |
Carl-Daniel Hailfinger | 7f517a7 | 2011-03-08 00:23:49 +0000 | [diff] [blame] | 36 | /* Constants for I/O ports */ |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 37 | #define ITE_SUPERIO_PORT1 0x2e |
| 38 | #define ITE_SUPERIO_PORT2 0x4e |
| 39 | |
| 40 | /* Legacy I/O */ |
David Hendricks | 4e74839 | 2011-02-28 23:58:15 +0000 | [diff] [blame] | 41 | #define LEGACY_KBC_PORT_DATA 0x60 |
| 42 | #define LEGACY_KBC_PORT_CMD 0x64 |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 43 | |
| 44 | /* Constants for Logical Device registers */ |
| 45 | #define LDNSEL 0x07 |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 46 | |
| 47 | /* These are standard Super I/O 16-bit base address registers */ |
Carl-Daniel Hailfinger | 7f517a7 | 2011-03-08 00:23:49 +0000 | [diff] [blame] | 48 | #define SHM_IO_BAR0 0x60 /* big-endian, this is high bits */ |
| 49 | #define SHM_IO_BAR1 0x61 |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 50 | |
Carl-Daniel Hailfinger | 7f517a7 | 2011-03-08 00:23:49 +0000 | [diff] [blame] | 51 | /* The 8042 keyboard controller uses an input buffer and an output buffer to |
| 52 | * communicate with the host CPU. Both buffers are 1-byte depth. That means |
Elyes HAOUAS | 124ef38 | 2018-03-27 12:15:09 +0200 | [diff] [blame] | 53 | * IBF is set to 1 when the host CPU sends a command to the input buffer |
Carl-Daniel Hailfinger | 7f517a7 | 2011-03-08 00:23:49 +0000 | [diff] [blame] | 54 | * of the EC. IBF is cleared to 0 once the command is read by the EC. |
| 55 | */ |
Elyes HAOUAS | ac01baa | 2018-05-28 16:52:21 +0200 | [diff] [blame] | 56 | #define KB_IBF (1 << 1) /* Input Buffer Full */ |
| 57 | #define KB_OBF (1 << 0) /* Output Buffer Full */ |
David Hendricks | 4e74839 | 2011-02-28 23:58:15 +0000 | [diff] [blame] | 58 | |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 59 | /* IT8502 supports two access modes: |
| 60 | * LPC_MEMORY: through the memory window in 0xFFFFFxxx (follow mode) |
| 61 | * LPC_IO: through I/O port (so called indirect memory) |
| 62 | */ |
| 63 | #undef LPC_MEMORY |
| 64 | #define LPC_IO |
| 65 | |
| 66 | #ifdef LPC_IO |
| 67 | /* macro to fill in indirect-access registers. */ |
| 68 | #define INDIRECT_A0(base, value) OUTB(value, (base) + 0) /* little-endian */ |
| 69 | #define INDIRECT_A1(base, value) OUTB(value, (base) + 1) |
| 70 | #define INDIRECT_A2(base, value) OUTB(value, (base) + 2) |
| 71 | #define INDIRECT_A3(base, value) OUTB(value, (base) + 3) |
| 72 | #define INDIRECT_READ(base) INB((base) + 4) |
| 73 | #define INDIRECT_WRITE(base, value) OUTB(value, (base) + 4) |
| 74 | #endif /* LPC_IO */ |
| 75 | |
| 76 | #ifdef LPC_IO |
| 77 | unsigned int shm_io_base; |
| 78 | #endif |
| 79 | unsigned char *ce_high, *ce_low; |
| 80 | static int it85xx_scratch_rom_reenter = 0; |
| 81 | |
David Hendricks | 4e74839 | 2011-02-28 23:58:15 +0000 | [diff] [blame] | 82 | /* This function will poll the keyboard status register until either |
Carl-Daniel Hailfinger | 082c8b5 | 2011-08-15 19:54:20 +0000 | [diff] [blame] | 83 | * an expected value shows up, or the timeout is reached. |
| 84 | * timeout is in usec. |
David Hendricks | 4e74839 | 2011-02-28 23:58:15 +0000 | [diff] [blame] | 85 | * |
Carl-Daniel Hailfinger | 082c8b5 | 2011-08-15 19:54:20 +0000 | [diff] [blame] | 86 | * Returns: 0 -- the expected value showed up. |
| 87 | * 1 -- timeout. |
David Hendricks | 4e74839 | 2011-02-28 23:58:15 +0000 | [diff] [blame] | 88 | */ |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 89 | static int wait_for(const unsigned int mask, const unsigned int expected_value, |
Carl-Daniel Hailfinger | 082c8b5 | 2011-08-15 19:54:20 +0000 | [diff] [blame] | 90 | const int timeout, const char * error_message, |
| 91 | const char * function_name, const int lineno) |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 92 | { |
David Hendricks | 4e74839 | 2011-02-28 23:58:15 +0000 | [diff] [blame] | 93 | int time_passed; |
| 94 | |
| 95 | for (time_passed = 0;; ++time_passed) { |
| 96 | if ((INB(LEGACY_KBC_PORT_CMD) & mask) == expected_value) |
| 97 | return 0; |
| 98 | if (time_passed >= timeout) |
| 99 | break; |
| 100 | programmer_delay(1); |
| 101 | } |
| 102 | if (error_message) |
| 103 | msg_perr("%s():%d %s", function_name, lineno, error_message); |
| 104 | return 1; |
| 105 | } |
| 106 | |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 107 | /* IT8502 employs a scratch RAM when flash is being updated. Call the following |
David Hendricks | 4e74839 | 2011-02-28 23:58:15 +0000 | [diff] [blame] | 108 | * two functions before/after flash erase/program. */ |
Jacob Garber | beeb8bc | 2019-06-21 15:24:17 -0600 | [diff] [blame] | 109 | static void it85xx_enter_scratch_rom(void) |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 110 | { |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 111 | int ret, tries; |
David Hendricks | 4e74839 | 2011-02-28 23:58:15 +0000 | [diff] [blame] | 112 | |
Uwe Hermann | e187d5e | 2011-07-29 20:13:45 +0000 | [diff] [blame] | 113 | msg_pdbg("%s():%d was called ...\n", __func__, __LINE__); |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 114 | if (it85xx_scratch_rom_reenter > 0) |
| 115 | return; |
David Hendricks | 4e74839 | 2011-02-28 23:58:15 +0000 | [diff] [blame] | 116 | |
| 117 | #if 0 |
| 118 | /* FIXME: this a workaround for the bug that SMBus signal would |
| 119 | * interfere the EC firmware update. Should be removed if |
| 120 | * we find out the root cause. */ |
| 121 | ret = system("stop powerd >&2"); |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 122 | if (ret) |
David Hendricks | 4e74839 | 2011-02-28 23:58:15 +0000 | [diff] [blame] | 123 | msg_perr("Cannot stop powerd.\n"); |
David Hendricks | 4e74839 | 2011-02-28 23:58:15 +0000 | [diff] [blame] | 124 | #endif |
| 125 | |
| 126 | for (tries = 0; tries < MAX_TRY; ++tries) { |
| 127 | /* Wait until IBF (input buffer) is not full. */ |
| 128 | if (wait_for(KB_IBF, 0, MAX_TIMEOUT, |
| 129 | "* timeout at waiting for IBF==0.\n", |
Uwe Hermann | e187d5e | 2011-07-29 20:13:45 +0000 | [diff] [blame] | 130 | __func__, __LINE__)) |
David Hendricks | 4e74839 | 2011-02-28 23:58:15 +0000 | [diff] [blame] | 131 | continue; |
| 132 | |
| 133 | /* Copy EC firmware to SRAM. */ |
| 134 | OUTB(0xb4, LEGACY_KBC_PORT_CMD); |
| 135 | |
| 136 | /* Confirm EC has taken away the command. */ |
| 137 | if (wait_for(KB_IBF, 0, MAX_TIMEOUT, |
| 138 | "* timeout at taking command.\n", |
Uwe Hermann | e187d5e | 2011-07-29 20:13:45 +0000 | [diff] [blame] | 139 | __func__, __LINE__)) |
David Hendricks | 4e74839 | 2011-02-28 23:58:15 +0000 | [diff] [blame] | 140 | continue; |
| 141 | |
| 142 | /* Waiting for OBF (output buffer) has data. |
| 143 | * Note sometimes the replied command might be stolen by kernel |
| 144 | * ISR so that it is okay as long as the command is 0xFA. */ |
| 145 | if (wait_for(KB_OBF, KB_OBF, MAX_TIMEOUT, NULL, NULL, 0)) |
| 146 | msg_pdbg("%s():%d * timeout at waiting for OBF.\n", |
Uwe Hermann | e187d5e | 2011-07-29 20:13:45 +0000 | [diff] [blame] | 147 | __func__, __LINE__); |
David Hendricks | 4e74839 | 2011-02-28 23:58:15 +0000 | [diff] [blame] | 148 | if ((ret = INB(LEGACY_KBC_PORT_DATA)) == 0xFA) { |
| 149 | break; |
| 150 | } else { |
| 151 | msg_perr("%s():%d * not run on SRAM ret=%d\n", |
Uwe Hermann | e187d5e | 2011-07-29 20:13:45 +0000 | [diff] [blame] | 152 | __func__, __LINE__, ret); |
David Hendricks | 4e74839 | 2011-02-28 23:58:15 +0000 | [diff] [blame] | 153 | continue; |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | if (tries < MAX_TRY) { |
| 158 | /* EC already runs on SRAM */ |
| 159 | it85xx_scratch_rom_reenter++; |
Uwe Hermann | e187d5e | 2011-07-29 20:13:45 +0000 | [diff] [blame] | 160 | msg_pdbg("%s():%d * SUCCESS.\n", __func__, __LINE__); |
David Hendricks | 4e74839 | 2011-02-28 23:58:15 +0000 | [diff] [blame] | 161 | } else { |
Uwe Hermann | e187d5e | 2011-07-29 20:13:45 +0000 | [diff] [blame] | 162 | msg_perr("%s():%d * Max try reached.\n", __func__, __LINE__); |
David Hendricks | 4e74839 | 2011-02-28 23:58:15 +0000 | [diff] [blame] | 163 | } |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 164 | } |
| 165 | |
Jacob Garber | beeb8bc | 2019-06-21 15:24:17 -0600 | [diff] [blame] | 166 | static void it85xx_exit_scratch_rom(void) |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 167 | { |
David Hendricks | 4e74839 | 2011-02-28 23:58:15 +0000 | [diff] [blame] | 168 | #if 0 |
| 169 | int ret; |
| 170 | #endif |
| 171 | int tries; |
| 172 | |
Uwe Hermann | e187d5e | 2011-07-29 20:13:45 +0000 | [diff] [blame] | 173 | msg_pdbg("%s():%d was called ...\n", __func__, __LINE__); |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 174 | if (it85xx_scratch_rom_reenter <= 0) |
| 175 | return; |
David Hendricks | 4e74839 | 2011-02-28 23:58:15 +0000 | [diff] [blame] | 176 | |
| 177 | for (tries = 0; tries < MAX_TRY; ++tries) { |
| 178 | /* Wait until IBF (input buffer) is not full. */ |
| 179 | if (wait_for(KB_IBF, 0, MAX_TIMEOUT, |
| 180 | "* timeout at waiting for IBF==0.\n", |
Uwe Hermann | e187d5e | 2011-07-29 20:13:45 +0000 | [diff] [blame] | 181 | __func__, __LINE__)) |
David Hendricks | 4e74839 | 2011-02-28 23:58:15 +0000 | [diff] [blame] | 182 | continue; |
| 183 | |
| 184 | /* Exit SRAM. Run on flash. */ |
| 185 | OUTB(0xFE, LEGACY_KBC_PORT_CMD); |
| 186 | |
| 187 | /* Confirm EC has taken away the command. */ |
| 188 | if (wait_for(KB_IBF, 0, MAX_TIMEOUT, |
| 189 | "* timeout at taking command.\n", |
Uwe Hermann | e187d5e | 2011-07-29 20:13:45 +0000 | [diff] [blame] | 190 | __func__, __LINE__)) { |
David Hendricks | 4e74839 | 2011-02-28 23:58:15 +0000 | [diff] [blame] | 191 | /* We cannot ensure if EC has exited update mode. |
| 192 | * If EC is in normal mode already, a further 0xFE |
| 193 | * command will reboot system. So, exit loop here. */ |
| 194 | tries = MAX_TRY; |
| 195 | break; |
| 196 | } |
| 197 | |
| 198 | break; |
| 199 | } |
| 200 | |
| 201 | if (tries < MAX_TRY) { |
| 202 | it85xx_scratch_rom_reenter = 0; |
Uwe Hermann | e187d5e | 2011-07-29 20:13:45 +0000 | [diff] [blame] | 203 | msg_pdbg("%s():%d * SUCCESS.\n", __func__, __LINE__); |
David Hendricks | 4e74839 | 2011-02-28 23:58:15 +0000 | [diff] [blame] | 204 | } else { |
Uwe Hermann | e187d5e | 2011-07-29 20:13:45 +0000 | [diff] [blame] | 205 | msg_perr("%s():%d * Max try reached.\n", __func__, __LINE__); |
David Hendricks | 4e74839 | 2011-02-28 23:58:15 +0000 | [diff] [blame] | 206 | } |
| 207 | |
| 208 | #if 0 |
| 209 | /* FIXME: this a workaround for the bug that SMBus signal would |
| 210 | * interfere the EC firmware update. Should be removed if |
| 211 | * we find out the root cause. */ |
| 212 | ret = system("start powerd >&2"); |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 213 | if (ret) |
David Hendricks | 4e74839 | 2011-02-28 23:58:15 +0000 | [diff] [blame] | 214 | msg_perr("Cannot start powerd again.\n"); |
David Hendricks | 4e74839 | 2011-02-28 23:58:15 +0000 | [diff] [blame] | 215 | #endif |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 216 | } |
| 217 | |
David Hendricks | 8bb2021 | 2011-06-14 01:35:36 +0000 | [diff] [blame] | 218 | static int it85xx_shutdown(void *data) |
| 219 | { |
| 220 | msg_pdbg("%s():%d\n", __func__, __LINE__); |
| 221 | it85xx_exit_scratch_rom(); |
| 222 | |
| 223 | return 0; /* FIXME: Should probably return something meaningful */ |
| 224 | } |
| 225 | |
Carl-Daniel Hailfinger | bfecef6 | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 226 | static int it85xx_spi_common_init(struct superio s) |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 227 | { |
| 228 | chipaddr base; |
| 229 | |
| 230 | msg_pdbg("%s():%d superio.vendor=0x%02x\n", __func__, __LINE__, |
Carl-Daniel Hailfinger | bfecef6 | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 231 | s.vendor); |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 232 | |
David Hendricks | 8bb2021 | 2011-06-14 01:35:36 +0000 | [diff] [blame] | 233 | if (register_shutdown(it85xx_shutdown, NULL)) |
| 234 | return 1; |
| 235 | |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 236 | #ifdef LPC_IO |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 237 | /* Get LPCPNP of SHM. That's big-endian. */ |
Carl-Daniel Hailfinger | bfecef6 | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 238 | sio_write(s.port, LDNSEL, 0x0F); /* Set LDN to SHM (0x0F) */ |
| 239 | shm_io_base = (sio_read(s.port, SHM_IO_BAR0) << 8) + |
| 240 | sio_read(s.port, SHM_IO_BAR1); |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 241 | msg_pdbg("%s():%d shm_io_base=0x%04x\n", __func__, __LINE__, |
| 242 | shm_io_base); |
| 243 | |
| 244 | /* These pointers are not used directly. They will be send to EC's |
| 245 | * register for indirect access. */ |
| 246 | base = 0xFFFFF000; |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 247 | ce_high = ((unsigned char *)base) + 0xE00; /* 0xFFFFFE00 */ |
| 248 | ce_low = ((unsigned char *)base) + 0xD00; /* 0xFFFFFD00 */ |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 249 | |
| 250 | /* pre-set indirect-access registers since in most of cases they are |
| 251 | * 0xFFFFxx00. */ |
| 252 | INDIRECT_A0(shm_io_base, base & 0xFF); |
| 253 | INDIRECT_A2(shm_io_base, (base >> 16) & 0xFF); |
| 254 | INDIRECT_A3(shm_io_base, (base >> 24)); |
| 255 | #endif |
| 256 | #ifdef LPC_MEMORY |
Carl-Daniel Hailfinger | eaacd2d | 2011-11-09 23:40:00 +0000 | [diff] [blame] | 257 | /* FIXME: We should block accessing that region for anything else. |
| 258 | * Major TODO here, and it will be a lot of work. |
| 259 | */ |
| 260 | base = (chipaddr)physmap("it85 communication", 0xFFFFF000, 0x1000); |
Stefan Tauner | 7fb5aa0 | 2013-08-14 15:48:44 +0000 | [diff] [blame] | 261 | if (base == (chipaddr)ERROR_PTR) |
| 262 | return 1; |
| 263 | |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 264 | msg_pdbg("%s():%d base=0x%08x\n", __func__, __LINE__, |
| 265 | (unsigned int)base); |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 266 | ce_high = (unsigned char *)(base + 0xE00); /* 0xFFFFFE00 */ |
| 267 | ce_low = (unsigned char *)(base + 0xD00); /* 0xFFFFFD00 */ |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 268 | #endif |
| 269 | |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 270 | return 0; |
| 271 | } |
| 272 | |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 273 | static int it85xx_spi_send_command(struct flashctx *flash, |
| 274 | unsigned int writecnt, unsigned int readcnt, |
| 275 | const unsigned char *writearr, |
| 276 | unsigned char *readarr); |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 277 | |
Carl-Daniel Hailfinger | a5bcbce | 2014-07-19 22:03:29 +0000 | [diff] [blame] | 278 | static const struct spi_master spi_master_it85xx = { |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 279 | .type = SPI_CONTROLLER_IT85XX, |
| 280 | .max_data_read = 64, |
| 281 | .max_data_write = 64, |
| 282 | .command = it85xx_spi_send_command, |
| 283 | .multicommand = default_spi_send_multicommand, |
| 284 | .read = default_spi_read, |
| 285 | .write_256 = default_spi_write_256, |
Nico Huber | 7bca126 | 2012-06-15 22:28:12 +0000 | [diff] [blame] | 286 | .write_aai = default_spi_write_aai, |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 287 | }; |
| 288 | |
Carl-Daniel Hailfinger | bfecef6 | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 289 | int it85xx_spi_init(struct superio s) |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 290 | { |
| 291 | int ret; |
| 292 | |
Carl-Daniel Hailfinger | eaacd2d | 2011-11-09 23:40:00 +0000 | [diff] [blame] | 293 | if (!(internal_buses_supported & BUS_FWH)) { |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 294 | msg_pdbg("%s():%d buses not support FWH\n", __func__, __LINE__); |
| 295 | return 1; |
| 296 | } |
Carl-Daniel Hailfinger | bfecef6 | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 297 | ret = it85xx_spi_common_init(s); |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 298 | msg_pdbg("FWH: %s():%d ret=%d\n", __func__, __LINE__, ret); |
| 299 | if (!ret) { |
Carl-Daniel Hailfinger | eaacd2d | 2011-11-09 23:40:00 +0000 | [diff] [blame] | 300 | msg_pdbg("%s: internal_buses_supported=0x%x\n", __func__, |
| 301 | internal_buses_supported); |
| 302 | /* Check for FWH because IT85 listens to FWH cycles. |
| 303 | * FIXME: The big question is whether FWH cycles are necessary |
| 304 | * for communication even if LPC_IO is defined. |
| 305 | */ |
| 306 | if (internal_buses_supported & BUS_FWH) |
| 307 | msg_pdbg("Registering IT85 SPI.\n"); |
| 308 | /* FIXME: Really leave FWH enabled? We can't use this region |
| 309 | * anymore since accessing it would mess up IT85 communication. |
| 310 | * If we decide to disable FWH for this region, we should print |
| 311 | * a debug message about it. |
| 312 | */ |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 313 | /* Set this as SPI controller. */ |
Carl-Daniel Hailfinger | a5bcbce | 2014-07-19 22:03:29 +0000 | [diff] [blame] | 314 | register_spi_master(&spi_master_it85xx); |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 315 | } |
| 316 | return ret; |
| 317 | } |
| 318 | |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 319 | /* According to ITE 8502 document, the procedure to follow mode is following: |
| 320 | * 1. write 0x00 to LPC/FWH address 0xffff_fexxh (drive CE# high) |
| 321 | * 2. write data to LPC/FWH address 0xffff_fdxxh (drive CE# low and MOSI |
| 322 | * with data) |
| 323 | * 3. read date from LPC/FWH address 0xffff_fdxxh (drive CE# low and get |
| 324 | * data from MISO) |
| 325 | */ |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 326 | static int it85xx_spi_send_command(struct flashctx *flash, |
| 327 | unsigned int writecnt, unsigned int readcnt, |
| 328 | const unsigned char *writearr, |
| 329 | unsigned char *readarr) |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 330 | { |
| 331 | int i; |
| 332 | |
| 333 | it85xx_enter_scratch_rom(); |
Carl-Daniel Hailfinger | 082c8b5 | 2011-08-15 19:54:20 +0000 | [diff] [blame] | 334 | /* Exit scratch ROM ONLY when programmer shuts down. Otherwise, the |
| 335 | * temporary flash state may halt the EC. |
| 336 | */ |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 337 | |
| 338 | #ifdef LPC_IO |
| 339 | INDIRECT_A1(shm_io_base, (((unsigned long int)ce_high) >> 8) & 0xff); |
| 340 | INDIRECT_WRITE(shm_io_base, 0xFF); /* Write anything to this address.*/ |
| 341 | INDIRECT_A1(shm_io_base, (((unsigned long int)ce_low) >> 8) & 0xff); |
| 342 | #endif |
| 343 | #ifdef LPC_MEMORY |
Carl-Daniel Hailfinger | 7f517a7 | 2011-03-08 00:23:49 +0000 | [diff] [blame] | 344 | mmio_writeb(0, ce_high); |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 345 | #endif |
| 346 | for (i = 0; i < writecnt; ++i) { |
| 347 | #ifdef LPC_IO |
| 348 | INDIRECT_WRITE(shm_io_base, writearr[i]); |
| 349 | #endif |
| 350 | #ifdef LPC_MEMORY |
Carl-Daniel Hailfinger | 7f517a7 | 2011-03-08 00:23:49 +0000 | [diff] [blame] | 351 | mmio_writeb(writearr[i], ce_low); |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 352 | #endif |
| 353 | } |
| 354 | for (i = 0; i < readcnt; ++i) { |
| 355 | #ifdef LPC_IO |
| 356 | readarr[i] = INDIRECT_READ(shm_io_base); |
| 357 | #endif |
| 358 | #ifdef LPC_MEMORY |
Carl-Daniel Hailfinger | 7f517a7 | 2011-03-08 00:23:49 +0000 | [diff] [blame] | 359 | readarr[i] = mmio_readb(ce_low); |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 360 | #endif |
| 361 | } |
David Hendricks | 4e74839 | 2011-02-28 23:58:15 +0000 | [diff] [blame] | 362 | #ifdef LPC_IO |
| 363 | INDIRECT_A1(shm_io_base, (((unsigned long int)ce_high) >> 8) & 0xff); |
| 364 | INDIRECT_WRITE(shm_io_base, 0xFF); /* Write anything to this address.*/ |
| 365 | #endif |
| 366 | #ifdef LPC_MEMORY |
Carl-Daniel Hailfinger | 7f517a7 | 2011-03-08 00:23:49 +0000 | [diff] [blame] | 367 | mmio_writeb(0, ce_high); |
David Hendricks | 4e74839 | 2011-02-28 23:58:15 +0000 | [diff] [blame] | 368 | #endif |
| 369 | |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 370 | return 0; |
| 371 | } |
| 372 | |
Donald Huang | 44ebb04 | 2011-02-22 17:16:34 +0000 | [diff] [blame] | 373 | #endif |