hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the flashrom project. |
| 3 | * |
hailfinger | 4500b08 | 2009-07-11 18:05:42 +0000 | [diff] [blame] | 4 | * Copyright (C) 2007, 2008, 2009 Carl-Daniel Hailfinger |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 5 | * Copyright (C) 2008 Ronald Hoogenboom <ronald@zonnet.nl> |
stepan | 3bdf618 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 6 | * Copyright (C) 2008 coresystems GmbH |
hailfinger | 2c361e4 | 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. |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 16 | */ |
| 17 | |
| 18 | /* |
| 19 | * Contains the ITE IT87* SPI specific routines |
| 20 | */ |
| 21 | |
hailfinger | 324a9cc | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 22 | #if defined(__i386__) || defined(__x86_64__) |
| 23 | |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 24 | #include <string.h> |
hailfinger | 4500b08 | 2009-07-11 18:05:42 +0000 | [diff] [blame] | 25 | #include <stdlib.h> |
Patrick Georgi | 048dbdb | 2017-04-11 20:45:07 +0200 | [diff] [blame] | 26 | #include <errno.h> |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 27 | #include "flash.h" |
snelson | 8913d08 | 2010-02-26 05:48:29 +0000 | [diff] [blame] | 28 | #include "chipdrivers.h" |
hailfinger | 428f685 | 2010-07-27 22:41:39 +0000 | [diff] [blame] | 29 | #include "programmer.h" |
Patrick Georgi | 048dbdb | 2017-04-11 20:45:07 +0200 | [diff] [blame] | 30 | #include "hwaccess.h" |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 31 | #include "spi.h" |
| 32 | |
| 33 | #define ITE_SUPERIO_PORT1 0x2e |
| 34 | #define ITE_SUPERIO_PORT2 0x4e |
| 35 | |
Patrick Georgi | 048dbdb | 2017-04-11 20:45:07 +0200 | [diff] [blame] | 36 | static uint16_t it8716f_flashport = 0; |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 37 | /* use fast 33MHz SPI (<>0) or slow 16MHz (0) */ |
hailfinger | 1ff33dc | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 38 | static int fast_spi = 1; |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 39 | |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 40 | /* Helper functions for most recent ITE IT87xx Super I/O chips */ |
| 41 | #define CHIP_ID_BYTE1_REG 0x20 |
| 42 | #define CHIP_ID_BYTE2_REG 0x21 |
hailfinger | 94e090c | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 43 | #define CHIP_VER_REG 0x22 |
hailfinger | 7bac0e5 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 44 | void enter_conf_mode_ite(uint16_t port) |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 45 | { |
hailfinger | e1f062f | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 46 | OUTB(0x87, port); |
| 47 | OUTB(0x01, port); |
| 48 | OUTB(0x55, port); |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 49 | if (port == ITE_SUPERIO_PORT1) |
hailfinger | e1f062f | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 50 | OUTB(0x55, port); |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 51 | else |
hailfinger | e1f062f | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 52 | OUTB(0xaa, port); |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 53 | } |
| 54 | |
hailfinger | 7bac0e5 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 55 | void exit_conf_mode_ite(uint16_t port) |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 56 | { |
hailfinger | 7bac0e5 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 57 | sio_write(port, 0x02, 0x02); |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 58 | } |
| 59 | |
Edward O'Callaghan | 9505295 | 2020-05-09 22:22:37 +1000 | [diff] [blame^] | 60 | static uint16_t probe_id_ite(uint16_t port) |
hailfinger | c236f9e | 2009-12-22 23:42:04 +0000 | [diff] [blame] | 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 | |
hailfinger | 94e090c | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 72 | void probe_superio_ite(void) |
hailfinger | c236f9e | 2009-12-22 23:42:04 +0000 | [diff] [blame] | 73 | { |
Patrick Georgi | 8ddfee9 | 2017-03-20 14:54:28 +0100 | [diff] [blame] | 74 | struct superio s = {0}; |
hailfinger | c236f9e | 2009-12-22 23:42:04 +0000 | [diff] [blame] | 75 | uint16_t ite_ports[] = {ITE_SUPERIO_PORT1, ITE_SUPERIO_PORT2, 0}; |
| 76 | uint16_t *i = ite_ports; |
| 77 | |
hailfinger | 94e090c | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 78 | s.vendor = SUPERIO_VENDOR_ITE; |
hailfinger | c236f9e | 2009-12-22 23:42:04 +0000 | [diff] [blame] | 79 | for (; *i; i++) { |
hailfinger | 94e090c | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 80 | s.port = *i; |
| 81 | s.model = probe_id_ite(s.port); |
| 82 | switch (s.model >> 8) { |
hailfinger | c236f9e | 2009-12-22 23:42:04 +0000 | [diff] [blame] | 83 | case 0x82: |
| 84 | case 0x86: |
| 85 | case 0x87: |
hailfinger | 94e090c | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 86 | /* FIXME: Print revision for all models? */ |
Patrick Georgi | 0548299 | 2017-03-20 21:56:33 +0100 | [diff] [blame] | 87 | msg_pdbg("Found ITE Super I/O, ID 0x%04hx on port 0x%x\n", s.model, s.port); |
hailfinger | 94e090c | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 88 | register_superio(s); |
| 89 | break; |
| 90 | case 0x85: |
Patrick Georgi | 0548299 | 2017-03-20 21:56:33 +0100 | [diff] [blame] | 91 | msg_pdbg("Found ITE EC, ID 0x%04hx, Rev 0x%02x on port 0x%x.\n", |
Edward O'Callaghan | 9505295 | 2020-05-09 22:22:37 +1000 | [diff] [blame^] | 92 | s.model, sio_read(s.port, CHIP_VER_REG), s.port); |
hailfinger | 94e090c | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 93 | register_superio(s); |
| 94 | break; |
hailfinger | c236f9e | 2009-12-22 23:42:04 +0000 | [diff] [blame] | 95 | } |
| 96 | } |
| 97 | |
hailfinger | 94e090c | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 98 | return; |
hailfinger | c236f9e | 2009-12-22 23:42:04 +0000 | [diff] [blame] | 99 | } |
| 100 | |
Patrick Georgi | 0548299 | 2017-03-20 21:56:33 +0100 | [diff] [blame] | 101 | static int it8716f_spi_send_command(const struct flashctx *flash, |
| 102 | unsigned int writecnt, unsigned int readcnt, |
| 103 | const unsigned char *writearr, |
| 104 | unsigned char *readarr); |
Souvik Ghosh | d75cd67 | 2016-06-17 14:21:39 -0700 | [diff] [blame] | 105 | static int it8716f_spi_chip_read(struct flashctx *flash, uint8_t *buf, |
stefanct | c5eb8a9 | 2011-11-23 09:13:48 +0000 | [diff] [blame] | 106 | unsigned int start, unsigned int len); |
Patrick Georgi | ab8353e | 2017-02-03 18:32:01 +0100 | [diff] [blame] | 107 | static int it8716f_spi_chip_write_256(struct flashctx *flash, const uint8_t *buf, |
stefanct | c5eb8a9 | 2011-11-23 09:13:48 +0000 | [diff] [blame] | 108 | unsigned int start, unsigned int len); |
mkarcher | d264e9e | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 109 | |
Patrick Georgi | f4f1e2f | 2017-03-10 17:38:40 +0100 | [diff] [blame] | 110 | static const struct spi_master spi_master_it87xx = { |
uwe | 8d342eb | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 111 | .type = SPI_CONTROLLER_IT87XX, |
| 112 | .max_data_read = MAX_DATA_UNSPECIFIED, |
| 113 | .max_data_write = MAX_DATA_UNSPECIFIED, |
| 114 | .command = it8716f_spi_send_command, |
| 115 | .multicommand = default_spi_send_multicommand, |
| 116 | .read = it8716f_spi_chip_read, |
| 117 | .write_256 = it8716f_spi_chip_write_256, |
Edward O'Callaghan | 04ac730 | 2020-05-14 18:03:40 +1000 | [diff] [blame] | 118 | .write_aai = spi_chip_write_1, |
mkarcher | d264e9e | 2011-05-11 17:07:07 +0000 | [diff] [blame] | 119 | }; |
| 120 | |
hailfinger | c73ce6e | 2010-07-10 16:56:32 +0000 | [diff] [blame] | 121 | static uint16_t it87spi_probe(uint16_t port) |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 122 | { |
| 123 | uint8_t tmp = 0; |
hailfinger | c236f9e | 2009-12-22 23:42:04 +0000 | [diff] [blame] | 124 | uint16_t flashport = 0; |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 125 | |
hailfinger | c73ce6e | 2010-07-10 16:56:32 +0000 | [diff] [blame] | 126 | enter_conf_mode_ite(port); |
Edward O'Callaghan | 9505295 | 2020-05-09 22:22:37 +1000 | [diff] [blame^] | 127 | |
| 128 | char *param = extract_programmer_param("dualbiosindex"); |
| 129 | if (param != NULL) { |
| 130 | sio_write(port, 0x07, 0x07); /* Select GPIO LDN */ |
| 131 | tmp = sio_read(port, 0xEF); |
| 132 | if (*param == '\0') { /* Print current setting only. */ |
| 133 | free(param); |
| 134 | } else { |
| 135 | char *dualbiosindex_suffix; |
| 136 | errno = 0; |
| 137 | long chip_index = strtol(param, &dualbiosindex_suffix, 0); |
| 138 | free(param); |
| 139 | if (errno != 0 || *dualbiosindex_suffix != '\0' || chip_index < 0 || chip_index > 1) { |
| 140 | msg_perr("DualBIOS: Invalid chip index requested - choose 0 or 1.\n"); |
| 141 | exit_conf_mode_ite(port); |
| 142 | return 1; |
| 143 | } |
| 144 | if (chip_index != (tmp & 1)) { |
| 145 | msg_pdbg("DualBIOS: Previous chip index: %d\n", tmp & 1); |
| 146 | sio_write(port, 0xEF, (tmp & 0xFE) | chip_index); |
| 147 | tmp = sio_read(port, 0xEF); |
| 148 | if ((tmp & 1) != chip_index) { |
| 149 | msg_perr("DualBIOS: Chip selection failed.\n"); |
| 150 | exit_conf_mode_ite(port); |
| 151 | return 1; |
| 152 | } |
| 153 | } |
| 154 | } |
| 155 | msg_pinfo("DualBIOS: Selected chip: %d\n", tmp & 1); |
| 156 | } |
| 157 | |
hailfinger | c73ce6e | 2010-07-10 16:56:32 +0000 | [diff] [blame] | 158 | /* NOLDN, reg 0x24, mask out lowest bit (suspend) */ |
| 159 | tmp = sio_read(port, 0x24) & 0xFE; |
hailfinger | 969e2f3 | 2011-09-08 00:00:29 +0000 | [diff] [blame] | 160 | /* Check if LPC->SPI translation is active. */ |
| 161 | if (!(tmp & 0x0e)) { |
hailfinger | c73ce6e | 2010-07-10 16:56:32 +0000 | [diff] [blame] | 162 | msg_pdbg("No IT87* serial flash segment enabled.\n"); |
| 163 | exit_conf_mode_ite(port); |
| 164 | /* Nothing to do. */ |
David Hendricks | 5e79c9f | 2013-11-04 22:05:08 -0800 | [diff] [blame] | 165 | return 1; |
hailfinger | c73ce6e | 2010-07-10 16:56:32 +0000 | [diff] [blame] | 166 | } |
| 167 | msg_pdbg("Serial flash segment 0x%08x-0x%08x %sabled\n", |
| 168 | 0xFFFE0000, 0xFFFFFFFF, (tmp & 1 << 1) ? "en" : "dis"); |
| 169 | msg_pdbg("Serial flash segment 0x%08x-0x%08x %sabled\n", |
| 170 | 0x000E0000, 0x000FFFFF, (tmp & 1 << 1) ? "en" : "dis"); |
| 171 | msg_pdbg("Serial flash segment 0x%08x-0x%08x %sabled\n", |
| 172 | 0xFFEE0000, 0xFFEFFFFF, (tmp & 1 << 2) ? "en" : "dis"); |
| 173 | msg_pdbg("Serial flash segment 0x%08x-0x%08x %sabled\n", |
| 174 | 0xFFF80000, 0xFFFEFFFF, (tmp & 1 << 3) ? "en" : "dis"); |
| 175 | msg_pdbg("LPC write to serial flash %sabled\n", |
| 176 | (tmp & 1 << 4) ? "en" : "dis"); |
| 177 | /* The LPC->SPI force write enable below only makes sense for |
| 178 | * non-programmer mode. |
| 179 | */ |
| 180 | /* If any serial flash segment is enabled, enable writing. */ |
| 181 | if ((tmp & 0xe) && (!(tmp & 1 << 4))) { |
| 182 | msg_pdbg("Enabling LPC write to serial flash\n"); |
| 183 | tmp |= 1 << 4; |
| 184 | sio_write(port, 0x24, tmp); |
| 185 | } |
| 186 | msg_pdbg("Serial flash pin %i\n", (tmp & 1 << 5) ? 87 : 29); |
| 187 | /* LDN 0x7, reg 0x64/0x65 */ |
| 188 | sio_write(port, 0x07, 0x7); |
| 189 | flashport = sio_read(port, 0x64) << 8; |
| 190 | flashport |= sio_read(port, 0x65); |
| 191 | msg_pdbg("Serial flash port 0x%04x\n", flashport); |
| 192 | /* Non-default port requested? */ |
Patrick Georgi | 048dbdb | 2017-04-11 20:45:07 +0200 | [diff] [blame] | 193 | param = extract_programmer_param("it87spiport"); |
| 194 | if (param) { |
hailfinger | c73ce6e | 2010-07-10 16:56:32 +0000 | [diff] [blame] | 195 | char *endptr = NULL; |
| 196 | unsigned long forced_flashport; |
Patrick Georgi | 048dbdb | 2017-04-11 20:45:07 +0200 | [diff] [blame] | 197 | forced_flashport = strtoul(param, &endptr, 0); |
hailfinger | c73ce6e | 2010-07-10 16:56:32 +0000 | [diff] [blame] | 198 | /* Port 0, port >0x1000, unaligned ports and garbage strings |
| 199 | * are rejected. |
hailfinger | ddd5d7b | 2010-03-25 02:50:40 +0000 | [diff] [blame] | 200 | */ |
hailfinger | c73ce6e | 2010-07-10 16:56:32 +0000 | [diff] [blame] | 201 | if (!forced_flashport || (forced_flashport >= 0x1000) || |
| 202 | (forced_flashport & 0x7) || (*endptr != '\0')) { |
| 203 | /* Using ports below 0x100 is a really bad idea, and |
| 204 | * should only be done if no port between 0x100 and |
| 205 | * 0xff8 works due to routing issues. |
| 206 | */ |
| 207 | msg_perr("Error: it87spiport specified, but no valid " |
| 208 | "port specified.\nPort must be a multiple of " |
| 209 | "0x8 and lie between 0x100 and 0xff8.\n"); |
Patrick Georgi | 048dbdb | 2017-04-11 20:45:07 +0200 | [diff] [blame] | 210 | exit_conf_mode_ite(port); |
| 211 | free(param); |
hailfinger | 94e090c | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 212 | return 1; |
hailfinger | c73ce6e | 2010-07-10 16:56:32 +0000 | [diff] [blame] | 213 | } else { |
| 214 | flashport = (uint16_t)forced_flashport; |
| 215 | msg_pinfo("Forcing serial flash port 0x%04x\n", |
| 216 | flashport); |
| 217 | sio_write(port, 0x64, (flashport >> 8)); |
| 218 | sio_write(port, 0x65, (flashport & 0xff)); |
hailfinger | 4500b08 | 2009-07-11 18:05:42 +0000 | [diff] [blame] | 219 | } |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 220 | } |
Patrick Georgi | 048dbdb | 2017-04-11 20:45:07 +0200 | [diff] [blame] | 221 | free(param); |
hailfinger | c73ce6e | 2010-07-10 16:56:32 +0000 | [diff] [blame] | 222 | exit_conf_mode_ite(port); |
| 223 | it8716f_flashport = flashport; |
hailfinger | 76bb7e9 | 2011-11-09 23:40:00 +0000 | [diff] [blame] | 224 | if (internal_buses_supported & BUS_SPI) |
hailfinger | c73ce6e | 2010-07-10 16:56:32 +0000 | [diff] [blame] | 225 | msg_pdbg("Overriding chipset SPI with IT87 SPI.\n"); |
hailfinger | 94e090c | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 226 | /* FIXME: Add the SPI bus or replace the other buses with it? */ |
Patrick Georgi | f4f1e2f | 2017-03-10 17:38:40 +0100 | [diff] [blame] | 227 | register_spi_master(&spi_master_it87xx); |
hailfinger | c73ce6e | 2010-07-10 16:56:32 +0000 | [diff] [blame] | 228 | return 0; |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 229 | } |
| 230 | |
David Hendricks | ac1d25c | 2016-08-09 17:00:58 -0700 | [diff] [blame] | 231 | int init_superio_ite(void) |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 232 | { |
Patrick Georgi | 048dbdb | 2017-04-11 20:45:07 +0200 | [diff] [blame] | 233 | int i; |
| 234 | int ret = 0; |
| 235 | int chips_found = 0; |
stepan | 3bdf618 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 236 | |
hailfinger | 94e090c | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 237 | for (i = 0; i < superio_count; i++) { |
| 238 | if (superios[i].vendor != SUPERIO_VENDOR_ITE) |
| 239 | continue; |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 240 | |
hailfinger | 94e090c | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 241 | switch (superios[i].model) { |
| 242 | case 0x8500: |
| 243 | case 0x8502: |
| 244 | case 0x8510: |
| 245 | case 0x8511: |
| 246 | case 0x8512: |
| 247 | /* FIXME: This should be enabled, but we need a check |
| 248 | * for laptop whitelisting due to the amount of things |
| 249 | * which can go wrong if the EC firmware does not |
| 250 | * implement the interface we want. |
| 251 | */ |
David Hendricks | ac1d25c | 2016-08-09 17:00:58 -0700 | [diff] [blame] | 252 | if (!it85xx_spi_init(superios[i])) |
David Hendricks | 5e79c9f | 2013-11-04 22:05:08 -0800 | [diff] [blame] | 253 | chips_found++; |
hailfinger | 94e090c | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 254 | break; |
Shawn Nematbakhsh | 3404b1a | 2012-07-26 15:19:58 -0700 | [diff] [blame] | 255 | case 0x8518: |
David Hendricks | ac1d25c | 2016-08-09 17:00:58 -0700 | [diff] [blame] | 256 | if (!it8518_spi_init(superios[i])) |
David Hendricks | 5e79c9f | 2013-11-04 22:05:08 -0800 | [diff] [blame] | 257 | chips_found++; |
Shawn Nematbakhsh | 3404b1a | 2012-07-26 15:19:58 -0700 | [diff] [blame] | 258 | break; |
hailfinger | 94e090c | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 259 | case 0x8705: |
David Hendricks | 5e79c9f | 2013-11-04 22:05:08 -0800 | [diff] [blame] | 260 | if (!it8705f_write_enable(superios[i].port)) |
| 261 | chips_found++; |
hailfinger | 94e090c | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 262 | break; |
| 263 | case 0x8716: |
| 264 | case 0x8718: |
| 265 | case 0x8720: |
Edward O'Callaghan | 9505295 | 2020-05-09 22:22:37 +1000 | [diff] [blame^] | 266 | case 0x8728: |
David Hendricks | 5e79c9f | 2013-11-04 22:05:08 -0800 | [diff] [blame] | 267 | if (!it87spi_probe(superios[i].port)) |
| 268 | chips_found++; |
hailfinger | 94e090c | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 269 | break; |
| 270 | default: |
Patrick Georgi | 048dbdb | 2017-04-11 20:45:07 +0200 | [diff] [blame] | 271 | msg_pdbg2("Super I/O ID 0x%04hx is not on the list of flash-capable controllers.\n", |
| 272 | superios[i].model); |
hailfinger | 94e090c | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 273 | } |
hailfinger | d9f5da2 | 2009-06-28 10:57:58 +0000 | [diff] [blame] | 274 | } |
David Hendricks | 5e79c9f | 2013-11-04 22:05:08 -0800 | [diff] [blame] | 275 | |
| 276 | if (chips_found == 0) { |
| 277 | ret = 1; /* failed to probe/initialize/enable chip */ |
| 278 | } else if (chips_found == 1) { |
| 279 | ret = 0; /* success */ |
| 280 | } else { |
| 281 | msg_pdbg("%s: Found %d programmable ECs/SuperIOs, aborting.\n", |
| 282 | __func__, chips_found); |
| 283 | ret = 1; |
| 284 | } |
hailfinger | a916b42 | 2009-06-01 02:08:58 +0000 | [diff] [blame] | 285 | return ret; |
hailfinger | 26e212b | 2009-05-31 18:00:57 +0000 | [diff] [blame] | 286 | } |
| 287 | |
uwe | fa98ca1 | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 288 | /* |
| 289 | * The IT8716F only supports commands with length 1,2,4,5 bytes including |
| 290 | * command byte and can not read more than 3 bytes from the device. |
| 291 | * |
| 292 | * This function expects writearr[0] to be the first byte sent to the device, |
| 293 | * whereas the IT8716F splits commands internally into address and non-address |
| 294 | * commands with the address in inverse wire order. That's why the register |
| 295 | * ordering in case 4 and 5 may seem strange. |
| 296 | */ |
Patrick Georgi | 0548299 | 2017-03-20 21:56:33 +0100 | [diff] [blame] | 297 | static int it8716f_spi_send_command(const struct flashctx *flash, |
| 298 | unsigned int writecnt, unsigned int readcnt, |
| 299 | const unsigned char *writearr, |
| 300 | unsigned char *readarr) |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 301 | { |
| 302 | uint8_t busy, writeenc; |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 303 | |
| 304 | do { |
hailfinger | e1f062f | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 305 | busy = INB(it8716f_flashport) & 0x80; |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 306 | } while (busy); |
| 307 | if (readcnt > 3) { |
snelson | 55fe91c | 2010-01-10 01:09:58 +0000 | [diff] [blame] | 308 | msg_pinfo("%s called with unsupported readcnt %i.\n", |
uwe | 8d342eb | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 309 | __func__, readcnt); |
hailfinger | 9c290a7 | 2009-07-14 10:26:56 +0000 | [diff] [blame] | 310 | return SPI_INVALID_LENGTH; |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 311 | } |
| 312 | switch (writecnt) { |
| 313 | case 1: |
hailfinger | e1f062f | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 314 | OUTB(writearr[0], it8716f_flashport + 1); |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 315 | writeenc = 0x0; |
| 316 | break; |
| 317 | case 2: |
hailfinger | e1f062f | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 318 | OUTB(writearr[0], it8716f_flashport + 1); |
| 319 | OUTB(writearr[1], it8716f_flashport + 7); |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 320 | writeenc = 0x1; |
| 321 | break; |
| 322 | case 4: |
hailfinger | e1f062f | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 323 | OUTB(writearr[0], it8716f_flashport + 1); |
| 324 | OUTB(writearr[1], it8716f_flashport + 4); |
| 325 | OUTB(writearr[2], it8716f_flashport + 3); |
| 326 | OUTB(writearr[3], it8716f_flashport + 2); |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 327 | writeenc = 0x2; |
| 328 | break; |
| 329 | case 5: |
hailfinger | e1f062f | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 330 | OUTB(writearr[0], it8716f_flashport + 1); |
| 331 | OUTB(writearr[1], it8716f_flashport + 4); |
| 332 | OUTB(writearr[2], it8716f_flashport + 3); |
| 333 | OUTB(writearr[3], it8716f_flashport + 2); |
| 334 | OUTB(writearr[4], it8716f_flashport + 7); |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 335 | writeenc = 0x3; |
| 336 | break; |
| 337 | default: |
snelson | 55fe91c | 2010-01-10 01:09:58 +0000 | [diff] [blame] | 338 | msg_pinfo("%s called with unsupported writecnt %i.\n", |
uwe | 8d342eb | 2011-07-28 08:13:25 +0000 | [diff] [blame] | 339 | __func__, writecnt); |
hailfinger | 9c290a7 | 2009-07-14 10:26:56 +0000 | [diff] [blame] | 340 | return SPI_INVALID_LENGTH; |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 341 | } |
uwe | fa98ca1 | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 342 | /* |
| 343 | * Start IO, 33 or 16 MHz, readcnt input bytes, writecnt output bytes. |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 344 | * Note: |
| 345 | * We can't use writecnt directly, but have to use a strange encoding. |
uwe | fa98ca1 | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 346 | */ |
| 347 | OUTB(((0x4 + (fast_spi ? 1 : 0)) << 4) |
| 348 | | ((readcnt & 0x3) << 2) | (writeenc), it8716f_flashport); |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 349 | |
| 350 | if (readcnt > 0) { |
Edward O'Callaghan | 9505295 | 2020-05-09 22:22:37 +1000 | [diff] [blame^] | 351 | unsigned int i; |
| 352 | |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 353 | do { |
hailfinger | e1f062f | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 354 | busy = INB(it8716f_flashport) & 0x80; |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 355 | } while (busy); |
| 356 | |
uwe | fa98ca1 | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 357 | for (i = 0; i < readcnt; i++) |
hailfinger | e1f062f | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 358 | readarr[i] = INB(it8716f_flashport + 5 + i); |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 359 | } |
| 360 | |
| 361 | return 0; |
| 362 | } |
| 363 | |
| 364 | /* Page size is usually 256 bytes */ |
Patrick Georgi | 0548299 | 2017-03-20 21:56:33 +0100 | [diff] [blame] | 365 | static int it8716f_spi_page_program(struct flashctx *flash, const uint8_t *buf, unsigned int start) |
uwe | fa98ca1 | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 366 | { |
stefanct | c5eb8a9 | 2011-11-23 09:13:48 +0000 | [diff] [blame] | 367 | unsigned int i; |
| 368 | int result; |
hailfinger | 4500b08 | 2009-07-11 18:05:42 +0000 | [diff] [blame] | 369 | chipaddr bios = flash->virtual_memory; |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 370 | |
Souvik Ghosh | d75cd67 | 2016-06-17 14:21:39 -0700 | [diff] [blame] | 371 | result = spi_write_enable(flash); |
hailfinger | 6194994 | 2009-05-09 02:09:45 +0000 | [diff] [blame] | 372 | if (result) |
| 373 | return result; |
hailfinger | ec9334b | 2009-07-12 12:06:18 +0000 | [diff] [blame] | 374 | /* FIXME: The command below seems to be redundant or wrong. */ |
uwe | fa98ca1 | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 375 | OUTB(0x06, it8716f_flashport + 1); |
hailfinger | e1f062f | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 376 | OUTB(((2 + (fast_spi ? 1 : 0)) << 4), it8716f_flashport); |
Patrick Georgi | f3fa299 | 2017-02-02 16:24:44 +0100 | [diff] [blame] | 377 | for (i = 0; i < flash->chip->page_size; i++) |
Souvik Ghosh | d75cd67 | 2016-06-17 14:21:39 -0700 | [diff] [blame] | 378 | chip_writeb(flash, buf[i], bios + start + i); |
hailfinger | e1f062f | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 379 | OUTB(0, it8716f_flashport); |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 380 | /* Wait until the Write-In-Progress bit is cleared. |
| 381 | * This usually takes 1-10 ms, so wait in 1 ms steps. |
| 382 | */ |
Edward O'Callaghan | 8b5e473 | 2019-03-05 15:27:53 +1100 | [diff] [blame] | 383 | while (spi_read_status_register(flash) & SPI_SR_WIP) |
hailfinger | e5829f6 | 2009-06-05 17:48:08 +0000 | [diff] [blame] | 384 | programmer_delay(1000); |
hailfinger | 6194994 | 2009-05-09 02:09:45 +0000 | [diff] [blame] | 385 | return 0; |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 386 | } |
| 387 | |
| 388 | /* |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 389 | * IT8716F only allows maximum of 512 kb SPI mapped to LPC memory cycles |
| 390 | * Need to read this big flash using firmware cycles 3 byte at a time. |
| 391 | */ |
Souvik Ghosh | d75cd67 | 2016-06-17 14:21:39 -0700 | [diff] [blame] | 392 | static int it8716f_spi_chip_read(struct flashctx *flash, uint8_t *buf, |
stefanct | c5eb8a9 | 2011-11-23 09:13:48 +0000 | [diff] [blame] | 393 | unsigned int start, unsigned int len) |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 394 | { |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 395 | fast_spi = 0; |
| 396 | |
hailfinger | 94e090c | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 397 | /* FIXME: Check if someone explicitly requested to use IT87 SPI although |
| 398 | * the mainboard does not use IT87 SPI translation. This should be done |
| 399 | * via a programmer parameter for the internal programmer. |
| 400 | */ |
Patrick Georgi | f3fa299 | 2017-02-02 16:24:44 +0100 | [diff] [blame] | 401 | if ((flash->chip->total_size * 1024 > 512 * 1024)) { |
hailfinger | 0f08b7a | 2009-06-16 08:55:44 +0000 | [diff] [blame] | 402 | spi_read_chunked(flash, buf, start, len, 3); |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 403 | } else { |
hailfinger | 0f08b7a | 2009-06-16 08:55:44 +0000 | [diff] [blame] | 404 | read_memmapped(flash, buf, start, len); |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 405 | } |
uwe | fa98ca1 | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 406 | |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 407 | return 0; |
| 408 | } |
| 409 | |
Patrick Georgi | ab8353e | 2017-02-03 18:32:01 +0100 | [diff] [blame] | 410 | static int it8716f_spi_chip_write_256(struct flashctx *flash, const uint8_t *buf, |
stefanct | c5eb8a9 | 2011-11-23 09:13:48 +0000 | [diff] [blame] | 411 | unsigned int start, unsigned int len) |
uwe | fa98ca1 | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 412 | { |
Patrick Georgi | 048dbdb | 2017-04-11 20:45:07 +0200 | [diff] [blame] | 413 | const struct flashchip *chip = flash->chip; |
hailfinger | ed063f5 | 2009-05-09 02:30:21 +0000 | [diff] [blame] | 414 | /* |
| 415 | * IT8716F only allows maximum of 512 kb SPI chip size for memory |
hailfinger | def852d | 2010-10-27 22:07:11 +0000 | [diff] [blame] | 416 | * mapped access. It also can't write more than 1+3+256 bytes at once, |
| 417 | * so page_size > 256 bytes needs a fallback. |
| 418 | * FIXME: Split too big page writes into chunks IT87* can handle instead |
| 419 | * of degrading to single-byte program. |
hailfinger | 94e090c | 2011-04-27 14:34:08 +0000 | [diff] [blame] | 420 | * FIXME: Check if someone explicitly requested to use IT87 SPI although |
| 421 | * the mainboard does not use IT87 SPI translation. This should be done |
| 422 | * via a programmer parameter for the internal programmer. |
hailfinger | ed063f5 | 2009-05-09 02:30:21 +0000 | [diff] [blame] | 423 | */ |
Patrick Georgi | 048dbdb | 2017-04-11 20:45:07 +0200 | [diff] [blame] | 424 | if ((chip->total_size * 1024 > 512 * 1024) || (chip->page_size > 256)) { |
hailfinger | 71e1bd4 | 2010-10-13 22:26:56 +0000 | [diff] [blame] | 425 | spi_chip_write_1(flash, buf, start, len); |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 426 | } else { |
stefanct | c5eb8a9 | 2011-11-23 09:13:48 +0000 | [diff] [blame] | 427 | unsigned int lenhere; |
hailfinger | c7d06c6 | 2010-07-14 16:19:05 +0000 | [diff] [blame] | 428 | |
Patrick Georgi | 048dbdb | 2017-04-11 20:45:07 +0200 | [diff] [blame] | 429 | if (start % chip->page_size) { |
hailfinger | def852d | 2010-10-27 22:07:11 +0000 | [diff] [blame] | 430 | /* start to the end of the page or to start + len, |
| 431 | * whichever is smaller. |
hailfinger | c7d06c6 | 2010-07-14 16:19:05 +0000 | [diff] [blame] | 432 | */ |
Patrick Georgi | 048dbdb | 2017-04-11 20:45:07 +0200 | [diff] [blame] | 433 | lenhere = min(len, chip->page_size - start % chip->page_size); |
hailfinger | 71e1bd4 | 2010-10-13 22:26:56 +0000 | [diff] [blame] | 434 | spi_chip_write_1(flash, buf, start, lenhere); |
hailfinger | c7d06c6 | 2010-07-14 16:19:05 +0000 | [diff] [blame] | 435 | start += lenhere; |
| 436 | len -= lenhere; |
| 437 | buf += lenhere; |
hailfinger | e8b674c | 2009-08-10 02:29:21 +0000 | [diff] [blame] | 438 | } |
hailfinger | c7d06c6 | 2010-07-14 16:19:05 +0000 | [diff] [blame] | 439 | |
Patrick Georgi | 048dbdb | 2017-04-11 20:45:07 +0200 | [diff] [blame] | 440 | while (len >= chip->page_size) { |
hailfinger | c7d06c6 | 2010-07-14 16:19:05 +0000 | [diff] [blame] | 441 | it8716f_spi_page_program(flash, buf, start); |
Patrick Georgi | 048dbdb | 2017-04-11 20:45:07 +0200 | [diff] [blame] | 442 | start += chip->page_size; |
| 443 | len -= chip->page_size; |
| 444 | buf += chip->page_size; |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 445 | } |
hailfinger | c7d06c6 | 2010-07-14 16:19:05 +0000 | [diff] [blame] | 446 | if (len) |
hailfinger | 71e1bd4 | 2010-10-13 22:26:56 +0000 | [diff] [blame] | 447 | spi_chip_write_1(flash, buf, start, len); |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 448 | } |
uwe | fa98ca1 | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 449 | |
hailfinger | 2c361e4 | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 450 | return 0; |
| 451 | } |
hailfinger | 324a9cc | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 452 | |
| 453 | #endif |