Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the flashrom project. |
| 3 | * |
| 4 | * Copyright (C) 2008 Stefan Wildemann <stefan.wildemann@kontron.com> |
| 5 | * Copyright (C) 2008 Claus Gindhart <claus.gindhart@kontron.com> |
| 6 | * Copyright (C) 2008 Dominik Geyer <dominik.geyer@kontron.com> |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 7 | * Copyright (C) 2008 coresystems GmbH <info@coresystems.de> |
Carl-Daniel Hailfinger | 5824fbf | 2010-05-21 23:09:42 +0000 | [diff] [blame] | 8 | * Copyright (C) 2009, 2010 Carl-Daniel Hailfinger |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License as published by |
| 12 | * the Free Software Foundation; either version 2 of the License, or |
| 13 | * (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | * GNU General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public License |
| 21 | * along with this program; if not, write to the Free Software |
| 22 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 23 | */ |
| 24 | |
| 25 | /* |
| 26 | * This module is designed for supporting the devices |
| 27 | * ST M25P40 |
| 28 | * ST M25P80 |
| 29 | * ST M25P16 |
| 30 | * ST M25P32 already tested |
| 31 | * ST M25P64 |
| 32 | * AT 25DF321 already tested |
| 33 | * |
| 34 | */ |
| 35 | |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 36 | #if defined(__i386__) || defined(__x86_64__) |
| 37 | |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 38 | #include <string.h> |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 39 | #include "flash.h" |
Sean Nelson | 14ba668 | 2010-02-26 05:48:29 +0000 | [diff] [blame] | 40 | #include "chipdrivers.h" |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 41 | #include "spi.h" |
| 42 | |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 43 | /* ICH9 controller register definition */ |
| 44 | #define ICH9_REG_FADDR 0x08 /* 32 Bits */ |
| 45 | #define ICH9_REG_FDATA0 0x10 /* 64 Bytes */ |
| 46 | |
| 47 | #define ICH9_REG_SSFS 0x90 /* 08 Bits */ |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 48 | #define SSFS_SCIP 0x00000001 |
| 49 | #define SSFS_CDS 0x00000004 |
| 50 | #define SSFS_FCERR 0x00000008 |
| 51 | #define SSFS_AEL 0x00000010 |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 52 | |
| 53 | #define ICH9_REG_SSFC 0x91 /* 24 Bits */ |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 54 | #define SSFC_SCGO 0x00000200 |
| 55 | #define SSFC_ACS 0x00000400 |
| 56 | #define SSFC_SPOP 0x00000800 |
| 57 | #define SSFC_COP 0x00001000 |
| 58 | #define SSFC_DBC 0x00010000 |
| 59 | #define SSFC_DS 0x00400000 |
| 60 | #define SSFC_SME 0x00800000 |
| 61 | #define SSFC_SCF 0x01000000 |
| 62 | #define SSFC_SCF_20MHZ 0x00000000 |
| 63 | #define SSFC_SCF_33MHZ 0x01000000 |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 64 | |
| 65 | #define ICH9_REG_PREOP 0x94 /* 16 Bits */ |
| 66 | #define ICH9_REG_OPTYPE 0x96 /* 16 Bits */ |
| 67 | #define ICH9_REG_OPMENU 0x98 /* 64 Bits */ |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 68 | |
| 69 | // ICH9R SPI commands |
| 70 | #define SPI_OPCODE_TYPE_READ_NO_ADDRESS 0 |
| 71 | #define SPI_OPCODE_TYPE_WRITE_NO_ADDRESS 1 |
| 72 | #define SPI_OPCODE_TYPE_READ_WITH_ADDRESS 2 |
| 73 | #define SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS 3 |
| 74 | |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 75 | // ICH7 registers |
| 76 | #define ICH7_REG_SPIS 0x00 /* 16 Bits */ |
| 77 | #define SPIS_SCIP 0x00000001 |
| 78 | #define SPIS_CDS 0x00000004 |
| 79 | #define SPIS_FCERR 0x00000008 |
| 80 | |
Rudolf Marek | 3fdbccf | 2008-06-30 21:38:30 +0000 | [diff] [blame] | 81 | /* VIA SPI is compatible with ICH7, but maxdata |
| 82 | to transfer is 16 bytes. |
| 83 | |
| 84 | DATA byte count on ICH7 is 8:13, on VIA 8:11 |
| 85 | |
| 86 | bit 12 is port select CS0 CS1 |
| 87 | bit 13 is FAST READ enable |
| 88 | bit 7 is used with fast read and one shot controls CS de-assert? |
| 89 | */ |
| 90 | |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 91 | #define ICH7_REG_SPIC 0x02 /* 16 Bits */ |
| 92 | #define SPIC_SCGO 0x0002 |
| 93 | #define SPIC_ACS 0x0004 |
| 94 | #define SPIC_SPOP 0x0008 |
Rudolf Marek | 3fdbccf | 2008-06-30 21:38:30 +0000 | [diff] [blame] | 95 | #define SPIC_DS 0x4000 |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 96 | |
| 97 | #define ICH7_REG_SPIA 0x04 /* 32 Bits */ |
| 98 | #define ICH7_REG_SPID0 0x08 /* 64 Bytes */ |
| 99 | #define ICH7_REG_PREOP 0x54 /* 16 Bits */ |
| 100 | #define ICH7_REG_OPTYPE 0x56 /* 16 Bits */ |
| 101 | #define ICH7_REG_OPMENU 0x58 /* 64 Bits */ |
| 102 | |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 103 | /* ICH SPI configuration lock-down. May be set during chipset enabling. */ |
| 104 | int ichspi_lock = 0; |
| 105 | |
Carl-Daniel Hailfinger | 80f3d05 | 2010-05-28 15:53:08 +0000 | [diff] [blame] | 106 | uint32_t ichspi_bbar = 0; |
| 107 | |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 108 | typedef struct _OPCODE { |
| 109 | uint8_t opcode; //This commands spi opcode |
| 110 | uint8_t spi_type; //This commands spi type |
| 111 | uint8_t atomic; //Use preop: (0: none, 1: preop0, 2: preop1 |
| 112 | } OPCODE; |
| 113 | |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 114 | /* Suggested opcode definition: |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 115 | * Preop 1: Write Enable |
| 116 | * Preop 2: Write Status register enable |
| 117 | * |
| 118 | * OP 0: Write address |
| 119 | * OP 1: Read Address |
| 120 | * OP 2: ERASE block |
| 121 | * OP 3: Read Status register |
| 122 | * OP 4: Read ID |
| 123 | * OP 5: Write Status register |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 124 | * OP 6: chip private (read JEDEC id) |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 125 | * OP 7: Chip erase |
| 126 | */ |
| 127 | typedef struct _OPCODES { |
| 128 | uint8_t preop[2]; |
| 129 | OPCODE opcode[8]; |
| 130 | } OPCODES; |
| 131 | |
Stefan Reinauer | 325b5d4 | 2008-06-27 15:18:20 +0000 | [diff] [blame] | 132 | static OPCODES *curopcodes = NULL; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 133 | |
| 134 | /* HW access functions */ |
Uwe Hermann | 09e04f7 | 2009-05-16 22:36:00 +0000 | [diff] [blame] | 135 | static uint32_t REGREAD32(int X) |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 136 | { |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 137 | return mmio_readl(spibar + X); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 138 | } |
| 139 | |
Uwe Hermann | 09e04f7 | 2009-05-16 22:36:00 +0000 | [diff] [blame] | 140 | static uint16_t REGREAD16(int X) |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 141 | { |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 142 | return mmio_readw(spibar + X); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 143 | } |
| 144 | |
Carl-Daniel Hailfinger | 78185dc | 2009-05-17 15:49:24 +0000 | [diff] [blame] | 145 | #define REGWRITE32(X,Y) mmio_writel(Y, spibar+X) |
| 146 | #define REGWRITE16(X,Y) mmio_writew(Y, spibar+X) |
| 147 | #define REGWRITE8(X,Y) mmio_writeb(Y, spibar+X) |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 148 | |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 149 | /* Common SPI functions */ |
Uwe Hermann | 09e04f7 | 2009-05-16 22:36:00 +0000 | [diff] [blame] | 150 | static int find_opcode(OPCODES *op, uint8_t opcode); |
| 151 | static int find_preop(OPCODES *op, uint8_t preop); |
FENG yu ning | f041e9b | 2008-12-15 02:32:11 +0000 | [diff] [blame] | 152 | static int generate_opcodes(OPCODES * op); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 153 | static int program_opcodes(OPCODES * op); |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 154 | static int run_opcode(OPCODE op, uint32_t offset, |
Stefan Reinauer | 325b5d4 | 2008-06-27 15:18:20 +0000 | [diff] [blame] | 155 | uint8_t datalength, uint8_t * data); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 156 | |
FENG yu ning | f041e9b | 2008-12-15 02:32:11 +0000 | [diff] [blame] | 157 | /* for pairing opcodes with their required preop */ |
| 158 | struct preop_opcode_pair { |
| 159 | uint8_t preop; |
| 160 | uint8_t opcode; |
| 161 | }; |
| 162 | |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 163 | /* List of opcodes which need preopcodes and matching preopcodes. Unused. */ |
FENG yu ning | f041e9b | 2008-12-15 02:32:11 +0000 | [diff] [blame] | 164 | struct preop_opcode_pair pops[] = { |
| 165 | {JEDEC_WREN, JEDEC_BYTE_PROGRAM}, |
| 166 | {JEDEC_WREN, JEDEC_SE}, /* sector erase */ |
| 167 | {JEDEC_WREN, JEDEC_BE_52}, /* block erase */ |
| 168 | {JEDEC_WREN, JEDEC_BE_D8}, /* block erase */ |
| 169 | {JEDEC_WREN, JEDEC_CE_60}, /* chip erase */ |
| 170 | {JEDEC_WREN, JEDEC_CE_C7}, /* chip erase */ |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 171 | /* FIXME: WRSR requires either EWSR or WREN depending on chip type. */ |
| 172 | {JEDEC_WREN, JEDEC_WRSR}, |
FENG yu ning | f041e9b | 2008-12-15 02:32:11 +0000 | [diff] [blame] | 173 | {JEDEC_EWSR, JEDEC_WRSR}, |
| 174 | {0,} |
| 175 | }; |
| 176 | |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 177 | /* Reasonable default configuration. Needs ad-hoc modifications if we |
| 178 | * encounter unlisted opcodes. Fun. |
| 179 | */ |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 180 | OPCODES O_ST_M25P = { |
| 181 | { |
| 182 | JEDEC_WREN, |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 183 | JEDEC_EWSR, |
| 184 | }, |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 185 | { |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 186 | {JEDEC_BYTE_PROGRAM, SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS, 0}, // Write Byte |
Stefan Reinauer | 325b5d4 | 2008-06-27 15:18:20 +0000 | [diff] [blame] | 187 | {JEDEC_READ, SPI_OPCODE_TYPE_READ_WITH_ADDRESS, 0}, // Read Data |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 188 | {JEDEC_BE_D8, SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS, 0}, // Erase Sector |
Stefan Reinauer | 325b5d4 | 2008-06-27 15:18:20 +0000 | [diff] [blame] | 189 | {JEDEC_RDSR, SPI_OPCODE_TYPE_READ_NO_ADDRESS, 0}, // Read Device Status Reg |
Carl-Daniel Hailfinger | 15aa7c6 | 2009-05-26 21:25:08 +0000 | [diff] [blame] | 190 | {JEDEC_REMS, SPI_OPCODE_TYPE_READ_WITH_ADDRESS, 0}, // Read Electronic Manufacturer Signature |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 191 | {JEDEC_WRSR, SPI_OPCODE_TYPE_WRITE_NO_ADDRESS, 0}, // Write Status Register |
Stefan Reinauer | 325b5d4 | 2008-06-27 15:18:20 +0000 | [diff] [blame] | 192 | {JEDEC_RDID, SPI_OPCODE_TYPE_READ_NO_ADDRESS, 0}, // Read JDEC ID |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 193 | {JEDEC_CE_C7, SPI_OPCODE_TYPE_WRITE_NO_ADDRESS, 0}, // Bulk erase |
| 194 | } |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 195 | }; |
| 196 | |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 197 | OPCODES O_EXISTING = {}; |
| 198 | |
Uwe Hermann | 09e04f7 | 2009-05-16 22:36:00 +0000 | [diff] [blame] | 199 | static int find_opcode(OPCODES *op, uint8_t opcode) |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 200 | { |
| 201 | int a; |
| 202 | |
| 203 | for (a = 0; a < 8; a++) { |
| 204 | if (op->opcode[a].opcode == opcode) |
| 205 | return a; |
| 206 | } |
| 207 | |
| 208 | return -1; |
| 209 | } |
| 210 | |
Uwe Hermann | 09e04f7 | 2009-05-16 22:36:00 +0000 | [diff] [blame] | 211 | static int find_preop(OPCODES *op, uint8_t preop) |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 212 | { |
| 213 | int a; |
| 214 | |
| 215 | for (a = 0; a < 2; a++) { |
| 216 | if (op->preop[a] == preop) |
| 217 | return a; |
| 218 | } |
| 219 | |
| 220 | return -1; |
| 221 | } |
| 222 | |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 223 | /* Create a struct OPCODES based on what we find in the locked down chipset. */ |
FENG yu ning | f041e9b | 2008-12-15 02:32:11 +0000 | [diff] [blame] | 224 | static int generate_opcodes(OPCODES * op) |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 225 | { |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 226 | int a; |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 227 | uint16_t preop, optype; |
| 228 | uint32_t opmenu[2]; |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 229 | |
| 230 | if (op == NULL) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 231 | msg_perr("\n%s: null OPCODES pointer!\n", __func__); |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 232 | return -1; |
| 233 | } |
| 234 | |
Carl-Daniel Hailfinger | 1dfe0ff | 2009-05-31 17:57:34 +0000 | [diff] [blame] | 235 | switch (spi_controller) { |
| 236 | case SPI_CONTROLLER_ICH7: |
| 237 | case SPI_CONTROLLER_VIA: |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 238 | preop = REGREAD16(ICH7_REG_PREOP); |
| 239 | optype = REGREAD16(ICH7_REG_OPTYPE); |
| 240 | opmenu[0] = REGREAD32(ICH7_REG_OPMENU); |
| 241 | opmenu[1] = REGREAD32(ICH7_REG_OPMENU + 4); |
| 242 | break; |
Carl-Daniel Hailfinger | 1dfe0ff | 2009-05-31 17:57:34 +0000 | [diff] [blame] | 243 | case SPI_CONTROLLER_ICH9: |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 244 | preop = REGREAD16(ICH9_REG_PREOP); |
| 245 | optype = REGREAD16(ICH9_REG_OPTYPE); |
| 246 | opmenu[0] = REGREAD32(ICH9_REG_OPMENU); |
| 247 | opmenu[1] = REGREAD32(ICH9_REG_OPMENU + 4); |
| 248 | break; |
| 249 | default: |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 250 | msg_perr("%s: unsupported chipset\n", __func__); |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 251 | return -1; |
| 252 | } |
| 253 | |
| 254 | op->preop[0] = (uint8_t) preop; |
| 255 | op->preop[1] = (uint8_t) (preop >> 8); |
| 256 | |
| 257 | for (a = 0; a < 8; a++) { |
| 258 | op->opcode[a].spi_type = (uint8_t) (optype & 0x3); |
| 259 | optype >>= 2; |
| 260 | } |
| 261 | |
| 262 | for (a = 0; a < 4; a++) { |
| 263 | op->opcode[a].opcode = (uint8_t) (opmenu[0] & 0xff); |
| 264 | opmenu[0] >>= 8; |
| 265 | } |
| 266 | |
| 267 | for (a = 4; a < 8; a++) { |
| 268 | op->opcode[a].opcode = (uint8_t) (opmenu[1] & 0xff); |
| 269 | opmenu[1] >>= 8; |
| 270 | } |
| 271 | |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 272 | /* No preopcodes used by default. */ |
| 273 | for (a = 0; a < 8; a++) |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 274 | op->opcode[a].atomic = 0; |
| 275 | |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 276 | return 0; |
| 277 | } |
| 278 | |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 279 | int program_opcodes(OPCODES * op) |
| 280 | { |
| 281 | uint8_t a; |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 282 | uint16_t preop, optype; |
| 283 | uint32_t opmenu[2]; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 284 | |
| 285 | /* Program Prefix Opcodes */ |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 286 | /* 0:7 Prefix Opcode 1 */ |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 287 | preop = (op->preop[0]); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 288 | /* 8:16 Prefix Opcode 2 */ |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 289 | preop |= ((uint16_t) op->preop[1]) << 8; |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 290 | |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 291 | /* Program Opcode Types 0 - 7 */ |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 292 | optype = 0; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 293 | for (a = 0; a < 8; a++) { |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 294 | optype |= ((uint16_t) op->opcode[a].spi_type) << (a * 2); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 295 | } |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 296 | |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 297 | /* Program Allowable Opcodes 0 - 3 */ |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 298 | opmenu[0] = 0; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 299 | for (a = 0; a < 4; a++) { |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 300 | opmenu[0] |= ((uint32_t) op->opcode[a].opcode) << (a * 8); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 301 | } |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 302 | |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 303 | /*Program Allowable Opcodes 4 - 7 */ |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 304 | opmenu[1] = 0; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 305 | for (a = 4; a < 8; a++) { |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 306 | opmenu[1] |= ((uint32_t) op->opcode[a].opcode) << ((a - 4) * 8); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 307 | } |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 308 | |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 309 | msg_pdbg("\n%s: preop=%04x optype=%04x opmenu=%08x%08x\n", __func__, preop, optype, opmenu[0], opmenu[1]); |
Carl-Daniel Hailfinger | 1dfe0ff | 2009-05-31 17:57:34 +0000 | [diff] [blame] | 310 | switch (spi_controller) { |
| 311 | case SPI_CONTROLLER_ICH7: |
| 312 | case SPI_CONTROLLER_VIA: |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 313 | REGWRITE16(ICH7_REG_PREOP, preop); |
| 314 | REGWRITE16(ICH7_REG_OPTYPE, optype); |
| 315 | REGWRITE32(ICH7_REG_OPMENU, opmenu[0]); |
| 316 | REGWRITE32(ICH7_REG_OPMENU + 4, opmenu[1]); |
| 317 | break; |
Carl-Daniel Hailfinger | 1dfe0ff | 2009-05-31 17:57:34 +0000 | [diff] [blame] | 318 | case SPI_CONTROLLER_ICH9: |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 319 | REGWRITE16(ICH9_REG_PREOP, preop); |
| 320 | REGWRITE16(ICH9_REG_OPTYPE, optype); |
| 321 | REGWRITE32(ICH9_REG_OPMENU, opmenu[0]); |
| 322 | REGWRITE32(ICH9_REG_OPMENU + 4, opmenu[1]); |
| 323 | break; |
| 324 | default: |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 325 | msg_perr("%s: unsupported chipset\n", __func__); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 326 | return -1; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 327 | } |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 328 | |
| 329 | return 0; |
| 330 | } |
| 331 | |
Carl-Daniel Hailfinger | 80f3d05 | 2010-05-28 15:53:08 +0000 | [diff] [blame] | 332 | /* |
| 333 | * Try to set BBAR (BIOS Base Address Register), but read back the value in case |
| 334 | * it didn't stick. |
| 335 | */ |
| 336 | void ich_set_bbar(uint32_t minaddr) |
| 337 | { |
| 338 | switch (spi_controller) { |
| 339 | case SPI_CONTROLLER_ICH7: |
| 340 | mmio_writel(minaddr, spibar + 0x50); |
| 341 | ichspi_bbar = mmio_readl(spibar + 0x50); |
| 342 | /* We don't have any option except complaining. */ |
| 343 | if (ichspi_bbar != minaddr) |
| 344 | msg_perr("Setting BBAR failed!\n"); |
| 345 | break; |
| 346 | case SPI_CONTROLLER_ICH9: |
| 347 | mmio_writel(minaddr, spibar + 0xA0); |
| 348 | ichspi_bbar = mmio_readl(spibar + 0xA0); |
| 349 | /* We don't have any option except complaining. */ |
| 350 | if (ichspi_bbar != minaddr) |
| 351 | msg_perr("Setting BBAR failed!\n"); |
| 352 | break; |
| 353 | default: |
| 354 | /* Not sure if BBAR actually exists on VIA. */ |
| 355 | msg_pdbg("Setting BBAR is not implemented for VIA yet.\n"); |
| 356 | break; |
| 357 | } |
| 358 | } |
| 359 | |
FENG yu ning | f041e9b | 2008-12-15 02:32:11 +0000 | [diff] [blame] | 360 | /* This function generates OPCODES from or programs OPCODES to ICH according to |
| 361 | * the chipset's SPI configuration lock. |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 362 | * |
FENG yu ning | f041e9b | 2008-12-15 02:32:11 +0000 | [diff] [blame] | 363 | * It should be called before ICH sends any spi command. |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 364 | */ |
Uwe Hermann | 7b2969b | 2009-04-15 10:52:49 +0000 | [diff] [blame] | 365 | int ich_init_opcodes(void) |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 366 | { |
| 367 | int rc = 0; |
| 368 | OPCODES *curopcodes_done; |
| 369 | |
| 370 | if (curopcodes) |
| 371 | return 0; |
| 372 | |
| 373 | if (ichspi_lock) { |
Carl-Daniel Hailfinger | 80f3d05 | 2010-05-28 15:53:08 +0000 | [diff] [blame] | 374 | msg_pdbg("Reading OPCODES... "); |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 375 | curopcodes_done = &O_EXISTING; |
FENG yu ning | f041e9b | 2008-12-15 02:32:11 +0000 | [diff] [blame] | 376 | rc = generate_opcodes(curopcodes_done); |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 377 | } else { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 378 | msg_pdbg("Programming OPCODES... "); |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 379 | curopcodes_done = &O_ST_M25P; |
| 380 | rc = program_opcodes(curopcodes_done); |
Carl-Daniel Hailfinger | 80f3d05 | 2010-05-28 15:53:08 +0000 | [diff] [blame] | 381 | /* Technically not part of opcode init, but it allows opcodes |
| 382 | * to run without transaction errors by setting the lowest |
| 383 | * allowed address to zero. |
| 384 | */ |
| 385 | ich_set_bbar(0); |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 386 | } |
| 387 | |
| 388 | if (rc) { |
| 389 | curopcodes = NULL; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 390 | msg_perr("failed\n"); |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 391 | return 1; |
| 392 | } else { |
| 393 | curopcodes = curopcodes_done; |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 394 | msg_pdbg("done\n"); |
FENG yu ning | c05a295 | 2008-12-08 18:16:58 +0000 | [diff] [blame] | 395 | return 0; |
| 396 | } |
| 397 | } |
| 398 | |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 399 | static int ich7_run_opcode(OPCODE op, uint32_t offset, |
Rudolf Marek | 3fdbccf | 2008-06-30 21:38:30 +0000 | [diff] [blame] | 400 | uint8_t datalength, uint8_t * data, int maxdata) |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 401 | { |
| 402 | int write_cmd = 0; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 403 | int timeout; |
Peter Stuge | 7e2c079 | 2008-06-29 01:30:41 +0000 | [diff] [blame] | 404 | uint32_t temp32 = 0; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 405 | uint16_t temp16; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 406 | uint32_t a; |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 407 | uint64_t opmenu; |
| 408 | int opcode_index; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 409 | |
| 410 | /* Is it a write command? */ |
| 411 | if ((op.spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS) |
| 412 | || (op.spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS)) { |
| 413 | write_cmd = 1; |
| 414 | } |
| 415 | |
| 416 | /* Programm Offset in Flash into FADDR */ |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 417 | REGWRITE32(ICH7_REG_SPIA, (offset & 0x00FFFFFF)); /* SPI addresses are 24 BIT only */ |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 418 | |
| 419 | /* Program data into FDATA0 to N */ |
| 420 | if (write_cmd && (datalength != 0)) { |
| 421 | temp32 = 0; |
| 422 | for (a = 0; a < datalength; a++) { |
| 423 | if ((a % 4) == 0) { |
| 424 | temp32 = 0; |
| 425 | } |
| 426 | |
| 427 | temp32 |= ((uint32_t) data[a]) << ((a % 4) * 8); |
| 428 | |
| 429 | if ((a % 4) == 3) { |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 430 | REGWRITE32(ICH7_REG_SPID0 + (a - (a % 4)), |
| 431 | temp32); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 432 | } |
| 433 | } |
| 434 | if (((a - 1) % 4) != 3) { |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 435 | REGWRITE32(ICH7_REG_SPID0 + |
| 436 | ((a - 1) - ((a - 1) % 4)), temp32); |
| 437 | } |
| 438 | |
| 439 | } |
| 440 | |
| 441 | /* Assemble SPIS */ |
| 442 | temp16 = 0; |
| 443 | /* clear error status registers */ |
| 444 | temp16 |= (SPIS_CDS + SPIS_FCERR); |
| 445 | REGWRITE16(ICH7_REG_SPIS, temp16); |
| 446 | |
| 447 | /* Assemble SPIC */ |
| 448 | temp16 = 0; |
| 449 | |
| 450 | if (datalength != 0) { |
| 451 | temp16 |= SPIC_DS; |
Rudolf Marek | 3fdbccf | 2008-06-30 21:38:30 +0000 | [diff] [blame] | 452 | temp16 |= ((uint32_t) ((datalength - 1) & (maxdata - 1))) << 8; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 453 | } |
| 454 | |
| 455 | /* Select opcode */ |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 456 | opmenu = REGREAD32(ICH7_REG_OPMENU); |
| 457 | opmenu |= ((uint64_t)REGREAD32(ICH7_REG_OPMENU + 4)) << 32; |
| 458 | |
Uwe Hermann | 7b2969b | 2009-04-15 10:52:49 +0000 | [diff] [blame] | 459 | for (opcode_index = 0; opcode_index < 8; opcode_index++) { |
| 460 | if ((opmenu & 0xff) == op.opcode) { |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 461 | break; |
| 462 | } |
| 463 | opmenu >>= 8; |
| 464 | } |
| 465 | if (opcode_index == 8) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 466 | msg_pdbg("Opcode %x not found.\n", op.opcode); |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 467 | return 1; |
| 468 | } |
| 469 | temp16 |= ((uint16_t) (opcode_index & 0x07)) << 4; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 470 | |
| 471 | /* Handle Atomic */ |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 472 | switch (op.atomic) { |
| 473 | case 2: |
| 474 | /* Select second preop. */ |
| 475 | temp16 |= SPIC_SPOP; |
| 476 | /* And fall through. */ |
| 477 | case 1: |
| 478 | /* Atomic command (preop+op) */ |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 479 | temp16 |= SPIC_ACS; |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 480 | break; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 481 | } |
| 482 | |
| 483 | /* Start */ |
| 484 | temp16 |= SPIC_SCGO; |
| 485 | |
| 486 | /* write it */ |
| 487 | REGWRITE16(ICH7_REG_SPIC, temp16); |
| 488 | |
| 489 | /* wait for cycle complete */ |
Carl-Daniel Hailfinger | 4c24ad4 | 2009-05-09 07:24:23 +0000 | [diff] [blame] | 490 | timeout = 100 * 1000 * 60; // 60s is a looong timeout. |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 491 | while (((REGREAD16(ICH7_REG_SPIS) & SPIS_CDS) == 0) && --timeout) { |
Carl-Daniel Hailfinger | ca8bfc6 | 2009-06-05 17:48:08 +0000 | [diff] [blame] | 492 | programmer_delay(10); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 493 | } |
| 494 | if (!timeout) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 495 | msg_perr("timeout\n"); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 496 | } |
| 497 | |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 498 | /* FIXME: make sure we do not needlessly cause transaction errors. */ |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 499 | if ((REGREAD16(ICH7_REG_SPIS) & SPIS_FCERR) != 0) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 500 | msg_pdbg("Transaction error!\n"); |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 501 | return 1; |
| 502 | } |
| 503 | |
| 504 | if ((!write_cmd) && (datalength != 0)) { |
| 505 | for (a = 0; a < datalength; a++) { |
| 506 | if ((a % 4) == 0) { |
| 507 | temp32 = REGREAD32(ICH7_REG_SPID0 + (a)); |
| 508 | } |
| 509 | |
| 510 | data[a] = |
| 511 | (temp32 & (((uint32_t) 0xff) << ((a % 4) * 8))) |
| 512 | >> ((a % 4) * 8); |
| 513 | } |
| 514 | } |
| 515 | |
| 516 | return 0; |
| 517 | } |
| 518 | |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 519 | static int ich9_run_opcode(OPCODE op, uint32_t offset, |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 520 | uint8_t datalength, uint8_t * data) |
| 521 | { |
| 522 | int write_cmd = 0; |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 523 | int timeout; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 524 | uint32_t temp32; |
| 525 | uint32_t a; |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 526 | uint64_t opmenu; |
| 527 | int opcode_index; |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 528 | |
| 529 | /* Is it a write command? */ |
| 530 | if ((op.spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS) |
| 531 | || (op.spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS)) { |
| 532 | write_cmd = 1; |
| 533 | } |
| 534 | |
| 535 | /* Programm Offset in Flash into FADDR */ |
| 536 | REGWRITE32(ICH9_REG_FADDR, (offset & 0x00FFFFFF)); /* SPI addresses are 24 BIT only */ |
| 537 | |
| 538 | /* Program data into FDATA0 to N */ |
| 539 | if (write_cmd && (datalength != 0)) { |
| 540 | temp32 = 0; |
| 541 | for (a = 0; a < datalength; a++) { |
| 542 | if ((a % 4) == 0) { |
| 543 | temp32 = 0; |
| 544 | } |
| 545 | |
| 546 | temp32 |= ((uint32_t) data[a]) << ((a % 4) * 8); |
| 547 | |
| 548 | if ((a % 4) == 3) { |
| 549 | REGWRITE32(ICH9_REG_FDATA0 + (a - (a % 4)), |
| 550 | temp32); |
| 551 | } |
| 552 | } |
| 553 | if (((a - 1) % 4) != 3) { |
| 554 | REGWRITE32(ICH9_REG_FDATA0 + |
| 555 | ((a - 1) - ((a - 1) % 4)), temp32); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 556 | } |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 557 | } |
| 558 | |
| 559 | /* Assemble SSFS + SSFC */ |
| 560 | temp32 = 0; |
| 561 | |
| 562 | /* clear error status registers */ |
| 563 | temp32 |= (SSFS_CDS + SSFS_FCERR); |
Uwe Hermann | 4e3d0b3 | 2010-03-25 23:18:41 +0000 | [diff] [blame] | 564 | /* Use 20 MHz */ |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 565 | temp32 |= SSFC_SCF_20MHZ; |
| 566 | |
| 567 | if (datalength != 0) { |
| 568 | uint32_t datatemp; |
| 569 | temp32 |= SSFC_DS; |
| 570 | datatemp = ((uint32_t) ((datalength - 1) & 0x3f)) << (8 + 8); |
| 571 | temp32 |= datatemp; |
| 572 | } |
| 573 | |
| 574 | /* Select opcode */ |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 575 | opmenu = REGREAD32(ICH9_REG_OPMENU); |
| 576 | opmenu |= ((uint64_t)REGREAD32(ICH9_REG_OPMENU + 4)) << 32; |
| 577 | |
Uwe Hermann | 7b2969b | 2009-04-15 10:52:49 +0000 | [diff] [blame] | 578 | for (opcode_index = 0; opcode_index < 8; opcode_index++) { |
| 579 | if ((opmenu & 0xff) == op.opcode) { |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 580 | break; |
| 581 | } |
| 582 | opmenu >>= 8; |
| 583 | } |
| 584 | if (opcode_index == 8) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 585 | msg_pdbg("Opcode %x not found.\n", op.opcode); |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 586 | return 1; |
| 587 | } |
| 588 | temp32 |= ((uint32_t) (opcode_index & 0x07)) << (8 + 4); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 589 | |
| 590 | /* Handle Atomic */ |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 591 | switch (op.atomic) { |
| 592 | case 2: |
| 593 | /* Select second preop. */ |
| 594 | temp32 |= SSFC_SPOP; |
| 595 | /* And fall through. */ |
| 596 | case 1: |
| 597 | /* Atomic command (preop+op) */ |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 598 | temp32 |= SSFC_ACS; |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 599 | break; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 600 | } |
| 601 | |
| 602 | /* Start */ |
| 603 | temp32 |= SSFC_SCGO; |
| 604 | |
| 605 | /* write it */ |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 606 | REGWRITE32(ICH9_REG_SSFS, temp32); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 607 | |
| 608 | /*wait for cycle complete */ |
Carl-Daniel Hailfinger | 4c24ad4 | 2009-05-09 07:24:23 +0000 | [diff] [blame] | 609 | timeout = 100 * 1000 * 60; // 60s is a looong timeout. |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 610 | while (((REGREAD32(ICH9_REG_SSFS) & SSFS_CDS) == 0) && --timeout) { |
Carl-Daniel Hailfinger | ca8bfc6 | 2009-06-05 17:48:08 +0000 | [diff] [blame] | 611 | programmer_delay(10); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 612 | } |
| 613 | if (!timeout) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 614 | msg_perr("timeout\n"); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 615 | } |
| 616 | |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 617 | /* FIXME make sure we do not needlessly cause transaction errors. */ |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 618 | if ((REGREAD32(ICH9_REG_SSFS) & SSFS_FCERR) != 0) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 619 | msg_pdbg("Transaction error!\n"); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 620 | return 1; |
| 621 | } |
| 622 | |
| 623 | if ((!write_cmd) && (datalength != 0)) { |
| 624 | for (a = 0; a < datalength; a++) { |
| 625 | if ((a % 4) == 0) { |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 626 | temp32 = REGREAD32(ICH9_REG_FDATA0 + (a)); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 627 | } |
| 628 | |
| 629 | data[a] = |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 630 | (temp32 & (((uint32_t) 0xff) << ((a % 4) * 8))) |
| 631 | >> ((a % 4) * 8); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 632 | } |
| 633 | } |
| 634 | |
| 635 | return 0; |
| 636 | } |
| 637 | |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 638 | static int run_opcode(OPCODE op, uint32_t offset, |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 639 | uint8_t datalength, uint8_t * data) |
| 640 | { |
Carl-Daniel Hailfinger | 1dfe0ff | 2009-05-31 17:57:34 +0000 | [diff] [blame] | 641 | switch (spi_controller) { |
| 642 | case SPI_CONTROLLER_VIA: |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 643 | if (datalength > 16) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 644 | msg_perr("%s: Internal command size error for " |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 645 | "opcode 0x%02x, got datalength=%i, want <=16\n", |
| 646 | __func__, op.opcode, datalength); |
Carl-Daniel Hailfinger | 142e30f | 2009-07-14 10:26:56 +0000 | [diff] [blame] | 647 | return SPI_INVALID_LENGTH; |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 648 | } |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 649 | return ich7_run_opcode(op, offset, datalength, data, 16); |
Carl-Daniel Hailfinger | 1dfe0ff | 2009-05-31 17:57:34 +0000 | [diff] [blame] | 650 | case SPI_CONTROLLER_ICH7: |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 651 | if (datalength > 64) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 652 | msg_perr("%s: Internal command size error for " |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 653 | "opcode 0x%02x, got datalength=%i, want <=16\n", |
| 654 | __func__, op.opcode, datalength); |
Carl-Daniel Hailfinger | 142e30f | 2009-07-14 10:26:56 +0000 | [diff] [blame] | 655 | return SPI_INVALID_LENGTH; |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 656 | } |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 657 | return ich7_run_opcode(op, offset, datalength, data, 64); |
Carl-Daniel Hailfinger | 1dfe0ff | 2009-05-31 17:57:34 +0000 | [diff] [blame] | 658 | case SPI_CONTROLLER_ICH9: |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 659 | if (datalength > 64) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 660 | msg_perr("%s: Internal command size error for " |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 661 | "opcode 0x%02x, got datalength=%i, want <=16\n", |
| 662 | __func__, op.opcode, datalength); |
Carl-Daniel Hailfinger | 142e30f | 2009-07-14 10:26:56 +0000 | [diff] [blame] | 663 | return SPI_INVALID_LENGTH; |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 664 | } |
Stefan Reinauer | 4311956 | 2008-11-02 19:51:50 +0000 | [diff] [blame] | 665 | return ich9_run_opcode(op, offset, datalength, data); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 666 | default: |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 667 | msg_perr("%s: unsupported chipset\n", __func__); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 668 | } |
Stefan Reinauer | a9424d5 | 2008-06-27 16:28:34 +0000 | [diff] [blame] | 669 | |
| 670 | /* If we ever get here, something really weird happened */ |
| 671 | return -1; |
| 672 | } |
| 673 | |
Carl-Daniel Hailfinger | cbf563c | 2009-06-16 08:55:44 +0000 | [diff] [blame] | 674 | int ich_spi_read(struct flashchip *flash, uint8_t * buf, int start, int len) |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 675 | { |
Rudolf Marek | 3fdbccf | 2008-06-30 21:38:30 +0000 | [diff] [blame] | 676 | int maxdata = 64; |
| 677 | |
Carl-Daniel Hailfinger | 38a059d | 2009-06-13 12:04:03 +0000 | [diff] [blame] | 678 | if (spi_controller == SPI_CONTROLLER_VIA) |
Rudolf Marek | 3fdbccf | 2008-06-30 21:38:30 +0000 | [diff] [blame] | 679 | maxdata = 16; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 680 | |
Carl-Daniel Hailfinger | cbf563c | 2009-06-16 08:55:44 +0000 | [diff] [blame] | 681 | return spi_read_chunked(flash, buf, start, len, maxdata); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 682 | } |
| 683 | |
Carl-Daniel Hailfinger | 96930c3 | 2009-05-09 02:30:21 +0000 | [diff] [blame] | 684 | int ich_spi_write_256(struct flashchip *flash, uint8_t * buf) |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 685 | { |
Carl-Daniel Hailfinger | 5824fbf | 2010-05-21 23:09:42 +0000 | [diff] [blame] | 686 | int i, ret = 0; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 687 | int total_size = flash->total_size * 1024; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 688 | int erase_size = 64 * 1024; |
Rudolf Marek | 3fdbccf | 2008-06-30 21:38:30 +0000 | [diff] [blame] | 689 | int maxdata = 64; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 690 | |
Carl-Daniel Hailfinger | 5824fbf | 2010-05-21 23:09:42 +0000 | [diff] [blame] | 691 | if (spi_controller == SPI_CONTROLLER_VIA) |
| 692 | maxdata = 16; |
| 693 | |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 694 | spi_disable_blockprotect(); |
Carl-Daniel Hailfinger | 9612303 | 2009-11-25 02:07:30 +0000 | [diff] [blame] | 695 | /* Erase first */ |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 696 | msg_pinfo("Erasing flash before programming... "); |
Carl-Daniel Hailfinger | 9612303 | 2009-11-25 02:07:30 +0000 | [diff] [blame] | 697 | if (erase_flash(flash)) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 698 | msg_perr("ERASE FAILED!\n"); |
Carl-Daniel Hailfinger | 9612303 | 2009-11-25 02:07:30 +0000 | [diff] [blame] | 699 | return -1; |
| 700 | } |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 701 | msg_pinfo("done.\n"); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 702 | |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 703 | msg_pinfo("Programming page: \n"); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 704 | for (i = 0; i < total_size / erase_size; i++) { |
Carl-Daniel Hailfinger | 5824fbf | 2010-05-21 23:09:42 +0000 | [diff] [blame] | 705 | ret = spi_write_chunked(flash, buf + (i * erase_size), |
| 706 | i * erase_size, erase_size, maxdata); |
| 707 | if (ret) |
| 708 | break; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 709 | } |
| 710 | |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 711 | msg_pinfo("\n"); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 712 | |
Carl-Daniel Hailfinger | 5824fbf | 2010-05-21 23:09:42 +0000 | [diff] [blame] | 713 | return ret; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 714 | } |
| 715 | |
Carl-Daniel Hailfinger | d047829 | 2009-07-10 21:08:55 +0000 | [diff] [blame] | 716 | int ich_spi_send_command(unsigned int writecnt, unsigned int readcnt, |
Stefan Reinauer | 325b5d4 | 2008-06-27 15:18:20 +0000 | [diff] [blame] | 717 | const unsigned char *writearr, unsigned char *readarr) |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 718 | { |
Carl-Daniel Hailfinger | 142e30f | 2009-07-14 10:26:56 +0000 | [diff] [blame] | 719 | int result; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 720 | int opcode_index = -1; |
| 721 | const unsigned char cmd = *writearr; |
| 722 | OPCODE *opcode; |
| 723 | uint32_t addr = 0; |
| 724 | uint8_t *data; |
| 725 | int count; |
| 726 | |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 727 | /* find cmd in opcodes-table */ |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 728 | opcode_index = find_opcode(curopcodes, cmd); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 729 | if (opcode_index == -1) { |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 730 | /* FIXME: Reprogram opcodes if possible. Autodetect type of |
| 731 | * opcode by checking readcnt/writecnt. |
| 732 | */ |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 733 | msg_pdbg("Invalid OPCODE 0x%02x\n", cmd); |
Carl-Daniel Hailfinger | 3e9dbea | 2009-05-13 11:40:08 +0000 | [diff] [blame] | 734 | return SPI_INVALID_OPCODE; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 735 | } |
| 736 | |
| 737 | opcode = &(curopcodes->opcode[opcode_index]); |
| 738 | |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 739 | /* The following valid writecnt/readcnt combinations exist: |
| 740 | * writecnt = 4, readcnt >= 0 |
| 741 | * writecnt = 1, readcnt >= 0 |
| 742 | * writecnt >= 4, readcnt = 0 |
| 743 | * writecnt >= 1, readcnt = 0 |
| 744 | * writecnt >= 1 is guaranteed for all commands. |
| 745 | */ |
| 746 | if ((opcode->spi_type == SPI_OPCODE_TYPE_READ_WITH_ADDRESS) && |
| 747 | (writecnt != 4)) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 748 | msg_perr("%s: Internal command size error for opcode " |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 749 | "0x%02x, got writecnt=%i, want =4\n", __func__, cmd, |
| 750 | writecnt); |
| 751 | return SPI_INVALID_LENGTH; |
| 752 | } |
| 753 | if ((opcode->spi_type == SPI_OPCODE_TYPE_READ_NO_ADDRESS) && |
| 754 | (writecnt != 1)) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 755 | msg_perr("%s: Internal command size error for opcode " |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 756 | "0x%02x, got writecnt=%i, want =1\n", __func__, cmd, |
| 757 | writecnt); |
| 758 | return SPI_INVALID_LENGTH; |
| 759 | } |
| 760 | if ((opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) && |
| 761 | (writecnt < 4)) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 762 | msg_perr("%s: Internal command size error for opcode " |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 763 | "0x%02x, got writecnt=%i, want >=4\n", __func__, cmd, |
| 764 | writecnt); |
| 765 | return SPI_INVALID_LENGTH; |
| 766 | } |
| 767 | if (((opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) || |
| 768 | (opcode->spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS)) && |
| 769 | (readcnt)) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 770 | msg_perr("%s: Internal command size error for opcode " |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 771 | "0x%02x, got readcnt=%i, want =0\n", __func__, cmd, |
| 772 | readcnt); |
| 773 | return SPI_INVALID_LENGTH; |
| 774 | } |
| 775 | |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 776 | /* if opcode-type requires an address */ |
| 777 | if (opcode->spi_type == SPI_OPCODE_TYPE_READ_WITH_ADDRESS || |
| 778 | opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) { |
Stefan Reinauer | 325b5d4 | 2008-06-27 15:18:20 +0000 | [diff] [blame] | 779 | addr = (writearr[1] << 16) | |
| 780 | (writearr[2] << 8) | (writearr[3] << 0); |
Carl-Daniel Hailfinger | 80f3d05 | 2010-05-28 15:53:08 +0000 | [diff] [blame] | 781 | switch (spi_controller) { |
| 782 | case SPI_CONTROLLER_ICH7: |
| 783 | case SPI_CONTROLLER_ICH9: |
| 784 | if (addr < ichspi_bbar) { |
| 785 | msg_perr("%s: Address 0x%06x below allowed " |
| 786 | "range 0x%06x-0xffffff\n", __func__, |
| 787 | addr, ichspi_bbar); |
| 788 | return SPI_INVALID_ADDRESS; |
| 789 | } |
| 790 | break; |
| 791 | default: |
| 792 | break; |
| 793 | } |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 794 | } |
Stefan Reinauer | 325b5d4 | 2008-06-27 15:18:20 +0000 | [diff] [blame] | 795 | |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 796 | /* translate read/write array/count */ |
| 797 | if (opcode->spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS) { |
Stefan Reinauer | 325b5d4 | 2008-06-27 15:18:20 +0000 | [diff] [blame] | 798 | data = (uint8_t *) (writearr + 1); |
| 799 | count = writecnt - 1; |
| 800 | } else if (opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) { |
| 801 | data = (uint8_t *) (writearr + 4); |
| 802 | count = writecnt - 4; |
| 803 | } else { |
| 804 | data = (uint8_t *) readarr; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 805 | count = readcnt; |
| 806 | } |
Stefan Reinauer | 325b5d4 | 2008-06-27 15:18:20 +0000 | [diff] [blame] | 807 | |
Carl-Daniel Hailfinger | 142e30f | 2009-07-14 10:26:56 +0000 | [diff] [blame] | 808 | result = run_opcode(*opcode, addr, count, data); |
| 809 | if (result) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 810 | msg_pdbg("run OPCODE 0x%02x failed\n", opcode->opcode); |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 811 | } |
| 812 | |
Carl-Daniel Hailfinger | 142e30f | 2009-07-14 10:26:56 +0000 | [diff] [blame] | 813 | return result; |
Dominik Geyer | b46acba | 2008-05-16 12:55:55 +0000 | [diff] [blame] | 814 | } |
Carl-Daniel Hailfinger | 02487aa | 2009-07-22 15:36:50 +0000 | [diff] [blame] | 815 | |
Carl-Daniel Hailfinger | 26f7e64 | 2009-09-18 15:50:56 +0000 | [diff] [blame] | 816 | int ich_spi_send_multicommand(struct spi_command *cmds) |
Carl-Daniel Hailfinger | 02487aa | 2009-07-22 15:36:50 +0000 | [diff] [blame] | 817 | { |
| 818 | int ret = 0; |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 819 | int i; |
Carl-Daniel Hailfinger | 26f7e64 | 2009-09-18 15:50:56 +0000 | [diff] [blame] | 820 | int oppos, preoppos; |
| 821 | for (; (cmds->writecnt || cmds->readcnt) && !ret; cmds++) { |
Carl-Daniel Hailfinger | 26f7e64 | 2009-09-18 15:50:56 +0000 | [diff] [blame] | 822 | if ((cmds + 1)->writecnt || (cmds + 1)->readcnt) { |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 823 | /* Next command is valid. */ |
Carl-Daniel Hailfinger | 26f7e64 | 2009-09-18 15:50:56 +0000 | [diff] [blame] | 824 | preoppos = find_preop(curopcodes, cmds->writearr[0]); |
| 825 | oppos = find_opcode(curopcodes, (cmds + 1)->writearr[0]); |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 826 | if ((oppos == -1) && (preoppos != -1)) { |
| 827 | /* Current command is listed as preopcode in |
| 828 | * ICH struct OPCODES, but next command is not |
| 829 | * listed as opcode in that struct. |
| 830 | * Check for command sanity, then |
| 831 | * try to reprogram the ICH opcode list. |
| 832 | */ |
| 833 | if (find_preop(curopcodes, |
| 834 | (cmds + 1)->writearr[0]) != -1) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 835 | msg_perr("%s: Two subsequent " |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 836 | "preopcodes 0x%02x and 0x%02x, " |
| 837 | "ignoring the first.\n", |
| 838 | __func__, cmds->writearr[0], |
| 839 | (cmds + 1)->writearr[0]); |
| 840 | continue; |
| 841 | } |
| 842 | /* If the chipset is locked down, we'll fail |
| 843 | * during execution of the next command anyway. |
| 844 | * No need to bother with fixups. |
| 845 | */ |
| 846 | if (!ichspi_lock) { |
Sean Nelson | 316a29f | 2010-05-07 20:09:04 +0000 | [diff] [blame] | 847 | msg_pdbg("%s: FIXME: Add on-the-fly" |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 848 | " reprogramming of the " |
| 849 | "chipset opcode list.\n", |
| 850 | __func__); |
| 851 | /* FIXME: Reprogram opcode menu. |
| 852 | * Find a less-useful opcode, replace it |
| 853 | * with the wanted opcode, detect optype |
| 854 | * and reprogram the opcode menu. |
| 855 | * Update oppos so the next if-statement |
| 856 | * can do something useful. |
| 857 | */ |
| 858 | //curopcodes.opcode[lessusefulindex] = (cmds + 1)->writearr[0]); |
| 859 | //update_optypes(curopcodes); |
| 860 | //program_opcodes(curopcodes); |
| 861 | //oppos = find_opcode(curopcodes, (cmds + 1)->writearr[0]); |
| 862 | continue; |
| 863 | } |
| 864 | } |
| 865 | if ((oppos != -1) && (preoppos != -1)) { |
| 866 | /* Current command is listed as preopcode in |
| 867 | * ICH struct OPCODES and next command is listed |
| 868 | * as opcode in that struct. Match them up. |
| 869 | */ |
| 870 | curopcodes->opcode[oppos].atomic = preoppos + 1; |
Carl-Daniel Hailfinger | 26f7e64 | 2009-09-18 15:50:56 +0000 | [diff] [blame] | 871 | continue; |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 872 | } |
| 873 | /* If none of the above if-statements about oppos or |
| 874 | * preoppos matched, this is a normal opcode. |
| 875 | */ |
| 876 | } |
Carl-Daniel Hailfinger | 26f7e64 | 2009-09-18 15:50:56 +0000 | [diff] [blame] | 877 | ret = ich_spi_send_command(cmds->writecnt, cmds->readcnt, |
| 878 | cmds->writearr, cmds->readarr); |
Carl-Daniel Hailfinger | f15e1ab | 2010-02-11 11:28:37 +0000 | [diff] [blame] | 879 | /* Reset the type of all opcodes to non-atomic. */ |
| 880 | for (i = 0; i < 8; i++) |
| 881 | curopcodes->opcode[i].atomic = 0; |
Carl-Daniel Hailfinger | 02487aa | 2009-07-22 15:36:50 +0000 | [diff] [blame] | 882 | } |
| 883 | return ret; |
| 884 | } |
Carl-Daniel Hailfinger | cceafa2 | 2010-05-26 01:45:41 +0000 | [diff] [blame] | 885 | |
| 886 | #endif |