Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the flashrom project. |
| 3 | * |
Carl-Daniel Hailfinger | bb297f7 | 2009-07-11 18:05:42 +0000 | [diff] [blame] | 4 | * Copyright (C) 2007, 2008, 2009 Carl-Daniel Hailfinger |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 5 | * Copyright (C) 2008 Ronald Hoogenboom <ronald@zonnet.nl> |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 6 | * Copyright (C) 2008 coresystems GmbH |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 7 | * |
| 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 Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 26 | #if defined(__i386__) || defined(__x86_64__) |
| 27 | |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 28 | #include <string.h> |
Carl-Daniel Hailfinger | bb297f7 | 2009-07-11 18:05:42 +0000 | [diff] [blame] | 29 | #include <stdlib.h> |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 30 | #include "flash.h" |
Sean Nelson | 14ba668 | 2010-02-26 05:48:29 +0000 | [diff] [blame] | 31 | #include "chipdrivers.h" |
Carl-Daniel Hailfinger | 5b997c3 | 2010-07-27 22:41:39 +0000 | [diff] [blame] | 32 | #include "programmer.h" |
Patrick Georgi | 32508eb | 2012-07-20 20:35:14 +0000 | [diff] [blame^] | 33 | #include "hwaccess.h" |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 34 | #include "spi.h" |
| 35 | |
| 36 | #define ITE_SUPERIO_PORT1 0x2e |
| 37 | #define ITE_SUPERIO_PORT2 0x4e |
| 38 | |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 39 | uint16_t it8716f_flashport = 0; |
| 40 | /* use fast 33MHz SPI (<>0) or slow 16MHz (0) */ |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 41 | static int fast_spi = 1; |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 42 | |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 43 | /* Helper functions for most recent ITE IT87xx Super I/O chips */ |
| 44 | #define CHIP_ID_BYTE1_REG 0x20 |
| 45 | #define CHIP_ID_BYTE2_REG 0x21 |
Carl-Daniel Hailfinger | bfecef6 | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 46 | #define CHIP_VER_REG 0x22 |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 47 | void enter_conf_mode_ite(uint16_t port) |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 48 | { |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 49 | OUTB(0x87, port); |
| 50 | OUTB(0x01, port); |
| 51 | OUTB(0x55, port); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 52 | if (port == ITE_SUPERIO_PORT1) |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 53 | OUTB(0x55, port); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 54 | else |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 55 | OUTB(0xaa, port); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 56 | } |
| 57 | |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 58 | void exit_conf_mode_ite(uint16_t port) |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 59 | { |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 60 | sio_write(port, 0x02, 0x02); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 61 | } |
| 62 | |
Carl-Daniel Hailfinger | 14e100c | 2009-12-22 23:42:04 +0000 | [diff] [blame] | 63 | uint16_t probe_id_ite(uint16_t port) |
| 64 | { |
| 65 | uint16_t id; |
| 66 | |
| 67 | enter_conf_mode_ite(port); |
| 68 | id = sio_read(port, CHIP_ID_BYTE1_REG) << 8; |
| 69 | id |= sio_read(port, CHIP_ID_BYTE2_REG); |
| 70 | exit_conf_mode_ite(port); |
| 71 | |
| 72 | return id; |
| 73 | } |
| 74 | |
Carl-Daniel Hailfinger | bfecef6 | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 75 | void probe_superio_ite(void) |
Carl-Daniel Hailfinger | 14e100c | 2009-12-22 23:42:04 +0000 | [diff] [blame] | 76 | { |
Carl-Daniel Hailfinger | bfecef6 | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 77 | struct superio s = {}; |
Carl-Daniel Hailfinger | 14e100c | 2009-12-22 23:42:04 +0000 | [diff] [blame] | 78 | uint16_t ite_ports[] = {ITE_SUPERIO_PORT1, ITE_SUPERIO_PORT2, 0}; |
| 79 | uint16_t *i = ite_ports; |
| 80 | |
Carl-Daniel Hailfinger | bfecef6 | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 81 | s.vendor = SUPERIO_VENDOR_ITE; |
Carl-Daniel Hailfinger | 14e100c | 2009-12-22 23:42:04 +0000 | [diff] [blame] | 82 | for (; *i; i++) { |
Carl-Daniel Hailfinger | bfecef6 | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 83 | s.port = *i; |
| 84 | s.model = probe_id_ite(s.port); |
| 85 | switch (s.model >> 8) { |
Carl-Daniel Hailfinger | 14e100c | 2009-12-22 23:42:04 +0000 | [diff] [blame] | 86 | case 0x82: |
| 87 | case 0x86: |
| 88 | case 0x87: |
Carl-Daniel Hailfinger | bfecef6 | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 89 | /* FIXME: Print revision for all models? */ |
| 90 | msg_pdbg("Found ITE Super I/O, ID 0x%04hx on port " |
| 91 | "0x%x\n", s.model, s.port); |
| 92 | register_superio(s); |
| 93 | break; |
| 94 | case 0x85: |
| 95 | msg_pdbg("Found ITE EC, ID 0x%04hx," |
| 96 | "Rev 0x%02x on port 0x%x.\n", |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 97 | s.model, sio_read(s.port, CHIP_VER_REG), |
Carl-Daniel Hailfinger | bfecef6 | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 98 | s.port); |
| 99 | register_superio(s); |
| 100 | break; |
Carl-Daniel Hailfinger | 14e100c | 2009-12-22 23:42:04 +0000 | [diff] [blame] | 101 | } |
| 102 | } |
| 103 | |
Carl-Daniel Hailfinger | bfecef6 | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 104 | return; |
Carl-Daniel Hailfinger | 14e100c | 2009-12-22 23:42:04 +0000 | [diff] [blame] | 105 | } |
| 106 | |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 107 | static int it8716f_spi_send_command(struct flashctx *flash, |
| 108 | unsigned int writecnt, unsigned int readcnt, |
| 109 | const unsigned char *writearr, |
| 110 | unsigned char *readarr); |
Carl-Daniel Hailfinger | 63fd902 | 2011-12-14 22:25:15 +0000 | [diff] [blame] | 111 | static int it8716f_spi_chip_read(struct flashctx *flash, uint8_t *buf, |
Stefan Tauner | c69c9c8 | 2011-11-23 09:13:48 +0000 | [diff] [blame] | 112 | unsigned int start, unsigned int len); |
Carl-Daniel Hailfinger | 63fd902 | 2011-12-14 22:25:15 +0000 | [diff] [blame] | 113 | static int it8716f_spi_chip_write_256(struct flashctx *flash, uint8_t *buf, |
Stefan Tauner | c69c9c8 | 2011-11-23 09:13:48 +0000 | [diff] [blame] | 114 | unsigned int start, unsigned int len); |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 115 | |
| 116 | static const struct spi_programmer spi_programmer_it87xx = { |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 117 | .type = SPI_CONTROLLER_IT87XX, |
| 118 | .max_data_read = MAX_DATA_UNSPECIFIED, |
| 119 | .max_data_write = MAX_DATA_UNSPECIFIED, |
| 120 | .command = it8716f_spi_send_command, |
| 121 | .multicommand = default_spi_send_multicommand, |
| 122 | .read = it8716f_spi_chip_read, |
| 123 | .write_256 = it8716f_spi_chip_write_256, |
Nico Huber | 7bca126 | 2012-06-15 22:28:12 +0000 | [diff] [blame] | 124 | .write_aai = default_spi_write_aai, |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 125 | }; |
| 126 | |
Carl-Daniel Hailfinger | 76d4b37 | 2010-07-10 16:56:32 +0000 | [diff] [blame] | 127 | static uint16_t it87spi_probe(uint16_t port) |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 128 | { |
| 129 | uint8_t tmp = 0; |
Carl-Daniel Hailfinger | bb297f7 | 2009-07-11 18:05:42 +0000 | [diff] [blame] | 130 | char *portpos = NULL; |
Carl-Daniel Hailfinger | 14e100c | 2009-12-22 23:42:04 +0000 | [diff] [blame] | 131 | uint16_t flashport = 0; |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 132 | |
Carl-Daniel Hailfinger | 76d4b37 | 2010-07-10 16:56:32 +0000 | [diff] [blame] | 133 | enter_conf_mode_ite(port); |
| 134 | /* NOLDN, reg 0x24, mask out lowest bit (suspend) */ |
| 135 | tmp = sio_read(port, 0x24) & 0xFE; |
Carl-Daniel Hailfinger | 2e68160 | 2011-09-08 00:00:29 +0000 | [diff] [blame] | 136 | /* Check if LPC->SPI translation is active. */ |
| 137 | if (!(tmp & 0x0e)) { |
Carl-Daniel Hailfinger | 76d4b37 | 2010-07-10 16:56:32 +0000 | [diff] [blame] | 138 | msg_pdbg("No IT87* serial flash segment enabled.\n"); |
| 139 | exit_conf_mode_ite(port); |
| 140 | /* Nothing to do. */ |
Carl-Daniel Hailfinger | bfecef6 | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 141 | return 0; |
Carl-Daniel Hailfinger | 76d4b37 | 2010-07-10 16:56:32 +0000 | [diff] [blame] | 142 | } |
| 143 | msg_pdbg("Serial flash segment 0x%08x-0x%08x %sabled\n", |
| 144 | 0xFFFE0000, 0xFFFFFFFF, (tmp & 1 << 1) ? "en" : "dis"); |
| 145 | msg_pdbg("Serial flash segment 0x%08x-0x%08x %sabled\n", |
| 146 | 0x000E0000, 0x000FFFFF, (tmp & 1 << 1) ? "en" : "dis"); |
| 147 | msg_pdbg("Serial flash segment 0x%08x-0x%08x %sabled\n", |
| 148 | 0xFFEE0000, 0xFFEFFFFF, (tmp & 1 << 2) ? "en" : "dis"); |
| 149 | msg_pdbg("Serial flash segment 0x%08x-0x%08x %sabled\n", |
| 150 | 0xFFF80000, 0xFFFEFFFF, (tmp & 1 << 3) ? "en" : "dis"); |
| 151 | msg_pdbg("LPC write to serial flash %sabled\n", |
| 152 | (tmp & 1 << 4) ? "en" : "dis"); |
| 153 | /* The LPC->SPI force write enable below only makes sense for |
| 154 | * non-programmer mode. |
| 155 | */ |
| 156 | /* If any serial flash segment is enabled, enable writing. */ |
| 157 | if ((tmp & 0xe) && (!(tmp & 1 << 4))) { |
| 158 | msg_pdbg("Enabling LPC write to serial flash\n"); |
| 159 | tmp |= 1 << 4; |
| 160 | sio_write(port, 0x24, tmp); |
| 161 | } |
| 162 | msg_pdbg("Serial flash pin %i\n", (tmp & 1 << 5) ? 87 : 29); |
| 163 | /* LDN 0x7, reg 0x64/0x65 */ |
| 164 | sio_write(port, 0x07, 0x7); |
| 165 | flashport = sio_read(port, 0x64) << 8; |
| 166 | flashport |= sio_read(port, 0x65); |
| 167 | msg_pdbg("Serial flash port 0x%04x\n", flashport); |
| 168 | /* Non-default port requested? */ |
| 169 | portpos = extract_programmer_param("it87spiport"); |
| 170 | if (portpos) { |
| 171 | char *endptr = NULL; |
| 172 | unsigned long forced_flashport; |
| 173 | forced_flashport = strtoul(portpos, &endptr, 0); |
| 174 | /* Port 0, port >0x1000, unaligned ports and garbage strings |
| 175 | * are rejected. |
Carl-Daniel Hailfinger | 01f3ef4 | 2010-03-25 02:50:40 +0000 | [diff] [blame] | 176 | */ |
Carl-Daniel Hailfinger | 76d4b37 | 2010-07-10 16:56:32 +0000 | [diff] [blame] | 177 | if (!forced_flashport || (forced_flashport >= 0x1000) || |
| 178 | (forced_flashport & 0x7) || (*endptr != '\0')) { |
| 179 | /* Using ports below 0x100 is a really bad idea, and |
| 180 | * should only be done if no port between 0x100 and |
| 181 | * 0xff8 works due to routing issues. |
| 182 | */ |
| 183 | msg_perr("Error: it87spiport specified, but no valid " |
| 184 | "port specified.\nPort must be a multiple of " |
| 185 | "0x8 and lie between 0x100 and 0xff8.\n"); |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 186 | free(portpos); |
Carl-Daniel Hailfinger | bfecef6 | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 187 | return 1; |
Carl-Daniel Hailfinger | 76d4b37 | 2010-07-10 16:56:32 +0000 | [diff] [blame] | 188 | } else { |
| 189 | flashport = (uint16_t)forced_flashport; |
| 190 | msg_pinfo("Forcing serial flash port 0x%04x\n", |
| 191 | flashport); |
| 192 | sio_write(port, 0x64, (flashport >> 8)); |
| 193 | sio_write(port, 0x65, (flashport & 0xff)); |
Carl-Daniel Hailfinger | bb297f7 | 2009-07-11 18:05:42 +0000 | [diff] [blame] | 194 | } |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 195 | } |
Carl-Daniel Hailfinger | 76d4b37 | 2010-07-10 16:56:32 +0000 | [diff] [blame] | 196 | free(portpos); |
| 197 | exit_conf_mode_ite(port); |
| 198 | it8716f_flashport = flashport; |
Carl-Daniel Hailfinger | eaacd2d | 2011-11-09 23:40:00 +0000 | [diff] [blame] | 199 | if (internal_buses_supported & BUS_SPI) |
Carl-Daniel Hailfinger | 76d4b37 | 2010-07-10 16:56:32 +0000 | [diff] [blame] | 200 | msg_pdbg("Overriding chipset SPI with IT87 SPI.\n"); |
Carl-Daniel Hailfinger | bfecef6 | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 201 | /* FIXME: Add the SPI bus or replace the other buses with it? */ |
Michael Karcher | b9dbe48 | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 202 | register_spi_programmer(&spi_programmer_it87xx); |
Carl-Daniel Hailfinger | 76d4b37 | 2010-07-10 16:56:32 +0000 | [diff] [blame] | 203 | return 0; |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 204 | } |
| 205 | |
Carl-Daniel Hailfinger | 76d4b37 | 2010-07-10 16:56:32 +0000 | [diff] [blame] | 206 | int init_superio_ite(void) |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 207 | { |
Carl-Daniel Hailfinger | 082c8b5 | 2011-08-15 19:54:20 +0000 | [diff] [blame] | 208 | int i; |
| 209 | int ret = 0; |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 210 | |
Carl-Daniel Hailfinger | bfecef6 | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 211 | for (i = 0; i < superio_count; i++) { |
| 212 | if (superios[i].vendor != SUPERIO_VENDOR_ITE) |
| 213 | continue; |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 214 | |
Carl-Daniel Hailfinger | bfecef6 | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 215 | switch (superios[i].model) { |
| 216 | case 0x8500: |
| 217 | case 0x8502: |
| 218 | case 0x8510: |
| 219 | case 0x8511: |
| 220 | case 0x8512: |
| 221 | /* FIXME: This should be enabled, but we need a check |
| 222 | * for laptop whitelisting due to the amount of things |
| 223 | * which can go wrong if the EC firmware does not |
| 224 | * implement the interface we want. |
| 225 | */ |
| 226 | //it85xx_spi_init(superios[i]); |
| 227 | break; |
| 228 | case 0x8705: |
| 229 | ret |= it8705f_write_enable(superios[i].port); |
| 230 | break; |
| 231 | case 0x8716: |
| 232 | case 0x8718: |
| 233 | case 0x8720: |
| 234 | ret |= it87spi_probe(superios[i].port); |
| 235 | break; |
| 236 | default: |
| 237 | msg_pdbg("Super I/O ID 0x%04hx is not on the list of " |
| 238 | "flash capable controllers.\n", |
| 239 | superios[i].model); |
| 240 | } |
Carl-Daniel Hailfinger | 34cc6cc | 2009-06-28 10:57:58 +0000 | [diff] [blame] | 241 | } |
Carl-Daniel Hailfinger | b22918c | 2009-06-01 02:08:58 +0000 | [diff] [blame] | 242 | return ret; |
Carl-Daniel Hailfinger | b8afecd | 2009-05-31 18:00:57 +0000 | [diff] [blame] | 243 | } |
| 244 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 245 | /* |
| 246 | * The IT8716F only supports commands with length 1,2,4,5 bytes including |
| 247 | * command byte and can not read more than 3 bytes from the device. |
| 248 | * |
| 249 | * This function expects writearr[0] to be the first byte sent to the device, |
| 250 | * whereas the IT8716F splits commands internally into address and non-address |
| 251 | * commands with the address in inverse wire order. That's why the register |
| 252 | * ordering in case 4 and 5 may seem strange. |
| 253 | */ |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 254 | static int it8716f_spi_send_command(struct flashctx *flash, |
| 255 | unsigned int writecnt, unsigned int readcnt, |
| 256 | const unsigned char *writearr, |
| 257 | unsigned char *readarr) |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 258 | { |
| 259 | uint8_t busy, writeenc; |
| 260 | int i; |
| 261 | |
| 262 | do { |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 263 | busy = INB(it8716f_flashport) & 0x80; |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 264 | } while (busy); |
| 265 | if (readcnt > 3) { |
Sean Nelson | 01e532d | 2010-01-10 01:09:58 +0000 | [diff] [blame] | 266 | msg_pinfo("%s called with unsupported readcnt %i.\n", |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 267 | __func__, readcnt); |
Carl-Daniel Hailfinger | 142e30f | 2009-07-14 10:26:56 +0000 | [diff] [blame] | 268 | return SPI_INVALID_LENGTH; |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 269 | } |
| 270 | switch (writecnt) { |
| 271 | case 1: |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 272 | OUTB(writearr[0], it8716f_flashport + 1); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 273 | writeenc = 0x0; |
| 274 | break; |
| 275 | case 2: |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 276 | OUTB(writearr[0], it8716f_flashport + 1); |
| 277 | OUTB(writearr[1], it8716f_flashport + 7); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 278 | writeenc = 0x1; |
| 279 | break; |
| 280 | case 4: |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 281 | OUTB(writearr[0], it8716f_flashport + 1); |
| 282 | OUTB(writearr[1], it8716f_flashport + 4); |
| 283 | OUTB(writearr[2], it8716f_flashport + 3); |
| 284 | OUTB(writearr[3], it8716f_flashport + 2); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 285 | writeenc = 0x2; |
| 286 | break; |
| 287 | case 5: |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 288 | OUTB(writearr[0], it8716f_flashport + 1); |
| 289 | OUTB(writearr[1], it8716f_flashport + 4); |
| 290 | OUTB(writearr[2], it8716f_flashport + 3); |
| 291 | OUTB(writearr[3], it8716f_flashport + 2); |
| 292 | OUTB(writearr[4], it8716f_flashport + 7); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 293 | writeenc = 0x3; |
| 294 | break; |
| 295 | default: |
Sean Nelson | 01e532d | 2010-01-10 01:09:58 +0000 | [diff] [blame] | 296 | msg_pinfo("%s called with unsupported writecnt %i.\n", |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 297 | __func__, writecnt); |
Carl-Daniel Hailfinger | 142e30f | 2009-07-14 10:26:56 +0000 | [diff] [blame] | 298 | return SPI_INVALID_LENGTH; |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 299 | } |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 300 | /* |
| 301 | * Start IO, 33 or 16 MHz, readcnt input bytes, writecnt output bytes. |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 302 | * Note: |
| 303 | * We can't use writecnt directly, but have to use a strange encoding. |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 304 | */ |
| 305 | OUTB(((0x4 + (fast_spi ? 1 : 0)) << 4) |
| 306 | | ((readcnt & 0x3) << 2) | (writeenc), it8716f_flashport); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 307 | |
| 308 | if (readcnt > 0) { |
| 309 | do { |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 310 | busy = INB(it8716f_flashport) & 0x80; |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 311 | } while (busy); |
| 312 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 313 | for (i = 0; i < readcnt; i++) |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 314 | readarr[i] = INB(it8716f_flashport + 5 + i); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 315 | } |
| 316 | |
| 317 | return 0; |
| 318 | } |
| 319 | |
| 320 | /* Page size is usually 256 bytes */ |
Carl-Daniel Hailfinger | 63fd902 | 2011-12-14 22:25:15 +0000 | [diff] [blame] | 321 | static int it8716f_spi_page_program(struct flashctx *flash, uint8_t *buf, |
Stefan Tauner | c69c9c8 | 2011-11-23 09:13:48 +0000 | [diff] [blame] | 322 | unsigned int start) |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 323 | { |
Stefan Tauner | c69c9c8 | 2011-11-23 09:13:48 +0000 | [diff] [blame] | 324 | unsigned int i; |
| 325 | int result; |
Carl-Daniel Hailfinger | bb297f7 | 2009-07-11 18:05:42 +0000 | [diff] [blame] | 326 | chipaddr bios = flash->virtual_memory; |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 327 | |
Carl-Daniel Hailfinger | 8a3c60c | 2011-12-18 15:01:24 +0000 | [diff] [blame] | 328 | result = spi_write_enable(flash); |
Carl-Daniel Hailfinger | 03adbe1 | 2009-05-09 02:09:45 +0000 | [diff] [blame] | 329 | if (result) |
| 330 | return result; |
Carl-Daniel Hailfinger | 2f1b36f | 2009-07-12 12:06:18 +0000 | [diff] [blame] | 331 | /* FIXME: The command below seems to be redundant or wrong. */ |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 332 | OUTB(0x06, it8716f_flashport + 1); |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 333 | OUTB(((2 + (fast_spi ? 1 : 0)) << 4), it8716f_flashport); |
Uwe Hermann | 91f4afa | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 334 | for (i = 0; i < flash->page_size; i++) |
Carl-Daniel Hailfinger | ccd71c2 | 2012-03-01 22:38:27 +0000 | [diff] [blame] | 335 | mmio_writeb(buf[i], (void *)(bios + start + i)); |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 336 | OUTB(0, it8716f_flashport); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 337 | /* Wait until the Write-In-Progress bit is cleared. |
| 338 | * This usually takes 1-10 ms, so wait in 1 ms steps. |
| 339 | */ |
Stefan Tauner | 5e695ab | 2012-05-06 17:03:40 +0000 | [diff] [blame] | 340 | while (spi_read_status_register(flash) & SPI_SR_WIP) |
Carl-Daniel Hailfinger | ca8bfc6 | 2009-06-05 17:48:08 +0000 | [diff] [blame] | 341 | programmer_delay(1000); |
Carl-Daniel Hailfinger | 03adbe1 | 2009-05-09 02:09:45 +0000 | [diff] [blame] | 342 | return 0; |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 343 | } |
| 344 | |
| 345 | /* |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 346 | * IT8716F only allows maximum of 512 kb SPI mapped to LPC memory cycles |
| 347 | * Need to read this big flash using firmware cycles 3 byte at a time. |
| 348 | */ |
Carl-Daniel Hailfinger | 63fd902 | 2011-12-14 22:25:15 +0000 | [diff] [blame] | 349 | static int it8716f_spi_chip_read(struct flashctx *flash, uint8_t *buf, |
Stefan Tauner | c69c9c8 | 2011-11-23 09:13:48 +0000 | [diff] [blame] | 350 | unsigned int start, unsigned int len) |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 351 | { |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 352 | fast_spi = 0; |
| 353 | |
Carl-Daniel Hailfinger | bfecef6 | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 354 | /* FIXME: Check if someone explicitly requested to use IT87 SPI although |
| 355 | * the mainboard does not use IT87 SPI translation. This should be done |
| 356 | * via a programmer parameter for the internal programmer. |
| 357 | */ |
| 358 | if ((flash->total_size * 1024 > 512 * 1024)) { |
Carl-Daniel Hailfinger | cbf563c | 2009-06-16 08:55:44 +0000 | [diff] [blame] | 359 | spi_read_chunked(flash, buf, start, len, 3); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 360 | } else { |
Carl-Daniel Hailfinger | ccd71c2 | 2012-03-01 22:38:27 +0000 | [diff] [blame] | 361 | mmio_readn((void *)(flash->virtual_memory + start), buf, len); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 362 | } |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 363 | |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 364 | return 0; |
| 365 | } |
| 366 | |
Carl-Daniel Hailfinger | 63fd902 | 2011-12-14 22:25:15 +0000 | [diff] [blame] | 367 | static int it8716f_spi_chip_write_256(struct flashctx *flash, uint8_t *buf, |
Stefan Tauner | c69c9c8 | 2011-11-23 09:13:48 +0000 | [diff] [blame] | 368 | unsigned int start, unsigned int len) |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 369 | { |
Carl-Daniel Hailfinger | 96930c3 | 2009-05-09 02:30:21 +0000 | [diff] [blame] | 370 | /* |
| 371 | * IT8716F only allows maximum of 512 kb SPI chip size for memory |
Carl-Daniel Hailfinger | ccfe0ac | 2010-10-27 22:07:11 +0000 | [diff] [blame] | 372 | * mapped access. It also can't write more than 1+3+256 bytes at once, |
| 373 | * so page_size > 256 bytes needs a fallback. |
| 374 | * FIXME: Split too big page writes into chunks IT87* can handle instead |
| 375 | * of degrading to single-byte program. |
Carl-Daniel Hailfinger | bfecef6 | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 376 | * FIXME: Check if someone explicitly requested to use IT87 SPI although |
| 377 | * the mainboard does not use IT87 SPI translation. This should be done |
| 378 | * via a programmer parameter for the internal programmer. |
Carl-Daniel Hailfinger | 96930c3 | 2009-05-09 02:30:21 +0000 | [diff] [blame] | 379 | */ |
Carl-Daniel Hailfinger | bfecef6 | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 380 | if ((flash->total_size * 1024 > 512 * 1024) || |
Carl-Daniel Hailfinger | 75a58f9 | 2010-10-13 22:26:56 +0000 | [diff] [blame] | 381 | (flash->page_size > 256)) { |
| 382 | spi_chip_write_1(flash, buf, start, len); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 383 | } else { |
Stefan Tauner | c69c9c8 | 2011-11-23 09:13:48 +0000 | [diff] [blame] | 384 | unsigned int lenhere; |
Carl-Daniel Hailfinger | 9a795d8 | 2010-07-14 16:19:05 +0000 | [diff] [blame] | 385 | |
Carl-Daniel Hailfinger | 75a58f9 | 2010-10-13 22:26:56 +0000 | [diff] [blame] | 386 | if (start % flash->page_size) { |
Carl-Daniel Hailfinger | ccfe0ac | 2010-10-27 22:07:11 +0000 | [diff] [blame] | 387 | /* start to the end of the page or to start + len, |
| 388 | * whichever is smaller. |
Carl-Daniel Hailfinger | 9a795d8 | 2010-07-14 16:19:05 +0000 | [diff] [blame] | 389 | */ |
Carl-Daniel Hailfinger | 75a58f9 | 2010-10-13 22:26:56 +0000 | [diff] [blame] | 390 | lenhere = min(len, flash->page_size - start % flash->page_size); |
| 391 | spi_chip_write_1(flash, buf, start, lenhere); |
Carl-Daniel Hailfinger | 9a795d8 | 2010-07-14 16:19:05 +0000 | [diff] [blame] | 392 | start += lenhere; |
| 393 | len -= lenhere; |
| 394 | buf += lenhere; |
Carl-Daniel Hailfinger | 116081a | 2009-08-10 02:29:21 +0000 | [diff] [blame] | 395 | } |
Carl-Daniel Hailfinger | 9a795d8 | 2010-07-14 16:19:05 +0000 | [diff] [blame] | 396 | |
Carl-Daniel Hailfinger | 75a58f9 | 2010-10-13 22:26:56 +0000 | [diff] [blame] | 397 | while (len >= flash->page_size) { |
Carl-Daniel Hailfinger | 9a795d8 | 2010-07-14 16:19:05 +0000 | [diff] [blame] | 398 | it8716f_spi_page_program(flash, buf, start); |
Carl-Daniel Hailfinger | 75a58f9 | 2010-10-13 22:26:56 +0000 | [diff] [blame] | 399 | start += flash->page_size; |
| 400 | len -= flash->page_size; |
| 401 | buf += flash->page_size; |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 402 | } |
Carl-Daniel Hailfinger | 9a795d8 | 2010-07-14 16:19:05 +0000 | [diff] [blame] | 403 | if (len) |
Carl-Daniel Hailfinger | 75a58f9 | 2010-10-13 22:26:56 +0000 | [diff] [blame] | 404 | spi_chip_write_1(flash, buf, start, len); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 405 | } |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 406 | |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 407 | return 0; |
| 408 | } |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 409 | |
| 410 | #endif |