blob: b7d312c055cc1611c92b8d3d40149110dcf3c2ac [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>
Stefan Taunerd0c5dc22011-10-20 12:57:14 +000029#include <stdlib.h>
Dominik Geyerb46acba2008-05-16 12:55:55 +000030#include "flash.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000031#include "programmer.h"
Dominik Geyerb46acba2008-05-16 12:55:55 +000032#include "spi.h"
Stefan Tauner1e146392011-09-15 23:52:55 +000033#include "ich_descriptors.h"
Dominik Geyerb46acba2008-05-16 12:55:55 +000034
Stefan Reinauera9424d52008-06-27 16:28:34 +000035/* ICH9 controller register definition */
Stefan Tauner55206942011-06-11 09:53:22 +000036#define ICH9_REG_HSFS 0x04 /* 16 Bits Hardware Sequencing Flash Status */
37#define HSFS_FDONE_OFF 0 /* 0: Flash Cycle Done */
38#define HSFS_FDONE (0x1 << HSFS_FDONE_OFF)
39#define HSFS_FCERR_OFF 1 /* 1: Flash Cycle Error */
40#define HSFS_FCERR (0x1 << HSFS_FCERR_OFF)
41#define HSFS_AEL_OFF 2 /* 2: Access Error Log */
42#define HSFS_AEL (0x1 << HSFS_AEL_OFF)
43#define HSFS_BERASE_OFF 3 /* 3-4: Block/Sector Erase Size */
44#define HSFS_BERASE (0x3 << HSFS_BERASE_OFF)
45#define HSFS_SCIP_OFF 5 /* 5: SPI Cycle In Progress */
46#define HSFS_SCIP (0x1 << HSFS_SCIP_OFF)
47 /* 6-12: reserved */
48#define HSFS_FDOPSS_OFF 13 /* 13: Flash Descriptor Override Pin-Strap Status */
49#define HSFS_FDOPSS (0x1 << HSFS_FDOPSS_OFF)
50#define HSFS_FDV_OFF 14 /* 14: Flash Descriptor Valid */
51#define HSFS_FDV (0x1 << HSFS_FDV_OFF)
52#define HSFS_FLOCKDN_OFF 15 /* 15: Flash Configuration Lock-Down */
53#define HSFS_FLOCKDN (0x1 << HSFS_FLOCKDN_OFF)
54
55#define ICH9_REG_HSFC 0x06 /* 16 Bits Hardware Sequencing Flash Control */
56#define HSFC_FGO_OFF 0 /* 0: Flash Cycle Go */
57#define HSFC_FGO (0x1 << HSFC_FGO_OFF)
58#define HSFC_FCYCLE_OFF 1 /* 1-2: FLASH Cycle */
59#define HSFC_FCYCLE (0x3 << HSFC_FCYCLE_OFF)
60 /* 3-7: reserved */
61#define HSFC_FDBC_OFF 8 /* 8-13: Flash Data Byte Count */
62#define HSFC_FDBC (0x3f << HSFC_FDBC_OFF)
63 /* 14: reserved */
64#define HSFC_SME_OFF 15 /* 15: SPI SMI# Enable */
65#define HSFC_SME (0x1 << HSFC_SME_OFF)
66
Stefan Taunerc0aaf952011-05-19 02:58:17 +000067#define ICH9_REG_FADDR 0x08 /* 32 Bits */
68#define ICH9_REG_FDATA0 0x10 /* 64 Bytes */
Stefan Reinauera9424d52008-06-27 16:28:34 +000069
Stefan Tauner29c80832011-06-12 08:14:10 +000070#define ICH9_REG_FRAP 0x50 /* 32 Bytes Flash Region Access Permissions */
71#define ICH9_REG_FREG0 0x54 /* 32 Bytes Flash Region 0 */
72
73#define ICH9_REG_PR0 0x74 /* 32 Bytes Protected Range 0 */
Stefan Taunerbf69aaa2011-09-17 21:21:48 +000074#define PR_WP_OFF 31 /* 31: write protection enable */
75#define PR_RP_OFF 15 /* 15: read protection enable */
Stefan Tauner29c80832011-06-12 08:14:10 +000076
Stefan Taunerc0aaf952011-05-19 02:58:17 +000077#define ICH9_REG_SSFS 0x90 /* 08 Bits */
Stefan Tauner0c1ec452011-06-11 09:53:09 +000078#define SSFS_SCIP_OFF 0 /* SPI Cycle In Progress */
79#define SSFS_SCIP (0x1 << SSFS_SCIP_OFF)
80#define SSFS_FDONE_OFF 2 /* Cycle Done Status */
81#define SSFS_FDONE (0x1 << SSFS_FDONE_OFF)
82#define SSFS_FCERR_OFF 3 /* Flash Cycle Error */
83#define SSFS_FCERR (0x1 << SSFS_FCERR_OFF)
84#define SSFS_AEL_OFF 4 /* Access Error Log */
85#define SSFS_AEL (0x1 << SSFS_AEL_OFF)
Stefan Taunerc0aaf952011-05-19 02:58:17 +000086/* The following bits are reserved in SSFS: 1,5-7. */
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +000087#define SSFS_RESERVED_MASK 0x000000e2
Stefan Reinauera9424d52008-06-27 16:28:34 +000088
Stefan Taunerc0aaf952011-05-19 02:58:17 +000089#define ICH9_REG_SSFC 0x91 /* 24 Bits */
Stefan Taunerc0aaf952011-05-19 02:58:17 +000090/* We combine SSFS and SSFC to one 32-bit word,
Stefan Tauner0c1ec452011-06-11 09:53:09 +000091 * therefore SSFC bits are off by 8. */
92 /* 0: reserved */
93#define SSFC_SCGO_OFF (1 + 8) /* 1: SPI Cycle Go */
94#define SSFC_SCGO (0x1 << SSFC_SCGO_OFF)
95#define SSFC_ACS_OFF (2 + 8) /* 2: Atomic Cycle Sequence */
96#define SSFC_ACS (0x1 << SSFC_ACS_OFF)
97#define SSFC_SPOP_OFF (3 + 8) /* 3: Sequence Prefix Opcode Pointer */
98#define SSFC_SPOP (0x1 << SSFC_SPOP_OFF)
99#define SSFC_COP_OFF (4 + 8) /* 4-6: Cycle Opcode Pointer */
100#define SSFC_COP (0x7 << SSFC_COP_OFF)
101 /* 7: reserved */
102#define SSFC_DBC_OFF (8 + 8) /* 8-13: Data Byte Count */
103#define SSFC_DBC (0x3f << SSFC_DBC_OFF)
104#define SSFC_DS_OFF (14 + 8) /* 14: Data Cycle */
105#define SSFC_DS (0x1 << SSFC_DS_OFF)
106#define SSFC_SME_OFF (15 + 8) /* 15: SPI SMI# Enable */
107#define SSFC_SME (0x1 << SSFC_SME_OFF)
108#define SSFC_SCF_OFF (16 + 8) /* 16-18: SPI Cycle Frequency */
109#define SSFC_SCF (0x7 << SSFC_SCF_OFF)
110#define SSFC_SCF_20MHZ 0x00000000
111#define SSFC_SCF_33MHZ 0x01000000
112 /* 19-23: reserved */
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000113#define SSFC_RESERVED_MASK 0xf8008100
Stefan Reinauera9424d52008-06-27 16:28:34 +0000114
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000115#define ICH9_REG_PREOP 0x94 /* 16 Bits */
116#define ICH9_REG_OPTYPE 0x96 /* 16 Bits */
117#define ICH9_REG_OPMENU 0x98 /* 64 Bits */
Dominik Geyerb46acba2008-05-16 12:55:55 +0000118
Stefan Tauner29c80832011-06-12 08:14:10 +0000119#define ICH9_REG_BBAR 0xA0 /* 32 Bits BIOS Base Address Configuration */
120#define BBAR_MASK 0x00ffff00 /* 8-23: Bottom of System Flash */
121
Stefan Tauner1e146392011-09-15 23:52:55 +0000122#define ICH8_REG_VSCC 0xC1 /* 32 Bits Vendor Specific Component Capabilities */
123#define ICH9_REG_LVSCC 0xC4 /* 32 Bits Host Lower Vendor Specific Component Capabilities */
124#define ICH9_REG_UVSCC 0xC8 /* 32 Bits Host Upper Vendor Specific Component Capabilities */
125/* The individual fields of the VSCC registers are defined in the file
126 * ich_descriptors.h. The reason is that the same layout is also used in the
127 * flash descriptor to define the properties of the different flash chips
128 * supported. The BIOS (or the ME?) is responsible to populate the ICH registers
129 * with the information from the descriptor on startup depending on the actual
130 * chip(s) detected. */
131
Stefan Taunerbd649e42011-07-01 00:39:16 +0000132#define ICH9_REG_FPB 0xD0 /* 32 Bits Flash Partition Boundary */
133#define FPB_FPBA_OFF 0 /* 0-12: Block/Sector Erase Size */
134#define FPB_FPBA (0x1FFF << FPB_FPBA_OFF)
135
Dominik Geyerb46acba2008-05-16 12:55:55 +0000136// ICH9R SPI commands
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000137#define SPI_OPCODE_TYPE_READ_NO_ADDRESS 0
138#define SPI_OPCODE_TYPE_WRITE_NO_ADDRESS 1
139#define SPI_OPCODE_TYPE_READ_WITH_ADDRESS 2
140#define SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS 3
Dominik Geyerb46acba2008-05-16 12:55:55 +0000141
Stefan Reinauera9424d52008-06-27 16:28:34 +0000142// ICH7 registers
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000143#define ICH7_REG_SPIS 0x00 /* 16 Bits */
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000144#define SPIS_SCIP 0x0001
145#define SPIS_GRANT 0x0002
146#define SPIS_CDS 0x0004
147#define SPIS_FCERR 0x0008
148#define SPIS_RESERVED_MASK 0x7ff0
Stefan Reinauera9424d52008-06-27 16:28:34 +0000149
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000150/* VIA SPI is compatible with ICH7, but maxdata
151 to transfer is 16 bytes.
152
153 DATA byte count on ICH7 is 8:13, on VIA 8:11
154
155 bit 12 is port select CS0 CS1
156 bit 13 is FAST READ enable
157 bit 7 is used with fast read and one shot controls CS de-assert?
158*/
159
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000160#define ICH7_REG_SPIC 0x02 /* 16 Bits */
161#define SPIC_SCGO 0x0002
162#define SPIC_ACS 0x0004
163#define SPIC_SPOP 0x0008
164#define SPIC_DS 0x4000
Stefan Reinauera9424d52008-06-27 16:28:34 +0000165
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000166#define ICH7_REG_SPIA 0x04 /* 32 Bits */
167#define ICH7_REG_SPID0 0x08 /* 64 Bytes */
168#define ICH7_REG_PREOP 0x54 /* 16 Bits */
169#define ICH7_REG_OPTYPE 0x56 /* 16 Bits */
170#define ICH7_REG_OPMENU 0x58 /* 64 Bits */
Stefan Reinauera9424d52008-06-27 16:28:34 +0000171
FENG yu ningc05a2952008-12-08 18:16:58 +0000172/* ICH SPI configuration lock-down. May be set during chipset enabling. */
Michael Karchera4448d92010-07-22 18:04:15 +0000173static int ichspi_lock = 0;
FENG yu ningc05a2952008-12-08 18:16:58 +0000174
Stefan Taunera8d838d2011-11-06 23:51:09 +0000175static enum ich_chipset ich_generation = CHIPSET_ICH_UNKNOWN;
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);
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000231static int run_opcode(const struct flashctx *flash, 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;
Stefan Taunerdc704ed2012-05-06 15:11:26 +0000408 else // we have an invalid case
409 return SPI_INVALID_LENGTH;
Helge Wagner738e2522010-10-05 22:06:05 +0000410 }
Stefan Taunerdc704ed2012-05-06 15:11:26 +0000411 int oppos = 2; // use original JEDEC_BE_D8 offset
412 curopcodes->opcode[oppos].opcode = opcode;
413 curopcodes->opcode[oppos].spi_type = spi_type;
414 program_opcodes(curopcodes, 0);
415 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;
Helge Wagner738e2522010-10-05 22:06:05 +0000418}
419
Uwe Hermann09e04f72009-05-16 22:36:00 +0000420static int find_opcode(OPCODES *op, uint8_t opcode)
FENG yu ningc05a2952008-12-08 18:16:58 +0000421{
422 int a;
423
Stefan Tauner50e7c602011-11-08 10:55:54 +0000424 if (op == NULL) {
425 msg_perr("\n%s: null OPCODES pointer!\n", __func__);
426 return -1;
427 }
428
FENG yu ningc05a2952008-12-08 18:16:58 +0000429 for (a = 0; a < 8; a++) {
430 if (op->opcode[a].opcode == opcode)
431 return a;
432 }
433
434 return -1;
435}
436
Uwe Hermann09e04f72009-05-16 22:36:00 +0000437static int find_preop(OPCODES *op, uint8_t preop)
FENG yu ningc05a2952008-12-08 18:16:58 +0000438{
439 int a;
440
Stefan Tauner50e7c602011-11-08 10:55:54 +0000441 if (op == NULL) {
442 msg_perr("\n%s: null OPCODES pointer!\n", __func__);
443 return -1;
444 }
445
FENG yu ningc05a2952008-12-08 18:16:58 +0000446 for (a = 0; a < 2; a++) {
447 if (op->preop[a] == preop)
448 return a;
449 }
450
451 return -1;
452}
453
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000454/* Create a struct OPCODES based on what we find in the locked down chipset. */
FENG yu ningf041e9b2008-12-15 02:32:11 +0000455static int generate_opcodes(OPCODES * op)
FENG yu ningc05a2952008-12-08 18:16:58 +0000456{
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000457 int a;
FENG yu ningc05a2952008-12-08 18:16:58 +0000458 uint16_t preop, optype;
459 uint32_t opmenu[2];
FENG yu ningc05a2952008-12-08 18:16:58 +0000460
461 if (op == NULL) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000462 msg_perr("\n%s: null OPCODES pointer!\n", __func__);
FENG yu ningc05a2952008-12-08 18:16:58 +0000463 return -1;
464 }
465
Stefan Taunera8d838d2011-11-06 23:51:09 +0000466 switch (ich_generation) {
467 case CHIPSET_ICH7:
FENG yu ningc05a2952008-12-08 18:16:58 +0000468 preop = REGREAD16(ICH7_REG_PREOP);
469 optype = REGREAD16(ICH7_REG_OPTYPE);
470 opmenu[0] = REGREAD32(ICH7_REG_OPMENU);
471 opmenu[1] = REGREAD32(ICH7_REG_OPMENU + 4);
472 break;
Stefan Taunera8d838d2011-11-06 23:51:09 +0000473 case CHIPSET_ICH8:
474 default: /* Future version might behave the same */
FENG yu ningc05a2952008-12-08 18:16:58 +0000475 preop = REGREAD16(ICH9_REG_PREOP);
476 optype = REGREAD16(ICH9_REG_OPTYPE);
477 opmenu[0] = REGREAD32(ICH9_REG_OPMENU);
478 opmenu[1] = REGREAD32(ICH9_REG_OPMENU + 4);
479 break;
FENG yu ningc05a2952008-12-08 18:16:58 +0000480 }
481
482 op->preop[0] = (uint8_t) preop;
483 op->preop[1] = (uint8_t) (preop >> 8);
484
485 for (a = 0; a < 8; a++) {
486 op->opcode[a].spi_type = (uint8_t) (optype & 0x3);
487 optype >>= 2;
488 }
489
490 for (a = 0; a < 4; a++) {
491 op->opcode[a].opcode = (uint8_t) (opmenu[0] & 0xff);
492 opmenu[0] >>= 8;
493 }
494
495 for (a = 4; a < 8; a++) {
496 op->opcode[a].opcode = (uint8_t) (opmenu[1] & 0xff);
497 opmenu[1] >>= 8;
498 }
499
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000500 /* No preopcodes used by default. */
501 for (a = 0; a < 8; a++)
FENG yu ningc05a2952008-12-08 18:16:58 +0000502 op->opcode[a].atomic = 0;
503
FENG yu ningc05a2952008-12-08 18:16:58 +0000504 return 0;
505}
506
Carl-Daniel Hailfinger54ce73a2011-05-03 21:49:41 +0000507static int program_opcodes(OPCODES *op, int enable_undo)
Dominik Geyerb46acba2008-05-16 12:55:55 +0000508{
509 uint8_t a;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000510 uint16_t preop, optype;
511 uint32_t opmenu[2];
Dominik Geyerb46acba2008-05-16 12:55:55 +0000512
513 /* Program Prefix Opcodes */
Dominik Geyerb46acba2008-05-16 12:55:55 +0000514 /* 0:7 Prefix Opcode 1 */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000515 preop = (op->preop[0]);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000516 /* 8:16 Prefix Opcode 2 */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000517 preop |= ((uint16_t) op->preop[1]) << 8;
Uwe Hermann394131e2008-10-18 21:14:13 +0000518
Stefan Reinauera9424d52008-06-27 16:28:34 +0000519 /* Program Opcode Types 0 - 7 */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000520 optype = 0;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000521 for (a = 0; a < 8; a++) {
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000522 optype |= ((uint16_t) op->opcode[a].spi_type) << (a * 2);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000523 }
Uwe Hermann394131e2008-10-18 21:14:13 +0000524
Stefan Reinauera9424d52008-06-27 16:28:34 +0000525 /* Program Allowable Opcodes 0 - 3 */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000526 opmenu[0] = 0;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000527 for (a = 0; a < 4; a++) {
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000528 opmenu[0] |= ((uint32_t) op->opcode[a].opcode) << (a * 8);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000529 }
Stefan Reinauera9424d52008-06-27 16:28:34 +0000530
Dominik Geyerb46acba2008-05-16 12:55:55 +0000531 /*Program Allowable Opcodes 4 - 7 */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000532 opmenu[1] = 0;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000533 for (a = 4; a < 8; a++) {
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000534 opmenu[1] |= ((uint32_t) op->opcode[a].opcode) << ((a - 4) * 8);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000535 }
Stefan Reinauera9424d52008-06-27 16:28:34 +0000536
Sean Nelson316a29f2010-05-07 20:09:04 +0000537 msg_pdbg("\n%s: preop=%04x optype=%04x opmenu=%08x%08x\n", __func__, preop, optype, opmenu[0], opmenu[1]);
Stefan Taunera8d838d2011-11-06 23:51:09 +0000538 switch (ich_generation) {
539 case CHIPSET_ICH7:
Carl-Daniel Hailfinger54ce73a2011-05-03 21:49:41 +0000540 /* Register undo only for enable_undo=1, i.e. first call. */
541 if (enable_undo) {
542 rmmio_valw(ich_spibar + ICH7_REG_PREOP);
543 rmmio_valw(ich_spibar + ICH7_REG_OPTYPE);
544 rmmio_vall(ich_spibar + ICH7_REG_OPMENU);
545 rmmio_vall(ich_spibar + ICH7_REG_OPMENU + 4);
546 }
547 mmio_writew(preop, ich_spibar + ICH7_REG_PREOP);
548 mmio_writew(optype, ich_spibar + ICH7_REG_OPTYPE);
549 mmio_writel(opmenu[0], ich_spibar + ICH7_REG_OPMENU);
550 mmio_writel(opmenu[1], ich_spibar + ICH7_REG_OPMENU + 4);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000551 break;
Stefan Taunera8d838d2011-11-06 23:51:09 +0000552 case CHIPSET_ICH8:
553 default: /* Future version might behave the same */
Carl-Daniel Hailfinger54ce73a2011-05-03 21:49:41 +0000554 /* Register undo only for enable_undo=1, i.e. first call. */
555 if (enable_undo) {
556 rmmio_valw(ich_spibar + ICH9_REG_PREOP);
557 rmmio_valw(ich_spibar + ICH9_REG_OPTYPE);
558 rmmio_vall(ich_spibar + ICH9_REG_OPMENU);
559 rmmio_vall(ich_spibar + ICH9_REG_OPMENU + 4);
560 }
561 mmio_writew(preop, ich_spibar + ICH9_REG_PREOP);
562 mmio_writew(optype, ich_spibar + ICH9_REG_OPTYPE);
563 mmio_writel(opmenu[0], ich_spibar + ICH9_REG_OPMENU);
564 mmio_writel(opmenu[1], ich_spibar + ICH9_REG_OPMENU + 4);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000565 break;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000566 }
Dominik Geyerb46acba2008-05-16 12:55:55 +0000567
568 return 0;
569}
570
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000571/*
Stefan Tauner50e7c602011-11-08 10:55:54 +0000572 * Returns -1 if at least one mandatory opcode is inaccessible, 0 otherwise.
573 * FIXME: this should also check for
574 * - at least one probing opcode (RDID (incl. AT25F variants?), REMS, RES?)
575 * - at least one erasing opcode (lots.)
576 * - at least one program opcode (BYTE_PROGRAM, AAI_WORD_PROGRAM, ...?)
577 * - necessary preops? (EWSR, WREN, ...?)
578 */
579static int ich_missing_opcodes()
580{
581 uint8_t ops[] = {
582 JEDEC_READ,
583 JEDEC_RDSR,
584 0
585 };
586 int i = 0;
587 while (ops[i] != 0) {
588 msg_pspew("checking for opcode 0x%02x\n", ops[i]);
589 if (find_opcode(curopcodes, ops[i]) == -1)
590 return -1;
591 i++;
592 }
593 return 0;
594}
595
596/*
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000597 * Try to set BBAR (BIOS Base Address Register), but read back the value in case
598 * it didn't stick.
599 */
Stefan Taunera8d838d2011-11-06 23:51:09 +0000600static void ich_set_bbar(uint32_t min_addr)
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000601{
Stefan Taunere27b2d42011-07-01 00:39:09 +0000602 int bbar_off;
Stefan Tauner7783f312011-09-17 21:21:42 +0000603 switch (ich_generation) {
Stefan Taunera8d838d2011-11-06 23:51:09 +0000604 case CHIPSET_ICH7:
Stefan Taunere27b2d42011-07-01 00:39:09 +0000605 bbar_off = 0x50;
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000606 break;
Stefan Taunera8d838d2011-11-06 23:51:09 +0000607 case CHIPSET_ICH8:
Stefan Tauner7783f312011-09-17 21:21:42 +0000608 msg_perr("BBAR offset is unknown on ICH8!\n");
609 return;
Stefan Taunera8d838d2011-11-06 23:51:09 +0000610 case CHIPSET_ICH9:
Stefan Tauner7783f312011-09-17 21:21:42 +0000611 default: /* Future version might behave the same */
Stefan Taunere27b2d42011-07-01 00:39:09 +0000612 bbar_off = ICH9_REG_BBAR;
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000613 break;
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000614 }
Stefan Taunere27b2d42011-07-01 00:39:09 +0000615
616 ichspi_bbar = mmio_readl(ich_spibar + bbar_off) & ~BBAR_MASK;
617 if (ichspi_bbar) {
618 msg_pdbg("Reserved bits in BBAR not zero: 0x%08x\n",
619 ichspi_bbar);
620 }
621 min_addr &= BBAR_MASK;
622 ichspi_bbar |= min_addr;
623 rmmio_writel(ichspi_bbar, ich_spibar + bbar_off);
624 ichspi_bbar = mmio_readl(ich_spibar + bbar_off) & BBAR_MASK;
625
626 /* We don't have any option except complaining. And if the write
627 * failed, the restore will fail as well, so no problem there.
628 */
629 if (ichspi_bbar != min_addr)
Stefan Tauner7783f312011-09-17 21:21:42 +0000630 msg_perr("Setting BBAR to 0x%08x failed! New value: 0x%08x.\n",
631 min_addr, ichspi_bbar);
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000632}
633
Stefan Tauner8b391b82011-08-09 01:49:34 +0000634/* Read len bytes from the fdata/spid register into the data array.
635 *
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000636 * Note that using len > flash->pgm->spi.max_data_read will return garbage or
Stefan Tauner8b391b82011-08-09 01:49:34 +0000637 * may even crash.
638 */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000639static void ich_read_data(uint8_t *data, int len, int reg0_off)
Stefan Tauner8b391b82011-08-09 01:49:34 +0000640 {
641 int i;
642 uint32_t temp32 = 0;
643
644 for (i = 0; i < len; i++) {
645 if ((i % 4) == 0)
646 temp32 = REGREAD32(reg0_off + i);
647
648 data[i] = (temp32 >> ((i % 4) * 8)) & 0xff;
649 }
650}
651
652/* Fill len bytes from the data array into the fdata/spid registers.
653 *
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000654 * Note that using len > flash->pgm->spi.max_data_write will trash the registers
Stefan Tauner8b391b82011-08-09 01:49:34 +0000655 * following the data registers.
656 */
657static void ich_fill_data(const uint8_t *data, int len, int reg0_off)
658{
659 uint32_t temp32 = 0;
660 int i;
661
662 if (len <= 0)
663 return;
664
665 for (i = 0; i < len; i++) {
666 if ((i % 4) == 0)
667 temp32 = 0;
668
669 temp32 |= ((uint32_t) data[i]) << ((i % 4) * 8);
670
671 if ((i % 4) == 3) /* 32 bits are full, write them to regs. */
672 REGWRITE32(reg0_off + (i - (i % 4)), temp32);
673 }
674 i--;
675 if ((i % 4) != 3) /* Write remaining data to regs. */
676 REGWRITE32(reg0_off + (i - (i % 4)), temp32);
677}
678
FENG yu ningf041e9b2008-12-15 02:32:11 +0000679/* This function generates OPCODES from or programs OPCODES to ICH according to
680 * the chipset's SPI configuration lock.
FENG yu ningc05a2952008-12-08 18:16:58 +0000681 *
FENG yu ningf041e9b2008-12-15 02:32:11 +0000682 * It should be called before ICH sends any spi command.
FENG yu ningc05a2952008-12-08 18:16:58 +0000683 */
Michael Karchera4448d92010-07-22 18:04:15 +0000684static int ich_init_opcodes(void)
FENG yu ningc05a2952008-12-08 18:16:58 +0000685{
686 int rc = 0;
687 OPCODES *curopcodes_done;
688
689 if (curopcodes)
690 return 0;
691
692 if (ichspi_lock) {
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000693 msg_pdbg("Reading OPCODES... ");
FENG yu ningc05a2952008-12-08 18:16:58 +0000694 curopcodes_done = &O_EXISTING;
FENG yu ningf041e9b2008-12-15 02:32:11 +0000695 rc = generate_opcodes(curopcodes_done);
FENG yu ningc05a2952008-12-08 18:16:58 +0000696 } else {
Sean Nelson316a29f2010-05-07 20:09:04 +0000697 msg_pdbg("Programming OPCODES... ");
FENG yu ningc05a2952008-12-08 18:16:58 +0000698 curopcodes_done = &O_ST_M25P;
Carl-Daniel Hailfinger54ce73a2011-05-03 21:49:41 +0000699 rc = program_opcodes(curopcodes_done, 1);
FENG yu ningc05a2952008-12-08 18:16:58 +0000700 }
701
702 if (rc) {
703 curopcodes = NULL;
Sean Nelson316a29f2010-05-07 20:09:04 +0000704 msg_perr("failed\n");
FENG yu ningc05a2952008-12-08 18:16:58 +0000705 return 1;
706 } else {
707 curopcodes = curopcodes_done;
Sean Nelson316a29f2010-05-07 20:09:04 +0000708 msg_pdbg("done\n");
Stefan Tauner8b391b82011-08-09 01:49:34 +0000709 prettyprint_opcodes(curopcodes);
FENG yu ningc05a2952008-12-08 18:16:58 +0000710 return 0;
711 }
712}
713
Stefan Reinauer43119562008-11-02 19:51:50 +0000714static int ich7_run_opcode(OPCODE op, uint32_t offset,
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000715 uint8_t datalength, uint8_t * data, int maxdata)
Dominik Geyerb46acba2008-05-16 12:55:55 +0000716{
717 int write_cmd = 0;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000718 int timeout;
Stefan Tauner8b391b82011-08-09 01:49:34 +0000719 uint32_t temp32;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000720 uint16_t temp16;
Stefan Reinauer43119562008-11-02 19:51:50 +0000721 uint64_t opmenu;
722 int opcode_index;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000723
724 /* Is it a write command? */
725 if ((op.spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS)
726 || (op.spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS)) {
727 write_cmd = 1;
728 }
729
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000730 timeout = 100 * 60; /* 60 ms are 9.6 million cycles at 16 MHz. */
731 while ((REGREAD16(ICH7_REG_SPIS) & SPIS_SCIP) && --timeout) {
732 programmer_delay(10);
733 }
734 if (!timeout) {
735 msg_perr("Error: SCIP never cleared!\n");
736 return 1;
737 }
738
Stefan Tauner10b3e222011-07-01 00:39:23 +0000739 /* Program offset in flash into SPIA while preserving reserved bits. */
740 temp32 = REGREAD32(ICH7_REG_SPIA) & ~0x00FFFFFF;
741 REGWRITE32(ICH7_REG_SPIA, (offset & 0x00FFFFFF) | temp32);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000742
Stefan Tauner10b3e222011-07-01 00:39:23 +0000743 /* Program data into SPID0 to N */
Stefan Tauner8b391b82011-08-09 01:49:34 +0000744 if (write_cmd && (datalength != 0))
745 ich_fill_data(data, datalength, ICH7_REG_SPID0);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000746
747 /* Assemble SPIS */
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000748 temp16 = REGREAD16(ICH7_REG_SPIS);
749 /* keep reserved bits */
750 temp16 &= SPIS_RESERVED_MASK;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000751 /* clear error status registers */
Stefan Tauner0c1ec452011-06-11 09:53:09 +0000752 temp16 |= (SPIS_CDS | SPIS_FCERR);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000753 REGWRITE16(ICH7_REG_SPIS, temp16);
754
755 /* Assemble SPIC */
756 temp16 = 0;
757
758 if (datalength != 0) {
759 temp16 |= SPIC_DS;
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000760 temp16 |= ((uint32_t) ((datalength - 1) & (maxdata - 1))) << 8;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000761 }
762
763 /* Select opcode */
Stefan Reinauer43119562008-11-02 19:51:50 +0000764 opmenu = REGREAD32(ICH7_REG_OPMENU);
765 opmenu |= ((uint64_t)REGREAD32(ICH7_REG_OPMENU + 4)) << 32;
766
Uwe Hermann7b2969b2009-04-15 10:52:49 +0000767 for (opcode_index = 0; opcode_index < 8; opcode_index++) {
768 if ((opmenu & 0xff) == op.opcode) {
Stefan Reinauer43119562008-11-02 19:51:50 +0000769 break;
770 }
771 opmenu >>= 8;
772 }
773 if (opcode_index == 8) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000774 msg_pdbg("Opcode %x not found.\n", op.opcode);
Stefan Reinauer43119562008-11-02 19:51:50 +0000775 return 1;
776 }
777 temp16 |= ((uint16_t) (opcode_index & 0x07)) << 4;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000778
Michael Karcher136125a2011-04-29 22:11:36 +0000779 timeout = 100 * 60; /* 60 ms are 9.6 million cycles at 16 MHz. */
780 /* Handle Atomic. Atomic commands include three steps:
781 - sending the preop (mainly EWSR or WREN)
782 - sending the main command
783 - waiting for the busy bit (WIP) to be cleared
784 This means the timeout must be sufficient for chip erase
785 of slow high-capacity chips.
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000786 */
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000787 switch (op.atomic) {
788 case 2:
789 /* Select second preop. */
790 temp16 |= SPIC_SPOP;
791 /* And fall through. */
792 case 1:
793 /* Atomic command (preop+op) */
Stefan Reinauera9424d52008-06-27 16:28:34 +0000794 temp16 |= SPIC_ACS;
Michael Karcher136125a2011-04-29 22:11:36 +0000795 timeout = 100 * 1000 * 60; /* 60 seconds */
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000796 break;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000797 }
798
799 /* Start */
800 temp16 |= SPIC_SCGO;
801
802 /* write it */
803 REGWRITE16(ICH7_REG_SPIC, temp16);
804
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000805 /* Wait for Cycle Done Status or Flash Cycle Error. */
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000806 while (((REGREAD16(ICH7_REG_SPIS) & (SPIS_CDS | SPIS_FCERR)) == 0) &&
807 --timeout) {
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000808 programmer_delay(10);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000809 }
810 if (!timeout) {
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000811 msg_perr("timeout, ICH7_REG_SPIS=0x%04x\n",
812 REGREAD16(ICH7_REG_SPIS));
813 return 1;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000814 }
815
Sean Nelson316a29f2010-05-07 20:09:04 +0000816 /* FIXME: make sure we do not needlessly cause transaction errors. */
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000817 temp16 = REGREAD16(ICH7_REG_SPIS);
818 if (temp16 & SPIS_FCERR) {
Stefan Tauner8ed29342011-04-29 23:53:09 +0000819 msg_perr("Transaction error!\n");
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000820 /* keep reserved bits */
821 temp16 &= SPIS_RESERVED_MASK;
822 REGWRITE16(ICH7_REG_SPIS, temp16 | SPIS_FCERR);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000823 return 1;
824 }
825
Stefan Tauner8b391b82011-08-09 01:49:34 +0000826 if ((!write_cmd) && (datalength != 0))
827 ich_read_data(data, datalength, ICH7_REG_SPID0);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000828
829 return 0;
830}
831
Stefan Reinauer43119562008-11-02 19:51:50 +0000832static int ich9_run_opcode(OPCODE op, uint32_t offset,
Stefan Reinauera9424d52008-06-27 16:28:34 +0000833 uint8_t datalength, uint8_t * data)
834{
835 int write_cmd = 0;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000836 int timeout;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000837 uint32_t temp32;
Stefan Reinauer43119562008-11-02 19:51:50 +0000838 uint64_t opmenu;
839 int opcode_index;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000840
841 /* Is it a write command? */
842 if ((op.spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS)
843 || (op.spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS)) {
844 write_cmd = 1;
845 }
846
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000847 timeout = 100 * 60; /* 60 ms are 9.6 million cycles at 16 MHz. */
848 while ((REGREAD8(ICH9_REG_SSFS) & SSFS_SCIP) && --timeout) {
849 programmer_delay(10);
850 }
851 if (!timeout) {
852 msg_perr("Error: SCIP never cleared!\n");
853 return 1;
854 }
855
Stefan Tauner10b3e222011-07-01 00:39:23 +0000856 /* Program offset in flash into FADDR while preserve the reserved bits
857 * and clearing the 25. address bit which is only useable in hwseq. */
858 temp32 = REGREAD32(ICH9_REG_FADDR) & ~0x01FFFFFF;
859 REGWRITE32(ICH9_REG_FADDR, (offset & 0x00FFFFFF) | temp32);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000860
861 /* Program data into FDATA0 to N */
Stefan Tauner8b391b82011-08-09 01:49:34 +0000862 if (write_cmd && (datalength != 0))
863 ich_fill_data(data, datalength, ICH9_REG_FDATA0);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000864
865 /* Assemble SSFS + SSFC */
Helge Wagnera319be12010-08-11 21:06:10 +0000866 temp32 = REGREAD32(ICH9_REG_SSFS);
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000867 /* Keep reserved bits only */
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000868 temp32 &= SSFS_RESERVED_MASK | SSFC_RESERVED_MASK;
Stefan Tauner0c1ec452011-06-11 09:53:09 +0000869 /* Clear cycle done and cycle error status registers */
870 temp32 |= (SSFS_FDONE | SSFS_FCERR);
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000871 REGWRITE32(ICH9_REG_SSFS, temp32);
872
Uwe Hermann4e3d0b32010-03-25 23:18:41 +0000873 /* Use 20 MHz */
Dominik Geyerb46acba2008-05-16 12:55:55 +0000874 temp32 |= SSFC_SCF_20MHZ;
875
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000876 /* Set data byte count (DBC) and data cycle bit (DS) */
Dominik Geyerb46acba2008-05-16 12:55:55 +0000877 if (datalength != 0) {
878 uint32_t datatemp;
879 temp32 |= SSFC_DS;
Stefan Tauner0c1ec452011-06-11 09:53:09 +0000880 datatemp = ((((uint32_t)datalength - 1) << SSFC_DBC_OFF) &
881 SSFC_DBC);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000882 temp32 |= datatemp;
883 }
884
885 /* Select opcode */
Stefan Reinauer43119562008-11-02 19:51:50 +0000886 opmenu = REGREAD32(ICH9_REG_OPMENU);
887 opmenu |= ((uint64_t)REGREAD32(ICH9_REG_OPMENU + 4)) << 32;
888
Uwe Hermann7b2969b2009-04-15 10:52:49 +0000889 for (opcode_index = 0; opcode_index < 8; opcode_index++) {
890 if ((opmenu & 0xff) == op.opcode) {
Stefan Reinauer43119562008-11-02 19:51:50 +0000891 break;
892 }
893 opmenu >>= 8;
894 }
895 if (opcode_index == 8) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000896 msg_pdbg("Opcode %x not found.\n", op.opcode);
Stefan Reinauer43119562008-11-02 19:51:50 +0000897 return 1;
898 }
899 temp32 |= ((uint32_t) (opcode_index & 0x07)) << (8 + 4);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000900
Michael Karcher136125a2011-04-29 22:11:36 +0000901 timeout = 100 * 60; /* 60 ms are 9.6 million cycles at 16 MHz. */
902 /* Handle Atomic. Atomic commands include three steps:
903 - sending the preop (mainly EWSR or WREN)
904 - sending the main command
905 - waiting for the busy bit (WIP) to be cleared
906 This means the timeout must be sufficient for chip erase
907 of slow high-capacity chips.
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000908 */
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000909 switch (op.atomic) {
910 case 2:
911 /* Select second preop. */
912 temp32 |= SSFC_SPOP;
913 /* And fall through. */
914 case 1:
915 /* Atomic command (preop+op) */
Dominik Geyerb46acba2008-05-16 12:55:55 +0000916 temp32 |= SSFC_ACS;
Michael Karcher136125a2011-04-29 22:11:36 +0000917 timeout = 100 * 1000 * 60; /* 60 seconds */
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000918 break;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000919 }
920
921 /* Start */
922 temp32 |= SSFC_SCGO;
923
924 /* write it */
Stefan Reinauera9424d52008-06-27 16:28:34 +0000925 REGWRITE32(ICH9_REG_SSFS, temp32);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000926
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000927 /* Wait for Cycle Done Status or Flash Cycle Error. */
Stefan Tauner0c1ec452011-06-11 09:53:09 +0000928 while (((REGREAD32(ICH9_REG_SSFS) & (SSFS_FDONE | SSFS_FCERR)) == 0) &&
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000929 --timeout) {
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000930 programmer_delay(10);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000931 }
932 if (!timeout) {
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000933 msg_perr("timeout, ICH9_REG_SSFS=0x%08x\n",
934 REGREAD32(ICH9_REG_SSFS));
935 return 1;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000936 }
937
Sean Nelson316a29f2010-05-07 20:09:04 +0000938 /* FIXME make sure we do not needlessly cause transaction errors. */
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000939 temp32 = REGREAD32(ICH9_REG_SSFS);
940 if (temp32 & SSFS_FCERR) {
Stefan Tauner8ed29342011-04-29 23:53:09 +0000941 msg_perr("Transaction error!\n");
Stefan Tauner2a8b2622011-06-11 09:53:16 +0000942 prettyprint_ich9_reg_ssfs(temp32);
943 prettyprint_ich9_reg_ssfc(temp32);
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000944 /* keep reserved bits */
945 temp32 &= SSFS_RESERVED_MASK | SSFC_RESERVED_MASK;
946 /* Clear the transaction error. */
947 REGWRITE32(ICH9_REG_SSFS, temp32 | SSFS_FCERR);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000948 return 1;
949 }
950
Stefan Tauner8b391b82011-08-09 01:49:34 +0000951 if ((!write_cmd) && (datalength != 0))
952 ich_read_data(data, datalength, ICH9_REG_FDATA0);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000953
954 return 0;
955}
956
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000957static int run_opcode(const struct flashctx *flash, OPCODE op, uint32_t offset,
Stefan Reinauera9424d52008-06-27 16:28:34 +0000958 uint8_t datalength, uint8_t * data)
959{
Stefan Taunerb2d5f6a2011-06-11 19:44:31 +0000960 /* max_data_read == max_data_write for all Intel/VIA SPI masters */
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000961 uint8_t maxlength = flash->pgm->spi.max_data_read;
Stefan Taunerb2d5f6a2011-06-11 19:44:31 +0000962
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +0000963 if (ich_generation == CHIPSET_ICH_UNKNOWN) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000964 msg_perr("%s: unsupported chipset\n", __func__);
Stefan Taunerb2d5f6a2011-06-11 19:44:31 +0000965 return -1;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000966 }
Stefan Reinauera9424d52008-06-27 16:28:34 +0000967
Stefan Taunerb2d5f6a2011-06-11 19:44:31 +0000968 if (datalength > maxlength) {
969 msg_perr("%s: Internal command size error for "
970 "opcode 0x%02x, got datalength=%i, want <=%i\n",
971 __func__, op.opcode, datalength, maxlength);
972 return SPI_INVALID_LENGTH;
973 }
974
Stefan Taunera8d838d2011-11-06 23:51:09 +0000975 switch (ich_generation) {
976 case CHIPSET_ICH7:
Stefan Taunerb2d5f6a2011-06-11 19:44:31 +0000977 return ich7_run_opcode(op, offset, datalength, data, maxlength);
Stefan Taunera8d838d2011-11-06 23:51:09 +0000978 case CHIPSET_ICH8:
979 default: /* Future version might behave the same */
Stefan Taunerb2d5f6a2011-06-11 19:44:31 +0000980 return ich9_run_opcode(op, offset, datalength, data);
Stefan Taunerb2d5f6a2011-06-11 19:44:31 +0000981 }
Stefan Reinauera9424d52008-06-27 16:28:34 +0000982}
983
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000984static int ich_spi_send_command(struct flashctx *flash, unsigned int writecnt,
985 unsigned int readcnt,
986 const unsigned char *writearr,
987 unsigned char *readarr)
Dominik Geyerb46acba2008-05-16 12:55:55 +0000988{
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +0000989 int result;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000990 int opcode_index = -1;
991 const unsigned char cmd = *writearr;
992 OPCODE *opcode;
993 uint32_t addr = 0;
994 uint8_t *data;
995 int count;
996
Dominik Geyerb46acba2008-05-16 12:55:55 +0000997 /* find cmd in opcodes-table */
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000998 opcode_index = find_opcode(curopcodes, cmd);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000999 if (opcode_index == -1) {
Helge Wagner738e2522010-10-05 22:06:05 +00001000 if (!ichspi_lock)
1001 opcode_index = reprogram_opcode_on_the_fly(cmd, writecnt, readcnt);
Stefan Taunerdc704ed2012-05-06 15:11:26 +00001002 if (opcode_index == SPI_INVALID_LENGTH) {
1003 msg_pdbg("OPCODE 0x%02x has unsupported length, will not execute.\n", cmd);
1004 return SPI_INVALID_LENGTH;
1005 } else if (opcode_index == -1) {
Stefan Tauner355cbfd2011-05-28 02:37:14 +00001006 msg_pdbg("Invalid OPCODE 0x%02x, will not execute.\n",
1007 cmd);
Helge Wagner738e2522010-10-05 22:06:05 +00001008 return SPI_INVALID_OPCODE;
1009 }
Dominik Geyerb46acba2008-05-16 12:55:55 +00001010 }
1011
1012 opcode = &(curopcodes->opcode[opcode_index]);
1013
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001014 /* The following valid writecnt/readcnt combinations exist:
1015 * writecnt = 4, readcnt >= 0
1016 * writecnt = 1, readcnt >= 0
1017 * writecnt >= 4, readcnt = 0
1018 * writecnt >= 1, readcnt = 0
1019 * writecnt >= 1 is guaranteed for all commands.
1020 */
1021 if ((opcode->spi_type == SPI_OPCODE_TYPE_READ_WITH_ADDRESS) &&
1022 (writecnt != 4)) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001023 msg_perr("%s: Internal command size error for opcode "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001024 "0x%02x, got writecnt=%i, want =4\n", __func__, cmd,
1025 writecnt);
1026 return SPI_INVALID_LENGTH;
1027 }
1028 if ((opcode->spi_type == SPI_OPCODE_TYPE_READ_NO_ADDRESS) &&
1029 (writecnt != 1)) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001030 msg_perr("%s: Internal command size error for opcode "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001031 "0x%02x, got writecnt=%i, want =1\n", __func__, cmd,
1032 writecnt);
1033 return SPI_INVALID_LENGTH;
1034 }
1035 if ((opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) &&
1036 (writecnt < 4)) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001037 msg_perr("%s: Internal command size error for opcode "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001038 "0x%02x, got writecnt=%i, want >=4\n", __func__, cmd,
1039 writecnt);
1040 return SPI_INVALID_LENGTH;
1041 }
1042 if (((opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) ||
1043 (opcode->spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS)) &&
1044 (readcnt)) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001045 msg_perr("%s: Internal command size error for opcode "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001046 "0x%02x, got readcnt=%i, want =0\n", __func__, cmd,
1047 readcnt);
1048 return SPI_INVALID_LENGTH;
1049 }
1050
Dominik Geyerb46acba2008-05-16 12:55:55 +00001051 /* if opcode-type requires an address */
1052 if (opcode->spi_type == SPI_OPCODE_TYPE_READ_WITH_ADDRESS ||
1053 opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) {
Stefan Reinauer325b5d42008-06-27 15:18:20 +00001054 addr = (writearr[1] << 16) |
1055 (writearr[2] << 8) | (writearr[3] << 0);
Stefan Taunera8d838d2011-11-06 23:51:09 +00001056 if (addr < ichspi_bbar) {
1057 msg_perr("%s: Address 0x%06x below allowed "
1058 "range 0x%06x-0xffffff\n", __func__,
1059 addr, ichspi_bbar);
1060 return SPI_INVALID_ADDRESS;
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +00001061 }
Dominik Geyerb46acba2008-05-16 12:55:55 +00001062 }
Stefan Reinauer325b5d42008-06-27 15:18:20 +00001063
Stefan Taunerb2d5f6a2011-06-11 19:44:31 +00001064 /* Translate read/write array/count.
1065 * The maximum data length is identical for the maximum read length and
1066 * for the maximum write length excluding opcode and address. Opcode and
1067 * address are stored in separate registers, not in the data registers
1068 * and are thus not counted towards data length. The only exception
1069 * applies if the opcode definition (un)intentionally classifies said
1070 * opcode incorrectly as non-address opcode or vice versa. */
Dominik Geyerb46acba2008-05-16 12:55:55 +00001071 if (opcode->spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS) {
Stefan Reinauer325b5d42008-06-27 15:18:20 +00001072 data = (uint8_t *) (writearr + 1);
1073 count = writecnt - 1;
1074 } else if (opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) {
1075 data = (uint8_t *) (writearr + 4);
1076 count = writecnt - 4;
1077 } else {
1078 data = (uint8_t *) readarr;
Dominik Geyerb46acba2008-05-16 12:55:55 +00001079 count = readcnt;
1080 }
Stefan Reinauer325b5d42008-06-27 15:18:20 +00001081
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +00001082 result = run_opcode(flash, *opcode, addr, count, data);
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +00001083 if (result) {
Stefan Tauner8ed29342011-04-29 23:53:09 +00001084 msg_pdbg("Running OPCODE 0x%02x failed ", opcode->opcode);
1085 if ((opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) ||
1086 (opcode->spi_type == SPI_OPCODE_TYPE_READ_WITH_ADDRESS)) {
1087 msg_pdbg("at address 0x%06x ", addr);
1088 }
1089 msg_pdbg("(payload length was %d).\n", count);
1090
1091 /* Print out the data array if it contains data to write.
1092 * Errors are detected before the received data is read back into
1093 * the array so it won't make sense to print it then. */
1094 if ((opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) ||
1095 (opcode->spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS)) {
1096 int i;
1097 msg_pspew("The data was:\n");
Stefan Taunerf382e352011-11-08 11:55:24 +00001098 for (i = 0; i < count; i++){
Stefan Tauner8ed29342011-04-29 23:53:09 +00001099 msg_pspew("%3d: 0x%02x\n", i, data[i]);
1100 }
1101 }
Dominik Geyerb46acba2008-05-16 12:55:55 +00001102 }
1103
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +00001104 return result;
Dominik Geyerb46acba2008-05-16 12:55:55 +00001105}
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +00001106
Stefan Tauner50e7c602011-11-08 10:55:54 +00001107static struct hwseq_data {
1108 uint32_t size_comp0;
1109 uint32_t size_comp1;
1110} hwseq_data;
1111
Stefan Taunerd0c5dc22011-10-20 12:57:14 +00001112/* Sets FLA in FADDR to (addr & 0x01FFFFFF) without touching other bits. */
1113static void ich_hwseq_set_addr(uint32_t addr)
1114{
1115 uint32_t addr_old = REGREAD32(ICH9_REG_FADDR) & ~0x01FFFFFF;
1116 REGWRITE32(ICH9_REG_FADDR, (addr & 0x01FFFFFF) | addr_old);
1117}
1118
1119/* Sets FADDR.FLA to 'addr' and returns the erase block size in bytes
1120 * of the block containing this address. May return nonsense if the address is
1121 * not valid. The erase block size for a specific address depends on the flash
1122 * partition layout as specified by FPB and the partition properties as defined
1123 * by UVSCC and LVSCC respectively. An alternative to implement this method
1124 * would be by querying FPB and the respective VSCC register directly.
1125 */
1126static uint32_t ich_hwseq_get_erase_block_size(unsigned int addr)
1127{
1128 uint8_t enc_berase;
1129 static const uint32_t const dec_berase[4] = {
1130 256,
1131 4 * 1024,
1132 8 * 1024,
1133 64 * 1024
1134 };
1135
1136 ich_hwseq_set_addr(addr);
1137 enc_berase = (REGREAD16(ICH9_REG_HSFS) & HSFS_BERASE) >>
1138 HSFS_BERASE_OFF;
1139 return dec_berase[enc_berase];
1140}
1141
1142/* Polls for Cycle Done Status, Flash Cycle Error or timeout in 8 us intervals.
1143 Resets all error flags in HSFS.
1144 Returns 0 if the cycle completes successfully without errors within
1145 timeout us, 1 on errors. */
1146static int ich_hwseq_wait_for_cycle_complete(unsigned int timeout,
1147 unsigned int len)
1148{
1149 uint16_t hsfs;
1150 uint32_t addr;
1151
1152 timeout /= 8; /* scale timeout duration to counter */
1153 while ((((hsfs = REGREAD16(ICH9_REG_HSFS)) &
1154 (HSFS_FDONE | HSFS_FCERR)) == 0) &&
1155 --timeout) {
1156 programmer_delay(8);
1157 }
1158 REGWRITE16(ICH9_REG_HSFS, REGREAD16(ICH9_REG_HSFS));
1159 if (!timeout) {
1160 addr = REGREAD32(ICH9_REG_FADDR) & 0x01FFFFFF;
1161 msg_perr("Timeout error between offset 0x%08x and "
Stefan Tauner50e7c602011-11-08 10:55:54 +00001162 "0x%08x (= 0x%08x + %d)!\n",
1163 addr, addr + len - 1, addr, len - 1);
Stefan Taunerd0c5dc22011-10-20 12:57:14 +00001164 prettyprint_ich9_reg_hsfs(hsfs);
1165 prettyprint_ich9_reg_hsfc(REGREAD16(ICH9_REG_HSFC));
1166 return 1;
1167 }
1168
1169 if (hsfs & HSFS_FCERR) {
1170 addr = REGREAD32(ICH9_REG_FADDR) & 0x01FFFFFF;
1171 msg_perr("Transaction error between offset 0x%08x and "
Stefan Tauner50e7c602011-11-08 10:55:54 +00001172 "0x%08x (= 0x%08x + %d)!\n",
Stefan Taunerd0c5dc22011-10-20 12:57:14 +00001173 addr, addr + len - 1, addr, len - 1);
1174 prettyprint_ich9_reg_hsfs(hsfs);
1175 prettyprint_ich9_reg_hsfc(REGREAD16(ICH9_REG_HSFC));
1176 return 1;
1177 }
1178 return 0;
1179}
Stefan Tauner50e7c602011-11-08 10:55:54 +00001180
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +00001181static int ich_hwseq_probe(struct flashctx *flash)
Stefan Tauner50e7c602011-11-08 10:55:54 +00001182{
1183 uint32_t total_size, boundary;
1184 uint32_t erase_size_low, size_low, erase_size_high, size_high;
1185 struct block_eraser *eraser;
1186
1187 total_size = hwseq_data.size_comp0 + hwseq_data.size_comp1;
1188 msg_cdbg("Found %d attached SPI flash chip",
1189 (hwseq_data.size_comp1 != 0) ? 2 : 1);
1190 if (hwseq_data.size_comp1 != 0)
1191 msg_cdbg("s with a combined");
1192 else
1193 msg_cdbg(" with a");
1194 msg_cdbg(" density of %d kB.\n", total_size / 1024);
1195 flash->total_size = total_size / 1024;
1196
1197 eraser = &(flash->block_erasers[0]);
1198 boundary = (REGREAD32(ICH9_REG_FPB) & FPB_FPBA) << 12;
1199 size_high = total_size - boundary;
1200 erase_size_high = ich_hwseq_get_erase_block_size(boundary);
1201
1202 if (boundary == 0) {
1203 msg_cdbg("There is only one partition containing the whole "
1204 "address space (0x%06x - 0x%06x).\n", 0, size_high-1);
1205 eraser->eraseblocks[0].size = erase_size_high;
1206 eraser->eraseblocks[0].count = size_high / erase_size_high;
1207 msg_cdbg("There are %d erase blocks with %d B each.\n",
1208 size_high / erase_size_high, erase_size_high);
1209 } else {
1210 msg_cdbg("The flash address space (0x%06x - 0x%06x) is divided "
1211 "at address 0x%06x in two partitions.\n",
1212 0, size_high-1, boundary);
1213 size_low = total_size - size_high;
1214 erase_size_low = ich_hwseq_get_erase_block_size(0);
1215
1216 eraser->eraseblocks[0].size = erase_size_low;
1217 eraser->eraseblocks[0].count = size_low / erase_size_low;
1218 msg_cdbg("The first partition ranges from 0x%06x to 0x%06x.\n",
1219 0, size_low-1);
1220 msg_cdbg("In that range are %d erase blocks with %d B each.\n",
1221 size_low / erase_size_low, erase_size_low);
1222
1223 eraser->eraseblocks[1].size = erase_size_high;
1224 eraser->eraseblocks[1].count = size_high / erase_size_high;
1225 msg_cdbg("The second partition ranges from 0x%06x to 0x%06x.\n",
1226 boundary, size_high-1);
1227 msg_cdbg("In that range are %d erase blocks with %d B each.\n",
1228 size_high / erase_size_high, erase_size_high);
1229 }
1230 flash->tested = TEST_OK_PREW;
1231 return 1;
1232}
1233
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +00001234static int ich_hwseq_block_erase(struct flashctx *flash, unsigned int addr,
1235 unsigned int len)
Stefan Tauner50e7c602011-11-08 10:55:54 +00001236{
1237 uint32_t erase_block;
1238 uint16_t hsfc;
1239 uint32_t timeout = 5000 * 1000; /* 5 s for max 64 kB */
1240
1241 erase_block = ich_hwseq_get_erase_block_size(addr);
1242 if (len != erase_block) {
1243 msg_cerr("Erase block size for address 0x%06x is %d B, "
1244 "but requested erase block size is %d B. "
1245 "Not erasing anything.\n", addr, erase_block, len);
1246 return -1;
1247 }
1248
1249 /* Although the hardware supports this (it would erase the whole block
1250 * containing the address) we play safe here. */
1251 if (addr % erase_block != 0) {
1252 msg_cerr("Erase address 0x%06x is not aligned to the erase "
1253 "block boundary (any multiple of %d). "
1254 "Not erasing anything.\n", addr, erase_block);
1255 return -1;
1256 }
1257
1258 if (addr + len > flash->total_size * 1024) {
1259 msg_perr("Request to erase some inaccessible memory address(es)"
1260 " (addr=0x%x, len=%d). "
1261 "Not erasing anything.\n", addr, len);
1262 return -1;
1263 }
1264
1265 msg_pdbg("Erasing %d bytes starting at 0x%06x.\n", len, addr);
1266
1267 /* make sure FDONE, FCERR, AEL are cleared by writing 1 to them */
1268 REGWRITE16(ICH9_REG_HSFS, REGREAD16(ICH9_REG_HSFS));
1269
1270 hsfc = REGREAD16(ICH9_REG_HSFC);
1271 hsfc &= ~HSFC_FCYCLE; /* clear operation */
1272 hsfc |= (0x3 << HSFC_FCYCLE_OFF); /* set erase operation */
1273 hsfc |= HSFC_FGO; /* start */
1274 msg_pdbg("HSFC used for block erasing: ");
1275 prettyprint_ich9_reg_hsfc(hsfc);
1276 REGWRITE16(ICH9_REG_HSFC, hsfc);
1277
1278 if (ich_hwseq_wait_for_cycle_complete(timeout, len))
1279 return -1;
1280 return 0;
1281}
1282
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +00001283static int ich_hwseq_read(struct flashctx *flash, uint8_t *buf,
1284 unsigned int addr, unsigned int len)
Stefan Tauner50e7c602011-11-08 10:55:54 +00001285{
1286 uint16_t hsfc;
1287 uint16_t timeout = 100 * 60;
1288 uint8_t block_len;
1289
Paul Menzelac427b22012-02-16 21:07:07 +00001290 if (addr + len > flash->total_size * 1024) {
Stefan Tauner50e7c602011-11-08 10:55:54 +00001291 msg_perr("Request to read from an inaccessible memory address "
1292 "(addr=0x%x, len=%d).\n", addr, len);
1293 return -1;
1294 }
1295
1296 msg_pdbg("Reading %d bytes starting at 0x%06x.\n", len, addr);
1297 /* clear FDONE, FCERR, AEL by writing 1 to them (if they are set) */
1298 REGWRITE16(ICH9_REG_HSFS, REGREAD16(ICH9_REG_HSFS));
1299
1300 while (len > 0) {
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +00001301 block_len = min(len, flash->pgm->opaque.max_data_read);
Stefan Tauner50e7c602011-11-08 10:55:54 +00001302 ich_hwseq_set_addr(addr);
1303 hsfc = REGREAD16(ICH9_REG_HSFC);
1304 hsfc &= ~HSFC_FCYCLE; /* set read operation */
1305 hsfc &= ~HSFC_FDBC; /* clear byte count */
1306 /* set byte count */
1307 hsfc |= (((block_len - 1) << HSFC_FDBC_OFF) & HSFC_FDBC);
1308 hsfc |= HSFC_FGO; /* start */
1309 REGWRITE16(ICH9_REG_HSFC, hsfc);
1310
1311 if (ich_hwseq_wait_for_cycle_complete(timeout, block_len))
1312 return 1;
1313 ich_read_data(buf, block_len, ICH9_REG_FDATA0);
1314 addr += block_len;
1315 buf += block_len;
1316 len -= block_len;
1317 }
1318 return 0;
1319}
1320
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +00001321static int ich_hwseq_write(struct flashctx *flash, uint8_t *buf,
1322 unsigned int addr, unsigned int len)
Stefan Tauner50e7c602011-11-08 10:55:54 +00001323{
1324 uint16_t hsfc;
1325 uint16_t timeout = 100 * 60;
1326 uint8_t block_len;
1327
Paul Menzelac427b22012-02-16 21:07:07 +00001328 if (addr + len > flash->total_size * 1024) {
Stefan Tauner50e7c602011-11-08 10:55:54 +00001329 msg_perr("Request to write to an inaccessible memory address "
1330 "(addr=0x%x, len=%d).\n", addr, len);
1331 return -1;
1332 }
1333
1334 msg_pdbg("Writing %d bytes starting at 0x%06x.\n", len, addr);
1335 /* clear FDONE, FCERR, AEL by writing 1 to them (if they are set) */
1336 REGWRITE16(ICH9_REG_HSFS, REGREAD16(ICH9_REG_HSFS));
1337
1338 while (len > 0) {
1339 ich_hwseq_set_addr(addr);
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +00001340 block_len = min(len, flash->pgm->opaque.max_data_write);
Stefan Tauner50e7c602011-11-08 10:55:54 +00001341 ich_fill_data(buf, block_len, ICH9_REG_FDATA0);
1342 hsfc = REGREAD16(ICH9_REG_HSFC);
1343 hsfc &= ~HSFC_FCYCLE; /* clear operation */
1344 hsfc |= (0x2 << HSFC_FCYCLE_OFF); /* set write operation */
1345 hsfc &= ~HSFC_FDBC; /* clear byte count */
1346 /* set byte count */
1347 hsfc |= (((block_len - 1) << HSFC_FDBC_OFF) & HSFC_FDBC);
1348 hsfc |= HSFC_FGO; /* start */
1349 REGWRITE16(ICH9_REG_HSFC, hsfc);
1350
1351 if (ich_hwseq_wait_for_cycle_complete(timeout, block_len))
1352 return -1;
1353 addr += block_len;
1354 buf += block_len;
1355 len -= block_len;
1356 }
1357 return 0;
1358}
Stefan Taunerd0c5dc22011-10-20 12:57:14 +00001359
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +00001360static int ich_spi_send_multicommand(struct flashctx *flash,
1361 struct spi_command *cmds)
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +00001362{
1363 int ret = 0;
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001364 int i;
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +00001365 int oppos, preoppos;
1366 for (; (cmds->writecnt || cmds->readcnt) && !ret; cmds++) {
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +00001367 if ((cmds + 1)->writecnt || (cmds + 1)->readcnt) {
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001368 /* Next command is valid. */
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +00001369 preoppos = find_preop(curopcodes, cmds->writearr[0]);
1370 oppos = find_opcode(curopcodes, (cmds + 1)->writearr[0]);
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001371 if ((oppos == -1) && (preoppos != -1)) {
1372 /* Current command is listed as preopcode in
1373 * ICH struct OPCODES, but next command is not
1374 * listed as opcode in that struct.
1375 * Check for command sanity, then
1376 * try to reprogram the ICH opcode list.
1377 */
1378 if (find_preop(curopcodes,
1379 (cmds + 1)->writearr[0]) != -1) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001380 msg_perr("%s: Two subsequent "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001381 "preopcodes 0x%02x and 0x%02x, "
1382 "ignoring the first.\n",
1383 __func__, cmds->writearr[0],
1384 (cmds + 1)->writearr[0]);
1385 continue;
1386 }
1387 /* If the chipset is locked down, we'll fail
1388 * during execution of the next command anyway.
1389 * No need to bother with fixups.
1390 */
1391 if (!ichspi_lock) {
Helge Wagner738e2522010-10-05 22:06:05 +00001392 oppos = reprogram_opcode_on_the_fly((cmds + 1)->writearr[0], (cmds + 1)->writecnt, (cmds + 1)->readcnt);
1393 if (oppos == -1)
1394 continue;
1395 curopcodes->opcode[oppos].atomic = preoppos + 1;
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001396 continue;
1397 }
1398 }
1399 if ((oppos != -1) && (preoppos != -1)) {
1400 /* Current command is listed as preopcode in
1401 * ICH struct OPCODES and next command is listed
1402 * as opcode in that struct. Match them up.
1403 */
1404 curopcodes->opcode[oppos].atomic = preoppos + 1;
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +00001405 continue;
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001406 }
1407 /* If none of the above if-statements about oppos or
1408 * preoppos matched, this is a normal opcode.
1409 */
1410 }
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +00001411 ret = ich_spi_send_command(flash, cmds->writecnt, cmds->readcnt,
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +00001412 cmds->writearr, cmds->readarr);
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001413 /* Reset the type of all opcodes to non-atomic. */
1414 for (i = 0; i < 8; i++)
1415 curopcodes->opcode[i].atomic = 0;
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +00001416 }
1417 return ret;
1418}
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001419
Michael Karchera4448d92010-07-22 18:04:15 +00001420#define ICH_BMWAG(x) ((x >> 24) & 0xff)
1421#define ICH_BMRAG(x) ((x >> 16) & 0xff)
1422#define ICH_BRWA(x) ((x >> 8) & 0xff)
1423#define ICH_BRRA(x) ((x >> 0) & 0xff)
1424
Stefan Tauner5210e722012-02-16 01:13:00 +00001425/* returns 0 if region is unused or r/w */
1426static int ich9_handle_frap(uint32_t frap, int i)
Michael Karchera4448d92010-07-22 18:04:15 +00001427{
Mathias Krausea60faab2011-01-17 07:50:42 +00001428 static const char *const access_names[4] = {
Michael Karchera4448d92010-07-22 18:04:15 +00001429 "locked", "read-only", "write-only", "read-write"
1430 };
Mathias Krausea60faab2011-01-17 07:50:42 +00001431 static const char *const region_names[5] = {
Michael Karchera4448d92010-07-22 18:04:15 +00001432 "Flash Descriptor", "BIOS", "Management Engine",
1433 "Gigabit Ethernet", "Platform Data"
1434 };
1435 uint32_t base, limit;
1436 int rwperms = (((ICH_BRWA(frap) >> i) & 1) << 1) |
1437 (((ICH_BRRA(frap) >> i) & 1) << 0);
Stefan Tauner29c80832011-06-12 08:14:10 +00001438 int offset = ICH9_REG_FREG0 + i * 4;
Michael Karchera4448d92010-07-22 18:04:15 +00001439 uint32_t freg = mmio_readl(ich_spibar + offset);
1440
Michael Karchera4448d92010-07-22 18:04:15 +00001441 base = ICH_FREG_BASE(freg);
1442 limit = ICH_FREG_LIMIT(freg);
Joshua Roysd172ecd2011-05-26 13:30:51 +00001443 if (base > limit) {
Michael Karchera4448d92010-07-22 18:04:15 +00001444 /* this FREG is disabled */
Stefan Tauner5210e722012-02-16 01:13:00 +00001445 msg_pdbg2("0x%02X: 0x%08x FREG%i: %s region is unused.\n",
1446 offset, freg, i, region_names[i]);
1447 return 0;
1448 }
1449 msg_pdbg("0x%02X: 0x%08x ", offset, freg);
1450 if (rwperms == 0x3) {
1451 msg_pdbg("FREG%i: %s region (0x%08x-0x%08x) is %s.\n", i,
1452 region_names[i], base, (limit | 0x0fff),
1453 access_names[rwperms]);
1454 return 0;
Michael Karchera4448d92010-07-22 18:04:15 +00001455 }
1456
Stefan Tauner5210e722012-02-16 01:13:00 +00001457 msg_pinfo("FREG%i: WARNING: %s region (0x%08x-0x%08x) is %s.\n", i,
1458 region_names[i], base, (limit | 0x0fff),
1459 access_names[rwperms]);
1460 return 1;
Michael Karchera4448d92010-07-22 18:04:15 +00001461}
1462
Stefan Taunerbf69aaa2011-09-17 21:21:48 +00001463 /* In contrast to FRAP and the master section of the descriptor the bits
1464 * in the PR registers have an inverted meaning. The bits in FRAP
1465 * indicate read and write access _grant_. Here they indicate read
1466 * and write _protection_ respectively. If both bits are 0 the address
1467 * bits are ignored.
1468 */
1469#define ICH_PR_PERMS(pr) (((~((pr) >> PR_RP_OFF) & 1) << 0) | \
1470 ((~((pr) >> PR_WP_OFF) & 1) << 1))
1471
Stefan Tauner5210e722012-02-16 01:13:00 +00001472/* returns 0 if range is unused (i.e. r/w) */
1473static int ich9_handle_pr(int i)
Stefan Taunerbf69aaa2011-09-17 21:21:48 +00001474{
Stefan Tauner5210e722012-02-16 01:13:00 +00001475 static const char *const access_names[3] = {
1476 "locked", "read-only", "write-only"
Stefan Taunerbf69aaa2011-09-17 21:21:48 +00001477 };
1478 uint8_t off = ICH9_REG_PR0 + (i * 4);
1479 uint32_t pr = mmio_readl(ich_spibar + off);
Stefan Tauner5210e722012-02-16 01:13:00 +00001480 unsigned int rwperms = ICH_PR_PERMS(pr);
Stefan Taunerbf69aaa2011-09-17 21:21:48 +00001481
Stefan Tauner5210e722012-02-16 01:13:00 +00001482 if (rwperms == 0x3) {
1483 msg_pdbg2("0x%02X: 0x%08x (PR%u is unused)\n", off, pr, i);
1484 return 0;
1485 }
1486
1487 msg_pdbg("0x%02X: 0x%08x ", off, pr);
1488 msg_pinfo("PR%u: WARNING: 0x%08x-0x%08x is %s.\n", i, ICH_FREG_BASE(pr),
1489 ICH_FREG_LIMIT(pr) | 0x0fff, access_names[rwperms]);
1490 return 1;
Stefan Taunerbf69aaa2011-09-17 21:21:48 +00001491}
1492
Stefan Tauner75da80c2011-09-17 22:21:55 +00001493/* Set/Clear the read and write protection enable bits of PR register @i
1494 * according to @read_prot and @write_prot. */
1495static void ich9_set_pr(int i, int read_prot, int write_prot)
1496{
1497 void *addr = ich_spibar + ICH9_REG_PR0 + (i * 4);
1498 uint32_t old = mmio_readl(addr);
1499 uint32_t new;
1500
1501 msg_gspew("PR%u is 0x%08x", i, old);
1502 new = old & ~((1 << PR_RP_OFF) | (1 << PR_WP_OFF));
1503 if (read_prot)
1504 new |= (1 << PR_RP_OFF);
1505 if (write_prot)
1506 new |= (1 << PR_WP_OFF);
1507 if (old == new) {
1508 msg_gspew(" already.\n");
1509 return;
1510 }
1511 msg_gspew(", trying to set it to 0x%08x ", new);
1512 rmmio_writel(new, addr);
1513 msg_gspew("resulted in 0x%08x.\n", mmio_readl(addr));
1514}
1515
Michael Karcherb9dbe482011-05-11 17:07:07 +00001516static const struct spi_programmer spi_programmer_ich7 = {
1517 .type = SPI_CONTROLLER_ICH7,
1518 .max_data_read = 64,
1519 .max_data_write = 64,
1520 .command = ich_spi_send_command,
1521 .multicommand = ich_spi_send_multicommand,
1522 .read = default_spi_read,
1523 .write_256 = default_spi_write_256,
1524};
1525
1526static const struct spi_programmer spi_programmer_ich9 = {
1527 .type = SPI_CONTROLLER_ICH9,
1528 .max_data_read = 64,
1529 .max_data_write = 64,
1530 .command = ich_spi_send_command,
1531 .multicommand = ich_spi_send_multicommand,
1532 .read = default_spi_read,
1533 .write_256 = default_spi_write_256,
1534};
1535
Stefan Tauner50e7c602011-11-08 10:55:54 +00001536static const struct opaque_programmer opaque_programmer_ich_hwseq = {
1537 .max_data_read = 64,
1538 .max_data_write = 64,
1539 .probe = ich_hwseq_probe,
1540 .read = ich_hwseq_read,
1541 .write = ich_hwseq_write,
1542 .erase = ich_hwseq_block_erase,
1543};
1544
Michael Karchera4448d92010-07-22 18:04:15 +00001545int ich_init_spi(struct pci_dev *dev, uint32_t base, void *rcrb,
Stefan Taunera8d838d2011-11-06 23:51:09 +00001546 enum ich_chipset ich_gen)
Michael Karchera4448d92010-07-22 18:04:15 +00001547{
1548 int i;
1549 uint8_t old, new;
1550 uint16_t spibar_offset, tmp2;
1551 uint32_t tmp;
Stefan Tauner50e7c602011-11-08 10:55:54 +00001552 char *arg;
Stefan Tauner5210e722012-02-16 01:13:00 +00001553 int ich_spi_force = 0;
1554 int ich_spi_rw_restricted = 0;
Stefan Taunerd0c5dc22011-10-20 12:57:14 +00001555 int desc_valid = 0;
Stefan Tauner50e7c602011-11-08 10:55:54 +00001556 struct ich_descriptors desc = {{ 0 }};
1557 enum ich_spi_mode {
1558 ich_auto,
1559 ich_hwseq,
1560 ich_swseq
1561 } ich_spi_mode = ich_auto;
Michael Karchera4448d92010-07-22 18:04:15 +00001562
Stefan Taunera8d838d2011-11-06 23:51:09 +00001563 ich_generation = ich_gen;
1564
Michael Karchera4448d92010-07-22 18:04:15 +00001565 switch (ich_generation) {
Stefan Taunera8d838d2011-11-06 23:51:09 +00001566 case CHIPSET_ICH_UNKNOWN:
Stefan Tauner50e7c602011-11-08 10:55:54 +00001567 return ERROR_FATAL;
Stefan Taunera8d838d2011-11-06 23:51:09 +00001568 case CHIPSET_ICH7:
1569 case CHIPSET_ICH8:
Michael Karchera4448d92010-07-22 18:04:15 +00001570 spibar_offset = 0x3020;
1571 break;
Stefan Taunera8d838d2011-11-06 23:51:09 +00001572 case CHIPSET_ICH9:
Michael Karchera4448d92010-07-22 18:04:15 +00001573 default: /* Future version might behave the same */
Michael Karchera4448d92010-07-22 18:04:15 +00001574 spibar_offset = 0x3800;
1575 break;
1576 }
1577
1578 /* SPIBAR is at RCRB+0x3020 for ICH[78] and RCRB+0x3800 for ICH9. */
1579 msg_pdbg("SPIBAR = 0x%x + 0x%04x\n", base, spibar_offset);
1580
1581 /* Assign Virtual Address */
1582 ich_spibar = rcrb + spibar_offset;
1583
Stefan Taunerd0c5dc22011-10-20 12:57:14 +00001584 switch (ich_generation) {
Stefan Taunera8d838d2011-11-06 23:51:09 +00001585 case CHIPSET_ICH7:
Michael Karchera4448d92010-07-22 18:04:15 +00001586 msg_pdbg("0x00: 0x%04x (SPIS)\n",
1587 mmio_readw(ich_spibar + 0));
1588 msg_pdbg("0x02: 0x%04x (SPIC)\n",
1589 mmio_readw(ich_spibar + 2));
1590 msg_pdbg("0x04: 0x%08x (SPIA)\n",
1591 mmio_readl(ich_spibar + 4));
1592 for (i = 0; i < 8; i++) {
1593 int offs;
1594 offs = 8 + (i * 8);
1595 msg_pdbg("0x%02x: 0x%08x (SPID%d)\n", offs,
1596 mmio_readl(ich_spibar + offs), i);
1597 msg_pdbg("0x%02x: 0x%08x (SPID%d+4)\n", offs + 4,
1598 mmio_readl(ich_spibar + offs + 4), i);
1599 }
1600 ichspi_bbar = mmio_readl(ich_spibar + 0x50);
1601 msg_pdbg("0x50: 0x%08x (BBAR)\n",
1602 ichspi_bbar);
1603 msg_pdbg("0x54: 0x%04x (PREOP)\n",
1604 mmio_readw(ich_spibar + 0x54));
1605 msg_pdbg("0x56: 0x%04x (OPTYPE)\n",
1606 mmio_readw(ich_spibar + 0x56));
1607 msg_pdbg("0x58: 0x%08x (OPMENU)\n",
1608 mmio_readl(ich_spibar + 0x58));
1609 msg_pdbg("0x5c: 0x%08x (OPMENU+4)\n",
1610 mmio_readl(ich_spibar + 0x5c));
Stefan Tauner122dd122011-07-24 15:34:56 +00001611 for (i = 0; i < 3; i++) {
Michael Karchera4448d92010-07-22 18:04:15 +00001612 int offs;
1613 offs = 0x60 + (i * 4);
1614 msg_pdbg("0x%02x: 0x%08x (PBR%d)\n", offs,
1615 mmio_readl(ich_spibar + offs), i);
1616 }
Michael Karchera4448d92010-07-22 18:04:15 +00001617 if (mmio_readw(ich_spibar) & (1 << 15)) {
1618 msg_pinfo("WARNING: SPI Configuration Lockdown activated.\n");
1619 ichspi_lock = 1;
1620 }
Stefan Tauner745f6bb2011-11-13 15:17:10 +00001621 ich_init_opcodes();
Stefan Taunera8d838d2011-11-06 23:51:09 +00001622 ich_set_bbar(0);
Stefan Taunerd0c5dc22011-10-20 12:57:14 +00001623 register_spi_programmer(&spi_programmer_ich7);
Michael Karchera4448d92010-07-22 18:04:15 +00001624 break;
Stefan Taunera8d838d2011-11-06 23:51:09 +00001625 case CHIPSET_ICH8:
Stefan Taunerd0c5dc22011-10-20 12:57:14 +00001626 default: /* Future version might behave the same */
Stefan Tauner50e7c602011-11-08 10:55:54 +00001627 arg = extract_programmer_param("ich_spi_mode");
1628 if (arg && !strcmp(arg, "hwseq")) {
1629 ich_spi_mode = ich_hwseq;
1630 msg_pspew("user selected hwseq\n");
1631 } else if (arg && !strcmp(arg, "swseq")) {
1632 ich_spi_mode = ich_swseq;
1633 msg_pspew("user selected swseq\n");
1634 } else if (arg && !strcmp(arg, "auto")) {
1635 msg_pspew("user selected auto\n");
1636 ich_spi_mode = ich_auto;
1637 } else if (arg && !strlen(arg)) {
1638 msg_perr("Missing argument for ich_spi_mode.\n");
1639 free(arg);
1640 return ERROR_FATAL;
1641 } else if (arg) {
1642 msg_perr("Unknown argument for ich_spi_mode: %s\n",
1643 arg);
1644 free(arg);
1645 return ERROR_FATAL;
1646 }
1647 free(arg);
1648
Stefan Tauner5210e722012-02-16 01:13:00 +00001649 arg = extract_programmer_param("ich_spi_force");
1650 if (arg && !strcmp(arg, "yes")) {
1651 ich_spi_force = 1;
1652 msg_pspew("ich_spi_force enabled.\n");
1653 } else if (arg && !strlen(arg)) {
1654 msg_perr("Missing argument for ich_spi_force.\n");
1655 free(arg);
1656 return ERROR_FATAL;
1657 } else if (arg) {
1658 msg_perr("Unknown argument for ich_spi_force: \"%s\" "
1659 "(not \"yes\").\n", arg);
1660 free(arg);
1661 return ERROR_FATAL;
1662 }
1663 free(arg);
1664
Stefan Tauner29c80832011-06-12 08:14:10 +00001665 tmp2 = mmio_readw(ich_spibar + ICH9_REG_HSFS);
Michael Karchera4448d92010-07-22 18:04:15 +00001666 msg_pdbg("0x04: 0x%04x (HSFS)\n", tmp2);
Stefan Tauner55206942011-06-11 09:53:22 +00001667 prettyprint_ich9_reg_hsfs(tmp2);
Stefan Tauner29c80832011-06-12 08:14:10 +00001668 if (tmp2 & HSFS_FLOCKDN) {
Stefan Tauner55206942011-06-11 09:53:22 +00001669 msg_pinfo("WARNING: SPI Configuration Lockdown activated.\n");
1670 ichspi_lock = 1;
1671 }
Stefan Tauner1e146392011-09-15 23:52:55 +00001672 if (tmp2 & HSFS_FDV)
Stefan Taunerd0c5dc22011-10-20 12:57:14 +00001673 desc_valid = 1;
1674 if (!(tmp2 & HSFS_FDOPSS) && desc_valid)
Stefan Taunere3185c02011-09-18 15:15:31 +00001675 msg_pinfo("The Flash Descriptor Security Override "
1676 "Strap-Pin is set. Restrictions implied\n"
1677 "by the FRAP and FREG registers are NOT in "
1678 "effect. Please note that Protected\n"
1679 "Range (PR) restrictions still apply.\n");
Stefan Tauner745f6bb2011-11-13 15:17:10 +00001680 ich_init_opcodes();
Stefan Tauner55206942011-06-11 09:53:22 +00001681
Stefan Taunerf382e352011-11-08 11:55:24 +00001682 if (desc_valid) {
1683 tmp2 = mmio_readw(ich_spibar + ICH9_REG_HSFC);
1684 msg_pdbg("0x06: 0x%04x (HSFC)\n", tmp2);
1685 prettyprint_ich9_reg_hsfc(tmp2);
1686 }
Michael Karchera4448d92010-07-22 18:04:15 +00001687
Stefan Tauner5ffe65b2011-07-07 04:10:57 +00001688 tmp = mmio_readl(ich_spibar + ICH9_REG_FADDR);
1689 msg_pdbg("0x08: 0x%08x (FADDR)\n", tmp);
Michael Karchera4448d92010-07-22 18:04:15 +00001690
Stefan Taunerf382e352011-11-08 11:55:24 +00001691 if (desc_valid) {
1692 tmp = mmio_readl(ich_spibar + ICH9_REG_FRAP);
1693 msg_pdbg("0x50: 0x%08x (FRAP)\n", tmp);
1694 msg_pdbg("BMWAG 0x%02x, ", ICH_BMWAG(tmp));
1695 msg_pdbg("BMRAG 0x%02x, ", ICH_BMRAG(tmp));
1696 msg_pdbg("BRWA 0x%02x, ", ICH_BRWA(tmp));
1697 msg_pdbg("BRRA 0x%02x\n", ICH_BRRA(tmp));
1698
Stefan Tauner5210e722012-02-16 01:13:00 +00001699 /* Handle FREGx and FRAP registers */
Stefan Taunerf382e352011-11-08 11:55:24 +00001700 for (i = 0; i < 5; i++)
Stefan Tauner5210e722012-02-16 01:13:00 +00001701 ich_spi_rw_restricted |= ich9_handle_frap(tmp, i);
Stefan Taunerf382e352011-11-08 11:55:24 +00001702 }
Michael Karchera4448d92010-07-22 18:04:15 +00001703
Stefan Tauner5210e722012-02-16 01:13:00 +00001704 for (i = 0; i < 5; i++) {
1705 /* if not locked down try to disable PR locks first */
1706 if (!ichspi_lock)
Stefan Tauner75da80c2011-09-17 22:21:55 +00001707 ich9_set_pr(i, 0, 0);
Stefan Tauner5210e722012-02-16 01:13:00 +00001708 ich_spi_rw_restricted |= ich9_handle_pr(i);
1709 }
1710
1711 if (ich_spi_rw_restricted) {
1712 msg_pinfo("Please send a verbose log to "
1713 "flashrom@flashrom.org if this board is not "
1714 "listed on\n"
1715 "http://flashrom.org/Supported_hardware#Supported_mainboards "
1716 "yet.\n");
1717 if (!ich_spi_force)
1718 programmer_may_write = 0;
1719 msg_pinfo("Writes have been disabled. You can enforce "
1720 "write support with the\nich_spi_force "
1721 "programmer option, but it will most likely "
1722 "harm your hardware!\nIf you force flashrom "
1723 "you will get no support if something "
1724 "breaks.\n");
1725 if (ich_spi_force)
1726 msg_pinfo("Continuing with write support "
1727 "because the user forced us to!\n");
1728 }
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +00001729
Stefan Tauner29c80832011-06-12 08:14:10 +00001730 tmp = mmio_readl(ich_spibar + ICH9_REG_SSFS);
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +00001731 msg_pdbg("0x90: 0x%02x (SSFS)\n", tmp & 0xff);
Stefan Tauner2a8b2622011-06-11 09:53:16 +00001732 prettyprint_ich9_reg_ssfs(tmp);
Stefan Tauner29c80832011-06-12 08:14:10 +00001733 if (tmp & SSFS_FCERR) {
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +00001734 msg_pdbg("Clearing SSFS.FCERR\n");
Stefan Tauner29c80832011-06-12 08:14:10 +00001735 mmio_writeb(SSFS_FCERR, ich_spibar + ICH9_REG_SSFS);
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +00001736 }
Stefan Tauner2a8b2622011-06-11 09:53:16 +00001737 msg_pdbg("0x91: 0x%06x (SSFC)\n", tmp >> 8);
1738 prettyprint_ich9_reg_ssfc(tmp);
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +00001739
Michael Karchera4448d92010-07-22 18:04:15 +00001740 msg_pdbg("0x94: 0x%04x (PREOP)\n",
Stefan Tauner29c80832011-06-12 08:14:10 +00001741 mmio_readw(ich_spibar + ICH9_REG_PREOP));
Michael Karchera4448d92010-07-22 18:04:15 +00001742 msg_pdbg("0x96: 0x%04x (OPTYPE)\n",
Stefan Tauner29c80832011-06-12 08:14:10 +00001743 mmio_readw(ich_spibar + ICH9_REG_OPTYPE));
Michael Karchera4448d92010-07-22 18:04:15 +00001744 msg_pdbg("0x98: 0x%08x (OPMENU)\n",
Stefan Tauner29c80832011-06-12 08:14:10 +00001745 mmio_readl(ich_spibar + ICH9_REG_OPMENU));
Michael Karchera4448d92010-07-22 18:04:15 +00001746 msg_pdbg("0x9C: 0x%08x (OPMENU+4)\n",
Stefan Tauner29c80832011-06-12 08:14:10 +00001747 mmio_readl(ich_spibar + ICH9_REG_OPMENU + 4));
Stefan Taunerf382e352011-11-08 11:55:24 +00001748 if (ich_generation == CHIPSET_ICH8 && desc_valid) {
Stefan Tauner1e146392011-09-15 23:52:55 +00001749 tmp = mmio_readl(ich_spibar + ICH8_REG_VSCC);
1750 msg_pdbg("0xC1: 0x%08x (VSCC)\n", tmp);
1751 msg_pdbg("VSCC: ");
1752 prettyprint_ich_reg_vscc(tmp, MSG_DEBUG);
1753 } else {
1754 ichspi_bbar = mmio_readl(ich_spibar + ICH9_REG_BBAR);
1755 msg_pdbg("0xA0: 0x%08x (BBAR)\n",
1756 ichspi_bbar);
Stefan Taunerbd649e42011-07-01 00:39:16 +00001757
Stefan Taunerf382e352011-11-08 11:55:24 +00001758 if (desc_valid) {
1759 tmp = mmio_readl(ich_spibar + ICH9_REG_LVSCC);
1760 msg_pdbg("0xC4: 0x%08x (LVSCC)\n", tmp);
1761 msg_pdbg("LVSCC: ");
1762 prettyprint_ich_reg_vscc(tmp, MSG_DEBUG);
Stefan Tauner1e146392011-09-15 23:52:55 +00001763
Stefan Taunerf382e352011-11-08 11:55:24 +00001764 tmp = mmio_readl(ich_spibar + ICH9_REG_UVSCC);
1765 msg_pdbg("0xC8: 0x%08x (UVSCC)\n", tmp);
1766 msg_pdbg("UVSCC: ");
1767 prettyprint_ich_reg_vscc(tmp, MSG_DEBUG);
Stefan Tauner1e146392011-09-15 23:52:55 +00001768
Stefan Taunerf382e352011-11-08 11:55:24 +00001769 tmp = mmio_readl(ich_spibar + ICH9_REG_FPB);
1770 msg_pdbg("0xD0: 0x%08x (FPB)\n", tmp);
1771 }
Stefan Taunera8d838d2011-11-06 23:51:09 +00001772 ich_set_bbar(0);
Stefan Tauner1e146392011-09-15 23:52:55 +00001773 }
1774
1775 msg_pdbg("\n");
Stefan Taunerd0c5dc22011-10-20 12:57:14 +00001776 if (desc_valid) {
Stefan Tauner1e146392011-09-15 23:52:55 +00001777 if (read_ich_descriptors_via_fdo(ich_spibar, &desc) ==
1778 ICH_RET_OK)
1779 prettyprint_ich_descriptors(CHIPSET_ICH_UNKNOWN,
1780 &desc);
Stefan Tauner50e7c602011-11-08 10:55:54 +00001781 /* If the descriptor is valid and indicates multiple
1782 * flash devices we need to use hwseq to be able to
1783 * access the second flash device.
1784 */
1785 if (ich_spi_mode == ich_auto && desc.content.NC != 0) {
1786 msg_pinfo("Enabling hardware sequencing due to "
1787 "multiple flash chips detected.\n");
1788 ich_spi_mode = ich_hwseq;
1789 }
Stefan Tauner1e146392011-09-15 23:52:55 +00001790 }
Stefan Tauner50e7c602011-11-08 10:55:54 +00001791
1792 if (ich_spi_mode == ich_auto && ichspi_lock &&
1793 ich_missing_opcodes()) {
1794 msg_pinfo("Enabling hardware sequencing because "
1795 "some important opcode is locked.\n");
1796 ich_spi_mode = ich_hwseq;
1797 }
1798
1799 if (ich_spi_mode == ich_hwseq) {
1800 if (!desc_valid) {
1801 msg_perr("Hardware sequencing was requested "
1802 "but the flash descriptor is not "
1803 "valid. Aborting.\n");
1804 return ERROR_FATAL;
1805 }
1806 hwseq_data.size_comp0 = getFCBA_component_density(&desc, 0);
1807 hwseq_data.size_comp1 = getFCBA_component_density(&desc, 1);
1808 register_opaque_programmer(&opaque_programmer_ich_hwseq);
1809 } else {
1810 register_spi_programmer(&spi_programmer_ich9);
1811 }
Michael Karchera4448d92010-07-22 18:04:15 +00001812 break;
Michael Karchera4448d92010-07-22 18:04:15 +00001813 }
1814
1815 old = pci_read_byte(dev, 0xdc);
1816 msg_pdbg("SPI Read Configuration: ");
1817 new = (old >> 2) & 0x3;
1818 switch (new) {
1819 case 0:
1820 case 1:
1821 case 2:
1822 msg_pdbg("prefetching %sabled, caching %sabled, ",
1823 (new & 0x2) ? "en" : "dis",
1824 (new & 0x1) ? "dis" : "en");
1825 break;
1826 default:
1827 msg_pdbg("invalid prefetching/caching settings, ");
1828 break;
1829 }
1830 return 0;
1831}
1832
Michael Karcherb9dbe482011-05-11 17:07:07 +00001833static const struct spi_programmer spi_programmer_via = {
1834 .type = SPI_CONTROLLER_VIA,
1835 .max_data_read = 16,
1836 .max_data_write = 16,
1837 .command = ich_spi_send_command,
1838 .multicommand = ich_spi_send_multicommand,
1839 .read = default_spi_read,
1840 .write_256 = default_spi_write_256,
1841};
1842
Michael Karchera4448d92010-07-22 18:04:15 +00001843int via_init_spi(struct pci_dev *dev)
1844{
1845 uint32_t mmio_base;
Carl-Daniel Hailfinger841d6312010-11-24 23:37:22 +00001846 int i;
Michael Karchera4448d92010-07-22 18:04:15 +00001847
1848 mmio_base = (pci_read_long(dev, 0xbc)) << 8;
1849 msg_pdbg("MMIO base at = 0x%x\n", mmio_base);
1850 ich_spibar = physmap("VT8237S MMIO registers", mmio_base, 0x70);
1851
Michael Karchera4448d92010-07-22 18:04:15 +00001852 /* Not sure if it speaks all these bus protocols. */
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +00001853 internal_buses_supported = BUS_LPC | BUS_FWH;
Stefan Taunera8d838d2011-11-06 23:51:09 +00001854 ich_generation = CHIPSET_ICH7;
Michael Karcherb9dbe482011-05-11 17:07:07 +00001855 register_spi_programmer(&spi_programmer_via);
Carl-Daniel Hailfinger841d6312010-11-24 23:37:22 +00001856
1857 msg_pdbg("0x00: 0x%04x (SPIS)\n", mmio_readw(ich_spibar + 0));
1858 msg_pdbg("0x02: 0x%04x (SPIC)\n", mmio_readw(ich_spibar + 2));
1859 msg_pdbg("0x04: 0x%08x (SPIA)\n", mmio_readl(ich_spibar + 4));
1860 for (i = 0; i < 2; i++) {
1861 int offs;
1862 offs = 8 + (i * 8);
1863 msg_pdbg("0x%02x: 0x%08x (SPID%d)\n", offs,
1864 mmio_readl(ich_spibar + offs), i);
1865 msg_pdbg("0x%02x: 0x%08x (SPID%d+4)\n", offs + 4,
1866 mmio_readl(ich_spibar + offs + 4), i);
1867 }
1868 ichspi_bbar = mmio_readl(ich_spibar + 0x50);
1869 msg_pdbg("0x50: 0x%08x (BBAR)\n", ichspi_bbar);
1870 msg_pdbg("0x54: 0x%04x (PREOP)\n", mmio_readw(ich_spibar + 0x54));
1871 msg_pdbg("0x56: 0x%04x (OPTYPE)\n", mmio_readw(ich_spibar + 0x56));
1872 msg_pdbg("0x58: 0x%08x (OPMENU)\n", mmio_readl(ich_spibar + 0x58));
1873 msg_pdbg("0x5c: 0x%08x (OPMENU+4)\n", mmio_readl(ich_spibar + 0x5c));
1874 for (i = 0; i < 3; i++) {
1875 int offs;
1876 offs = 0x60 + (i * 4);
1877 msg_pdbg("0x%02x: 0x%08x (PBR%d)\n", offs,
1878 mmio_readl(ich_spibar + offs), i);
1879 }
1880 msg_pdbg("0x6c: 0x%04x (CLOCK/DEBUG)\n",
1881 mmio_readw(ich_spibar + 0x6c));
1882 if (mmio_readw(ich_spibar) & (1 << 15)) {
1883 msg_pinfo("WARNING: SPI Configuration Lockdown activated.\n");
1884 ichspi_lock = 1;
1885 }
1886
Stefan Taunera8d838d2011-11-06 23:51:09 +00001887 ich_set_bbar(0);
Michael Karchera4448d92010-07-22 18:04:15 +00001888 ich_init_opcodes();
1889
1890 return 0;
1891}
1892
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001893#endif