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 | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 32 | #include "spi.h" |
| 33 | |
| 34 | #define ITE_SUPERIO_PORT1 0x2e |
| 35 | #define ITE_SUPERIO_PORT2 0x4e |
| 36 | |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 37 | uint16_t it8716f_flashport = 0; |
| 38 | /* use fast 33MHz SPI (<>0) or slow 16MHz (0) */ |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 39 | static int fast_spi = 1; |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 40 | |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 41 | /* Helper functions for most recent ITE IT87xx Super I/O chips */ |
| 42 | #define CHIP_ID_BYTE1_REG 0x20 |
| 43 | #define CHIP_ID_BYTE2_REG 0x21 |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 44 | void enter_conf_mode_ite(uint16_t port) |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 45 | { |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 46 | OUTB(0x87, port); |
| 47 | OUTB(0x01, port); |
| 48 | OUTB(0x55, port); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 49 | if (port == ITE_SUPERIO_PORT1) |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 50 | OUTB(0x55, port); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 51 | else |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 52 | OUTB(0xaa, port); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 53 | } |
| 54 | |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 55 | void exit_conf_mode_ite(uint16_t port) |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 56 | { |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 57 | sio_write(port, 0x02, 0x02); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 58 | } |
| 59 | |
Carl-Daniel Hailfinger | 14e100c | 2009-12-22 23:42:04 +0000 | [diff] [blame] | 60 | uint16_t probe_id_ite(uint16_t port) |
| 61 | { |
| 62 | uint16_t id; |
| 63 | |
| 64 | enter_conf_mode_ite(port); |
| 65 | id = sio_read(port, CHIP_ID_BYTE1_REG) << 8; |
| 66 | id |= sio_read(port, CHIP_ID_BYTE2_REG); |
| 67 | exit_conf_mode_ite(port); |
| 68 | |
| 69 | return id; |
| 70 | } |
| 71 | |
| 72 | struct superio probe_superio_ite(void) |
| 73 | { |
| 74 | struct superio ret = {}; |
| 75 | uint16_t ite_ports[] = {ITE_SUPERIO_PORT1, ITE_SUPERIO_PORT2, 0}; |
| 76 | uint16_t *i = ite_ports; |
| 77 | |
| 78 | ret.vendor = SUPERIO_VENDOR_ITE; |
| 79 | for (; *i; i++) { |
| 80 | ret.port = *i; |
| 81 | ret.model = probe_id_ite(ret.port); |
| 82 | switch (ret.model >> 8) { |
| 83 | case 0x82: |
| 84 | case 0x86: |
| 85 | case 0x87: |
Uwe Hermann | 4395970 | 2010-03-13 17:28:29 +0000 | [diff] [blame] | 86 | msg_pinfo("Found ITE Super I/O, id %04hx\n", |
Carl-Daniel Hailfinger | 14e100c | 2009-12-22 23:42:04 +0000 | [diff] [blame] | 87 | ret.model); |
| 88 | return ret; |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | /* No good ID found. */ |
| 93 | ret.vendor = SUPERIO_VENDOR_NONE; |
| 94 | ret.port = 0; |
| 95 | ret.model = 0; |
| 96 | return ret; |
| 97 | } |
| 98 | |
Carl-Daniel Hailfinger | 76d4b37 | 2010-07-10 16:56:32 +0000 | [diff] [blame] | 99 | static uint16_t it87spi_probe(uint16_t port) |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 100 | { |
| 101 | uint8_t tmp = 0; |
Carl-Daniel Hailfinger | bb297f7 | 2009-07-11 18:05:42 +0000 | [diff] [blame] | 102 | char *portpos = NULL; |
Carl-Daniel Hailfinger | 14e100c | 2009-12-22 23:42:04 +0000 | [diff] [blame] | 103 | uint16_t flashport = 0; |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 104 | |
Carl-Daniel Hailfinger | 76d4b37 | 2010-07-10 16:56:32 +0000 | [diff] [blame] | 105 | enter_conf_mode_ite(port); |
| 106 | /* NOLDN, reg 0x24, mask out lowest bit (suspend) */ |
| 107 | tmp = sio_read(port, 0x24) & 0xFE; |
| 108 | /* If IT87SPI was not explicitly selected, we want to check |
| 109 | * quickly if LPC->SPI translation is active. |
| 110 | */ |
| 111 | if ((programmer == PROGRAMMER_INTERNAL) && !(tmp & (0x0E))) { |
| 112 | msg_pdbg("No IT87* serial flash segment enabled.\n"); |
| 113 | exit_conf_mode_ite(port); |
| 114 | /* Nothing to do. */ |
| 115 | return 1; |
| 116 | } |
| 117 | msg_pdbg("Serial flash segment 0x%08x-0x%08x %sabled\n", |
| 118 | 0xFFFE0000, 0xFFFFFFFF, (tmp & 1 << 1) ? "en" : "dis"); |
| 119 | msg_pdbg("Serial flash segment 0x%08x-0x%08x %sabled\n", |
| 120 | 0x000E0000, 0x000FFFFF, (tmp & 1 << 1) ? "en" : "dis"); |
| 121 | msg_pdbg("Serial flash segment 0x%08x-0x%08x %sabled\n", |
| 122 | 0xFFEE0000, 0xFFEFFFFF, (tmp & 1 << 2) ? "en" : "dis"); |
| 123 | msg_pdbg("Serial flash segment 0x%08x-0x%08x %sabled\n", |
| 124 | 0xFFF80000, 0xFFFEFFFF, (tmp & 1 << 3) ? "en" : "dis"); |
| 125 | msg_pdbg("LPC write to serial flash %sabled\n", |
| 126 | (tmp & 1 << 4) ? "en" : "dis"); |
| 127 | /* The LPC->SPI force write enable below only makes sense for |
| 128 | * non-programmer mode. |
| 129 | */ |
| 130 | /* If any serial flash segment is enabled, enable writing. */ |
| 131 | if ((tmp & 0xe) && (!(tmp & 1 << 4))) { |
| 132 | msg_pdbg("Enabling LPC write to serial flash\n"); |
| 133 | tmp |= 1 << 4; |
| 134 | sio_write(port, 0x24, tmp); |
| 135 | } |
| 136 | msg_pdbg("Serial flash pin %i\n", (tmp & 1 << 5) ? 87 : 29); |
| 137 | /* LDN 0x7, reg 0x64/0x65 */ |
| 138 | sio_write(port, 0x07, 0x7); |
| 139 | flashport = sio_read(port, 0x64) << 8; |
| 140 | flashport |= sio_read(port, 0x65); |
| 141 | msg_pdbg("Serial flash port 0x%04x\n", flashport); |
| 142 | /* Non-default port requested? */ |
| 143 | portpos = extract_programmer_param("it87spiport"); |
| 144 | if (portpos) { |
| 145 | char *endptr = NULL; |
| 146 | unsigned long forced_flashport; |
| 147 | forced_flashport = strtoul(portpos, &endptr, 0); |
| 148 | /* Port 0, port >0x1000, unaligned ports and garbage strings |
| 149 | * are rejected. |
Carl-Daniel Hailfinger | 01f3ef4 | 2010-03-25 02:50:40 +0000 | [diff] [blame] | 150 | */ |
Carl-Daniel Hailfinger | 76d4b37 | 2010-07-10 16:56:32 +0000 | [diff] [blame] | 151 | if (!forced_flashport || (forced_flashport >= 0x1000) || |
| 152 | (forced_flashport & 0x7) || (*endptr != '\0')) { |
| 153 | /* Using ports below 0x100 is a really bad idea, and |
| 154 | * should only be done if no port between 0x100 and |
| 155 | * 0xff8 works due to routing issues. |
| 156 | */ |
| 157 | msg_perr("Error: it87spiport specified, but no valid " |
| 158 | "port specified.\nPort must be a multiple of " |
| 159 | "0x8 and lie between 0x100 and 0xff8.\n"); |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 160 | free(portpos); |
| 161 | /* FIXME: Return failure here once it87spi_common_init() |
| 162 | * can handle the return value sanely. |
| 163 | */ |
| 164 | exit(1); |
Carl-Daniel Hailfinger | 76d4b37 | 2010-07-10 16:56:32 +0000 | [diff] [blame] | 165 | } else { |
| 166 | flashport = (uint16_t)forced_flashport; |
| 167 | msg_pinfo("Forcing serial flash port 0x%04x\n", |
| 168 | flashport); |
| 169 | sio_write(port, 0x64, (flashport >> 8)); |
| 170 | sio_write(port, 0x65, (flashport & 0xff)); |
Carl-Daniel Hailfinger | bb297f7 | 2009-07-11 18:05:42 +0000 | [diff] [blame] | 171 | } |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 172 | } |
Carl-Daniel Hailfinger | 76d4b37 | 2010-07-10 16:56:32 +0000 | [diff] [blame] | 173 | free(portpos); |
| 174 | exit_conf_mode_ite(port); |
| 175 | it8716f_flashport = flashport; |
| 176 | if (buses_supported & CHIP_BUSTYPE_SPI) |
| 177 | msg_pdbg("Overriding chipset SPI with IT87 SPI.\n"); |
| 178 | spi_controller = SPI_CONTROLLER_IT87XX; |
| 179 | buses_supported |= CHIP_BUSTYPE_SPI; |
| 180 | return 0; |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 181 | } |
| 182 | |
Carl-Daniel Hailfinger | 76d4b37 | 2010-07-10 16:56:32 +0000 | [diff] [blame] | 183 | int init_superio_ite(void) |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 184 | { |
Carl-Daniel Hailfinger | 14e100c | 2009-12-22 23:42:04 +0000 | [diff] [blame] | 185 | if (superio.vendor != SUPERIO_VENDOR_ITE) |
| 186 | return 1; |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 187 | |
Carl-Daniel Hailfinger | 76d4b37 | 2010-07-10 16:56:32 +0000 | [diff] [blame] | 188 | switch (superio.model) { |
| 189 | case 0x8705: |
| 190 | return it8705f_write_enable(superio.port); |
| 191 | break; |
| 192 | case 0x8716: |
| 193 | case 0x8718: |
| 194 | case 0x8720: |
| 195 | return it87spi_probe(superio.port); |
| 196 | break; |
| 197 | default: |
| 198 | msg_pdbg("Super I/O ID 0x%04hx is not on the list of flash " |
| 199 | "capable controllers.\n", superio.model); |
| 200 | } |
| 201 | return 1; |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 202 | } |
| 203 | |
Carl-Daniel Hailfinger | b8afecd | 2009-05-31 18:00:57 +0000 | [diff] [blame] | 204 | |
| 205 | int it87spi_init(void) |
| 206 | { |
Carl-Daniel Hailfinger | b22918c | 2009-06-01 02:08:58 +0000 | [diff] [blame] | 207 | int ret; |
Carl-Daniel Hailfinger | b8afecd | 2009-05-31 18:00:57 +0000 | [diff] [blame] | 208 | |
Carl-Daniel Hailfinger | b22918c | 2009-06-01 02:08:58 +0000 | [diff] [blame] | 209 | get_io_perms(); |
Uwe Hermann | 4395970 | 2010-03-13 17:28:29 +0000 | [diff] [blame] | 210 | /* Probe for the Super I/O chip and fill global struct superio. */ |
Carl-Daniel Hailfinger | 14e100c | 2009-12-22 23:42:04 +0000 | [diff] [blame] | 211 | probe_superio(); |
Carl-Daniel Hailfinger | 76d4b37 | 2010-07-10 16:56:32 +0000 | [diff] [blame] | 212 | ret = init_superio_ite(); |
Carl-Daniel Hailfinger | 34cc6cc | 2009-06-28 10:57:58 +0000 | [diff] [blame] | 213 | if (!ret) { |
Carl-Daniel Hailfinger | b22918c | 2009-06-01 02:08:58 +0000 | [diff] [blame] | 214 | buses_supported = CHIP_BUSTYPE_SPI; |
Carl-Daniel Hailfinger | 34cc6cc | 2009-06-28 10:57:58 +0000 | [diff] [blame] | 215 | } else { |
| 216 | buses_supported = CHIP_BUSTYPE_NONE; |
| 217 | } |
Carl-Daniel Hailfinger | b22918c | 2009-06-01 02:08:58 +0000 | [diff] [blame] | 218 | return ret; |
Carl-Daniel Hailfinger | b8afecd | 2009-05-31 18:00:57 +0000 | [diff] [blame] | 219 | } |
| 220 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 221 | /* |
| 222 | * The IT8716F only supports commands with length 1,2,4,5 bytes including |
| 223 | * command byte and can not read more than 3 bytes from the device. |
| 224 | * |
| 225 | * This function expects writearr[0] to be the first byte sent to the device, |
| 226 | * whereas the IT8716F splits commands internally into address and non-address |
| 227 | * commands with the address in inverse wire order. That's why the register |
| 228 | * ordering in case 4 and 5 may seem strange. |
| 229 | */ |
Carl-Daniel Hailfinger | d047829 | 2009-07-10 21:08:55 +0000 | [diff] [blame] | 230 | int it8716f_spi_send_command(unsigned int writecnt, unsigned int readcnt, |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 231 | const unsigned char *writearr, unsigned char *readarr) |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 232 | { |
| 233 | uint8_t busy, writeenc; |
| 234 | int i; |
| 235 | |
| 236 | do { |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 237 | busy = INB(it8716f_flashport) & 0x80; |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 238 | } while (busy); |
| 239 | if (readcnt > 3) { |
Sean Nelson | 01e532d | 2010-01-10 01:09:58 +0000 | [diff] [blame] | 240 | msg_pinfo("%s called with unsupported readcnt %i.\n", |
Uwe Hermann | 04aa59a | 2009-09-02 22:09:00 +0000 | [diff] [blame] | 241 | __func__, readcnt); |
Carl-Daniel Hailfinger | 142e30f | 2009-07-14 10:26:56 +0000 | [diff] [blame] | 242 | return SPI_INVALID_LENGTH; |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 243 | } |
| 244 | switch (writecnt) { |
| 245 | case 1: |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 246 | OUTB(writearr[0], it8716f_flashport + 1); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 247 | writeenc = 0x0; |
| 248 | break; |
| 249 | case 2: |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 250 | OUTB(writearr[0], it8716f_flashport + 1); |
| 251 | OUTB(writearr[1], it8716f_flashport + 7); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 252 | writeenc = 0x1; |
| 253 | break; |
| 254 | case 4: |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 255 | OUTB(writearr[0], it8716f_flashport + 1); |
| 256 | OUTB(writearr[1], it8716f_flashport + 4); |
| 257 | OUTB(writearr[2], it8716f_flashport + 3); |
| 258 | OUTB(writearr[3], it8716f_flashport + 2); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 259 | writeenc = 0x2; |
| 260 | break; |
| 261 | case 5: |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 262 | OUTB(writearr[0], it8716f_flashport + 1); |
| 263 | OUTB(writearr[1], it8716f_flashport + 4); |
| 264 | OUTB(writearr[2], it8716f_flashport + 3); |
| 265 | OUTB(writearr[3], it8716f_flashport + 2); |
| 266 | OUTB(writearr[4], it8716f_flashport + 7); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 267 | writeenc = 0x3; |
| 268 | break; |
| 269 | default: |
Sean Nelson | 01e532d | 2010-01-10 01:09:58 +0000 | [diff] [blame] | 270 | msg_pinfo("%s called with unsupported writecnt %i.\n", |
Uwe Hermann | 04aa59a | 2009-09-02 22:09:00 +0000 | [diff] [blame] | 271 | __func__, writecnt); |
Carl-Daniel Hailfinger | 142e30f | 2009-07-14 10:26:56 +0000 | [diff] [blame] | 272 | return SPI_INVALID_LENGTH; |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 273 | } |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 274 | /* |
| 275 | * 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] | 276 | * Note: |
| 277 | * 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] | 278 | */ |
| 279 | OUTB(((0x4 + (fast_spi ? 1 : 0)) << 4) |
| 280 | | ((readcnt & 0x3) << 2) | (writeenc), it8716f_flashport); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 281 | |
| 282 | if (readcnt > 0) { |
| 283 | do { |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 284 | busy = INB(it8716f_flashport) & 0x80; |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 285 | } while (busy); |
| 286 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 287 | for (i = 0; i < readcnt; i++) |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 288 | readarr[i] = INB(it8716f_flashport + 5 + i); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 289 | } |
| 290 | |
| 291 | return 0; |
| 292 | } |
| 293 | |
| 294 | /* Page size is usually 256 bytes */ |
Carl-Daniel Hailfinger | 9a795d8 | 2010-07-14 16:19:05 +0000 | [diff] [blame^] | 295 | static int it8716f_spi_page_program(struct flashchip *flash, uint8_t *buf, int start) |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 296 | { |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 297 | int i; |
Carl-Daniel Hailfinger | 03adbe1 | 2009-05-09 02:09:45 +0000 | [diff] [blame] | 298 | int result; |
Carl-Daniel Hailfinger | bb297f7 | 2009-07-11 18:05:42 +0000 | [diff] [blame] | 299 | chipaddr bios = flash->virtual_memory; |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 300 | |
Carl-Daniel Hailfinger | 03adbe1 | 2009-05-09 02:09:45 +0000 | [diff] [blame] | 301 | result = spi_write_enable(); |
| 302 | if (result) |
| 303 | return result; |
Carl-Daniel Hailfinger | 2f1b36f | 2009-07-12 12:06:18 +0000 | [diff] [blame] | 304 | /* FIXME: The command below seems to be redundant or wrong. */ |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 305 | OUTB(0x06, it8716f_flashport + 1); |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 306 | OUTB(((2 + (fast_spi ? 1 : 0)) << 4), it8716f_flashport); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 307 | for (i = 0; i < 256; i++) { |
Carl-Daniel Hailfinger | 9a795d8 | 2010-07-14 16:19:05 +0000 | [diff] [blame^] | 308 | chip_writeb(buf[i], bios + start + i); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 309 | } |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 310 | OUTB(0, it8716f_flashport); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 311 | /* Wait until the Write-In-Progress bit is cleared. |
| 312 | * This usually takes 1-10 ms, so wait in 1 ms steps. |
| 313 | */ |
| 314 | while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP) |
Carl-Daniel Hailfinger | ca8bfc6 | 2009-06-05 17:48:08 +0000 | [diff] [blame] | 315 | programmer_delay(1000); |
Carl-Daniel Hailfinger | 03adbe1 | 2009-05-09 02:09:45 +0000 | [diff] [blame] | 316 | return 0; |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 317 | } |
| 318 | |
| 319 | /* |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 320 | * IT8716F only allows maximum of 512 kb SPI mapped to LPC memory cycles |
| 321 | * Need to read this big flash using firmware cycles 3 byte at a time. |
| 322 | */ |
Carl-Daniel Hailfinger | cbf563c | 2009-06-16 08:55:44 +0000 | [diff] [blame] | 323 | int it8716f_spi_chip_read(struct flashchip *flash, uint8_t *buf, int start, int len) |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 324 | { |
| 325 | int total_size = 1024 * flash->total_size; |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 326 | fast_spi = 0; |
| 327 | |
Carl-Daniel Hailfinger | b8afecd | 2009-05-31 18:00:57 +0000 | [diff] [blame] | 328 | if ((programmer == PROGRAMMER_IT87SPI) || (total_size > 512 * 1024)) { |
Carl-Daniel Hailfinger | cbf563c | 2009-06-16 08:55:44 +0000 | [diff] [blame] | 329 | spi_read_chunked(flash, buf, start, len, 3); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 330 | } else { |
Carl-Daniel Hailfinger | cbf563c | 2009-06-16 08:55:44 +0000 | [diff] [blame] | 331 | read_memmapped(flash, buf, start, len); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 332 | } |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 333 | |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 334 | return 0; |
| 335 | } |
| 336 | |
Carl-Daniel Hailfinger | 9a795d8 | 2010-07-14 16:19:05 +0000 | [diff] [blame^] | 337 | int it8716f_spi_chip_write_256(struct flashchip *flash, uint8_t *buf, int start, int len) |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 338 | { |
Carl-Daniel Hailfinger | 96930c3 | 2009-05-09 02:30:21 +0000 | [diff] [blame] | 339 | /* |
| 340 | * IT8716F only allows maximum of 512 kb SPI chip size for memory |
| 341 | * mapped access. |
| 342 | */ |
Carl-Daniel Hailfinger | 9a795d8 | 2010-07-14 16:19:05 +0000 | [diff] [blame^] | 343 | if ((programmer == PROGRAMMER_IT87SPI) || (flash->total_size * 1024 > 512 * 1024)) { |
| 344 | spi_chip_write_1_new(flash, buf, start, len); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 345 | } else { |
Carl-Daniel Hailfinger | 9a795d8 | 2010-07-14 16:19:05 +0000 | [diff] [blame^] | 346 | int lenhere; |
Carl-Daniel Hailfinger | 116081a | 2009-08-10 02:29:21 +0000 | [diff] [blame] | 347 | spi_disable_blockprotect(); |
Carl-Daniel Hailfinger | 9a795d8 | 2010-07-14 16:19:05 +0000 | [diff] [blame^] | 348 | |
| 349 | if (start % 256) { |
| 350 | /* start to the end of the page or start + len, |
| 351 | * whichever is smaller. Page length is hardcoded to |
| 352 | * 256 bytes (IT87 SPI hardware limitation). |
| 353 | */ |
| 354 | lenhere = min(len, (start | 0xff) - start + 1); |
| 355 | spi_chip_write_1_new(flash, buf, start, lenhere); |
| 356 | start += lenhere; |
| 357 | len -= lenhere; |
| 358 | buf += lenhere; |
Carl-Daniel Hailfinger | 116081a | 2009-08-10 02:29:21 +0000 | [diff] [blame] | 359 | } |
Carl-Daniel Hailfinger | 9a795d8 | 2010-07-14 16:19:05 +0000 | [diff] [blame^] | 360 | |
| 361 | /* FIXME: Handle chips which have max writechunk size >1 and <256. */ |
| 362 | while (len >= 256) { |
| 363 | it8716f_spi_page_program(flash, buf, start); |
| 364 | start += 256; |
| 365 | len -= 256; |
| 366 | buf += 256; |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 367 | } |
Carl-Daniel Hailfinger | 9a795d8 | 2010-07-14 16:19:05 +0000 | [diff] [blame^] | 368 | if (len) |
| 369 | spi_chip_write_1_new(flash, buf, start, len); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 370 | } |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 371 | |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 372 | return 0; |
| 373 | } |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 374 | |
| 375 | #endif |