blob: d6f9118e1f33e74faadfd48aeff31033dbd06378 [file] [log] [blame]
Dominik Geyerb46acba2008-05-16 12:55:55 +00001/*
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 Reinauera9424d52008-06-27 16:28:34 +00007 * Copyright (C) 2008 coresystems GmbH <info@coresystems.de>
Carl-Daniel Hailfinger5824fbf2010-05-21 23:09:42 +00008 * Copyright (C) 2009, 2010 Carl-Daniel Hailfinger
Dominik Geyerb46acba2008-05-16 12:55:55 +00009 *
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 Geyerb46acba2008-05-16 12:55:55 +000023 */
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 Hailfingercceafa22010-05-26 01:45:41 +000036#if defined(__i386__) || defined(__x86_64__)
37
Dominik Geyerb46acba2008-05-16 12:55:55 +000038#include <string.h>
Dominik Geyerb46acba2008-05-16 12:55:55 +000039#include "flash.h"
Sean Nelson14ba6682010-02-26 05:48:29 +000040#include "chipdrivers.h"
Dominik Geyerb46acba2008-05-16 12:55:55 +000041#include "spi.h"
42
Stefan Reinauera9424d52008-06-27 16:28:34 +000043/* 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 Geyerb46acba2008-05-16 12:55:55 +000048#define SSFS_SCIP 0x00000001
49#define SSFS_CDS 0x00000004
50#define SSFS_FCERR 0x00000008
51#define SSFS_AEL 0x00000010
Stefan Reinauera9424d52008-06-27 16:28:34 +000052
53#define ICH9_REG_SSFC 0x91 /* 24 Bits */
Dominik Geyerb46acba2008-05-16 12:55:55 +000054#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 Reinauera9424d52008-06-27 16:28:34 +000064
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 Geyerb46acba2008-05-16 12:55:55 +000068
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 Reinauera9424d52008-06-27 16:28:34 +000075// 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 Marek3fdbccf2008-06-30 21:38:30 +000081/* 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 Reinauera9424d52008-06-27 16:28:34 +000091#define ICH7_REG_SPIC 0x02 /* 16 Bits */
92#define SPIC_SCGO 0x0002
93#define SPIC_ACS 0x0004
94#define SPIC_SPOP 0x0008
Rudolf Marek3fdbccf2008-06-30 21:38:30 +000095#define SPIC_DS 0x4000
Stefan Reinauera9424d52008-06-27 16:28:34 +000096
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 ningc05a2952008-12-08 18:16:58 +0000103/* ICH SPI configuration lock-down. May be set during chipset enabling. */
104int ichspi_lock = 0;
105
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000106uint32_t ichspi_bbar = 0;
107
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000108void *ich_spibar = NULL;
109
Dominik Geyerb46acba2008-05-16 12:55:55 +0000110typedef struct _OPCODE {
111 uint8_t opcode; //This commands spi opcode
112 uint8_t spi_type; //This commands spi type
113 uint8_t atomic; //Use preop: (0: none, 1: preop0, 2: preop1
114} OPCODE;
115
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000116/* Suggested opcode definition:
Dominik Geyerb46acba2008-05-16 12:55:55 +0000117 * Preop 1: Write Enable
118 * Preop 2: Write Status register enable
119 *
120 * OP 0: Write address
121 * OP 1: Read Address
122 * OP 2: ERASE block
123 * OP 3: Read Status register
124 * OP 4: Read ID
125 * OP 5: Write Status register
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000126 * OP 6: chip private (read JEDEC id)
Dominik Geyerb46acba2008-05-16 12:55:55 +0000127 * OP 7: Chip erase
128 */
129typedef struct _OPCODES {
130 uint8_t preop[2];
131 OPCODE opcode[8];
132} OPCODES;
133
Stefan Reinauer325b5d42008-06-27 15:18:20 +0000134static OPCODES *curopcodes = NULL;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000135
136/* HW access functions */
Uwe Hermann09e04f72009-05-16 22:36:00 +0000137static uint32_t REGREAD32(int X)
Dominik Geyerb46acba2008-05-16 12:55:55 +0000138{
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000139 return mmio_readl(ich_spibar + X);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000140}
141
Uwe Hermann09e04f72009-05-16 22:36:00 +0000142static uint16_t REGREAD16(int X)
Stefan Reinauera9424d52008-06-27 16:28:34 +0000143{
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000144 return mmio_readw(ich_spibar + X);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000145}
146
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000147#define REGWRITE32(X,Y) mmio_writel(Y, ich_spibar+X)
148#define REGWRITE16(X,Y) mmio_writew(Y, ich_spibar+X)
149#define REGWRITE8(X,Y) mmio_writeb(Y, ich_spibar+X)
Dominik Geyerb46acba2008-05-16 12:55:55 +0000150
Dominik Geyerb46acba2008-05-16 12:55:55 +0000151/* Common SPI functions */
Uwe Hermann09e04f72009-05-16 22:36:00 +0000152static int find_opcode(OPCODES *op, uint8_t opcode);
153static int find_preop(OPCODES *op, uint8_t preop);
FENG yu ningf041e9b2008-12-15 02:32:11 +0000154static int generate_opcodes(OPCODES * op);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000155static int program_opcodes(OPCODES * op);
Stefan Reinauer43119562008-11-02 19:51:50 +0000156static int run_opcode(OPCODE op, uint32_t offset,
Stefan Reinauer325b5d42008-06-27 15:18:20 +0000157 uint8_t datalength, uint8_t * data);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000158
FENG yu ningf041e9b2008-12-15 02:32:11 +0000159/* for pairing opcodes with their required preop */
160struct preop_opcode_pair {
161 uint8_t preop;
162 uint8_t opcode;
163};
164
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000165/* List of opcodes which need preopcodes and matching preopcodes. Unused. */
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000166const struct preop_opcode_pair pops[] = {
FENG yu ningf041e9b2008-12-15 02:32:11 +0000167 {JEDEC_WREN, JEDEC_BYTE_PROGRAM},
168 {JEDEC_WREN, JEDEC_SE}, /* sector erase */
169 {JEDEC_WREN, JEDEC_BE_52}, /* block erase */
170 {JEDEC_WREN, JEDEC_BE_D8}, /* block erase */
171 {JEDEC_WREN, JEDEC_CE_60}, /* chip erase */
172 {JEDEC_WREN, JEDEC_CE_C7}, /* chip erase */
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000173 /* FIXME: WRSR requires either EWSR or WREN depending on chip type. */
174 {JEDEC_WREN, JEDEC_WRSR},
FENG yu ningf041e9b2008-12-15 02:32:11 +0000175 {JEDEC_EWSR, JEDEC_WRSR},
176 {0,}
177};
178
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000179/* Reasonable default configuration. Needs ad-hoc modifications if we
180 * encounter unlisted opcodes. Fun.
181 */
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000182static OPCODES O_ST_M25P = {
Dominik Geyerb46acba2008-05-16 12:55:55 +0000183 {
184 JEDEC_WREN,
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000185 JEDEC_EWSR,
186 },
Dominik Geyerb46acba2008-05-16 12:55:55 +0000187 {
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000188 {JEDEC_BYTE_PROGRAM, SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS, 0}, // Write Byte
Stefan Reinauer325b5d42008-06-27 15:18:20 +0000189 {JEDEC_READ, SPI_OPCODE_TYPE_READ_WITH_ADDRESS, 0}, // Read Data
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000190 {JEDEC_BE_D8, SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS, 0}, // Erase Sector
Stefan Reinauer325b5d42008-06-27 15:18:20 +0000191 {JEDEC_RDSR, SPI_OPCODE_TYPE_READ_NO_ADDRESS, 0}, // Read Device Status Reg
Carl-Daniel Hailfinger15aa7c62009-05-26 21:25:08 +0000192 {JEDEC_REMS, SPI_OPCODE_TYPE_READ_WITH_ADDRESS, 0}, // Read Electronic Manufacturer Signature
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000193 {JEDEC_WRSR, SPI_OPCODE_TYPE_WRITE_NO_ADDRESS, 0}, // Write Status Register
Stefan Reinauer325b5d42008-06-27 15:18:20 +0000194 {JEDEC_RDID, SPI_OPCODE_TYPE_READ_NO_ADDRESS, 0}, // Read JDEC ID
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000195 {JEDEC_CE_C7, SPI_OPCODE_TYPE_WRITE_NO_ADDRESS, 0}, // Bulk erase
196 }
Dominik Geyerb46acba2008-05-16 12:55:55 +0000197};
198
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000199static OPCODES O_EXISTING = {};
FENG yu ningc05a2952008-12-08 18:16:58 +0000200
Uwe Hermann09e04f72009-05-16 22:36:00 +0000201static int find_opcode(OPCODES *op, uint8_t opcode)
FENG yu ningc05a2952008-12-08 18:16:58 +0000202{
203 int a;
204
205 for (a = 0; a < 8; a++) {
206 if (op->opcode[a].opcode == opcode)
207 return a;
208 }
209
210 return -1;
211}
212
Uwe Hermann09e04f72009-05-16 22:36:00 +0000213static int find_preop(OPCODES *op, uint8_t preop)
FENG yu ningc05a2952008-12-08 18:16:58 +0000214{
215 int a;
216
217 for (a = 0; a < 2; a++) {
218 if (op->preop[a] == preop)
219 return a;
220 }
221
222 return -1;
223}
224
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000225/* Create a struct OPCODES based on what we find in the locked down chipset. */
FENG yu ningf041e9b2008-12-15 02:32:11 +0000226static int generate_opcodes(OPCODES * op)
FENG yu ningc05a2952008-12-08 18:16:58 +0000227{
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000228 int a;
FENG yu ningc05a2952008-12-08 18:16:58 +0000229 uint16_t preop, optype;
230 uint32_t opmenu[2];
FENG yu ningc05a2952008-12-08 18:16:58 +0000231
232 if (op == NULL) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000233 msg_perr("\n%s: null OPCODES pointer!\n", __func__);
FENG yu ningc05a2952008-12-08 18:16:58 +0000234 return -1;
235 }
236
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000237 switch (spi_controller) {
238 case SPI_CONTROLLER_ICH7:
239 case SPI_CONTROLLER_VIA:
FENG yu ningc05a2952008-12-08 18:16:58 +0000240 preop = REGREAD16(ICH7_REG_PREOP);
241 optype = REGREAD16(ICH7_REG_OPTYPE);
242 opmenu[0] = REGREAD32(ICH7_REG_OPMENU);
243 opmenu[1] = REGREAD32(ICH7_REG_OPMENU + 4);
244 break;
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000245 case SPI_CONTROLLER_ICH9:
FENG yu ningc05a2952008-12-08 18:16:58 +0000246 preop = REGREAD16(ICH9_REG_PREOP);
247 optype = REGREAD16(ICH9_REG_OPTYPE);
248 opmenu[0] = REGREAD32(ICH9_REG_OPMENU);
249 opmenu[1] = REGREAD32(ICH9_REG_OPMENU + 4);
250 break;
251 default:
Sean Nelson316a29f2010-05-07 20:09:04 +0000252 msg_perr("%s: unsupported chipset\n", __func__);
FENG yu ningc05a2952008-12-08 18:16:58 +0000253 return -1;
254 }
255
256 op->preop[0] = (uint8_t) preop;
257 op->preop[1] = (uint8_t) (preop >> 8);
258
259 for (a = 0; a < 8; a++) {
260 op->opcode[a].spi_type = (uint8_t) (optype & 0x3);
261 optype >>= 2;
262 }
263
264 for (a = 0; a < 4; a++) {
265 op->opcode[a].opcode = (uint8_t) (opmenu[0] & 0xff);
266 opmenu[0] >>= 8;
267 }
268
269 for (a = 4; a < 8; a++) {
270 op->opcode[a].opcode = (uint8_t) (opmenu[1] & 0xff);
271 opmenu[1] >>= 8;
272 }
273
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000274 /* No preopcodes used by default. */
275 for (a = 0; a < 8; a++)
FENG yu ningc05a2952008-12-08 18:16:58 +0000276 op->opcode[a].atomic = 0;
277
FENG yu ningc05a2952008-12-08 18:16:58 +0000278 return 0;
279}
280
Dominik Geyerb46acba2008-05-16 12:55:55 +0000281int program_opcodes(OPCODES * op)
282{
283 uint8_t a;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000284 uint16_t preop, optype;
285 uint32_t opmenu[2];
Dominik Geyerb46acba2008-05-16 12:55:55 +0000286
287 /* Program Prefix Opcodes */
Dominik Geyerb46acba2008-05-16 12:55:55 +0000288 /* 0:7 Prefix Opcode 1 */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000289 preop = (op->preop[0]);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000290 /* 8:16 Prefix Opcode 2 */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000291 preop |= ((uint16_t) op->preop[1]) << 8;
Uwe Hermann394131e2008-10-18 21:14:13 +0000292
Stefan Reinauera9424d52008-06-27 16:28:34 +0000293 /* Program Opcode Types 0 - 7 */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000294 optype = 0;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000295 for (a = 0; a < 8; a++) {
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000296 optype |= ((uint16_t) op->opcode[a].spi_type) << (a * 2);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000297 }
Uwe Hermann394131e2008-10-18 21:14:13 +0000298
Stefan Reinauera9424d52008-06-27 16:28:34 +0000299 /* Program Allowable Opcodes 0 - 3 */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000300 opmenu[0] = 0;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000301 for (a = 0; a < 4; a++) {
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000302 opmenu[0] |= ((uint32_t) op->opcode[a].opcode) << (a * 8);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000303 }
Stefan Reinauera9424d52008-06-27 16:28:34 +0000304
Dominik Geyerb46acba2008-05-16 12:55:55 +0000305 /*Program Allowable Opcodes 4 - 7 */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000306 opmenu[1] = 0;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000307 for (a = 4; a < 8; a++) {
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000308 opmenu[1] |= ((uint32_t) op->opcode[a].opcode) << ((a - 4) * 8);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000309 }
Stefan Reinauera9424d52008-06-27 16:28:34 +0000310
Sean Nelson316a29f2010-05-07 20:09:04 +0000311 msg_pdbg("\n%s: preop=%04x optype=%04x opmenu=%08x%08x\n", __func__, preop, optype, opmenu[0], opmenu[1]);
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000312 switch (spi_controller) {
313 case SPI_CONTROLLER_ICH7:
314 case SPI_CONTROLLER_VIA:
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000315 REGWRITE16(ICH7_REG_PREOP, preop);
316 REGWRITE16(ICH7_REG_OPTYPE, optype);
317 REGWRITE32(ICH7_REG_OPMENU, opmenu[0]);
318 REGWRITE32(ICH7_REG_OPMENU + 4, opmenu[1]);
319 break;
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000320 case SPI_CONTROLLER_ICH9:
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000321 REGWRITE16(ICH9_REG_PREOP, preop);
322 REGWRITE16(ICH9_REG_OPTYPE, optype);
323 REGWRITE32(ICH9_REG_OPMENU, opmenu[0]);
324 REGWRITE32(ICH9_REG_OPMENU + 4, opmenu[1]);
325 break;
326 default:
Sean Nelson316a29f2010-05-07 20:09:04 +0000327 msg_perr("%s: unsupported chipset\n", __func__);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000328 return -1;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000329 }
Dominik Geyerb46acba2008-05-16 12:55:55 +0000330
331 return 0;
332}
333
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000334/*
335 * Try to set BBAR (BIOS Base Address Register), but read back the value in case
336 * it didn't stick.
337 */
338void ich_set_bbar(uint32_t minaddr)
339{
340 switch (spi_controller) {
341 case SPI_CONTROLLER_ICH7:
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000342 mmio_writel(minaddr, ich_spibar + 0x50);
343 ichspi_bbar = mmio_readl(ich_spibar + 0x50);
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000344 /* We don't have any option except complaining. */
345 if (ichspi_bbar != minaddr)
346 msg_perr("Setting BBAR failed!\n");
347 break;
348 case SPI_CONTROLLER_ICH9:
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000349 mmio_writel(minaddr, ich_spibar + 0xA0);
350 ichspi_bbar = mmio_readl(ich_spibar + 0xA0);
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000351 /* We don't have any option except complaining. */
352 if (ichspi_bbar != minaddr)
353 msg_perr("Setting BBAR failed!\n");
354 break;
355 default:
356 /* Not sure if BBAR actually exists on VIA. */
357 msg_pdbg("Setting BBAR is not implemented for VIA yet.\n");
358 break;
359 }
360}
361
FENG yu ningf041e9b2008-12-15 02:32:11 +0000362/* This function generates OPCODES from or programs OPCODES to ICH according to
363 * the chipset's SPI configuration lock.
FENG yu ningc05a2952008-12-08 18:16:58 +0000364 *
FENG yu ningf041e9b2008-12-15 02:32:11 +0000365 * It should be called before ICH sends any spi command.
FENG yu ningc05a2952008-12-08 18:16:58 +0000366 */
Uwe Hermann7b2969b2009-04-15 10:52:49 +0000367int ich_init_opcodes(void)
FENG yu ningc05a2952008-12-08 18:16:58 +0000368{
369 int rc = 0;
370 OPCODES *curopcodes_done;
371
372 if (curopcodes)
373 return 0;
374
375 if (ichspi_lock) {
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000376 msg_pdbg("Reading OPCODES... ");
FENG yu ningc05a2952008-12-08 18:16:58 +0000377 curopcodes_done = &O_EXISTING;
FENG yu ningf041e9b2008-12-15 02:32:11 +0000378 rc = generate_opcodes(curopcodes_done);
FENG yu ningc05a2952008-12-08 18:16:58 +0000379 } else {
Sean Nelson316a29f2010-05-07 20:09:04 +0000380 msg_pdbg("Programming OPCODES... ");
FENG yu ningc05a2952008-12-08 18:16:58 +0000381 curopcodes_done = &O_ST_M25P;
382 rc = program_opcodes(curopcodes_done);
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000383 /* Technically not part of opcode init, but it allows opcodes
384 * to run without transaction errors by setting the lowest
385 * allowed address to zero.
386 */
387 ich_set_bbar(0);
FENG yu ningc05a2952008-12-08 18:16:58 +0000388 }
389
390 if (rc) {
391 curopcodes = NULL;
Sean Nelson316a29f2010-05-07 20:09:04 +0000392 msg_perr("failed\n");
FENG yu ningc05a2952008-12-08 18:16:58 +0000393 return 1;
394 } else {
395 curopcodes = curopcodes_done;
Sean Nelson316a29f2010-05-07 20:09:04 +0000396 msg_pdbg("done\n");
FENG yu ningc05a2952008-12-08 18:16:58 +0000397 return 0;
398 }
399}
400
Stefan Reinauer43119562008-11-02 19:51:50 +0000401static int ich7_run_opcode(OPCODE op, uint32_t offset,
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000402 uint8_t datalength, uint8_t * data, int maxdata)
Dominik Geyerb46acba2008-05-16 12:55:55 +0000403{
404 int write_cmd = 0;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000405 int timeout;
Peter Stuge7e2c0792008-06-29 01:30:41 +0000406 uint32_t temp32 = 0;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000407 uint16_t temp16;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000408 uint32_t a;
Stefan Reinauer43119562008-11-02 19:51:50 +0000409 uint64_t opmenu;
410 int opcode_index;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000411
412 /* Is it a write command? */
413 if ((op.spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS)
414 || (op.spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS)) {
415 write_cmd = 1;
416 }
417
418 /* Programm Offset in Flash into FADDR */
Stefan Reinauera9424d52008-06-27 16:28:34 +0000419 REGWRITE32(ICH7_REG_SPIA, (offset & 0x00FFFFFF)); /* SPI addresses are 24 BIT only */
Dominik Geyerb46acba2008-05-16 12:55:55 +0000420
421 /* Program data into FDATA0 to N */
422 if (write_cmd && (datalength != 0)) {
423 temp32 = 0;
424 for (a = 0; a < datalength; a++) {
425 if ((a % 4) == 0) {
426 temp32 = 0;
427 }
428
429 temp32 |= ((uint32_t) data[a]) << ((a % 4) * 8);
430
431 if ((a % 4) == 3) {
Stefan Reinauera9424d52008-06-27 16:28:34 +0000432 REGWRITE32(ICH7_REG_SPID0 + (a - (a % 4)),
433 temp32);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000434 }
435 }
436 if (((a - 1) % 4) != 3) {
Stefan Reinauera9424d52008-06-27 16:28:34 +0000437 REGWRITE32(ICH7_REG_SPID0 +
438 ((a - 1) - ((a - 1) % 4)), temp32);
439 }
440
441 }
442
443 /* Assemble SPIS */
444 temp16 = 0;
445 /* clear error status registers */
446 temp16 |= (SPIS_CDS + SPIS_FCERR);
447 REGWRITE16(ICH7_REG_SPIS, temp16);
448
449 /* Assemble SPIC */
450 temp16 = 0;
451
452 if (datalength != 0) {
453 temp16 |= SPIC_DS;
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000454 temp16 |= ((uint32_t) ((datalength - 1) & (maxdata - 1))) << 8;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000455 }
456
457 /* Select opcode */
Stefan Reinauer43119562008-11-02 19:51:50 +0000458 opmenu = REGREAD32(ICH7_REG_OPMENU);
459 opmenu |= ((uint64_t)REGREAD32(ICH7_REG_OPMENU + 4)) << 32;
460
Uwe Hermann7b2969b2009-04-15 10:52:49 +0000461 for (opcode_index = 0; opcode_index < 8; opcode_index++) {
462 if ((opmenu & 0xff) == op.opcode) {
Stefan Reinauer43119562008-11-02 19:51:50 +0000463 break;
464 }
465 opmenu >>= 8;
466 }
467 if (opcode_index == 8) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000468 msg_pdbg("Opcode %x not found.\n", op.opcode);
Stefan Reinauer43119562008-11-02 19:51:50 +0000469 return 1;
470 }
471 temp16 |= ((uint16_t) (opcode_index & 0x07)) << 4;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000472
473 /* Handle Atomic */
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000474 switch (op.atomic) {
475 case 2:
476 /* Select second preop. */
477 temp16 |= SPIC_SPOP;
478 /* And fall through. */
479 case 1:
480 /* Atomic command (preop+op) */
Stefan Reinauera9424d52008-06-27 16:28:34 +0000481 temp16 |= SPIC_ACS;
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000482 break;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000483 }
484
485 /* Start */
486 temp16 |= SPIC_SCGO;
487
488 /* write it */
489 REGWRITE16(ICH7_REG_SPIC, temp16);
490
491 /* wait for cycle complete */
Carl-Daniel Hailfinger4c24ad42009-05-09 07:24:23 +0000492 timeout = 100 * 1000 * 60; // 60s is a looong timeout.
Stefan Reinauera9424d52008-06-27 16:28:34 +0000493 while (((REGREAD16(ICH7_REG_SPIS) & SPIS_CDS) == 0) && --timeout) {
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000494 programmer_delay(10);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000495 }
496 if (!timeout) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000497 msg_perr("timeout\n");
Stefan Reinauera9424d52008-06-27 16:28:34 +0000498 }
499
Sean Nelson316a29f2010-05-07 20:09:04 +0000500 /* FIXME: make sure we do not needlessly cause transaction errors. */
Stefan Reinauera9424d52008-06-27 16:28:34 +0000501 if ((REGREAD16(ICH7_REG_SPIS) & SPIS_FCERR) != 0) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000502 msg_pdbg("Transaction error!\n");
Stefan Reinauera9424d52008-06-27 16:28:34 +0000503 return 1;
504 }
505
506 if ((!write_cmd) && (datalength != 0)) {
507 for (a = 0; a < datalength; a++) {
508 if ((a % 4) == 0) {
509 temp32 = REGREAD32(ICH7_REG_SPID0 + (a));
510 }
511
512 data[a] =
513 (temp32 & (((uint32_t) 0xff) << ((a % 4) * 8)))
514 >> ((a % 4) * 8);
515 }
516 }
517
518 return 0;
519}
520
Stefan Reinauer43119562008-11-02 19:51:50 +0000521static int ich9_run_opcode(OPCODE op, uint32_t offset,
Stefan Reinauera9424d52008-06-27 16:28:34 +0000522 uint8_t datalength, uint8_t * data)
523{
524 int write_cmd = 0;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000525 int timeout;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000526 uint32_t temp32;
527 uint32_t a;
Stefan Reinauer43119562008-11-02 19:51:50 +0000528 uint64_t opmenu;
529 int opcode_index;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000530
531 /* Is it a write command? */
532 if ((op.spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS)
533 || (op.spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS)) {
534 write_cmd = 1;
535 }
536
537 /* Programm Offset in Flash into FADDR */
538 REGWRITE32(ICH9_REG_FADDR, (offset & 0x00FFFFFF)); /* SPI addresses are 24 BIT only */
539
540 /* Program data into FDATA0 to N */
541 if (write_cmd && (datalength != 0)) {
542 temp32 = 0;
543 for (a = 0; a < datalength; a++) {
544 if ((a % 4) == 0) {
545 temp32 = 0;
546 }
547
548 temp32 |= ((uint32_t) data[a]) << ((a % 4) * 8);
549
550 if ((a % 4) == 3) {
551 REGWRITE32(ICH9_REG_FDATA0 + (a - (a % 4)),
552 temp32);
553 }
554 }
555 if (((a - 1) % 4) != 3) {
556 REGWRITE32(ICH9_REG_FDATA0 +
557 ((a - 1) - ((a - 1) % 4)), temp32);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000558 }
Dominik Geyerb46acba2008-05-16 12:55:55 +0000559 }
560
561 /* Assemble SSFS + SSFC */
562 temp32 = 0;
563
564 /* clear error status registers */
565 temp32 |= (SSFS_CDS + SSFS_FCERR);
Uwe Hermann4e3d0b32010-03-25 23:18:41 +0000566 /* Use 20 MHz */
Dominik Geyerb46acba2008-05-16 12:55:55 +0000567 temp32 |= SSFC_SCF_20MHZ;
568
569 if (datalength != 0) {
570 uint32_t datatemp;
571 temp32 |= SSFC_DS;
572 datatemp = ((uint32_t) ((datalength - 1) & 0x3f)) << (8 + 8);
573 temp32 |= datatemp;
574 }
575
576 /* Select opcode */
Stefan Reinauer43119562008-11-02 19:51:50 +0000577 opmenu = REGREAD32(ICH9_REG_OPMENU);
578 opmenu |= ((uint64_t)REGREAD32(ICH9_REG_OPMENU + 4)) << 32;
579
Uwe Hermann7b2969b2009-04-15 10:52:49 +0000580 for (opcode_index = 0; opcode_index < 8; opcode_index++) {
581 if ((opmenu & 0xff) == op.opcode) {
Stefan Reinauer43119562008-11-02 19:51:50 +0000582 break;
583 }
584 opmenu >>= 8;
585 }
586 if (opcode_index == 8) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000587 msg_pdbg("Opcode %x not found.\n", op.opcode);
Stefan Reinauer43119562008-11-02 19:51:50 +0000588 return 1;
589 }
590 temp32 |= ((uint32_t) (opcode_index & 0x07)) << (8 + 4);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000591
592 /* Handle Atomic */
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000593 switch (op.atomic) {
594 case 2:
595 /* Select second preop. */
596 temp32 |= SSFC_SPOP;
597 /* And fall through. */
598 case 1:
599 /* Atomic command (preop+op) */
Dominik Geyerb46acba2008-05-16 12:55:55 +0000600 temp32 |= SSFC_ACS;
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000601 break;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000602 }
603
604 /* Start */
605 temp32 |= SSFC_SCGO;
606
607 /* write it */
Stefan Reinauera9424d52008-06-27 16:28:34 +0000608 REGWRITE32(ICH9_REG_SSFS, temp32);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000609
610 /*wait for cycle complete */
Carl-Daniel Hailfinger4c24ad42009-05-09 07:24:23 +0000611 timeout = 100 * 1000 * 60; // 60s is a looong timeout.
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000612 while (((REGREAD32(ICH9_REG_SSFS) & SSFS_CDS) == 0) && --timeout) {
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000613 programmer_delay(10);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000614 }
615 if (!timeout) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000616 msg_perr("timeout\n");
Dominik Geyerb46acba2008-05-16 12:55:55 +0000617 }
618
Sean Nelson316a29f2010-05-07 20:09:04 +0000619 /* FIXME make sure we do not needlessly cause transaction errors. */
Stefan Reinauera9424d52008-06-27 16:28:34 +0000620 if ((REGREAD32(ICH9_REG_SSFS) & SSFS_FCERR) != 0) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000621 msg_pdbg("Transaction error!\n");
Dominik Geyerb46acba2008-05-16 12:55:55 +0000622 return 1;
623 }
624
625 if ((!write_cmd) && (datalength != 0)) {
626 for (a = 0; a < datalength; a++) {
627 if ((a % 4) == 0) {
Stefan Reinauera9424d52008-06-27 16:28:34 +0000628 temp32 = REGREAD32(ICH9_REG_FDATA0 + (a));
Dominik Geyerb46acba2008-05-16 12:55:55 +0000629 }
630
631 data[a] =
Stefan Reinauera9424d52008-06-27 16:28:34 +0000632 (temp32 & (((uint32_t) 0xff) << ((a % 4) * 8)))
633 >> ((a % 4) * 8);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000634 }
635 }
636
637 return 0;
638}
639
Stefan Reinauer43119562008-11-02 19:51:50 +0000640static int run_opcode(OPCODE op, uint32_t offset,
Stefan Reinauera9424d52008-06-27 16:28:34 +0000641 uint8_t datalength, uint8_t * data)
642{
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000643 switch (spi_controller) {
644 case SPI_CONTROLLER_VIA:
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000645 if (datalength > 16) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000646 msg_perr("%s: Internal command size error for "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000647 "opcode 0x%02x, got datalength=%i, want <=16\n",
648 __func__, op.opcode, datalength);
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +0000649 return SPI_INVALID_LENGTH;
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000650 }
Stefan Reinauer43119562008-11-02 19:51:50 +0000651 return ich7_run_opcode(op, offset, datalength, data, 16);
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000652 case SPI_CONTROLLER_ICH7:
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000653 if (datalength > 64) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000654 msg_perr("%s: Internal command size error for "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000655 "opcode 0x%02x, got datalength=%i, want <=16\n",
656 __func__, op.opcode, datalength);
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +0000657 return SPI_INVALID_LENGTH;
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000658 }
Stefan Reinauer43119562008-11-02 19:51:50 +0000659 return ich7_run_opcode(op, offset, datalength, data, 64);
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000660 case SPI_CONTROLLER_ICH9:
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000661 if (datalength > 64) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000662 msg_perr("%s: Internal command size error for "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000663 "opcode 0x%02x, got datalength=%i, want <=16\n",
664 __func__, op.opcode, datalength);
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +0000665 return SPI_INVALID_LENGTH;
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000666 }
Stefan Reinauer43119562008-11-02 19:51:50 +0000667 return ich9_run_opcode(op, offset, datalength, data);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000668 default:
Sean Nelson316a29f2010-05-07 20:09:04 +0000669 msg_perr("%s: unsupported chipset\n", __func__);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000670 }
Stefan Reinauera9424d52008-06-27 16:28:34 +0000671
672 /* If we ever get here, something really weird happened */
673 return -1;
674}
675
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000676int ich_spi_read(struct flashchip *flash, uint8_t * buf, int start, int len)
Dominik Geyerb46acba2008-05-16 12:55:55 +0000677{
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000678 int maxdata = 64;
679
Carl-Daniel Hailfinger38a059d2009-06-13 12:04:03 +0000680 if (spi_controller == SPI_CONTROLLER_VIA)
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000681 maxdata = 16;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000682
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000683 return spi_read_chunked(flash, buf, start, len, maxdata);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000684}
685
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +0000686int ich_spi_write_256(struct flashchip *flash, uint8_t * buf, int start, int len)
Dominik Geyerb46acba2008-05-16 12:55:55 +0000687{
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000688 int maxdata = 64;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000689
Carl-Daniel Hailfinger5824fbf2010-05-21 23:09:42 +0000690 if (spi_controller == SPI_CONTROLLER_VIA)
691 maxdata = 16;
692
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +0000693 return spi_write_chunked(flash, buf, start, len, maxdata);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000694}
695
Carl-Daniel Hailfingerd0478292009-07-10 21:08:55 +0000696int ich_spi_send_command(unsigned int writecnt, unsigned int readcnt,
Stefan Reinauer325b5d42008-06-27 15:18:20 +0000697 const unsigned char *writearr, unsigned char *readarr)
Dominik Geyerb46acba2008-05-16 12:55:55 +0000698{
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +0000699 int result;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000700 int opcode_index = -1;
701 const unsigned char cmd = *writearr;
702 OPCODE *opcode;
703 uint32_t addr = 0;
704 uint8_t *data;
705 int count;
706
Dominik Geyerb46acba2008-05-16 12:55:55 +0000707 /* find cmd in opcodes-table */
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000708 opcode_index = find_opcode(curopcodes, cmd);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000709 if (opcode_index == -1) {
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000710 /* FIXME: Reprogram opcodes if possible. Autodetect type of
711 * opcode by checking readcnt/writecnt.
712 */
Sean Nelson316a29f2010-05-07 20:09:04 +0000713 msg_pdbg("Invalid OPCODE 0x%02x\n", cmd);
Carl-Daniel Hailfinger3e9dbea2009-05-13 11:40:08 +0000714 return SPI_INVALID_OPCODE;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000715 }
716
717 opcode = &(curopcodes->opcode[opcode_index]);
718
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000719 /* The following valid writecnt/readcnt combinations exist:
720 * writecnt = 4, readcnt >= 0
721 * writecnt = 1, readcnt >= 0
722 * writecnt >= 4, readcnt = 0
723 * writecnt >= 1, readcnt = 0
724 * writecnt >= 1 is guaranteed for all commands.
725 */
726 if ((opcode->spi_type == SPI_OPCODE_TYPE_READ_WITH_ADDRESS) &&
727 (writecnt != 4)) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000728 msg_perr("%s: Internal command size error for opcode "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000729 "0x%02x, got writecnt=%i, want =4\n", __func__, cmd,
730 writecnt);
731 return SPI_INVALID_LENGTH;
732 }
733 if ((opcode->spi_type == SPI_OPCODE_TYPE_READ_NO_ADDRESS) &&
734 (writecnt != 1)) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000735 msg_perr("%s: Internal command size error for opcode "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000736 "0x%02x, got writecnt=%i, want =1\n", __func__, cmd,
737 writecnt);
738 return SPI_INVALID_LENGTH;
739 }
740 if ((opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) &&
741 (writecnt < 4)) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000742 msg_perr("%s: Internal command size error for opcode "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000743 "0x%02x, got writecnt=%i, want >=4\n", __func__, cmd,
744 writecnt);
745 return SPI_INVALID_LENGTH;
746 }
747 if (((opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) ||
748 (opcode->spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS)) &&
749 (readcnt)) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000750 msg_perr("%s: Internal command size error for opcode "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000751 "0x%02x, got readcnt=%i, want =0\n", __func__, cmd,
752 readcnt);
753 return SPI_INVALID_LENGTH;
754 }
755
Dominik Geyerb46acba2008-05-16 12:55:55 +0000756 /* if opcode-type requires an address */
757 if (opcode->spi_type == SPI_OPCODE_TYPE_READ_WITH_ADDRESS ||
758 opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) {
Stefan Reinauer325b5d42008-06-27 15:18:20 +0000759 addr = (writearr[1] << 16) |
760 (writearr[2] << 8) | (writearr[3] << 0);
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000761 switch (spi_controller) {
762 case SPI_CONTROLLER_ICH7:
763 case SPI_CONTROLLER_ICH9:
764 if (addr < ichspi_bbar) {
765 msg_perr("%s: Address 0x%06x below allowed "
766 "range 0x%06x-0xffffff\n", __func__,
767 addr, ichspi_bbar);
768 return SPI_INVALID_ADDRESS;
769 }
770 break;
771 default:
772 break;
773 }
Dominik Geyerb46acba2008-05-16 12:55:55 +0000774 }
Stefan Reinauer325b5d42008-06-27 15:18:20 +0000775
Dominik Geyerb46acba2008-05-16 12:55:55 +0000776 /* translate read/write array/count */
777 if (opcode->spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS) {
Stefan Reinauer325b5d42008-06-27 15:18:20 +0000778 data = (uint8_t *) (writearr + 1);
779 count = writecnt - 1;
780 } else if (opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) {
781 data = (uint8_t *) (writearr + 4);
782 count = writecnt - 4;
783 } else {
784 data = (uint8_t *) readarr;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000785 count = readcnt;
786 }
Stefan Reinauer325b5d42008-06-27 15:18:20 +0000787
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +0000788 result = run_opcode(*opcode, addr, count, data);
789 if (result) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000790 msg_pdbg("run OPCODE 0x%02x failed\n", opcode->opcode);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000791 }
792
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +0000793 return result;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000794}
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +0000795
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000796int ich_spi_send_multicommand(struct spi_command *cmds)
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +0000797{
798 int ret = 0;
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000799 int i;
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000800 int oppos, preoppos;
801 for (; (cmds->writecnt || cmds->readcnt) && !ret; cmds++) {
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000802 if ((cmds + 1)->writecnt || (cmds + 1)->readcnt) {
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000803 /* Next command is valid. */
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000804 preoppos = find_preop(curopcodes, cmds->writearr[0]);
805 oppos = find_opcode(curopcodes, (cmds + 1)->writearr[0]);
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000806 if ((oppos == -1) && (preoppos != -1)) {
807 /* Current command is listed as preopcode in
808 * ICH struct OPCODES, but next command is not
809 * listed as opcode in that struct.
810 * Check for command sanity, then
811 * try to reprogram the ICH opcode list.
812 */
813 if (find_preop(curopcodes,
814 (cmds + 1)->writearr[0]) != -1) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000815 msg_perr("%s: Two subsequent "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000816 "preopcodes 0x%02x and 0x%02x, "
817 "ignoring the first.\n",
818 __func__, cmds->writearr[0],
819 (cmds + 1)->writearr[0]);
820 continue;
821 }
822 /* If the chipset is locked down, we'll fail
823 * during execution of the next command anyway.
824 * No need to bother with fixups.
825 */
826 if (!ichspi_lock) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000827 msg_pdbg("%s: FIXME: Add on-the-fly"
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000828 " reprogramming of the "
829 "chipset opcode list.\n",
830 __func__);
831 /* FIXME: Reprogram opcode menu.
832 * Find a less-useful opcode, replace it
833 * with the wanted opcode, detect optype
834 * and reprogram the opcode menu.
835 * Update oppos so the next if-statement
836 * can do something useful.
837 */
838 //curopcodes.opcode[lessusefulindex] = (cmds + 1)->writearr[0]);
839 //update_optypes(curopcodes);
840 //program_opcodes(curopcodes);
841 //oppos = find_opcode(curopcodes, (cmds + 1)->writearr[0]);
842 continue;
843 }
844 }
845 if ((oppos != -1) && (preoppos != -1)) {
846 /* Current command is listed as preopcode in
847 * ICH struct OPCODES and next command is listed
848 * as opcode in that struct. Match them up.
849 */
850 curopcodes->opcode[oppos].atomic = preoppos + 1;
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000851 continue;
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000852 }
853 /* If none of the above if-statements about oppos or
854 * preoppos matched, this is a normal opcode.
855 */
856 }
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000857 ret = ich_spi_send_command(cmds->writecnt, cmds->readcnt,
858 cmds->writearr, cmds->readarr);
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000859 /* Reset the type of all opcodes to non-atomic. */
860 for (i = 0; i < 8; i++)
861 curopcodes->opcode[i].atomic = 0;
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +0000862 }
863 return ret;
864}
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000865
866#endif