blob: 76a61d28e3fcc2bcbae26ea86647af5d90c4c0f7 [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
Dominik Geyerb46acba2008-05-16 12:55:55 +0000108typedef 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 Hailfingerf15e1ab2010-02-11 11:28:37 +0000114/* Suggested opcode definition:
Dominik Geyerb46acba2008-05-16 12:55:55 +0000115 * 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 Hailfingerf15e1ab2010-02-11 11:28:37 +0000124 * OP 6: chip private (read JEDEC id)
Dominik Geyerb46acba2008-05-16 12:55:55 +0000125 * OP 7: Chip erase
126 */
127typedef struct _OPCODES {
128 uint8_t preop[2];
129 OPCODE opcode[8];
130} OPCODES;
131
Stefan Reinauer325b5d42008-06-27 15:18:20 +0000132static OPCODES *curopcodes = NULL;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000133
134/* HW access functions */
Uwe Hermann09e04f72009-05-16 22:36:00 +0000135static uint32_t REGREAD32(int X)
Dominik Geyerb46acba2008-05-16 12:55:55 +0000136{
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000137 return mmio_readl(spibar + X);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000138}
139
Uwe Hermann09e04f72009-05-16 22:36:00 +0000140static uint16_t REGREAD16(int X)
Stefan Reinauera9424d52008-06-27 16:28:34 +0000141{
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000142 return mmio_readw(spibar + X);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000143}
144
Carl-Daniel Hailfinger78185dc2009-05-17 15:49:24 +0000145#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 Geyerb46acba2008-05-16 12:55:55 +0000148
Dominik Geyerb46acba2008-05-16 12:55:55 +0000149/* Common SPI functions */
Uwe Hermann09e04f72009-05-16 22:36:00 +0000150static int find_opcode(OPCODES *op, uint8_t opcode);
151static int find_preop(OPCODES *op, uint8_t preop);
FENG yu ningf041e9b2008-12-15 02:32:11 +0000152static int generate_opcodes(OPCODES * op);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000153static int program_opcodes(OPCODES * op);
Stefan Reinauer43119562008-11-02 19:51:50 +0000154static int run_opcode(OPCODE op, uint32_t offset,
Stefan Reinauer325b5d42008-06-27 15:18:20 +0000155 uint8_t datalength, uint8_t * data);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000156
FENG yu ningf041e9b2008-12-15 02:32:11 +0000157/* for pairing opcodes with their required preop */
158struct preop_opcode_pair {
159 uint8_t preop;
160 uint8_t opcode;
161};
162
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000163/* List of opcodes which need preopcodes and matching preopcodes. Unused. */
FENG yu ningf041e9b2008-12-15 02:32:11 +0000164struct 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 Hailfingerf15e1ab2010-02-11 11:28:37 +0000171 /* FIXME: WRSR requires either EWSR or WREN depending on chip type. */
172 {JEDEC_WREN, JEDEC_WRSR},
FENG yu ningf041e9b2008-12-15 02:32:11 +0000173 {JEDEC_EWSR, JEDEC_WRSR},
174 {0,}
175};
176
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000177/* Reasonable default configuration. Needs ad-hoc modifications if we
178 * encounter unlisted opcodes. Fun.
179 */
Dominik Geyerb46acba2008-05-16 12:55:55 +0000180OPCODES O_ST_M25P = {
181 {
182 JEDEC_WREN,
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000183 JEDEC_EWSR,
184 },
Dominik Geyerb46acba2008-05-16 12:55:55 +0000185 {
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000186 {JEDEC_BYTE_PROGRAM, SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS, 0}, // Write Byte
Stefan Reinauer325b5d42008-06-27 15:18:20 +0000187 {JEDEC_READ, SPI_OPCODE_TYPE_READ_WITH_ADDRESS, 0}, // Read Data
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000188 {JEDEC_BE_D8, SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS, 0}, // Erase Sector
Stefan Reinauer325b5d42008-06-27 15:18:20 +0000189 {JEDEC_RDSR, SPI_OPCODE_TYPE_READ_NO_ADDRESS, 0}, // Read Device Status Reg
Carl-Daniel Hailfinger15aa7c62009-05-26 21:25:08 +0000190 {JEDEC_REMS, SPI_OPCODE_TYPE_READ_WITH_ADDRESS, 0}, // Read Electronic Manufacturer Signature
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000191 {JEDEC_WRSR, SPI_OPCODE_TYPE_WRITE_NO_ADDRESS, 0}, // Write Status Register
Stefan Reinauer325b5d42008-06-27 15:18:20 +0000192 {JEDEC_RDID, SPI_OPCODE_TYPE_READ_NO_ADDRESS, 0}, // Read JDEC ID
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000193 {JEDEC_CE_C7, SPI_OPCODE_TYPE_WRITE_NO_ADDRESS, 0}, // Bulk erase
194 }
Dominik Geyerb46acba2008-05-16 12:55:55 +0000195};
196
FENG yu ningc05a2952008-12-08 18:16:58 +0000197OPCODES O_EXISTING = {};
198
Uwe Hermann09e04f72009-05-16 22:36:00 +0000199static int find_opcode(OPCODES *op, uint8_t opcode)
FENG yu ningc05a2952008-12-08 18:16:58 +0000200{
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 Hermann09e04f72009-05-16 22:36:00 +0000211static int find_preop(OPCODES *op, uint8_t preop)
FENG yu ningc05a2952008-12-08 18:16:58 +0000212{
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 Hailfingerf15e1ab2010-02-11 11:28:37 +0000223/* Create a struct OPCODES based on what we find in the locked down chipset. */
FENG yu ningf041e9b2008-12-15 02:32:11 +0000224static int generate_opcodes(OPCODES * op)
FENG yu ningc05a2952008-12-08 18:16:58 +0000225{
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000226 int a;
FENG yu ningc05a2952008-12-08 18:16:58 +0000227 uint16_t preop, optype;
228 uint32_t opmenu[2];
FENG yu ningc05a2952008-12-08 18:16:58 +0000229
230 if (op == NULL) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000231 msg_perr("\n%s: null OPCODES pointer!\n", __func__);
FENG yu ningc05a2952008-12-08 18:16:58 +0000232 return -1;
233 }
234
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000235 switch (spi_controller) {
236 case SPI_CONTROLLER_ICH7:
237 case SPI_CONTROLLER_VIA:
FENG yu ningc05a2952008-12-08 18:16:58 +0000238 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 Hailfinger1dfe0ff2009-05-31 17:57:34 +0000243 case SPI_CONTROLLER_ICH9:
FENG yu ningc05a2952008-12-08 18:16:58 +0000244 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 Nelson316a29f2010-05-07 20:09:04 +0000250 msg_perr("%s: unsupported chipset\n", __func__);
FENG yu ningc05a2952008-12-08 18:16:58 +0000251 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 Hailfingerf15e1ab2010-02-11 11:28:37 +0000272 /* No preopcodes used by default. */
273 for (a = 0; a < 8; a++)
FENG yu ningc05a2952008-12-08 18:16:58 +0000274 op->opcode[a].atomic = 0;
275
FENG yu ningc05a2952008-12-08 18:16:58 +0000276 return 0;
277}
278
Dominik Geyerb46acba2008-05-16 12:55:55 +0000279int program_opcodes(OPCODES * op)
280{
281 uint8_t a;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000282 uint16_t preop, optype;
283 uint32_t opmenu[2];
Dominik Geyerb46acba2008-05-16 12:55:55 +0000284
285 /* Program Prefix Opcodes */
Dominik Geyerb46acba2008-05-16 12:55:55 +0000286 /* 0:7 Prefix Opcode 1 */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000287 preop = (op->preop[0]);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000288 /* 8:16 Prefix Opcode 2 */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000289 preop |= ((uint16_t) op->preop[1]) << 8;
Uwe Hermann394131e2008-10-18 21:14:13 +0000290
Stefan Reinauera9424d52008-06-27 16:28:34 +0000291 /* Program Opcode Types 0 - 7 */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000292 optype = 0;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000293 for (a = 0; a < 8; a++) {
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000294 optype |= ((uint16_t) op->opcode[a].spi_type) << (a * 2);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000295 }
Uwe Hermann394131e2008-10-18 21:14:13 +0000296
Stefan Reinauera9424d52008-06-27 16:28:34 +0000297 /* Program Allowable Opcodes 0 - 3 */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000298 opmenu[0] = 0;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000299 for (a = 0; a < 4; a++) {
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000300 opmenu[0] |= ((uint32_t) op->opcode[a].opcode) << (a * 8);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000301 }
Stefan Reinauera9424d52008-06-27 16:28:34 +0000302
Dominik Geyerb46acba2008-05-16 12:55:55 +0000303 /*Program Allowable Opcodes 4 - 7 */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000304 opmenu[1] = 0;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000305 for (a = 4; a < 8; a++) {
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000306 opmenu[1] |= ((uint32_t) op->opcode[a].opcode) << ((a - 4) * 8);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000307 }
Stefan Reinauera9424d52008-06-27 16:28:34 +0000308
Sean Nelson316a29f2010-05-07 20:09:04 +0000309 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 +0000310 switch (spi_controller) {
311 case SPI_CONTROLLER_ICH7:
312 case SPI_CONTROLLER_VIA:
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000313 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 Hailfinger1dfe0ff2009-05-31 17:57:34 +0000318 case SPI_CONTROLLER_ICH9:
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000319 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 Nelson316a29f2010-05-07 20:09:04 +0000325 msg_perr("%s: unsupported chipset\n", __func__);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000326 return -1;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000327 }
Dominik Geyerb46acba2008-05-16 12:55:55 +0000328
329 return 0;
330}
331
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000332/*
333 * Try to set BBAR (BIOS Base Address Register), but read back the value in case
334 * it didn't stick.
335 */
336void 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 ningf041e9b2008-12-15 02:32:11 +0000360/* This function generates OPCODES from or programs OPCODES to ICH according to
361 * the chipset's SPI configuration lock.
FENG yu ningc05a2952008-12-08 18:16:58 +0000362 *
FENG yu ningf041e9b2008-12-15 02:32:11 +0000363 * It should be called before ICH sends any spi command.
FENG yu ningc05a2952008-12-08 18:16:58 +0000364 */
Uwe Hermann7b2969b2009-04-15 10:52:49 +0000365int ich_init_opcodes(void)
FENG yu ningc05a2952008-12-08 18:16:58 +0000366{
367 int rc = 0;
368 OPCODES *curopcodes_done;
369
370 if (curopcodes)
371 return 0;
372
373 if (ichspi_lock) {
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000374 msg_pdbg("Reading OPCODES... ");
FENG yu ningc05a2952008-12-08 18:16:58 +0000375 curopcodes_done = &O_EXISTING;
FENG yu ningf041e9b2008-12-15 02:32:11 +0000376 rc = generate_opcodes(curopcodes_done);
FENG yu ningc05a2952008-12-08 18:16:58 +0000377 } else {
Sean Nelson316a29f2010-05-07 20:09:04 +0000378 msg_pdbg("Programming OPCODES... ");
FENG yu ningc05a2952008-12-08 18:16:58 +0000379 curopcodes_done = &O_ST_M25P;
380 rc = program_opcodes(curopcodes_done);
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000381 /* 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 ningc05a2952008-12-08 18:16:58 +0000386 }
387
388 if (rc) {
389 curopcodes = NULL;
Sean Nelson316a29f2010-05-07 20:09:04 +0000390 msg_perr("failed\n");
FENG yu ningc05a2952008-12-08 18:16:58 +0000391 return 1;
392 } else {
393 curopcodes = curopcodes_done;
Sean Nelson316a29f2010-05-07 20:09:04 +0000394 msg_pdbg("done\n");
FENG yu ningc05a2952008-12-08 18:16:58 +0000395 return 0;
396 }
397}
398
Stefan Reinauer43119562008-11-02 19:51:50 +0000399static int ich7_run_opcode(OPCODE op, uint32_t offset,
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000400 uint8_t datalength, uint8_t * data, int maxdata)
Dominik Geyerb46acba2008-05-16 12:55:55 +0000401{
402 int write_cmd = 0;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000403 int timeout;
Peter Stuge7e2c0792008-06-29 01:30:41 +0000404 uint32_t temp32 = 0;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000405 uint16_t temp16;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000406 uint32_t a;
Stefan Reinauer43119562008-11-02 19:51:50 +0000407 uint64_t opmenu;
408 int opcode_index;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000409
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 Reinauera9424d52008-06-27 16:28:34 +0000417 REGWRITE32(ICH7_REG_SPIA, (offset & 0x00FFFFFF)); /* SPI addresses are 24 BIT only */
Dominik Geyerb46acba2008-05-16 12:55:55 +0000418
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 Reinauera9424d52008-06-27 16:28:34 +0000430 REGWRITE32(ICH7_REG_SPID0 + (a - (a % 4)),
431 temp32);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000432 }
433 }
434 if (((a - 1) % 4) != 3) {
Stefan Reinauera9424d52008-06-27 16:28:34 +0000435 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 Marek3fdbccf2008-06-30 21:38:30 +0000452 temp16 |= ((uint32_t) ((datalength - 1) & (maxdata - 1))) << 8;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000453 }
454
455 /* Select opcode */
Stefan Reinauer43119562008-11-02 19:51:50 +0000456 opmenu = REGREAD32(ICH7_REG_OPMENU);
457 opmenu |= ((uint64_t)REGREAD32(ICH7_REG_OPMENU + 4)) << 32;
458
Uwe Hermann7b2969b2009-04-15 10:52:49 +0000459 for (opcode_index = 0; opcode_index < 8; opcode_index++) {
460 if ((opmenu & 0xff) == op.opcode) {
Stefan Reinauer43119562008-11-02 19:51:50 +0000461 break;
462 }
463 opmenu >>= 8;
464 }
465 if (opcode_index == 8) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000466 msg_pdbg("Opcode %x not found.\n", op.opcode);
Stefan Reinauer43119562008-11-02 19:51:50 +0000467 return 1;
468 }
469 temp16 |= ((uint16_t) (opcode_index & 0x07)) << 4;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000470
471 /* Handle Atomic */
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000472 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 Reinauera9424d52008-06-27 16:28:34 +0000479 temp16 |= SPIC_ACS;
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000480 break;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000481 }
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 Hailfinger4c24ad42009-05-09 07:24:23 +0000490 timeout = 100 * 1000 * 60; // 60s is a looong timeout.
Stefan Reinauera9424d52008-06-27 16:28:34 +0000491 while (((REGREAD16(ICH7_REG_SPIS) & SPIS_CDS) == 0) && --timeout) {
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000492 programmer_delay(10);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000493 }
494 if (!timeout) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000495 msg_perr("timeout\n");
Stefan Reinauera9424d52008-06-27 16:28:34 +0000496 }
497
Sean Nelson316a29f2010-05-07 20:09:04 +0000498 /* FIXME: make sure we do not needlessly cause transaction errors. */
Stefan Reinauera9424d52008-06-27 16:28:34 +0000499 if ((REGREAD16(ICH7_REG_SPIS) & SPIS_FCERR) != 0) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000500 msg_pdbg("Transaction error!\n");
Stefan Reinauera9424d52008-06-27 16:28:34 +0000501 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 Reinauer43119562008-11-02 19:51:50 +0000519static int ich9_run_opcode(OPCODE op, uint32_t offset,
Stefan Reinauera9424d52008-06-27 16:28:34 +0000520 uint8_t datalength, uint8_t * data)
521{
522 int write_cmd = 0;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000523 int timeout;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000524 uint32_t temp32;
525 uint32_t a;
Stefan Reinauer43119562008-11-02 19:51:50 +0000526 uint64_t opmenu;
527 int opcode_index;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000528
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 Geyerb46acba2008-05-16 12:55:55 +0000556 }
Dominik Geyerb46acba2008-05-16 12:55:55 +0000557 }
558
559 /* Assemble SSFS + SSFC */
560 temp32 = 0;
561
562 /* clear error status registers */
563 temp32 |= (SSFS_CDS + SSFS_FCERR);
Uwe Hermann4e3d0b32010-03-25 23:18:41 +0000564 /* Use 20 MHz */
Dominik Geyerb46acba2008-05-16 12:55:55 +0000565 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 Reinauer43119562008-11-02 19:51:50 +0000575 opmenu = REGREAD32(ICH9_REG_OPMENU);
576 opmenu |= ((uint64_t)REGREAD32(ICH9_REG_OPMENU + 4)) << 32;
577
Uwe Hermann7b2969b2009-04-15 10:52:49 +0000578 for (opcode_index = 0; opcode_index < 8; opcode_index++) {
579 if ((opmenu & 0xff) == op.opcode) {
Stefan Reinauer43119562008-11-02 19:51:50 +0000580 break;
581 }
582 opmenu >>= 8;
583 }
584 if (opcode_index == 8) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000585 msg_pdbg("Opcode %x not found.\n", op.opcode);
Stefan Reinauer43119562008-11-02 19:51:50 +0000586 return 1;
587 }
588 temp32 |= ((uint32_t) (opcode_index & 0x07)) << (8 + 4);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000589
590 /* Handle Atomic */
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000591 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 Geyerb46acba2008-05-16 12:55:55 +0000598 temp32 |= SSFC_ACS;
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000599 break;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000600 }
601
602 /* Start */
603 temp32 |= SSFC_SCGO;
604
605 /* write it */
Stefan Reinauera9424d52008-06-27 16:28:34 +0000606 REGWRITE32(ICH9_REG_SSFS, temp32);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000607
608 /*wait for cycle complete */
Carl-Daniel Hailfinger4c24ad42009-05-09 07:24:23 +0000609 timeout = 100 * 1000 * 60; // 60s is a looong timeout.
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000610 while (((REGREAD32(ICH9_REG_SSFS) & SSFS_CDS) == 0) && --timeout) {
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000611 programmer_delay(10);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000612 }
613 if (!timeout) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000614 msg_perr("timeout\n");
Dominik Geyerb46acba2008-05-16 12:55:55 +0000615 }
616
Sean Nelson316a29f2010-05-07 20:09:04 +0000617 /* FIXME make sure we do not needlessly cause transaction errors. */
Stefan Reinauera9424d52008-06-27 16:28:34 +0000618 if ((REGREAD32(ICH9_REG_SSFS) & SSFS_FCERR) != 0) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000619 msg_pdbg("Transaction error!\n");
Dominik Geyerb46acba2008-05-16 12:55:55 +0000620 return 1;
621 }
622
623 if ((!write_cmd) && (datalength != 0)) {
624 for (a = 0; a < datalength; a++) {
625 if ((a % 4) == 0) {
Stefan Reinauera9424d52008-06-27 16:28:34 +0000626 temp32 = REGREAD32(ICH9_REG_FDATA0 + (a));
Dominik Geyerb46acba2008-05-16 12:55:55 +0000627 }
628
629 data[a] =
Stefan Reinauera9424d52008-06-27 16:28:34 +0000630 (temp32 & (((uint32_t) 0xff) << ((a % 4) * 8)))
631 >> ((a % 4) * 8);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000632 }
633 }
634
635 return 0;
636}
637
Stefan Reinauer43119562008-11-02 19:51:50 +0000638static int run_opcode(OPCODE op, uint32_t offset,
Stefan Reinauera9424d52008-06-27 16:28:34 +0000639 uint8_t datalength, uint8_t * data)
640{
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000641 switch (spi_controller) {
642 case SPI_CONTROLLER_VIA:
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000643 if (datalength > 16) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000644 msg_perr("%s: Internal command size error for "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000645 "opcode 0x%02x, got datalength=%i, want <=16\n",
646 __func__, op.opcode, datalength);
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +0000647 return SPI_INVALID_LENGTH;
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000648 }
Stefan Reinauer43119562008-11-02 19:51:50 +0000649 return ich7_run_opcode(op, offset, datalength, data, 16);
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000650 case SPI_CONTROLLER_ICH7:
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000651 if (datalength > 64) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000652 msg_perr("%s: Internal command size error for "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000653 "opcode 0x%02x, got datalength=%i, want <=16\n",
654 __func__, op.opcode, datalength);
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +0000655 return SPI_INVALID_LENGTH;
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000656 }
Stefan Reinauer43119562008-11-02 19:51:50 +0000657 return ich7_run_opcode(op, offset, datalength, data, 64);
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000658 case SPI_CONTROLLER_ICH9:
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000659 if (datalength > 64) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000660 msg_perr("%s: Internal command size error for "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000661 "opcode 0x%02x, got datalength=%i, want <=16\n",
662 __func__, op.opcode, datalength);
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +0000663 return SPI_INVALID_LENGTH;
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000664 }
Stefan Reinauer43119562008-11-02 19:51:50 +0000665 return ich9_run_opcode(op, offset, datalength, data);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000666 default:
Sean Nelson316a29f2010-05-07 20:09:04 +0000667 msg_perr("%s: unsupported chipset\n", __func__);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000668 }
Stefan Reinauera9424d52008-06-27 16:28:34 +0000669
670 /* If we ever get here, something really weird happened */
671 return -1;
672}
673
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000674int ich_spi_read(struct flashchip *flash, uint8_t * buf, int start, int len)
Dominik Geyerb46acba2008-05-16 12:55:55 +0000675{
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000676 int maxdata = 64;
677
Carl-Daniel Hailfinger38a059d2009-06-13 12:04:03 +0000678 if (spi_controller == SPI_CONTROLLER_VIA)
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000679 maxdata = 16;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000680
Carl-Daniel Hailfingercbf563c2009-06-16 08:55:44 +0000681 return spi_read_chunked(flash, buf, start, len, maxdata);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000682}
683
Carl-Daniel Hailfinger96930c32009-05-09 02:30:21 +0000684int ich_spi_write_256(struct flashchip *flash, uint8_t * buf)
Dominik Geyerb46acba2008-05-16 12:55:55 +0000685{
Carl-Daniel Hailfinger5824fbf2010-05-21 23:09:42 +0000686 int i, ret = 0;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000687 int total_size = flash->total_size * 1024;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000688 int erase_size = 64 * 1024;
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000689 int maxdata = 64;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000690
Carl-Daniel Hailfinger5824fbf2010-05-21 23:09:42 +0000691 if (spi_controller == SPI_CONTROLLER_VIA)
692 maxdata = 16;
693
Dominik Geyerb46acba2008-05-16 12:55:55 +0000694 spi_disable_blockprotect();
Carl-Daniel Hailfinger96123032009-11-25 02:07:30 +0000695 /* Erase first */
Sean Nelson316a29f2010-05-07 20:09:04 +0000696 msg_pinfo("Erasing flash before programming... ");
Carl-Daniel Hailfinger96123032009-11-25 02:07:30 +0000697 if (erase_flash(flash)) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000698 msg_perr("ERASE FAILED!\n");
Carl-Daniel Hailfinger96123032009-11-25 02:07:30 +0000699 return -1;
700 }
Sean Nelson316a29f2010-05-07 20:09:04 +0000701 msg_pinfo("done.\n");
Dominik Geyerb46acba2008-05-16 12:55:55 +0000702
Sean Nelson316a29f2010-05-07 20:09:04 +0000703 msg_pinfo("Programming page: \n");
Dominik Geyerb46acba2008-05-16 12:55:55 +0000704 for (i = 0; i < total_size / erase_size; i++) {
Carl-Daniel Hailfinger5824fbf2010-05-21 23:09:42 +0000705 ret = spi_write_chunked(flash, buf + (i * erase_size),
706 i * erase_size, erase_size, maxdata);
707 if (ret)
708 break;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000709 }
710
Sean Nelson316a29f2010-05-07 20:09:04 +0000711 msg_pinfo("\n");
Dominik Geyerb46acba2008-05-16 12:55:55 +0000712
Carl-Daniel Hailfinger5824fbf2010-05-21 23:09:42 +0000713 return ret;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000714}
715
Carl-Daniel Hailfingerd0478292009-07-10 21:08:55 +0000716int ich_spi_send_command(unsigned int writecnt, unsigned int readcnt,
Stefan Reinauer325b5d42008-06-27 15:18:20 +0000717 const unsigned char *writearr, unsigned char *readarr)
Dominik Geyerb46acba2008-05-16 12:55:55 +0000718{
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +0000719 int result;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000720 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 Geyerb46acba2008-05-16 12:55:55 +0000727 /* find cmd in opcodes-table */
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000728 opcode_index = find_opcode(curopcodes, cmd);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000729 if (opcode_index == -1) {
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000730 /* FIXME: Reprogram opcodes if possible. Autodetect type of
731 * opcode by checking readcnt/writecnt.
732 */
Sean Nelson316a29f2010-05-07 20:09:04 +0000733 msg_pdbg("Invalid OPCODE 0x%02x\n", cmd);
Carl-Daniel Hailfinger3e9dbea2009-05-13 11:40:08 +0000734 return SPI_INVALID_OPCODE;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000735 }
736
737 opcode = &(curopcodes->opcode[opcode_index]);
738
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000739 /* 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 Nelson316a29f2010-05-07 20:09:04 +0000748 msg_perr("%s: Internal command size error for opcode "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000749 "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 Nelson316a29f2010-05-07 20:09:04 +0000755 msg_perr("%s: Internal command size error for opcode "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000756 "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 Nelson316a29f2010-05-07 20:09:04 +0000762 msg_perr("%s: Internal command size error for opcode "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000763 "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 Nelson316a29f2010-05-07 20:09:04 +0000770 msg_perr("%s: Internal command size error for opcode "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000771 "0x%02x, got readcnt=%i, want =0\n", __func__, cmd,
772 readcnt);
773 return SPI_INVALID_LENGTH;
774 }
775
Dominik Geyerb46acba2008-05-16 12:55:55 +0000776 /* 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 Reinauer325b5d42008-06-27 15:18:20 +0000779 addr = (writearr[1] << 16) |
780 (writearr[2] << 8) | (writearr[3] << 0);
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000781 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 Geyerb46acba2008-05-16 12:55:55 +0000794 }
Stefan Reinauer325b5d42008-06-27 15:18:20 +0000795
Dominik Geyerb46acba2008-05-16 12:55:55 +0000796 /* translate read/write array/count */
797 if (opcode->spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS) {
Stefan Reinauer325b5d42008-06-27 15:18:20 +0000798 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 Geyerb46acba2008-05-16 12:55:55 +0000805 count = readcnt;
806 }
Stefan Reinauer325b5d42008-06-27 15:18:20 +0000807
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +0000808 result = run_opcode(*opcode, addr, count, data);
809 if (result) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000810 msg_pdbg("run OPCODE 0x%02x failed\n", opcode->opcode);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000811 }
812
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +0000813 return result;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000814}
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +0000815
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000816int ich_spi_send_multicommand(struct spi_command *cmds)
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +0000817{
818 int ret = 0;
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000819 int i;
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000820 int oppos, preoppos;
821 for (; (cmds->writecnt || cmds->readcnt) && !ret; cmds++) {
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000822 if ((cmds + 1)->writecnt || (cmds + 1)->readcnt) {
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000823 /* Next command is valid. */
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000824 preoppos = find_preop(curopcodes, cmds->writearr[0]);
825 oppos = find_opcode(curopcodes, (cmds + 1)->writearr[0]);
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000826 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 Nelson316a29f2010-05-07 20:09:04 +0000835 msg_perr("%s: Two subsequent "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000836 "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 Nelson316a29f2010-05-07 20:09:04 +0000847 msg_pdbg("%s: FIXME: Add on-the-fly"
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000848 " 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 Hailfinger26f7e642009-09-18 15:50:56 +0000871 continue;
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000872 }
873 /* If none of the above if-statements about oppos or
874 * preoppos matched, this is a normal opcode.
875 */
876 }
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +0000877 ret = ich_spi_send_command(cmds->writecnt, cmds->readcnt,
878 cmds->writearr, cmds->readarr);
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000879 /* Reset the type of all opcodes to non-atomic. */
880 for (i = 0; i < 8; i++)
881 curopcodes->opcode[i].atomic = 0;
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +0000882 }
883 return ret;
884}
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +0000885
886#endif