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