blob: 0919a5d654a6f350eac4123f076060180e6398c7 [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
Stefan Tauner8b391b82011-08-09 01:49:34 +00009 * Copyright (C) 2011 Stefan Tauner
Dominik Geyerb46acba2008-05-16 12:55:55 +000010 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Dominik Geyerb46acba2008-05-16 12:55:55 +000024 */
25
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +000026#if defined(__i386__) || defined(__x86_64__)
27
Dominik Geyerb46acba2008-05-16 12:55:55 +000028#include <string.h>
Dominik Geyerb46acba2008-05-16 12:55:55 +000029#include "flash.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000030#include "programmer.h"
Dominik Geyerb46acba2008-05-16 12:55:55 +000031#include "spi.h"
Stefan Tauner1e146392011-09-15 23:52:55 +000032#include "ich_descriptors.h"
Dominik Geyerb46acba2008-05-16 12:55:55 +000033
Stefan Reinauera9424d52008-06-27 16:28:34 +000034/* ICH9 controller register definition */
Stefan Tauner55206942011-06-11 09:53:22 +000035#define ICH9_REG_HSFS 0x04 /* 16 Bits Hardware Sequencing Flash Status */
36#define HSFS_FDONE_OFF 0 /* 0: Flash Cycle Done */
37#define HSFS_FDONE (0x1 << HSFS_FDONE_OFF)
38#define HSFS_FCERR_OFF 1 /* 1: Flash Cycle Error */
39#define HSFS_FCERR (0x1 << HSFS_FCERR_OFF)
40#define HSFS_AEL_OFF 2 /* 2: Access Error Log */
41#define HSFS_AEL (0x1 << HSFS_AEL_OFF)
42#define HSFS_BERASE_OFF 3 /* 3-4: Block/Sector Erase Size */
43#define HSFS_BERASE (0x3 << HSFS_BERASE_OFF)
44#define HSFS_SCIP_OFF 5 /* 5: SPI Cycle In Progress */
45#define HSFS_SCIP (0x1 << HSFS_SCIP_OFF)
46 /* 6-12: reserved */
47#define HSFS_FDOPSS_OFF 13 /* 13: Flash Descriptor Override Pin-Strap Status */
48#define HSFS_FDOPSS (0x1 << HSFS_FDOPSS_OFF)
49#define HSFS_FDV_OFF 14 /* 14: Flash Descriptor Valid */
50#define HSFS_FDV (0x1 << HSFS_FDV_OFF)
51#define HSFS_FLOCKDN_OFF 15 /* 15: Flash Configuration Lock-Down */
52#define HSFS_FLOCKDN (0x1 << HSFS_FLOCKDN_OFF)
53
54#define ICH9_REG_HSFC 0x06 /* 16 Bits Hardware Sequencing Flash Control */
55#define HSFC_FGO_OFF 0 /* 0: Flash Cycle Go */
56#define HSFC_FGO (0x1 << HSFC_FGO_OFF)
57#define HSFC_FCYCLE_OFF 1 /* 1-2: FLASH Cycle */
58#define HSFC_FCYCLE (0x3 << HSFC_FCYCLE_OFF)
59 /* 3-7: reserved */
60#define HSFC_FDBC_OFF 8 /* 8-13: Flash Data Byte Count */
61#define HSFC_FDBC (0x3f << HSFC_FDBC_OFF)
62 /* 14: reserved */
63#define HSFC_SME_OFF 15 /* 15: SPI SMI# Enable */
64#define HSFC_SME (0x1 << HSFC_SME_OFF)
65
Stefan Taunerc0aaf952011-05-19 02:58:17 +000066#define ICH9_REG_FADDR 0x08 /* 32 Bits */
67#define ICH9_REG_FDATA0 0x10 /* 64 Bytes */
Stefan Reinauera9424d52008-06-27 16:28:34 +000068
Stefan Tauner29c80832011-06-12 08:14:10 +000069#define ICH9_REG_FRAP 0x50 /* 32 Bytes Flash Region Access Permissions */
70#define ICH9_REG_FREG0 0x54 /* 32 Bytes Flash Region 0 */
71
72#define ICH9_REG_PR0 0x74 /* 32 Bytes Protected Range 0 */
73#define ICH9_REG_PR1 0x78 /* 32 Bytes Protected Range 1 */
74#define ICH9_REG_PR2 0x7c /* 32 Bytes Protected Range 2 */
75#define ICH9_REG_PR3 0x80 /* 32 Bytes Protected Range 3 */
76#define ICH9_REG_PR4 0x84 /* 32 Bytes Protected Range 4 */
77
Stefan Taunerc0aaf952011-05-19 02:58:17 +000078#define ICH9_REG_SSFS 0x90 /* 08 Bits */
Stefan Tauner0c1ec452011-06-11 09:53:09 +000079#define SSFS_SCIP_OFF 0 /* SPI Cycle In Progress */
80#define SSFS_SCIP (0x1 << SSFS_SCIP_OFF)
81#define SSFS_FDONE_OFF 2 /* Cycle Done Status */
82#define SSFS_FDONE (0x1 << SSFS_FDONE_OFF)
83#define SSFS_FCERR_OFF 3 /* Flash Cycle Error */
84#define SSFS_FCERR (0x1 << SSFS_FCERR_OFF)
85#define SSFS_AEL_OFF 4 /* Access Error Log */
86#define SSFS_AEL (0x1 << SSFS_AEL_OFF)
Stefan Taunerc0aaf952011-05-19 02:58:17 +000087/* The following bits are reserved in SSFS: 1,5-7. */
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +000088#define SSFS_RESERVED_MASK 0x000000e2
Stefan Reinauera9424d52008-06-27 16:28:34 +000089
Stefan Taunerc0aaf952011-05-19 02:58:17 +000090#define ICH9_REG_SSFC 0x91 /* 24 Bits */
Stefan Taunerc0aaf952011-05-19 02:58:17 +000091/* We combine SSFS and SSFC to one 32-bit word,
Stefan Tauner0c1ec452011-06-11 09:53:09 +000092 * therefore SSFC bits are off by 8. */
93 /* 0: reserved */
94#define SSFC_SCGO_OFF (1 + 8) /* 1: SPI Cycle Go */
95#define SSFC_SCGO (0x1 << SSFC_SCGO_OFF)
96#define SSFC_ACS_OFF (2 + 8) /* 2: Atomic Cycle Sequence */
97#define SSFC_ACS (0x1 << SSFC_ACS_OFF)
98#define SSFC_SPOP_OFF (3 + 8) /* 3: Sequence Prefix Opcode Pointer */
99#define SSFC_SPOP (0x1 << SSFC_SPOP_OFF)
100#define SSFC_COP_OFF (4 + 8) /* 4-6: Cycle Opcode Pointer */
101#define SSFC_COP (0x7 << SSFC_COP_OFF)
102 /* 7: reserved */
103#define SSFC_DBC_OFF (8 + 8) /* 8-13: Data Byte Count */
104#define SSFC_DBC (0x3f << SSFC_DBC_OFF)
105#define SSFC_DS_OFF (14 + 8) /* 14: Data Cycle */
106#define SSFC_DS (0x1 << SSFC_DS_OFF)
107#define SSFC_SME_OFF (15 + 8) /* 15: SPI SMI# Enable */
108#define SSFC_SME (0x1 << SSFC_SME_OFF)
109#define SSFC_SCF_OFF (16 + 8) /* 16-18: SPI Cycle Frequency */
110#define SSFC_SCF (0x7 << SSFC_SCF_OFF)
111#define SSFC_SCF_20MHZ 0x00000000
112#define SSFC_SCF_33MHZ 0x01000000
113 /* 19-23: reserved */
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000114#define SSFC_RESERVED_MASK 0xf8008100
Stefan Reinauera9424d52008-06-27 16:28:34 +0000115
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000116#define ICH9_REG_PREOP 0x94 /* 16 Bits */
117#define ICH9_REG_OPTYPE 0x96 /* 16 Bits */
118#define ICH9_REG_OPMENU 0x98 /* 64 Bits */
Dominik Geyerb46acba2008-05-16 12:55:55 +0000119
Stefan Tauner29c80832011-06-12 08:14:10 +0000120#define ICH9_REG_BBAR 0xA0 /* 32 Bits BIOS Base Address Configuration */
121#define BBAR_MASK 0x00ffff00 /* 8-23: Bottom of System Flash */
122
Stefan Tauner1e146392011-09-15 23:52:55 +0000123#define ICH8_REG_VSCC 0xC1 /* 32 Bits Vendor Specific Component Capabilities */
124#define ICH9_REG_LVSCC 0xC4 /* 32 Bits Host Lower Vendor Specific Component Capabilities */
125#define ICH9_REG_UVSCC 0xC8 /* 32 Bits Host Upper Vendor Specific Component Capabilities */
126/* The individual fields of the VSCC registers are defined in the file
127 * ich_descriptors.h. The reason is that the same layout is also used in the
128 * flash descriptor to define the properties of the different flash chips
129 * supported. The BIOS (or the ME?) is responsible to populate the ICH registers
130 * with the information from the descriptor on startup depending on the actual
131 * chip(s) detected. */
132
Stefan Taunerbd649e42011-07-01 00:39:16 +0000133#define ICH9_REG_FPB 0xD0 /* 32 Bits Flash Partition Boundary */
134#define FPB_FPBA_OFF 0 /* 0-12: Block/Sector Erase Size */
135#define FPB_FPBA (0x1FFF << FPB_FPBA_OFF)
136
Dominik Geyerb46acba2008-05-16 12:55:55 +0000137// ICH9R SPI commands
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000138#define SPI_OPCODE_TYPE_READ_NO_ADDRESS 0
139#define SPI_OPCODE_TYPE_WRITE_NO_ADDRESS 1
140#define SPI_OPCODE_TYPE_READ_WITH_ADDRESS 2
141#define SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS 3
Dominik Geyerb46acba2008-05-16 12:55:55 +0000142
Stefan Reinauera9424d52008-06-27 16:28:34 +0000143// ICH7 registers
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000144#define ICH7_REG_SPIS 0x00 /* 16 Bits */
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000145#define SPIS_SCIP 0x0001
146#define SPIS_GRANT 0x0002
147#define SPIS_CDS 0x0004
148#define SPIS_FCERR 0x0008
149#define SPIS_RESERVED_MASK 0x7ff0
Stefan Reinauera9424d52008-06-27 16:28:34 +0000150
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000151/* VIA SPI is compatible with ICH7, but maxdata
152 to transfer is 16 bytes.
153
154 DATA byte count on ICH7 is 8:13, on VIA 8:11
155
156 bit 12 is port select CS0 CS1
157 bit 13 is FAST READ enable
158 bit 7 is used with fast read and one shot controls CS de-assert?
159*/
160
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000161#define ICH7_REG_SPIC 0x02 /* 16 Bits */
162#define SPIC_SCGO 0x0002
163#define SPIC_ACS 0x0004
164#define SPIC_SPOP 0x0008
165#define SPIC_DS 0x4000
Stefan Reinauera9424d52008-06-27 16:28:34 +0000166
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000167#define ICH7_REG_SPIA 0x04 /* 32 Bits */
168#define ICH7_REG_SPID0 0x08 /* 64 Bytes */
169#define ICH7_REG_PREOP 0x54 /* 16 Bits */
170#define ICH7_REG_OPTYPE 0x56 /* 16 Bits */
171#define ICH7_REG_OPMENU 0x58 /* 64 Bits */
Stefan Reinauera9424d52008-06-27 16:28:34 +0000172
FENG yu ningc05a2952008-12-08 18:16:58 +0000173/* ICH SPI configuration lock-down. May be set during chipset enabling. */
Michael Karchera4448d92010-07-22 18:04:15 +0000174static int ichspi_lock = 0;
FENG yu ningc05a2952008-12-08 18:16:58 +0000175
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000176uint32_t ichspi_bbar = 0;
177
Michael Karchera4448d92010-07-22 18:04:15 +0000178static void *ich_spibar = NULL;
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000179
Dominik Geyerb46acba2008-05-16 12:55:55 +0000180typedef struct _OPCODE {
181 uint8_t opcode; //This commands spi opcode
182 uint8_t spi_type; //This commands spi type
183 uint8_t atomic; //Use preop: (0: none, 1: preop0, 2: preop1
184} OPCODE;
185
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000186/* Suggested opcode definition:
Dominik Geyerb46acba2008-05-16 12:55:55 +0000187 * Preop 1: Write Enable
188 * Preop 2: Write Status register enable
189 *
190 * OP 0: Write address
191 * OP 1: Read Address
192 * OP 2: ERASE block
193 * OP 3: Read Status register
194 * OP 4: Read ID
195 * OP 5: Write Status register
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000196 * OP 6: chip private (read JEDEC id)
Dominik Geyerb46acba2008-05-16 12:55:55 +0000197 * OP 7: Chip erase
198 */
199typedef struct _OPCODES {
200 uint8_t preop[2];
201 OPCODE opcode[8];
202} OPCODES;
203
Stefan Reinauer325b5d42008-06-27 15:18:20 +0000204static OPCODES *curopcodes = NULL;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000205
206/* HW access functions */
Uwe Hermann09e04f72009-05-16 22:36:00 +0000207static uint32_t REGREAD32(int X)
Dominik Geyerb46acba2008-05-16 12:55:55 +0000208{
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000209 return mmio_readl(ich_spibar + X);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000210}
211
Uwe Hermann09e04f72009-05-16 22:36:00 +0000212static uint16_t REGREAD16(int X)
Stefan Reinauera9424d52008-06-27 16:28:34 +0000213{
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000214 return mmio_readw(ich_spibar + X);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000215}
216
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000217static uint16_t REGREAD8(int X)
218{
219 return mmio_readb(ich_spibar + X);
220}
221
Stefan Taunerccd92a12011-07-01 00:39:01 +0000222#define REGWRITE32(off, val) mmio_writel(val, ich_spibar+(off))
223#define REGWRITE16(off, val) mmio_writew(val, ich_spibar+(off))
224#define REGWRITE8(off, val) mmio_writeb(val, ich_spibar+(off))
Dominik Geyerb46acba2008-05-16 12:55:55 +0000225
Dominik Geyerb46acba2008-05-16 12:55:55 +0000226/* Common SPI functions */
Uwe Hermann09e04f72009-05-16 22:36:00 +0000227static int find_opcode(OPCODES *op, uint8_t opcode);
228static int find_preop(OPCODES *op, uint8_t preop);
FENG yu ningf041e9b2008-12-15 02:32:11 +0000229static int generate_opcodes(OPCODES * op);
Carl-Daniel Hailfinger54ce73a2011-05-03 21:49:41 +0000230static int program_opcodes(OPCODES *op, int enable_undo);
Stefan Reinauer43119562008-11-02 19:51:50 +0000231static int run_opcode(OPCODE op, uint32_t offset,
Stefan Reinauer325b5d42008-06-27 15:18:20 +0000232 uint8_t datalength, uint8_t * data);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000233
FENG yu ningf041e9b2008-12-15 02:32:11 +0000234/* for pairing opcodes with their required preop */
235struct preop_opcode_pair {
236 uint8_t preop;
237 uint8_t opcode;
238};
239
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000240/* List of opcodes which need preopcodes and matching preopcodes. Unused. */
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000241const struct preop_opcode_pair pops[] = {
FENG yu ningf041e9b2008-12-15 02:32:11 +0000242 {JEDEC_WREN, JEDEC_BYTE_PROGRAM},
243 {JEDEC_WREN, JEDEC_SE}, /* sector erase */
244 {JEDEC_WREN, JEDEC_BE_52}, /* block erase */
245 {JEDEC_WREN, JEDEC_BE_D8}, /* block erase */
246 {JEDEC_WREN, JEDEC_CE_60}, /* chip erase */
247 {JEDEC_WREN, JEDEC_CE_C7}, /* chip erase */
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000248 /* FIXME: WRSR requires either EWSR or WREN depending on chip type. */
249 {JEDEC_WREN, JEDEC_WRSR},
FENG yu ningf041e9b2008-12-15 02:32:11 +0000250 {JEDEC_EWSR, JEDEC_WRSR},
251 {0,}
252};
253
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000254/* Reasonable default configuration. Needs ad-hoc modifications if we
255 * encounter unlisted opcodes. Fun.
256 */
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000257static OPCODES O_ST_M25P = {
Dominik Geyerb46acba2008-05-16 12:55:55 +0000258 {
259 JEDEC_WREN,
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000260 JEDEC_EWSR,
261 },
Dominik Geyerb46acba2008-05-16 12:55:55 +0000262 {
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000263 {JEDEC_BYTE_PROGRAM, SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS, 0}, // Write Byte
Stefan Reinauer325b5d42008-06-27 15:18:20 +0000264 {JEDEC_READ, SPI_OPCODE_TYPE_READ_WITH_ADDRESS, 0}, // Read Data
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000265 {JEDEC_BE_D8, SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS, 0}, // Erase Sector
Stefan Reinauer325b5d42008-06-27 15:18:20 +0000266 {JEDEC_RDSR, SPI_OPCODE_TYPE_READ_NO_ADDRESS, 0}, // Read Device Status Reg
Carl-Daniel Hailfinger15aa7c62009-05-26 21:25:08 +0000267 {JEDEC_REMS, SPI_OPCODE_TYPE_READ_WITH_ADDRESS, 0}, // Read Electronic Manufacturer Signature
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000268 {JEDEC_WRSR, SPI_OPCODE_TYPE_WRITE_NO_ADDRESS, 0}, // Write Status Register
Stefan Reinauer325b5d42008-06-27 15:18:20 +0000269 {JEDEC_RDID, SPI_OPCODE_TYPE_READ_NO_ADDRESS, 0}, // Read JDEC ID
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000270 {JEDEC_CE_C7, SPI_OPCODE_TYPE_WRITE_NO_ADDRESS, 0}, // Bulk erase
271 }
Dominik Geyerb46acba2008-05-16 12:55:55 +0000272};
273
Helge Wagner738e2522010-10-05 22:06:05 +0000274/* List of opcodes with their corresponding spi_type
275 * It is used to reprogram the chipset OPCODE table on-the-fly if an opcode
276 * is needed which is currently not in the chipset OPCODE table
277 */
278static OPCODE POSSIBLE_OPCODES[] = {
279 {JEDEC_BYTE_PROGRAM, SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS, 0}, // Write Byte
280 {JEDEC_READ, SPI_OPCODE_TYPE_READ_WITH_ADDRESS, 0}, // Read Data
281 {JEDEC_BE_D8, SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS, 0}, // Erase Sector
282 {JEDEC_RDSR, SPI_OPCODE_TYPE_READ_NO_ADDRESS, 0}, // Read Device Status Reg
283 {JEDEC_REMS, SPI_OPCODE_TYPE_READ_WITH_ADDRESS, 0}, // Read Electronic Manufacturer Signature
284 {JEDEC_WRSR, SPI_OPCODE_TYPE_WRITE_NO_ADDRESS, 0}, // Write Status Register
285 {JEDEC_RDID, SPI_OPCODE_TYPE_READ_NO_ADDRESS, 0}, // Read JDEC ID
286 {JEDEC_CE_C7, SPI_OPCODE_TYPE_WRITE_NO_ADDRESS, 0}, // Bulk erase
287 {JEDEC_SE, SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS, 0}, // Sector erase
288 {JEDEC_BE_52, SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS, 0}, // Block erase
289 {JEDEC_AAI_WORD_PROGRAM, SPI_OPCODE_TYPE_WRITE_NO_ADDRESS, 0}, // Auto Address Increment
290};
291
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000292static OPCODES O_EXISTING = {};
FENG yu ningc05a2952008-12-08 18:16:58 +0000293
Stefan Tauner2a8b2622011-06-11 09:53:16 +0000294/* pretty printing functions */
Stefan Tauner8b391b82011-08-09 01:49:34 +0000295static void prettyprint_opcodes(OPCODES *ops)
Stefan Tauner2a8b2622011-06-11 09:53:16 +0000296{
Stefan Tauner84e1dde2011-09-17 19:53:11 +0000297 OPCODE oc;
298 const char *t;
299 const char *a;
300 uint8_t i;
301 static const char *const spi_type[4] = {
302 "read w/o addr",
303 "write w/o addr",
304 "read w/ addr",
305 "write w/ addr"
306 };
307 static const char *const atomic_type[3] = {
308 "none",
309 " 0 ",
310 " 1 "
311 };
312
313 if (ops == NULL)
Stefan Tauner2a8b2622011-06-11 09:53:16 +0000314 return;
315
Stefan Tauner84e1dde2011-09-17 19:53:11 +0000316 msg_pdbg2(" OP Type Pre-OP\n");
Stefan Tauner2a8b2622011-06-11 09:53:16 +0000317 for (i = 0; i < 8; i++) {
318 oc = ops->opcode[i];
Stefan Tauner84e1dde2011-09-17 19:53:11 +0000319 t = (oc.spi_type > 3) ? "invalid" : spi_type[oc.spi_type];
320 a = (oc.atomic > 2) ? "invalid" : atomic_type[oc.atomic];
321 msg_pdbg2("op[%d]: 0x%02x, %s, %s\n", i, oc.opcode, t, a);
Stefan Tauner2a8b2622011-06-11 09:53:16 +0000322 }
Stefan Tauner84e1dde2011-09-17 19:53:11 +0000323 msg_pdbg2("Pre-OP 0: 0x%02x, Pre-OP 1: 0x%02x\n", ops->preop[0],
324 ops->preop[1]);
Stefan Tauner2a8b2622011-06-11 09:53:16 +0000325}
326
327#define pprint_reg(reg, bit, val, sep) msg_pdbg("%s=%d" sep, #bit, (val & reg##_##bit)>>reg##_##bit##_OFF)
328
Stefan Tauner55206942011-06-11 09:53:22 +0000329static void prettyprint_ich9_reg_hsfs(uint16_t reg_val)
330{
331 msg_pdbg("HSFS: ");
332 pprint_reg(HSFS, FDONE, reg_val, ", ");
333 pprint_reg(HSFS, FCERR, reg_val, ", ");
334 pprint_reg(HSFS, AEL, reg_val, ", ");
335 pprint_reg(HSFS, BERASE, reg_val, ", ");
336 pprint_reg(HSFS, SCIP, reg_val, ", ");
337 pprint_reg(HSFS, FDOPSS, reg_val, ", ");
338 pprint_reg(HSFS, FDV, reg_val, ", ");
339 pprint_reg(HSFS, FLOCKDN, reg_val, "\n");
340}
341
342static void prettyprint_ich9_reg_hsfc(uint16_t reg_val)
343{
344 msg_pdbg("HSFC: ");
345 pprint_reg(HSFC, FGO, reg_val, ", ");
346 pprint_reg(HSFC, FCYCLE, reg_val, ", ");
347 pprint_reg(HSFC, FDBC, reg_val, ", ");
348 pprint_reg(HSFC, SME, reg_val, "\n");
349}
350
Stefan Tauner2a8b2622011-06-11 09:53:16 +0000351static void prettyprint_ich9_reg_ssfs(uint32_t reg_val)
352{
353 msg_pdbg("SSFS: ");
354 pprint_reg(SSFS, SCIP, reg_val, ", ");
355 pprint_reg(SSFS, FDONE, reg_val, ", ");
356 pprint_reg(SSFS, FCERR, reg_val, ", ");
357 pprint_reg(SSFS, AEL, reg_val, "\n");
358}
359
360static void prettyprint_ich9_reg_ssfc(uint32_t reg_val)
361{
362 msg_pdbg("SSFC: ");
363 pprint_reg(SSFC, SCGO, reg_val, ", ");
364 pprint_reg(SSFC, ACS, reg_val, ", ");
365 pprint_reg(SSFC, SPOP, reg_val, ", ");
366 pprint_reg(SSFC, COP, reg_val, ", ");
367 pprint_reg(SSFC, DBC, reg_val, ", ");
368 pprint_reg(SSFC, SME, reg_val, ", ");
369 pprint_reg(SSFC, SCF, reg_val, "\n");
370}
371
Helge Wagner738e2522010-10-05 22:06:05 +0000372static uint8_t lookup_spi_type(uint8_t opcode)
373{
374 int a;
375
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000376 for (a = 0; a < ARRAY_SIZE(POSSIBLE_OPCODES); a++) {
Helge Wagner738e2522010-10-05 22:06:05 +0000377 if (POSSIBLE_OPCODES[a].opcode == opcode)
378 return POSSIBLE_OPCODES[a].spi_type;
379 }
380
381 return 0xFF;
382}
383
384static int reprogram_opcode_on_the_fly(uint8_t opcode, unsigned int writecnt, unsigned int readcnt)
385{
386 uint8_t spi_type;
387
388 spi_type = lookup_spi_type(opcode);
389 if (spi_type > 3) {
390 /* Try to guess spi type from read/write sizes.
391 * The following valid writecnt/readcnt combinations exist:
392 * writecnt = 4, readcnt >= 0
393 * writecnt = 1, readcnt >= 0
394 * writecnt >= 4, readcnt = 0
395 * writecnt >= 1, readcnt = 0
396 * writecnt >= 1 is guaranteed for all commands.
397 */
398 if (readcnt == 0)
399 /* if readcnt=0 and writecount >= 4, we don't know if it is WRITE_NO_ADDRESS
400 * or WRITE_WITH_ADDRESS. But if we use WRITE_NO_ADDRESS and the first 3 data
401 * bytes are actual the address, they go to the bus anyhow
402 */
403 spi_type = SPI_OPCODE_TYPE_WRITE_NO_ADDRESS;
404 else if (writecnt == 1) // and readcnt is > 0
405 spi_type = SPI_OPCODE_TYPE_READ_NO_ADDRESS;
406 else if (writecnt == 4) // and readcnt is > 0
407 spi_type = SPI_OPCODE_TYPE_READ_WITH_ADDRESS;
408 // else we have an invalid case, will be handled below
409 }
410 if (spi_type <= 3) {
411 int oppos=2; // use original JEDEC_BE_D8 offset
412 curopcodes->opcode[oppos].opcode = opcode;
413 curopcodes->opcode[oppos].spi_type = spi_type;
Carl-Daniel Hailfinger54ce73a2011-05-03 21:49:41 +0000414 program_opcodes(curopcodes, 0);
Helge Wagner738e2522010-10-05 22:06:05 +0000415 oppos = find_opcode(curopcodes, opcode);
416 msg_pdbg ("on-the-fly OPCODE (0x%02X) re-programmed, op-pos=%d\n", opcode, oppos);
417 return oppos;
418 }
419 return -1;
420}
421
Uwe Hermann09e04f72009-05-16 22:36:00 +0000422static int find_opcode(OPCODES *op, uint8_t opcode)
FENG yu ningc05a2952008-12-08 18:16:58 +0000423{
424 int a;
425
426 for (a = 0; a < 8; a++) {
427 if (op->opcode[a].opcode == opcode)
428 return a;
429 }
430
431 return -1;
432}
433
Uwe Hermann09e04f72009-05-16 22:36:00 +0000434static int find_preop(OPCODES *op, uint8_t preop)
FENG yu ningc05a2952008-12-08 18:16:58 +0000435{
436 int a;
437
438 for (a = 0; a < 2; a++) {
439 if (op->preop[a] == preop)
440 return a;
441 }
442
443 return -1;
444}
445
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000446/* Create a struct OPCODES based on what we find in the locked down chipset. */
FENG yu ningf041e9b2008-12-15 02:32:11 +0000447static int generate_opcodes(OPCODES * op)
FENG yu ningc05a2952008-12-08 18:16:58 +0000448{
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000449 int a;
FENG yu ningc05a2952008-12-08 18:16:58 +0000450 uint16_t preop, optype;
451 uint32_t opmenu[2];
FENG yu ningc05a2952008-12-08 18:16:58 +0000452
453 if (op == NULL) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000454 msg_perr("\n%s: null OPCODES pointer!\n", __func__);
FENG yu ningc05a2952008-12-08 18:16:58 +0000455 return -1;
456 }
457
Michael Karcherb9dbe482011-05-11 17:07:07 +0000458 switch (spi_programmer->type) {
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000459 case SPI_CONTROLLER_ICH7:
460 case SPI_CONTROLLER_VIA:
FENG yu ningc05a2952008-12-08 18:16:58 +0000461 preop = REGREAD16(ICH7_REG_PREOP);
462 optype = REGREAD16(ICH7_REG_OPTYPE);
463 opmenu[0] = REGREAD32(ICH7_REG_OPMENU);
464 opmenu[1] = REGREAD32(ICH7_REG_OPMENU + 4);
465 break;
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000466 case SPI_CONTROLLER_ICH9:
FENG yu ningc05a2952008-12-08 18:16:58 +0000467 preop = REGREAD16(ICH9_REG_PREOP);
468 optype = REGREAD16(ICH9_REG_OPTYPE);
469 opmenu[0] = REGREAD32(ICH9_REG_OPMENU);
470 opmenu[1] = REGREAD32(ICH9_REG_OPMENU + 4);
471 break;
472 default:
Sean Nelson316a29f2010-05-07 20:09:04 +0000473 msg_perr("%s: unsupported chipset\n", __func__);
FENG yu ningc05a2952008-12-08 18:16:58 +0000474 return -1;
475 }
476
477 op->preop[0] = (uint8_t) preop;
478 op->preop[1] = (uint8_t) (preop >> 8);
479
480 for (a = 0; a < 8; a++) {
481 op->opcode[a].spi_type = (uint8_t) (optype & 0x3);
482 optype >>= 2;
483 }
484
485 for (a = 0; a < 4; a++) {
486 op->opcode[a].opcode = (uint8_t) (opmenu[0] & 0xff);
487 opmenu[0] >>= 8;
488 }
489
490 for (a = 4; a < 8; a++) {
491 op->opcode[a].opcode = (uint8_t) (opmenu[1] & 0xff);
492 opmenu[1] >>= 8;
493 }
494
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000495 /* No preopcodes used by default. */
496 for (a = 0; a < 8; a++)
FENG yu ningc05a2952008-12-08 18:16:58 +0000497 op->opcode[a].atomic = 0;
498
FENG yu ningc05a2952008-12-08 18:16:58 +0000499 return 0;
500}
501
Carl-Daniel Hailfinger54ce73a2011-05-03 21:49:41 +0000502static int program_opcodes(OPCODES *op, int enable_undo)
Dominik Geyerb46acba2008-05-16 12:55:55 +0000503{
504 uint8_t a;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000505 uint16_t preop, optype;
506 uint32_t opmenu[2];
Dominik Geyerb46acba2008-05-16 12:55:55 +0000507
508 /* Program Prefix Opcodes */
Dominik Geyerb46acba2008-05-16 12:55:55 +0000509 /* 0:7 Prefix Opcode 1 */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000510 preop = (op->preop[0]);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000511 /* 8:16 Prefix Opcode 2 */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000512 preop |= ((uint16_t) op->preop[1]) << 8;
Uwe Hermann394131e2008-10-18 21:14:13 +0000513
Stefan Reinauera9424d52008-06-27 16:28:34 +0000514 /* Program Opcode Types 0 - 7 */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000515 optype = 0;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000516 for (a = 0; a < 8; a++) {
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000517 optype |= ((uint16_t) op->opcode[a].spi_type) << (a * 2);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000518 }
Uwe Hermann394131e2008-10-18 21:14:13 +0000519
Stefan Reinauera9424d52008-06-27 16:28:34 +0000520 /* Program Allowable Opcodes 0 - 3 */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000521 opmenu[0] = 0;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000522 for (a = 0; a < 4; a++) {
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000523 opmenu[0] |= ((uint32_t) op->opcode[a].opcode) << (a * 8);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000524 }
Stefan Reinauera9424d52008-06-27 16:28:34 +0000525
Dominik Geyerb46acba2008-05-16 12:55:55 +0000526 /*Program Allowable Opcodes 4 - 7 */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000527 opmenu[1] = 0;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000528 for (a = 4; a < 8; a++) {
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000529 opmenu[1] |= ((uint32_t) op->opcode[a].opcode) << ((a - 4) * 8);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000530 }
Stefan Reinauera9424d52008-06-27 16:28:34 +0000531
Sean Nelson316a29f2010-05-07 20:09:04 +0000532 msg_pdbg("\n%s: preop=%04x optype=%04x opmenu=%08x%08x\n", __func__, preop, optype, opmenu[0], opmenu[1]);
Michael Karcherb9dbe482011-05-11 17:07:07 +0000533 switch (spi_programmer->type) {
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000534 case SPI_CONTROLLER_ICH7:
535 case SPI_CONTROLLER_VIA:
Carl-Daniel Hailfinger54ce73a2011-05-03 21:49:41 +0000536 /* Register undo only for enable_undo=1, i.e. first call. */
537 if (enable_undo) {
538 rmmio_valw(ich_spibar + ICH7_REG_PREOP);
539 rmmio_valw(ich_spibar + ICH7_REG_OPTYPE);
540 rmmio_vall(ich_spibar + ICH7_REG_OPMENU);
541 rmmio_vall(ich_spibar + ICH7_REG_OPMENU + 4);
542 }
543 mmio_writew(preop, ich_spibar + ICH7_REG_PREOP);
544 mmio_writew(optype, ich_spibar + ICH7_REG_OPTYPE);
545 mmio_writel(opmenu[0], ich_spibar + ICH7_REG_OPMENU);
546 mmio_writel(opmenu[1], ich_spibar + ICH7_REG_OPMENU + 4);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000547 break;
Carl-Daniel Hailfinger1dfe0ff2009-05-31 17:57:34 +0000548 case SPI_CONTROLLER_ICH9:
Carl-Daniel Hailfinger54ce73a2011-05-03 21:49:41 +0000549 /* Register undo only for enable_undo=1, i.e. first call. */
550 if (enable_undo) {
551 rmmio_valw(ich_spibar + ICH9_REG_PREOP);
552 rmmio_valw(ich_spibar + ICH9_REG_OPTYPE);
553 rmmio_vall(ich_spibar + ICH9_REG_OPMENU);
554 rmmio_vall(ich_spibar + ICH9_REG_OPMENU + 4);
555 }
556 mmio_writew(preop, ich_spibar + ICH9_REG_PREOP);
557 mmio_writew(optype, ich_spibar + ICH9_REG_OPTYPE);
558 mmio_writel(opmenu[0], ich_spibar + ICH9_REG_OPMENU);
559 mmio_writel(opmenu[1], ich_spibar + ICH9_REG_OPMENU + 4);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000560 break;
561 default:
Sean Nelson316a29f2010-05-07 20:09:04 +0000562 msg_perr("%s: unsupported chipset\n", __func__);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000563 return -1;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000564 }
Dominik Geyerb46acba2008-05-16 12:55:55 +0000565
566 return 0;
567}
568
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000569/*
570 * Try to set BBAR (BIOS Base Address Register), but read back the value in case
571 * it didn't stick.
572 */
Stefan Tauner7783f312011-09-17 21:21:42 +0000573static void ich_set_bbar(int ich_generation, uint32_t min_addr)
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000574{
Stefan Taunere27b2d42011-07-01 00:39:09 +0000575 int bbar_off;
Stefan Tauner7783f312011-09-17 21:21:42 +0000576 switch (ich_generation) {
577 case 7:
Stefan Taunere27b2d42011-07-01 00:39:09 +0000578 bbar_off = 0x50;
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000579 break;
Stefan Tauner7783f312011-09-17 21:21:42 +0000580 case 8:
581 msg_perr("BBAR offset is unknown on ICH8!\n");
582 return;
583 default: /* Future version might behave the same */
Stefan Taunere27b2d42011-07-01 00:39:09 +0000584 bbar_off = ICH9_REG_BBAR;
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000585 break;
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000586 }
Stefan Taunere27b2d42011-07-01 00:39:09 +0000587
588 ichspi_bbar = mmio_readl(ich_spibar + bbar_off) & ~BBAR_MASK;
589 if (ichspi_bbar) {
590 msg_pdbg("Reserved bits in BBAR not zero: 0x%08x\n",
591 ichspi_bbar);
592 }
593 min_addr &= BBAR_MASK;
594 ichspi_bbar |= min_addr;
595 rmmio_writel(ichspi_bbar, ich_spibar + bbar_off);
596 ichspi_bbar = mmio_readl(ich_spibar + bbar_off) & BBAR_MASK;
597
598 /* We don't have any option except complaining. And if the write
599 * failed, the restore will fail as well, so no problem there.
600 */
601 if (ichspi_bbar != min_addr)
Stefan Tauner7783f312011-09-17 21:21:42 +0000602 msg_perr("Setting BBAR to 0x%08x failed! New value: 0x%08x.\n",
603 min_addr, ichspi_bbar);
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000604}
605
Stefan Tauner8b391b82011-08-09 01:49:34 +0000606/* Read len bytes from the fdata/spid register into the data array.
607 *
608 * Note that using len > spi_programmer->max_data_read will return garbage or
609 * may even crash.
610 */
611 static void ich_read_data(uint8_t *data, int len, int reg0_off)
612 {
613 int i;
614 uint32_t temp32 = 0;
615
616 for (i = 0; i < len; i++) {
617 if ((i % 4) == 0)
618 temp32 = REGREAD32(reg0_off + i);
619
620 data[i] = (temp32 >> ((i % 4) * 8)) & 0xff;
621 }
622}
623
624/* Fill len bytes from the data array into the fdata/spid registers.
625 *
626 * Note that using len > spi_programmer->max_data_write will trash the registers
627 * following the data registers.
628 */
629static void ich_fill_data(const uint8_t *data, int len, int reg0_off)
630{
631 uint32_t temp32 = 0;
632 int i;
633
634 if (len <= 0)
635 return;
636
637 for (i = 0; i < len; i++) {
638 if ((i % 4) == 0)
639 temp32 = 0;
640
641 temp32 |= ((uint32_t) data[i]) << ((i % 4) * 8);
642
643 if ((i % 4) == 3) /* 32 bits are full, write them to regs. */
644 REGWRITE32(reg0_off + (i - (i % 4)), temp32);
645 }
646 i--;
647 if ((i % 4) != 3) /* Write remaining data to regs. */
648 REGWRITE32(reg0_off + (i - (i % 4)), temp32);
649}
650
FENG yu ningf041e9b2008-12-15 02:32:11 +0000651/* This function generates OPCODES from or programs OPCODES to ICH according to
652 * the chipset's SPI configuration lock.
FENG yu ningc05a2952008-12-08 18:16:58 +0000653 *
FENG yu ningf041e9b2008-12-15 02:32:11 +0000654 * It should be called before ICH sends any spi command.
FENG yu ningc05a2952008-12-08 18:16:58 +0000655 */
Michael Karchera4448d92010-07-22 18:04:15 +0000656static int ich_init_opcodes(void)
FENG yu ningc05a2952008-12-08 18:16:58 +0000657{
658 int rc = 0;
659 OPCODES *curopcodes_done;
660
661 if (curopcodes)
662 return 0;
663
664 if (ichspi_lock) {
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000665 msg_pdbg("Reading OPCODES... ");
FENG yu ningc05a2952008-12-08 18:16:58 +0000666 curopcodes_done = &O_EXISTING;
FENG yu ningf041e9b2008-12-15 02:32:11 +0000667 rc = generate_opcodes(curopcodes_done);
FENG yu ningc05a2952008-12-08 18:16:58 +0000668 } else {
Sean Nelson316a29f2010-05-07 20:09:04 +0000669 msg_pdbg("Programming OPCODES... ");
FENG yu ningc05a2952008-12-08 18:16:58 +0000670 curopcodes_done = &O_ST_M25P;
Carl-Daniel Hailfinger54ce73a2011-05-03 21:49:41 +0000671 rc = program_opcodes(curopcodes_done, 1);
FENG yu ningc05a2952008-12-08 18:16:58 +0000672 }
673
674 if (rc) {
675 curopcodes = NULL;
Sean Nelson316a29f2010-05-07 20:09:04 +0000676 msg_perr("failed\n");
FENG yu ningc05a2952008-12-08 18:16:58 +0000677 return 1;
678 } else {
679 curopcodes = curopcodes_done;
Sean Nelson316a29f2010-05-07 20:09:04 +0000680 msg_pdbg("done\n");
Stefan Tauner8b391b82011-08-09 01:49:34 +0000681 prettyprint_opcodes(curopcodes);
FENG yu ningc05a2952008-12-08 18:16:58 +0000682 return 0;
683 }
684}
685
Stefan Reinauer43119562008-11-02 19:51:50 +0000686static int ich7_run_opcode(OPCODE op, uint32_t offset,
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000687 uint8_t datalength, uint8_t * data, int maxdata)
Dominik Geyerb46acba2008-05-16 12:55:55 +0000688{
689 int write_cmd = 0;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000690 int timeout;
Stefan Tauner8b391b82011-08-09 01:49:34 +0000691 uint32_t temp32;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000692 uint16_t temp16;
Stefan Reinauer43119562008-11-02 19:51:50 +0000693 uint64_t opmenu;
694 int opcode_index;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000695
696 /* Is it a write command? */
697 if ((op.spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS)
698 || (op.spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS)) {
699 write_cmd = 1;
700 }
701
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000702 timeout = 100 * 60; /* 60 ms are 9.6 million cycles at 16 MHz. */
703 while ((REGREAD16(ICH7_REG_SPIS) & SPIS_SCIP) && --timeout) {
704 programmer_delay(10);
705 }
706 if (!timeout) {
707 msg_perr("Error: SCIP never cleared!\n");
708 return 1;
709 }
710
Stefan Tauner10b3e222011-07-01 00:39:23 +0000711 /* Program offset in flash into SPIA while preserving reserved bits. */
712 temp32 = REGREAD32(ICH7_REG_SPIA) & ~0x00FFFFFF;
713 REGWRITE32(ICH7_REG_SPIA, (offset & 0x00FFFFFF) | temp32);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000714
Stefan Tauner10b3e222011-07-01 00:39:23 +0000715 /* Program data into SPID0 to N */
Stefan Tauner8b391b82011-08-09 01:49:34 +0000716 if (write_cmd && (datalength != 0))
717 ich_fill_data(data, datalength, ICH7_REG_SPID0);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000718
719 /* Assemble SPIS */
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000720 temp16 = REGREAD16(ICH7_REG_SPIS);
721 /* keep reserved bits */
722 temp16 &= SPIS_RESERVED_MASK;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000723 /* clear error status registers */
Stefan Tauner0c1ec452011-06-11 09:53:09 +0000724 temp16 |= (SPIS_CDS | SPIS_FCERR);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000725 REGWRITE16(ICH7_REG_SPIS, temp16);
726
727 /* Assemble SPIC */
728 temp16 = 0;
729
730 if (datalength != 0) {
731 temp16 |= SPIC_DS;
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000732 temp16 |= ((uint32_t) ((datalength - 1) & (maxdata - 1))) << 8;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000733 }
734
735 /* Select opcode */
Stefan Reinauer43119562008-11-02 19:51:50 +0000736 opmenu = REGREAD32(ICH7_REG_OPMENU);
737 opmenu |= ((uint64_t)REGREAD32(ICH7_REG_OPMENU + 4)) << 32;
738
Uwe Hermann7b2969b2009-04-15 10:52:49 +0000739 for (opcode_index = 0; opcode_index < 8; opcode_index++) {
740 if ((opmenu & 0xff) == op.opcode) {
Stefan Reinauer43119562008-11-02 19:51:50 +0000741 break;
742 }
743 opmenu >>= 8;
744 }
745 if (opcode_index == 8) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000746 msg_pdbg("Opcode %x not found.\n", op.opcode);
Stefan Reinauer43119562008-11-02 19:51:50 +0000747 return 1;
748 }
749 temp16 |= ((uint16_t) (opcode_index & 0x07)) << 4;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000750
Michael Karcher136125a2011-04-29 22:11:36 +0000751 timeout = 100 * 60; /* 60 ms are 9.6 million cycles at 16 MHz. */
752 /* Handle Atomic. Atomic commands include three steps:
753 - sending the preop (mainly EWSR or WREN)
754 - sending the main command
755 - waiting for the busy bit (WIP) to be cleared
756 This means the timeout must be sufficient for chip erase
757 of slow high-capacity chips.
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000758 */
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000759 switch (op.atomic) {
760 case 2:
761 /* Select second preop. */
762 temp16 |= SPIC_SPOP;
763 /* And fall through. */
764 case 1:
765 /* Atomic command (preop+op) */
Stefan Reinauera9424d52008-06-27 16:28:34 +0000766 temp16 |= SPIC_ACS;
Michael Karcher136125a2011-04-29 22:11:36 +0000767 timeout = 100 * 1000 * 60; /* 60 seconds */
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000768 break;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000769 }
770
771 /* Start */
772 temp16 |= SPIC_SCGO;
773
774 /* write it */
775 REGWRITE16(ICH7_REG_SPIC, temp16);
776
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000777 /* Wait for Cycle Done Status or Flash Cycle Error. */
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000778 while (((REGREAD16(ICH7_REG_SPIS) & (SPIS_CDS | SPIS_FCERR)) == 0) &&
779 --timeout) {
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000780 programmer_delay(10);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000781 }
782 if (!timeout) {
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000783 msg_perr("timeout, ICH7_REG_SPIS=0x%04x\n",
784 REGREAD16(ICH7_REG_SPIS));
785 return 1;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000786 }
787
Sean Nelson316a29f2010-05-07 20:09:04 +0000788 /* FIXME: make sure we do not needlessly cause transaction errors. */
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000789 temp16 = REGREAD16(ICH7_REG_SPIS);
790 if (temp16 & SPIS_FCERR) {
Stefan Tauner8ed29342011-04-29 23:53:09 +0000791 msg_perr("Transaction error!\n");
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000792 /* keep reserved bits */
793 temp16 &= SPIS_RESERVED_MASK;
794 REGWRITE16(ICH7_REG_SPIS, temp16 | SPIS_FCERR);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000795 return 1;
796 }
797
Stefan Tauner8b391b82011-08-09 01:49:34 +0000798 if ((!write_cmd) && (datalength != 0))
799 ich_read_data(data, datalength, ICH7_REG_SPID0);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000800
801 return 0;
802}
803
Stefan Reinauer43119562008-11-02 19:51:50 +0000804static int ich9_run_opcode(OPCODE op, uint32_t offset,
Stefan Reinauera9424d52008-06-27 16:28:34 +0000805 uint8_t datalength, uint8_t * data)
806{
807 int write_cmd = 0;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000808 int timeout;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000809 uint32_t temp32;
Stefan Reinauer43119562008-11-02 19:51:50 +0000810 uint64_t opmenu;
811 int opcode_index;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000812
813 /* Is it a write command? */
814 if ((op.spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS)
815 || (op.spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS)) {
816 write_cmd = 1;
817 }
818
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000819 timeout = 100 * 60; /* 60 ms are 9.6 million cycles at 16 MHz. */
820 while ((REGREAD8(ICH9_REG_SSFS) & SSFS_SCIP) && --timeout) {
821 programmer_delay(10);
822 }
823 if (!timeout) {
824 msg_perr("Error: SCIP never cleared!\n");
825 return 1;
826 }
827
Stefan Tauner10b3e222011-07-01 00:39:23 +0000828 /* Program offset in flash into FADDR while preserve the reserved bits
829 * and clearing the 25. address bit which is only useable in hwseq. */
830 temp32 = REGREAD32(ICH9_REG_FADDR) & ~0x01FFFFFF;
831 REGWRITE32(ICH9_REG_FADDR, (offset & 0x00FFFFFF) | temp32);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000832
833 /* Program data into FDATA0 to N */
Stefan Tauner8b391b82011-08-09 01:49:34 +0000834 if (write_cmd && (datalength != 0))
835 ich_fill_data(data, datalength, ICH9_REG_FDATA0);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000836
837 /* Assemble SSFS + SSFC */
Helge Wagnera319be12010-08-11 21:06:10 +0000838 temp32 = REGREAD32(ICH9_REG_SSFS);
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000839 /* Keep reserved bits only */
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000840 temp32 &= SSFS_RESERVED_MASK | SSFC_RESERVED_MASK;
Stefan Tauner0c1ec452011-06-11 09:53:09 +0000841 /* Clear cycle done and cycle error status registers */
842 temp32 |= (SSFS_FDONE | SSFS_FCERR);
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000843 REGWRITE32(ICH9_REG_SSFS, temp32);
844
Uwe Hermann4e3d0b32010-03-25 23:18:41 +0000845 /* Use 20 MHz */
Dominik Geyerb46acba2008-05-16 12:55:55 +0000846 temp32 |= SSFC_SCF_20MHZ;
847
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000848 /* Set data byte count (DBC) and data cycle bit (DS) */
Dominik Geyerb46acba2008-05-16 12:55:55 +0000849 if (datalength != 0) {
850 uint32_t datatemp;
851 temp32 |= SSFC_DS;
Stefan Tauner0c1ec452011-06-11 09:53:09 +0000852 datatemp = ((((uint32_t)datalength - 1) << SSFC_DBC_OFF) &
853 SSFC_DBC);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000854 temp32 |= datatemp;
855 }
856
857 /* Select opcode */
Stefan Reinauer43119562008-11-02 19:51:50 +0000858 opmenu = REGREAD32(ICH9_REG_OPMENU);
859 opmenu |= ((uint64_t)REGREAD32(ICH9_REG_OPMENU + 4)) << 32;
860
Uwe Hermann7b2969b2009-04-15 10:52:49 +0000861 for (opcode_index = 0; opcode_index < 8; opcode_index++) {
862 if ((opmenu & 0xff) == op.opcode) {
Stefan Reinauer43119562008-11-02 19:51:50 +0000863 break;
864 }
865 opmenu >>= 8;
866 }
867 if (opcode_index == 8) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000868 msg_pdbg("Opcode %x not found.\n", op.opcode);
Stefan Reinauer43119562008-11-02 19:51:50 +0000869 return 1;
870 }
871 temp32 |= ((uint32_t) (opcode_index & 0x07)) << (8 + 4);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000872
Michael Karcher136125a2011-04-29 22:11:36 +0000873 timeout = 100 * 60; /* 60 ms are 9.6 million cycles at 16 MHz. */
874 /* Handle Atomic. Atomic commands include three steps:
875 - sending the preop (mainly EWSR or WREN)
876 - sending the main command
877 - waiting for the busy bit (WIP) to be cleared
878 This means the timeout must be sufficient for chip erase
879 of slow high-capacity chips.
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000880 */
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000881 switch (op.atomic) {
882 case 2:
883 /* Select second preop. */
884 temp32 |= SSFC_SPOP;
885 /* And fall through. */
886 case 1:
887 /* Atomic command (preop+op) */
Dominik Geyerb46acba2008-05-16 12:55:55 +0000888 temp32 |= SSFC_ACS;
Michael Karcher136125a2011-04-29 22:11:36 +0000889 timeout = 100 * 1000 * 60; /* 60 seconds */
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000890 break;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000891 }
892
893 /* Start */
894 temp32 |= SSFC_SCGO;
895
896 /* write it */
Stefan Reinauera9424d52008-06-27 16:28:34 +0000897 REGWRITE32(ICH9_REG_SSFS, temp32);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000898
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000899 /* Wait for Cycle Done Status or Flash Cycle Error. */
Stefan Tauner0c1ec452011-06-11 09:53:09 +0000900 while (((REGREAD32(ICH9_REG_SSFS) & (SSFS_FDONE | SSFS_FCERR)) == 0) &&
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000901 --timeout) {
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000902 programmer_delay(10);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000903 }
904 if (!timeout) {
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000905 msg_perr("timeout, ICH9_REG_SSFS=0x%08x\n",
906 REGREAD32(ICH9_REG_SSFS));
907 return 1;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000908 }
909
Sean Nelson316a29f2010-05-07 20:09:04 +0000910 /* FIXME make sure we do not needlessly cause transaction errors. */
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000911 temp32 = REGREAD32(ICH9_REG_SSFS);
912 if (temp32 & SSFS_FCERR) {
Stefan Tauner8ed29342011-04-29 23:53:09 +0000913 msg_perr("Transaction error!\n");
Stefan Tauner2a8b2622011-06-11 09:53:16 +0000914 prettyprint_ich9_reg_ssfs(temp32);
915 prettyprint_ich9_reg_ssfc(temp32);
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000916 /* keep reserved bits */
917 temp32 &= SSFS_RESERVED_MASK | SSFC_RESERVED_MASK;
918 /* Clear the transaction error. */
919 REGWRITE32(ICH9_REG_SSFS, temp32 | SSFS_FCERR);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000920 return 1;
921 }
922
Stefan Tauner8b391b82011-08-09 01:49:34 +0000923 if ((!write_cmd) && (datalength != 0))
924 ich_read_data(data, datalength, ICH9_REG_FDATA0);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000925
926 return 0;
927}
928
Stefan Reinauer43119562008-11-02 19:51:50 +0000929static int run_opcode(OPCODE op, uint32_t offset,
Stefan Reinauera9424d52008-06-27 16:28:34 +0000930 uint8_t datalength, uint8_t * data)
931{
Stefan Taunerb2d5f6a2011-06-11 19:44:31 +0000932 /* max_data_read == max_data_write for all Intel/VIA SPI masters */
933 uint8_t maxlength = spi_programmer->max_data_read;
934
935 if (spi_programmer->type == SPI_CONTROLLER_NONE) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000936 msg_perr("%s: unsupported chipset\n", __func__);
Stefan Taunerb2d5f6a2011-06-11 19:44:31 +0000937 return -1;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000938 }
Stefan Reinauera9424d52008-06-27 16:28:34 +0000939
Stefan Taunerb2d5f6a2011-06-11 19:44:31 +0000940 if (datalength > maxlength) {
941 msg_perr("%s: Internal command size error for "
942 "opcode 0x%02x, got datalength=%i, want <=%i\n",
943 __func__, op.opcode, datalength, maxlength);
944 return SPI_INVALID_LENGTH;
945 }
946
947 switch (spi_programmer->type) {
948 case SPI_CONTROLLER_VIA:
949 case SPI_CONTROLLER_ICH7:
950 return ich7_run_opcode(op, offset, datalength, data, maxlength);
951 case SPI_CONTROLLER_ICH9:
952 return ich9_run_opcode(op, offset, datalength, data);
953 default:
954 /* If we ever get here, something really weird happened */
955 return -1;
956 }
Stefan Reinauera9424d52008-06-27 16:28:34 +0000957}
958
Michael Karcherb9dbe482011-05-11 17:07:07 +0000959static int ich_spi_send_command(unsigned int writecnt, unsigned int readcnt,
Stefan Reinauer325b5d42008-06-27 15:18:20 +0000960 const unsigned char *writearr, unsigned char *readarr)
Dominik Geyerb46acba2008-05-16 12:55:55 +0000961{
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +0000962 int result;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000963 int opcode_index = -1;
964 const unsigned char cmd = *writearr;
965 OPCODE *opcode;
966 uint32_t addr = 0;
967 uint8_t *data;
968 int count;
969
Dominik Geyerb46acba2008-05-16 12:55:55 +0000970 /* find cmd in opcodes-table */
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000971 opcode_index = find_opcode(curopcodes, cmd);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000972 if (opcode_index == -1) {
Helge Wagner738e2522010-10-05 22:06:05 +0000973 if (!ichspi_lock)
974 opcode_index = reprogram_opcode_on_the_fly(cmd, writecnt, readcnt);
975 if (opcode_index == -1) {
Stefan Tauner355cbfd2011-05-28 02:37:14 +0000976 msg_pdbg("Invalid OPCODE 0x%02x, will not execute.\n",
977 cmd);
Helge Wagner738e2522010-10-05 22:06:05 +0000978 return SPI_INVALID_OPCODE;
979 }
Dominik Geyerb46acba2008-05-16 12:55:55 +0000980 }
981
982 opcode = &(curopcodes->opcode[opcode_index]);
983
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000984 /* The following valid writecnt/readcnt combinations exist:
985 * writecnt = 4, readcnt >= 0
986 * writecnt = 1, readcnt >= 0
987 * writecnt >= 4, readcnt = 0
988 * writecnt >= 1, readcnt = 0
989 * writecnt >= 1 is guaranteed for all commands.
990 */
991 if ((opcode->spi_type == SPI_OPCODE_TYPE_READ_WITH_ADDRESS) &&
992 (writecnt != 4)) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000993 msg_perr("%s: Internal command size error for opcode "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000994 "0x%02x, got writecnt=%i, want =4\n", __func__, cmd,
995 writecnt);
996 return SPI_INVALID_LENGTH;
997 }
998 if ((opcode->spi_type == SPI_OPCODE_TYPE_READ_NO_ADDRESS) &&
999 (writecnt != 1)) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001000 msg_perr("%s: Internal command size error for opcode "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001001 "0x%02x, got writecnt=%i, want =1\n", __func__, cmd,
1002 writecnt);
1003 return SPI_INVALID_LENGTH;
1004 }
1005 if ((opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) &&
1006 (writecnt < 4)) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001007 msg_perr("%s: Internal command size error for opcode "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001008 "0x%02x, got writecnt=%i, want >=4\n", __func__, cmd,
1009 writecnt);
1010 return SPI_INVALID_LENGTH;
1011 }
1012 if (((opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) ||
1013 (opcode->spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS)) &&
1014 (readcnt)) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001015 msg_perr("%s: Internal command size error for opcode "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001016 "0x%02x, got readcnt=%i, want =0\n", __func__, cmd,
1017 readcnt);
1018 return SPI_INVALID_LENGTH;
1019 }
1020
Dominik Geyerb46acba2008-05-16 12:55:55 +00001021 /* if opcode-type requires an address */
1022 if (opcode->spi_type == SPI_OPCODE_TYPE_READ_WITH_ADDRESS ||
1023 opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) {
Stefan Reinauer325b5d42008-06-27 15:18:20 +00001024 addr = (writearr[1] << 16) |
1025 (writearr[2] << 8) | (writearr[3] << 0);
Michael Karcherb9dbe482011-05-11 17:07:07 +00001026 switch (spi_programmer->type) {
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +00001027 case SPI_CONTROLLER_ICH7:
Carl-Daniel Hailfinger841d6312010-11-24 23:37:22 +00001028 case SPI_CONTROLLER_VIA:
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +00001029 case SPI_CONTROLLER_ICH9:
1030 if (addr < ichspi_bbar) {
1031 msg_perr("%s: Address 0x%06x below allowed "
1032 "range 0x%06x-0xffffff\n", __func__,
1033 addr, ichspi_bbar);
1034 return SPI_INVALID_ADDRESS;
1035 }
1036 break;
1037 default:
1038 break;
1039 }
Dominik Geyerb46acba2008-05-16 12:55:55 +00001040 }
Stefan Reinauer325b5d42008-06-27 15:18:20 +00001041
Stefan Taunerb2d5f6a2011-06-11 19:44:31 +00001042 /* Translate read/write array/count.
1043 * The maximum data length is identical for the maximum read length and
1044 * for the maximum write length excluding opcode and address. Opcode and
1045 * address are stored in separate registers, not in the data registers
1046 * and are thus not counted towards data length. The only exception
1047 * applies if the opcode definition (un)intentionally classifies said
1048 * opcode incorrectly as non-address opcode or vice versa. */
Dominik Geyerb46acba2008-05-16 12:55:55 +00001049 if (opcode->spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS) {
Stefan Reinauer325b5d42008-06-27 15:18:20 +00001050 data = (uint8_t *) (writearr + 1);
1051 count = writecnt - 1;
1052 } else if (opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) {
1053 data = (uint8_t *) (writearr + 4);
1054 count = writecnt - 4;
1055 } else {
1056 data = (uint8_t *) readarr;
Dominik Geyerb46acba2008-05-16 12:55:55 +00001057 count = readcnt;
1058 }
Stefan Reinauer325b5d42008-06-27 15:18:20 +00001059
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +00001060 result = run_opcode(*opcode, addr, count, data);
1061 if (result) {
Stefan Tauner8ed29342011-04-29 23:53:09 +00001062 msg_pdbg("Running OPCODE 0x%02x failed ", opcode->opcode);
1063 if ((opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) ||
1064 (opcode->spi_type == SPI_OPCODE_TYPE_READ_WITH_ADDRESS)) {
1065 msg_pdbg("at address 0x%06x ", addr);
1066 }
1067 msg_pdbg("(payload length was %d).\n", count);
1068
1069 /* Print out the data array if it contains data to write.
1070 * Errors are detected before the received data is read back into
1071 * the array so it won't make sense to print it then. */
1072 if ((opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) ||
1073 (opcode->spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS)) {
1074 int i;
1075 msg_pspew("The data was:\n");
1076 for(i=0; i<count; i++){
1077 msg_pspew("%3d: 0x%02x\n", i, data[i]);
1078 }
1079 }
Dominik Geyerb46acba2008-05-16 12:55:55 +00001080 }
1081
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +00001082 return result;
Dominik Geyerb46acba2008-05-16 12:55:55 +00001083}
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +00001084
Michael Karcherb9dbe482011-05-11 17:07:07 +00001085static int ich_spi_send_multicommand(struct spi_command *cmds)
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +00001086{
1087 int ret = 0;
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001088 int i;
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +00001089 int oppos, preoppos;
1090 for (; (cmds->writecnt || cmds->readcnt) && !ret; cmds++) {
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +00001091 if ((cmds + 1)->writecnt || (cmds + 1)->readcnt) {
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001092 /* Next command is valid. */
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +00001093 preoppos = find_preop(curopcodes, cmds->writearr[0]);
1094 oppos = find_opcode(curopcodes, (cmds + 1)->writearr[0]);
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001095 if ((oppos == -1) && (preoppos != -1)) {
1096 /* Current command is listed as preopcode in
1097 * ICH struct OPCODES, but next command is not
1098 * listed as opcode in that struct.
1099 * Check for command sanity, then
1100 * try to reprogram the ICH opcode list.
1101 */
1102 if (find_preop(curopcodes,
1103 (cmds + 1)->writearr[0]) != -1) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001104 msg_perr("%s: Two subsequent "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001105 "preopcodes 0x%02x and 0x%02x, "
1106 "ignoring the first.\n",
1107 __func__, cmds->writearr[0],
1108 (cmds + 1)->writearr[0]);
1109 continue;
1110 }
1111 /* If the chipset is locked down, we'll fail
1112 * during execution of the next command anyway.
1113 * No need to bother with fixups.
1114 */
1115 if (!ichspi_lock) {
Helge Wagner738e2522010-10-05 22:06:05 +00001116 oppos = reprogram_opcode_on_the_fly((cmds + 1)->writearr[0], (cmds + 1)->writecnt, (cmds + 1)->readcnt);
1117 if (oppos == -1)
1118 continue;
1119 curopcodes->opcode[oppos].atomic = preoppos + 1;
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001120 continue;
1121 }
1122 }
1123 if ((oppos != -1) && (preoppos != -1)) {
1124 /* Current command is listed as preopcode in
1125 * ICH struct OPCODES and next command is listed
1126 * as opcode in that struct. Match them up.
1127 */
1128 curopcodes->opcode[oppos].atomic = preoppos + 1;
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +00001129 continue;
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001130 }
1131 /* If none of the above if-statements about oppos or
1132 * preoppos matched, this is a normal opcode.
1133 */
1134 }
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +00001135 ret = ich_spi_send_command(cmds->writecnt, cmds->readcnt,
1136 cmds->writearr, cmds->readarr);
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001137 /* Reset the type of all opcodes to non-atomic. */
1138 for (i = 0; i < 8; i++)
1139 curopcodes->opcode[i].atomic = 0;
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +00001140 }
1141 return ret;
1142}
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001143
Michael Karchera4448d92010-07-22 18:04:15 +00001144#define ICH_BMWAG(x) ((x >> 24) & 0xff)
1145#define ICH_BMRAG(x) ((x >> 16) & 0xff)
1146#define ICH_BRWA(x) ((x >> 8) & 0xff)
1147#define ICH_BRRA(x) ((x >> 0) & 0xff)
1148
Michael Karchera4448d92010-07-22 18:04:15 +00001149static void do_ich9_spi_frap(uint32_t frap, int i)
1150{
Mathias Krausea60faab2011-01-17 07:50:42 +00001151 static const char *const access_names[4] = {
Michael Karchera4448d92010-07-22 18:04:15 +00001152 "locked", "read-only", "write-only", "read-write"
1153 };
Mathias Krausea60faab2011-01-17 07:50:42 +00001154 static const char *const region_names[5] = {
Michael Karchera4448d92010-07-22 18:04:15 +00001155 "Flash Descriptor", "BIOS", "Management Engine",
1156 "Gigabit Ethernet", "Platform Data"
1157 };
1158 uint32_t base, limit;
1159 int rwperms = (((ICH_BRWA(frap) >> i) & 1) << 1) |
1160 (((ICH_BRRA(frap) >> i) & 1) << 0);
Stefan Tauner29c80832011-06-12 08:14:10 +00001161 int offset = ICH9_REG_FREG0 + i * 4;
Michael Karchera4448d92010-07-22 18:04:15 +00001162 uint32_t freg = mmio_readl(ich_spibar + offset);
1163
1164 msg_pdbg("0x%02X: 0x%08x (FREG%i: %s)\n",
1165 offset, freg, i, region_names[i]);
1166
1167 base = ICH_FREG_BASE(freg);
1168 limit = ICH_FREG_LIMIT(freg);
Joshua Roysd172ecd2011-05-26 13:30:51 +00001169 if (base > limit) {
Michael Karchera4448d92010-07-22 18:04:15 +00001170 /* this FREG is disabled */
1171 msg_pdbg("%s region is unused.\n", region_names[i]);
1172 return;
1173 }
1174
Stefan Tauner1e146392011-09-15 23:52:55 +00001175 msg_pdbg("0x%08x-0x%08x is %s\n", base, (limit | 0x0fff),
1176 access_names[rwperms]);
Michael Karchera4448d92010-07-22 18:04:15 +00001177}
1178
Michael Karcherb9dbe482011-05-11 17:07:07 +00001179static const struct spi_programmer spi_programmer_ich7 = {
1180 .type = SPI_CONTROLLER_ICH7,
1181 .max_data_read = 64,
1182 .max_data_write = 64,
1183 .command = ich_spi_send_command,
1184 .multicommand = ich_spi_send_multicommand,
1185 .read = default_spi_read,
1186 .write_256 = default_spi_write_256,
1187};
1188
1189static const struct spi_programmer spi_programmer_ich9 = {
1190 .type = SPI_CONTROLLER_ICH9,
1191 .max_data_read = 64,
1192 .max_data_write = 64,
1193 .command = ich_spi_send_command,
1194 .multicommand = ich_spi_send_multicommand,
1195 .read = default_spi_read,
1196 .write_256 = default_spi_write_256,
1197};
1198
Michael Karchera4448d92010-07-22 18:04:15 +00001199int ich_init_spi(struct pci_dev *dev, uint32_t base, void *rcrb,
1200 int ich_generation)
1201{
1202 int i;
1203 uint8_t old, new;
1204 uint16_t spibar_offset, tmp2;
1205 uint32_t tmp;
Stefan Tauner1e146392011-09-15 23:52:55 +00001206 int ichspi_desc = 0;
Michael Karchera4448d92010-07-22 18:04:15 +00001207
Michael Karchera4448d92010-07-22 18:04:15 +00001208 switch (ich_generation) {
1209 case 7:
Michael Karcherb9dbe482011-05-11 17:07:07 +00001210 register_spi_programmer(&spi_programmer_ich7);
Michael Karchera4448d92010-07-22 18:04:15 +00001211 spibar_offset = 0x3020;
1212 break;
1213 case 8:
Michael Karcherb9dbe482011-05-11 17:07:07 +00001214 register_spi_programmer(&spi_programmer_ich9);
Michael Karchera4448d92010-07-22 18:04:15 +00001215 spibar_offset = 0x3020;
1216 break;
1217 case 9:
1218 case 10:
1219 default: /* Future version might behave the same */
Michael Karcherb9dbe482011-05-11 17:07:07 +00001220 register_spi_programmer(&spi_programmer_ich9);
Michael Karchera4448d92010-07-22 18:04:15 +00001221 spibar_offset = 0x3800;
1222 break;
1223 }
1224
1225 /* SPIBAR is at RCRB+0x3020 for ICH[78] and RCRB+0x3800 for ICH9. */
1226 msg_pdbg("SPIBAR = 0x%x + 0x%04x\n", base, spibar_offset);
1227
1228 /* Assign Virtual Address */
1229 ich_spibar = rcrb + spibar_offset;
1230
Michael Karcherb9dbe482011-05-11 17:07:07 +00001231 switch (spi_programmer->type) {
Michael Karchera4448d92010-07-22 18:04:15 +00001232 case SPI_CONTROLLER_ICH7:
1233 msg_pdbg("0x00: 0x%04x (SPIS)\n",
1234 mmio_readw(ich_spibar + 0));
1235 msg_pdbg("0x02: 0x%04x (SPIC)\n",
1236 mmio_readw(ich_spibar + 2));
1237 msg_pdbg("0x04: 0x%08x (SPIA)\n",
1238 mmio_readl(ich_spibar + 4));
1239 for (i = 0; i < 8; i++) {
1240 int offs;
1241 offs = 8 + (i * 8);
1242 msg_pdbg("0x%02x: 0x%08x (SPID%d)\n", offs,
1243 mmio_readl(ich_spibar + offs), i);
1244 msg_pdbg("0x%02x: 0x%08x (SPID%d+4)\n", offs + 4,
1245 mmio_readl(ich_spibar + offs + 4), i);
1246 }
1247 ichspi_bbar = mmio_readl(ich_spibar + 0x50);
1248 msg_pdbg("0x50: 0x%08x (BBAR)\n",
1249 ichspi_bbar);
1250 msg_pdbg("0x54: 0x%04x (PREOP)\n",
1251 mmio_readw(ich_spibar + 0x54));
1252 msg_pdbg("0x56: 0x%04x (OPTYPE)\n",
1253 mmio_readw(ich_spibar + 0x56));
1254 msg_pdbg("0x58: 0x%08x (OPMENU)\n",
1255 mmio_readl(ich_spibar + 0x58));
1256 msg_pdbg("0x5c: 0x%08x (OPMENU+4)\n",
1257 mmio_readl(ich_spibar + 0x5c));
Stefan Tauner122dd122011-07-24 15:34:56 +00001258 for (i = 0; i < 3; i++) {
Michael Karchera4448d92010-07-22 18:04:15 +00001259 int offs;
1260 offs = 0x60 + (i * 4);
1261 msg_pdbg("0x%02x: 0x%08x (PBR%d)\n", offs,
1262 mmio_readl(ich_spibar + offs), i);
1263 }
Michael Karchera4448d92010-07-22 18:04:15 +00001264 if (mmio_readw(ich_spibar) & (1 << 15)) {
1265 msg_pinfo("WARNING: SPI Configuration Lockdown activated.\n");
1266 ichspi_lock = 1;
1267 }
Stefan Tauner7783f312011-09-17 21:21:42 +00001268 ich_set_bbar(ich_generation, 0);
Michael Karchera4448d92010-07-22 18:04:15 +00001269 ich_init_opcodes();
1270 break;
1271 case SPI_CONTROLLER_ICH9:
Stefan Tauner29c80832011-06-12 08:14:10 +00001272 tmp2 = mmio_readw(ich_spibar + ICH9_REG_HSFS);
Michael Karchera4448d92010-07-22 18:04:15 +00001273 msg_pdbg("0x04: 0x%04x (HSFS)\n", tmp2);
Stefan Tauner55206942011-06-11 09:53:22 +00001274 prettyprint_ich9_reg_hsfs(tmp2);
Stefan Tauner29c80832011-06-12 08:14:10 +00001275 if (tmp2 & HSFS_FLOCKDN) {
Stefan Tauner55206942011-06-11 09:53:22 +00001276 msg_pinfo("WARNING: SPI Configuration Lockdown activated.\n");
1277 ichspi_lock = 1;
1278 }
Stefan Tauner1e146392011-09-15 23:52:55 +00001279 if (tmp2 & HSFS_FDV)
1280 ichspi_desc = 1;
Stefan Tauner55206942011-06-11 09:53:22 +00001281
Stefan Tauner29c80832011-06-12 08:14:10 +00001282 tmp2 = mmio_readw(ich_spibar + ICH9_REG_HSFC);
Stefan Tauner55206942011-06-11 09:53:22 +00001283 msg_pdbg("0x06: 0x%04x (HSFC)\n", tmp2);
1284 prettyprint_ich9_reg_hsfc(tmp2);
Michael Karchera4448d92010-07-22 18:04:15 +00001285
Stefan Tauner5ffe65b2011-07-07 04:10:57 +00001286 tmp = mmio_readl(ich_spibar + ICH9_REG_FADDR);
1287 msg_pdbg("0x08: 0x%08x (FADDR)\n", tmp);
Stefan Tauner29c80832011-06-12 08:14:10 +00001288 tmp = mmio_readl(ich_spibar + ICH9_REG_FRAP);
Michael Karchera4448d92010-07-22 18:04:15 +00001289 msg_pdbg("0x50: 0x%08x (FRAP)\n", tmp);
1290 msg_pdbg("BMWAG 0x%02x, ", ICH_BMWAG(tmp));
1291 msg_pdbg("BMRAG 0x%02x, ", ICH_BMRAG(tmp));
1292 msg_pdbg("BRWA 0x%02x, ", ICH_BRWA(tmp));
1293 msg_pdbg("BRRA 0x%02x\n", ICH_BRRA(tmp));
1294
1295 /* print out the FREGx registers along with FRAP access bits */
1296 for(i = 0; i < 5; i++)
1297 do_ich9_spi_frap(tmp, i);
1298
1299 msg_pdbg("0x74: 0x%08x (PR0)\n",
Stefan Tauner29c80832011-06-12 08:14:10 +00001300 mmio_readl(ich_spibar + ICH9_REG_PR0));
Michael Karchera4448d92010-07-22 18:04:15 +00001301 msg_pdbg("0x78: 0x%08x (PR1)\n",
Stefan Tauner29c80832011-06-12 08:14:10 +00001302 mmio_readl(ich_spibar + ICH9_REG_PR1));
Michael Karchera4448d92010-07-22 18:04:15 +00001303 msg_pdbg("0x7C: 0x%08x (PR2)\n",
Stefan Tauner29c80832011-06-12 08:14:10 +00001304 mmio_readl(ich_spibar + ICH9_REG_PR2));
Michael Karchera4448d92010-07-22 18:04:15 +00001305 msg_pdbg("0x80: 0x%08x (PR3)\n",
Stefan Tauner29c80832011-06-12 08:14:10 +00001306 mmio_readl(ich_spibar + ICH9_REG_PR3));
Michael Karchera4448d92010-07-22 18:04:15 +00001307 msg_pdbg("0x84: 0x%08x (PR4)\n",
Stefan Tauner29c80832011-06-12 08:14:10 +00001308 mmio_readl(ich_spibar + ICH9_REG_PR4));
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +00001309
Stefan Tauner29c80832011-06-12 08:14:10 +00001310 tmp = mmio_readl(ich_spibar + ICH9_REG_SSFS);
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +00001311 msg_pdbg("0x90: 0x%02x (SSFS)\n", tmp & 0xff);
Stefan Tauner2a8b2622011-06-11 09:53:16 +00001312 prettyprint_ich9_reg_ssfs(tmp);
Stefan Tauner29c80832011-06-12 08:14:10 +00001313 if (tmp & SSFS_FCERR) {
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +00001314 msg_pdbg("Clearing SSFS.FCERR\n");
Stefan Tauner29c80832011-06-12 08:14:10 +00001315 mmio_writeb(SSFS_FCERR, ich_spibar + ICH9_REG_SSFS);
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +00001316 }
Stefan Tauner2a8b2622011-06-11 09:53:16 +00001317 msg_pdbg("0x91: 0x%06x (SSFC)\n", tmp >> 8);
1318 prettyprint_ich9_reg_ssfc(tmp);
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +00001319
Michael Karchera4448d92010-07-22 18:04:15 +00001320 msg_pdbg("0x94: 0x%04x (PREOP)\n",
Stefan Tauner29c80832011-06-12 08:14:10 +00001321 mmio_readw(ich_spibar + ICH9_REG_PREOP));
Michael Karchera4448d92010-07-22 18:04:15 +00001322 msg_pdbg("0x96: 0x%04x (OPTYPE)\n",
Stefan Tauner29c80832011-06-12 08:14:10 +00001323 mmio_readw(ich_spibar + ICH9_REG_OPTYPE));
Michael Karchera4448d92010-07-22 18:04:15 +00001324 msg_pdbg("0x98: 0x%08x (OPMENU)\n",
Stefan Tauner29c80832011-06-12 08:14:10 +00001325 mmio_readl(ich_spibar + ICH9_REG_OPMENU));
Michael Karchera4448d92010-07-22 18:04:15 +00001326 msg_pdbg("0x9C: 0x%08x (OPMENU+4)\n",
Stefan Tauner29c80832011-06-12 08:14:10 +00001327 mmio_readl(ich_spibar + ICH9_REG_OPMENU + 4));
Stefan Tauner1e146392011-09-15 23:52:55 +00001328 if (ich_generation == 8) {
1329 tmp = mmio_readl(ich_spibar + ICH8_REG_VSCC);
1330 msg_pdbg("0xC1: 0x%08x (VSCC)\n", tmp);
1331 msg_pdbg("VSCC: ");
1332 prettyprint_ich_reg_vscc(tmp, MSG_DEBUG);
1333 } else {
1334 ichspi_bbar = mmio_readl(ich_spibar + ICH9_REG_BBAR);
1335 msg_pdbg("0xA0: 0x%08x (BBAR)\n",
1336 ichspi_bbar);
Stefan Taunerbd649e42011-07-01 00:39:16 +00001337
Stefan Tauner1e146392011-09-15 23:52:55 +00001338 tmp = mmio_readl(ich_spibar + ICH9_REG_LVSCC);
1339 msg_pdbg("0xC4: 0x%08x (LVSCC)\n", tmp);
1340 msg_pdbg("LVSCC: ");
1341 prettyprint_ich_reg_vscc(tmp, MSG_DEBUG);
1342
1343 tmp = mmio_readl(ich_spibar + ICH9_REG_UVSCC);
1344 msg_pdbg("0xC8: 0x%08x (UVSCC)\n", tmp);
1345 msg_pdbg("UVSCC: ");
1346 prettyprint_ich_reg_vscc(tmp, MSG_DEBUG);
1347
1348 tmp = mmio_readl(ich_spibar + ICH9_REG_FPB);
1349 msg_pdbg("0xD0: 0x%08x (FPB)\n", tmp);
Stefan Tauner7783f312011-09-17 21:21:42 +00001350 ich_set_bbar(ich_generation, 0);
Stefan Tauner1e146392011-09-15 23:52:55 +00001351 }
1352
1353 msg_pdbg("\n");
1354 if (ichspi_desc) {
1355 struct ich_descriptors desc = {{ 0 }};
1356 if (read_ich_descriptors_via_fdo(ich_spibar, &desc) ==
1357 ICH_RET_OK)
1358 prettyprint_ich_descriptors(CHIPSET_ICH_UNKNOWN,
1359 &desc);
1360 }
Michael Karchera4448d92010-07-22 18:04:15 +00001361 ich_init_opcodes();
1362 break;
1363 default:
1364 /* Nothing */
1365 break;
1366 }
1367
1368 old = pci_read_byte(dev, 0xdc);
1369 msg_pdbg("SPI Read Configuration: ");
1370 new = (old >> 2) & 0x3;
1371 switch (new) {
1372 case 0:
1373 case 1:
1374 case 2:
1375 msg_pdbg("prefetching %sabled, caching %sabled, ",
1376 (new & 0x2) ? "en" : "dis",
1377 (new & 0x1) ? "dis" : "en");
1378 break;
1379 default:
1380 msg_pdbg("invalid prefetching/caching settings, ");
1381 break;
1382 }
1383 return 0;
1384}
1385
Michael Karcherb9dbe482011-05-11 17:07:07 +00001386static const struct spi_programmer spi_programmer_via = {
1387 .type = SPI_CONTROLLER_VIA,
1388 .max_data_read = 16,
1389 .max_data_write = 16,
1390 .command = ich_spi_send_command,
1391 .multicommand = ich_spi_send_multicommand,
1392 .read = default_spi_read,
1393 .write_256 = default_spi_write_256,
1394};
1395
Michael Karchera4448d92010-07-22 18:04:15 +00001396int via_init_spi(struct pci_dev *dev)
1397{
1398 uint32_t mmio_base;
Carl-Daniel Hailfinger841d6312010-11-24 23:37:22 +00001399 int i;
Michael Karchera4448d92010-07-22 18:04:15 +00001400
1401 mmio_base = (pci_read_long(dev, 0xbc)) << 8;
1402 msg_pdbg("MMIO base at = 0x%x\n", mmio_base);
1403 ich_spibar = physmap("VT8237S MMIO registers", mmio_base, 0x70);
1404
Michael Karchera4448d92010-07-22 18:04:15 +00001405 /* Not sure if it speaks all these bus protocols. */
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001406 buses_supported = BUS_LPC | BUS_FWH;
Michael Karcherb9dbe482011-05-11 17:07:07 +00001407 register_spi_programmer(&spi_programmer_via);
Carl-Daniel Hailfinger841d6312010-11-24 23:37:22 +00001408
1409 msg_pdbg("0x00: 0x%04x (SPIS)\n", mmio_readw(ich_spibar + 0));
1410 msg_pdbg("0x02: 0x%04x (SPIC)\n", mmio_readw(ich_spibar + 2));
1411 msg_pdbg("0x04: 0x%08x (SPIA)\n", mmio_readl(ich_spibar + 4));
1412 for (i = 0; i < 2; i++) {
1413 int offs;
1414 offs = 8 + (i * 8);
1415 msg_pdbg("0x%02x: 0x%08x (SPID%d)\n", offs,
1416 mmio_readl(ich_spibar + offs), i);
1417 msg_pdbg("0x%02x: 0x%08x (SPID%d+4)\n", offs + 4,
1418 mmio_readl(ich_spibar + offs + 4), i);
1419 }
1420 ichspi_bbar = mmio_readl(ich_spibar + 0x50);
1421 msg_pdbg("0x50: 0x%08x (BBAR)\n", ichspi_bbar);
1422 msg_pdbg("0x54: 0x%04x (PREOP)\n", mmio_readw(ich_spibar + 0x54));
1423 msg_pdbg("0x56: 0x%04x (OPTYPE)\n", mmio_readw(ich_spibar + 0x56));
1424 msg_pdbg("0x58: 0x%08x (OPMENU)\n", mmio_readl(ich_spibar + 0x58));
1425 msg_pdbg("0x5c: 0x%08x (OPMENU+4)\n", mmio_readl(ich_spibar + 0x5c));
1426 for (i = 0; i < 3; i++) {
1427 int offs;
1428 offs = 0x60 + (i * 4);
1429 msg_pdbg("0x%02x: 0x%08x (PBR%d)\n", offs,
1430 mmio_readl(ich_spibar + offs), i);
1431 }
1432 msg_pdbg("0x6c: 0x%04x (CLOCK/DEBUG)\n",
1433 mmio_readw(ich_spibar + 0x6c));
1434 if (mmio_readw(ich_spibar) & (1 << 15)) {
1435 msg_pinfo("WARNING: SPI Configuration Lockdown activated.\n");
1436 ichspi_lock = 1;
1437 }
1438
Stefan Tauner7783f312011-09-17 21:21:42 +00001439 ich_set_bbar(7, 0);
Michael Karchera4448d92010-07-22 18:04:15 +00001440 ich_init_opcodes();
1441
1442 return 0;
1443}
1444
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001445#endif