blob: b0f312a107880213e9151f1d445dfa9c7526747b [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);
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
Stefan Taunera8d838d2011-11-06 23:51:09 +0000458 switch (ich_generation) {
459 case CHIPSET_ICH7:
FENG yu ningc05a2952008-12-08 18:16:58 +0000460 preop = REGREAD16(ICH7_REG_PREOP);
461 optype = REGREAD16(ICH7_REG_OPTYPE);
462 opmenu[0] = REGREAD32(ICH7_REG_OPMENU);
463 opmenu[1] = REGREAD32(ICH7_REG_OPMENU + 4);
464 break;
Stefan Taunera8d838d2011-11-06 23:51:09 +0000465 case CHIPSET_ICH8:
466 default: /* Future version might behave the same */
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;
FENG yu ningc05a2952008-12-08 18:16:58 +0000472 }
473
474 op->preop[0] = (uint8_t) preop;
475 op->preop[1] = (uint8_t) (preop >> 8);
476
477 for (a = 0; a < 8; a++) {
478 op->opcode[a].spi_type = (uint8_t) (optype & 0x3);
479 optype >>= 2;
480 }
481
482 for (a = 0; a < 4; a++) {
483 op->opcode[a].opcode = (uint8_t) (opmenu[0] & 0xff);
484 opmenu[0] >>= 8;
485 }
486
487 for (a = 4; a < 8; a++) {
488 op->opcode[a].opcode = (uint8_t) (opmenu[1] & 0xff);
489 opmenu[1] >>= 8;
490 }
491
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000492 /* No preopcodes used by default. */
493 for (a = 0; a < 8; a++)
FENG yu ningc05a2952008-12-08 18:16:58 +0000494 op->opcode[a].atomic = 0;
495
FENG yu ningc05a2952008-12-08 18:16:58 +0000496 return 0;
497}
498
Carl-Daniel Hailfinger54ce73a2011-05-03 21:49:41 +0000499static int program_opcodes(OPCODES *op, int enable_undo)
Dominik Geyerb46acba2008-05-16 12:55:55 +0000500{
501 uint8_t a;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000502 uint16_t preop, optype;
503 uint32_t opmenu[2];
Dominik Geyerb46acba2008-05-16 12:55:55 +0000504
505 /* Program Prefix Opcodes */
Dominik Geyerb46acba2008-05-16 12:55:55 +0000506 /* 0:7 Prefix Opcode 1 */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000507 preop = (op->preop[0]);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000508 /* 8:16 Prefix Opcode 2 */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000509 preop |= ((uint16_t) op->preop[1]) << 8;
Uwe Hermann394131e2008-10-18 21:14:13 +0000510
Stefan Reinauera9424d52008-06-27 16:28:34 +0000511 /* Program Opcode Types 0 - 7 */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000512 optype = 0;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000513 for (a = 0; a < 8; a++) {
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000514 optype |= ((uint16_t) op->opcode[a].spi_type) << (a * 2);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000515 }
Uwe Hermann394131e2008-10-18 21:14:13 +0000516
Stefan Reinauera9424d52008-06-27 16:28:34 +0000517 /* Program Allowable Opcodes 0 - 3 */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000518 opmenu[0] = 0;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000519 for (a = 0; a < 4; a++) {
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000520 opmenu[0] |= ((uint32_t) op->opcode[a].opcode) << (a * 8);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000521 }
Stefan Reinauera9424d52008-06-27 16:28:34 +0000522
Dominik Geyerb46acba2008-05-16 12:55:55 +0000523 /*Program Allowable Opcodes 4 - 7 */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000524 opmenu[1] = 0;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000525 for (a = 4; a < 8; a++) {
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000526 opmenu[1] |= ((uint32_t) op->opcode[a].opcode) << ((a - 4) * 8);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000527 }
Stefan Reinauera9424d52008-06-27 16:28:34 +0000528
Sean Nelson316a29f2010-05-07 20:09:04 +0000529 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 +0000530 switch (ich_generation) {
531 case CHIPSET_ICH7:
Carl-Daniel Hailfinger54ce73a2011-05-03 21:49:41 +0000532 /* Register undo only for enable_undo=1, i.e. first call. */
533 if (enable_undo) {
534 rmmio_valw(ich_spibar + ICH7_REG_PREOP);
535 rmmio_valw(ich_spibar + ICH7_REG_OPTYPE);
536 rmmio_vall(ich_spibar + ICH7_REG_OPMENU);
537 rmmio_vall(ich_spibar + ICH7_REG_OPMENU + 4);
538 }
539 mmio_writew(preop, ich_spibar + ICH7_REG_PREOP);
540 mmio_writew(optype, ich_spibar + ICH7_REG_OPTYPE);
541 mmio_writel(opmenu[0], ich_spibar + ICH7_REG_OPMENU);
542 mmio_writel(opmenu[1], ich_spibar + ICH7_REG_OPMENU + 4);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000543 break;
Stefan Taunera8d838d2011-11-06 23:51:09 +0000544 case CHIPSET_ICH8:
545 default: /* Future version might behave the same */
Carl-Daniel Hailfinger54ce73a2011-05-03 21:49:41 +0000546 /* Register undo only for enable_undo=1, i.e. first call. */
547 if (enable_undo) {
548 rmmio_valw(ich_spibar + ICH9_REG_PREOP);
549 rmmio_valw(ich_spibar + ICH9_REG_OPTYPE);
550 rmmio_vall(ich_spibar + ICH9_REG_OPMENU);
551 rmmio_vall(ich_spibar + ICH9_REG_OPMENU + 4);
552 }
553 mmio_writew(preop, ich_spibar + ICH9_REG_PREOP);
554 mmio_writew(optype, ich_spibar + ICH9_REG_OPTYPE);
555 mmio_writel(opmenu[0], ich_spibar + ICH9_REG_OPMENU);
556 mmio_writel(opmenu[1], ich_spibar + ICH9_REG_OPMENU + 4);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000557 break;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000558 }
Dominik Geyerb46acba2008-05-16 12:55:55 +0000559
560 return 0;
561}
562
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000563/*
564 * Try to set BBAR (BIOS Base Address Register), but read back the value in case
565 * it didn't stick.
566 */
Stefan Taunera8d838d2011-11-06 23:51:09 +0000567static void ich_set_bbar(uint32_t min_addr)
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000568{
Stefan Taunere27b2d42011-07-01 00:39:09 +0000569 int bbar_off;
Stefan Tauner7783f312011-09-17 21:21:42 +0000570 switch (ich_generation) {
Stefan Taunera8d838d2011-11-06 23:51:09 +0000571 case CHIPSET_ICH7:
Stefan Taunere27b2d42011-07-01 00:39:09 +0000572 bbar_off = 0x50;
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000573 break;
Stefan Taunera8d838d2011-11-06 23:51:09 +0000574 case CHIPSET_ICH8:
Stefan Tauner7783f312011-09-17 21:21:42 +0000575 msg_perr("BBAR offset is unknown on ICH8!\n");
576 return;
Stefan Taunera8d838d2011-11-06 23:51:09 +0000577 case CHIPSET_ICH9:
Stefan Tauner7783f312011-09-17 21:21:42 +0000578 default: /* Future version might behave the same */
Stefan Taunere27b2d42011-07-01 00:39:09 +0000579 bbar_off = ICH9_REG_BBAR;
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000580 break;
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000581 }
Stefan Taunere27b2d42011-07-01 00:39:09 +0000582
583 ichspi_bbar = mmio_readl(ich_spibar + bbar_off) & ~BBAR_MASK;
584 if (ichspi_bbar) {
585 msg_pdbg("Reserved bits in BBAR not zero: 0x%08x\n",
586 ichspi_bbar);
587 }
588 min_addr &= BBAR_MASK;
589 ichspi_bbar |= min_addr;
590 rmmio_writel(ichspi_bbar, ich_spibar + bbar_off);
591 ichspi_bbar = mmio_readl(ich_spibar + bbar_off) & BBAR_MASK;
592
593 /* We don't have any option except complaining. And if the write
594 * failed, the restore will fail as well, so no problem there.
595 */
596 if (ichspi_bbar != min_addr)
Stefan Tauner7783f312011-09-17 21:21:42 +0000597 msg_perr("Setting BBAR to 0x%08x failed! New value: 0x%08x.\n",
598 min_addr, ichspi_bbar);
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000599}
600
Stefan Tauner8b391b82011-08-09 01:49:34 +0000601/* Read len bytes from the fdata/spid register into the data array.
602 *
603 * Note that using len > spi_programmer->max_data_read will return garbage or
604 * may even crash.
605 */
606 static void ich_read_data(uint8_t *data, int len, int reg0_off)
607 {
608 int i;
609 uint32_t temp32 = 0;
610
611 for (i = 0; i < len; i++) {
612 if ((i % 4) == 0)
613 temp32 = REGREAD32(reg0_off + i);
614
615 data[i] = (temp32 >> ((i % 4) * 8)) & 0xff;
616 }
617}
618
619/* Fill len bytes from the data array into the fdata/spid registers.
620 *
621 * Note that using len > spi_programmer->max_data_write will trash the registers
622 * following the data registers.
623 */
624static void ich_fill_data(const uint8_t *data, int len, int reg0_off)
625{
626 uint32_t temp32 = 0;
627 int i;
628
629 if (len <= 0)
630 return;
631
632 for (i = 0; i < len; i++) {
633 if ((i % 4) == 0)
634 temp32 = 0;
635
636 temp32 |= ((uint32_t) data[i]) << ((i % 4) * 8);
637
638 if ((i % 4) == 3) /* 32 bits are full, write them to regs. */
639 REGWRITE32(reg0_off + (i - (i % 4)), temp32);
640 }
641 i--;
642 if ((i % 4) != 3) /* Write remaining data to regs. */
643 REGWRITE32(reg0_off + (i - (i % 4)), temp32);
644}
645
FENG yu ningf041e9b2008-12-15 02:32:11 +0000646/* This function generates OPCODES from or programs OPCODES to ICH according to
647 * the chipset's SPI configuration lock.
FENG yu ningc05a2952008-12-08 18:16:58 +0000648 *
FENG yu ningf041e9b2008-12-15 02:32:11 +0000649 * It should be called before ICH sends any spi command.
FENG yu ningc05a2952008-12-08 18:16:58 +0000650 */
Michael Karchera4448d92010-07-22 18:04:15 +0000651static int ich_init_opcodes(void)
FENG yu ningc05a2952008-12-08 18:16:58 +0000652{
653 int rc = 0;
654 OPCODES *curopcodes_done;
655
656 if (curopcodes)
657 return 0;
658
659 if (ichspi_lock) {
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000660 msg_pdbg("Reading OPCODES... ");
FENG yu ningc05a2952008-12-08 18:16:58 +0000661 curopcodes_done = &O_EXISTING;
FENG yu ningf041e9b2008-12-15 02:32:11 +0000662 rc = generate_opcodes(curopcodes_done);
FENG yu ningc05a2952008-12-08 18:16:58 +0000663 } else {
Sean Nelson316a29f2010-05-07 20:09:04 +0000664 msg_pdbg("Programming OPCODES... ");
FENG yu ningc05a2952008-12-08 18:16:58 +0000665 curopcodes_done = &O_ST_M25P;
Carl-Daniel Hailfinger54ce73a2011-05-03 21:49:41 +0000666 rc = program_opcodes(curopcodes_done, 1);
FENG yu ningc05a2952008-12-08 18:16:58 +0000667 }
668
669 if (rc) {
670 curopcodes = NULL;
Sean Nelson316a29f2010-05-07 20:09:04 +0000671 msg_perr("failed\n");
FENG yu ningc05a2952008-12-08 18:16:58 +0000672 return 1;
673 } else {
674 curopcodes = curopcodes_done;
Sean Nelson316a29f2010-05-07 20:09:04 +0000675 msg_pdbg("done\n");
Stefan Tauner8b391b82011-08-09 01:49:34 +0000676 prettyprint_opcodes(curopcodes);
FENG yu ningc05a2952008-12-08 18:16:58 +0000677 return 0;
678 }
679}
680
Stefan Reinauer43119562008-11-02 19:51:50 +0000681static int ich7_run_opcode(OPCODE op, uint32_t offset,
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000682 uint8_t datalength, uint8_t * data, int maxdata)
Dominik Geyerb46acba2008-05-16 12:55:55 +0000683{
684 int write_cmd = 0;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000685 int timeout;
Stefan Tauner8b391b82011-08-09 01:49:34 +0000686 uint32_t temp32;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000687 uint16_t temp16;
Stefan Reinauer43119562008-11-02 19:51:50 +0000688 uint64_t opmenu;
689 int opcode_index;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000690
691 /* Is it a write command? */
692 if ((op.spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS)
693 || (op.spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS)) {
694 write_cmd = 1;
695 }
696
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000697 timeout = 100 * 60; /* 60 ms are 9.6 million cycles at 16 MHz. */
698 while ((REGREAD16(ICH7_REG_SPIS) & SPIS_SCIP) && --timeout) {
699 programmer_delay(10);
700 }
701 if (!timeout) {
702 msg_perr("Error: SCIP never cleared!\n");
703 return 1;
704 }
705
Stefan Tauner10b3e222011-07-01 00:39:23 +0000706 /* Program offset in flash into SPIA while preserving reserved bits. */
707 temp32 = REGREAD32(ICH7_REG_SPIA) & ~0x00FFFFFF;
708 REGWRITE32(ICH7_REG_SPIA, (offset & 0x00FFFFFF) | temp32);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000709
Stefan Tauner10b3e222011-07-01 00:39:23 +0000710 /* Program data into SPID0 to N */
Stefan Tauner8b391b82011-08-09 01:49:34 +0000711 if (write_cmd && (datalength != 0))
712 ich_fill_data(data, datalength, ICH7_REG_SPID0);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000713
714 /* Assemble SPIS */
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000715 temp16 = REGREAD16(ICH7_REG_SPIS);
716 /* keep reserved bits */
717 temp16 &= SPIS_RESERVED_MASK;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000718 /* clear error status registers */
Stefan Tauner0c1ec452011-06-11 09:53:09 +0000719 temp16 |= (SPIS_CDS | SPIS_FCERR);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000720 REGWRITE16(ICH7_REG_SPIS, temp16);
721
722 /* Assemble SPIC */
723 temp16 = 0;
724
725 if (datalength != 0) {
726 temp16 |= SPIC_DS;
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000727 temp16 |= ((uint32_t) ((datalength - 1) & (maxdata - 1))) << 8;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000728 }
729
730 /* Select opcode */
Stefan Reinauer43119562008-11-02 19:51:50 +0000731 opmenu = REGREAD32(ICH7_REG_OPMENU);
732 opmenu |= ((uint64_t)REGREAD32(ICH7_REG_OPMENU + 4)) << 32;
733
Uwe Hermann7b2969b2009-04-15 10:52:49 +0000734 for (opcode_index = 0; opcode_index < 8; opcode_index++) {
735 if ((opmenu & 0xff) == op.opcode) {
Stefan Reinauer43119562008-11-02 19:51:50 +0000736 break;
737 }
738 opmenu >>= 8;
739 }
740 if (opcode_index == 8) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000741 msg_pdbg("Opcode %x not found.\n", op.opcode);
Stefan Reinauer43119562008-11-02 19:51:50 +0000742 return 1;
743 }
744 temp16 |= ((uint16_t) (opcode_index & 0x07)) << 4;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000745
Michael Karcher136125a2011-04-29 22:11:36 +0000746 timeout = 100 * 60; /* 60 ms are 9.6 million cycles at 16 MHz. */
747 /* Handle Atomic. Atomic commands include three steps:
748 - sending the preop (mainly EWSR or WREN)
749 - sending the main command
750 - waiting for the busy bit (WIP) to be cleared
751 This means the timeout must be sufficient for chip erase
752 of slow high-capacity chips.
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000753 */
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000754 switch (op.atomic) {
755 case 2:
756 /* Select second preop. */
757 temp16 |= SPIC_SPOP;
758 /* And fall through. */
759 case 1:
760 /* Atomic command (preop+op) */
Stefan Reinauera9424d52008-06-27 16:28:34 +0000761 temp16 |= SPIC_ACS;
Michael Karcher136125a2011-04-29 22:11:36 +0000762 timeout = 100 * 1000 * 60; /* 60 seconds */
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000763 break;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000764 }
765
766 /* Start */
767 temp16 |= SPIC_SCGO;
768
769 /* write it */
770 REGWRITE16(ICH7_REG_SPIC, temp16);
771
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000772 /* Wait for Cycle Done Status or Flash Cycle Error. */
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000773 while (((REGREAD16(ICH7_REG_SPIS) & (SPIS_CDS | SPIS_FCERR)) == 0) &&
774 --timeout) {
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000775 programmer_delay(10);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000776 }
777 if (!timeout) {
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000778 msg_perr("timeout, ICH7_REG_SPIS=0x%04x\n",
779 REGREAD16(ICH7_REG_SPIS));
780 return 1;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000781 }
782
Sean Nelson316a29f2010-05-07 20:09:04 +0000783 /* FIXME: make sure we do not needlessly cause transaction errors. */
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000784 temp16 = REGREAD16(ICH7_REG_SPIS);
785 if (temp16 & SPIS_FCERR) {
Stefan Tauner8ed29342011-04-29 23:53:09 +0000786 msg_perr("Transaction error!\n");
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000787 /* keep reserved bits */
788 temp16 &= SPIS_RESERVED_MASK;
789 REGWRITE16(ICH7_REG_SPIS, temp16 | SPIS_FCERR);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000790 return 1;
791 }
792
Stefan Tauner8b391b82011-08-09 01:49:34 +0000793 if ((!write_cmd) && (datalength != 0))
794 ich_read_data(data, datalength, ICH7_REG_SPID0);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000795
796 return 0;
797}
798
Stefan Reinauer43119562008-11-02 19:51:50 +0000799static int ich9_run_opcode(OPCODE op, uint32_t offset,
Stefan Reinauera9424d52008-06-27 16:28:34 +0000800 uint8_t datalength, uint8_t * data)
801{
802 int write_cmd = 0;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000803 int timeout;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000804 uint32_t temp32;
Stefan Reinauer43119562008-11-02 19:51:50 +0000805 uint64_t opmenu;
806 int opcode_index;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000807
808 /* Is it a write command? */
809 if ((op.spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS)
810 || (op.spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS)) {
811 write_cmd = 1;
812 }
813
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000814 timeout = 100 * 60; /* 60 ms are 9.6 million cycles at 16 MHz. */
815 while ((REGREAD8(ICH9_REG_SSFS) & SSFS_SCIP) && --timeout) {
816 programmer_delay(10);
817 }
818 if (!timeout) {
819 msg_perr("Error: SCIP never cleared!\n");
820 return 1;
821 }
822
Stefan Tauner10b3e222011-07-01 00:39:23 +0000823 /* Program offset in flash into FADDR while preserve the reserved bits
824 * and clearing the 25. address bit which is only useable in hwseq. */
825 temp32 = REGREAD32(ICH9_REG_FADDR) & ~0x01FFFFFF;
826 REGWRITE32(ICH9_REG_FADDR, (offset & 0x00FFFFFF) | temp32);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000827
828 /* Program data into FDATA0 to N */
Stefan Tauner8b391b82011-08-09 01:49:34 +0000829 if (write_cmd && (datalength != 0))
830 ich_fill_data(data, datalength, ICH9_REG_FDATA0);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000831
832 /* Assemble SSFS + SSFC */
Helge Wagnera319be12010-08-11 21:06:10 +0000833 temp32 = REGREAD32(ICH9_REG_SSFS);
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000834 /* Keep reserved bits only */
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000835 temp32 &= SSFS_RESERVED_MASK | SSFC_RESERVED_MASK;
Stefan Tauner0c1ec452011-06-11 09:53:09 +0000836 /* Clear cycle done and cycle error status registers */
837 temp32 |= (SSFS_FDONE | SSFS_FCERR);
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000838 REGWRITE32(ICH9_REG_SSFS, temp32);
839
Uwe Hermann4e3d0b32010-03-25 23:18:41 +0000840 /* Use 20 MHz */
Dominik Geyerb46acba2008-05-16 12:55:55 +0000841 temp32 |= SSFC_SCF_20MHZ;
842
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000843 /* Set data byte count (DBC) and data cycle bit (DS) */
Dominik Geyerb46acba2008-05-16 12:55:55 +0000844 if (datalength != 0) {
845 uint32_t datatemp;
846 temp32 |= SSFC_DS;
Stefan Tauner0c1ec452011-06-11 09:53:09 +0000847 datatemp = ((((uint32_t)datalength - 1) << SSFC_DBC_OFF) &
848 SSFC_DBC);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000849 temp32 |= datatemp;
850 }
851
852 /* Select opcode */
Stefan Reinauer43119562008-11-02 19:51:50 +0000853 opmenu = REGREAD32(ICH9_REG_OPMENU);
854 opmenu |= ((uint64_t)REGREAD32(ICH9_REG_OPMENU + 4)) << 32;
855
Uwe Hermann7b2969b2009-04-15 10:52:49 +0000856 for (opcode_index = 0; opcode_index < 8; opcode_index++) {
857 if ((opmenu & 0xff) == op.opcode) {
Stefan Reinauer43119562008-11-02 19:51:50 +0000858 break;
859 }
860 opmenu >>= 8;
861 }
862 if (opcode_index == 8) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000863 msg_pdbg("Opcode %x not found.\n", op.opcode);
Stefan Reinauer43119562008-11-02 19:51:50 +0000864 return 1;
865 }
866 temp32 |= ((uint32_t) (opcode_index & 0x07)) << (8 + 4);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000867
Michael Karcher136125a2011-04-29 22:11:36 +0000868 timeout = 100 * 60; /* 60 ms are 9.6 million cycles at 16 MHz. */
869 /* Handle Atomic. Atomic commands include three steps:
870 - sending the preop (mainly EWSR or WREN)
871 - sending the main command
872 - waiting for the busy bit (WIP) to be cleared
873 This means the timeout must be sufficient for chip erase
874 of slow high-capacity chips.
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000875 */
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000876 switch (op.atomic) {
877 case 2:
878 /* Select second preop. */
879 temp32 |= SSFC_SPOP;
880 /* And fall through. */
881 case 1:
882 /* Atomic command (preop+op) */
Dominik Geyerb46acba2008-05-16 12:55:55 +0000883 temp32 |= SSFC_ACS;
Michael Karcher136125a2011-04-29 22:11:36 +0000884 timeout = 100 * 1000 * 60; /* 60 seconds */
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000885 break;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000886 }
887
888 /* Start */
889 temp32 |= SSFC_SCGO;
890
891 /* write it */
Stefan Reinauera9424d52008-06-27 16:28:34 +0000892 REGWRITE32(ICH9_REG_SSFS, temp32);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000893
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000894 /* Wait for Cycle Done Status or Flash Cycle Error. */
Stefan Tauner0c1ec452011-06-11 09:53:09 +0000895 while (((REGREAD32(ICH9_REG_SSFS) & (SSFS_FDONE | SSFS_FCERR)) == 0) &&
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000896 --timeout) {
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000897 programmer_delay(10);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000898 }
899 if (!timeout) {
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000900 msg_perr("timeout, ICH9_REG_SSFS=0x%08x\n",
901 REGREAD32(ICH9_REG_SSFS));
902 return 1;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000903 }
904
Sean Nelson316a29f2010-05-07 20:09:04 +0000905 /* FIXME make sure we do not needlessly cause transaction errors. */
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000906 temp32 = REGREAD32(ICH9_REG_SSFS);
907 if (temp32 & SSFS_FCERR) {
Stefan Tauner8ed29342011-04-29 23:53:09 +0000908 msg_perr("Transaction error!\n");
Stefan Tauner2a8b2622011-06-11 09:53:16 +0000909 prettyprint_ich9_reg_ssfs(temp32);
910 prettyprint_ich9_reg_ssfc(temp32);
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000911 /* keep reserved bits */
912 temp32 &= SSFS_RESERVED_MASK | SSFC_RESERVED_MASK;
913 /* Clear the transaction error. */
914 REGWRITE32(ICH9_REG_SSFS, temp32 | SSFS_FCERR);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000915 return 1;
916 }
917
Stefan Tauner8b391b82011-08-09 01:49:34 +0000918 if ((!write_cmd) && (datalength != 0))
919 ich_read_data(data, datalength, ICH9_REG_FDATA0);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000920
921 return 0;
922}
923
Stefan Reinauer43119562008-11-02 19:51:50 +0000924static int run_opcode(OPCODE op, uint32_t offset,
Stefan Reinauera9424d52008-06-27 16:28:34 +0000925 uint8_t datalength, uint8_t * data)
926{
Stefan Taunerb2d5f6a2011-06-11 19:44:31 +0000927 /* max_data_read == max_data_write for all Intel/VIA SPI masters */
928 uint8_t maxlength = spi_programmer->max_data_read;
929
930 if (spi_programmer->type == SPI_CONTROLLER_NONE) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000931 msg_perr("%s: unsupported chipset\n", __func__);
Stefan Taunerb2d5f6a2011-06-11 19:44:31 +0000932 return -1;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000933 }
Stefan Reinauera9424d52008-06-27 16:28:34 +0000934
Stefan Taunerb2d5f6a2011-06-11 19:44:31 +0000935 if (datalength > maxlength) {
936 msg_perr("%s: Internal command size error for "
937 "opcode 0x%02x, got datalength=%i, want <=%i\n",
938 __func__, op.opcode, datalength, maxlength);
939 return SPI_INVALID_LENGTH;
940 }
941
Stefan Taunera8d838d2011-11-06 23:51:09 +0000942 switch (ich_generation) {
943 case CHIPSET_ICH7:
Stefan Taunerb2d5f6a2011-06-11 19:44:31 +0000944 return ich7_run_opcode(op, offset, datalength, data, maxlength);
Stefan Taunera8d838d2011-11-06 23:51:09 +0000945 case CHIPSET_ICH8:
946 default: /* Future version might behave the same */
Stefan Taunerb2d5f6a2011-06-11 19:44:31 +0000947 return ich9_run_opcode(op, offset, datalength, data);
Stefan Taunerb2d5f6a2011-06-11 19:44:31 +0000948 }
Stefan Reinauera9424d52008-06-27 16:28:34 +0000949}
950
Michael Karcherb9dbe482011-05-11 17:07:07 +0000951static int ich_spi_send_command(unsigned int writecnt, unsigned int readcnt,
Stefan Reinauer325b5d42008-06-27 15:18:20 +0000952 const unsigned char *writearr, unsigned char *readarr)
Dominik Geyerb46acba2008-05-16 12:55:55 +0000953{
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +0000954 int result;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000955 int opcode_index = -1;
956 const unsigned char cmd = *writearr;
957 OPCODE *opcode;
958 uint32_t addr = 0;
959 uint8_t *data;
960 int count;
961
Dominik Geyerb46acba2008-05-16 12:55:55 +0000962 /* find cmd in opcodes-table */
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000963 opcode_index = find_opcode(curopcodes, cmd);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000964 if (opcode_index == -1) {
Helge Wagner738e2522010-10-05 22:06:05 +0000965 if (!ichspi_lock)
966 opcode_index = reprogram_opcode_on_the_fly(cmd, writecnt, readcnt);
967 if (opcode_index == -1) {
Stefan Tauner355cbfd2011-05-28 02:37:14 +0000968 msg_pdbg("Invalid OPCODE 0x%02x, will not execute.\n",
969 cmd);
Helge Wagner738e2522010-10-05 22:06:05 +0000970 return SPI_INVALID_OPCODE;
971 }
Dominik Geyerb46acba2008-05-16 12:55:55 +0000972 }
973
974 opcode = &(curopcodes->opcode[opcode_index]);
975
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000976 /* The following valid writecnt/readcnt combinations exist:
977 * writecnt = 4, readcnt >= 0
978 * writecnt = 1, readcnt >= 0
979 * writecnt >= 4, readcnt = 0
980 * writecnt >= 1, readcnt = 0
981 * writecnt >= 1 is guaranteed for all commands.
982 */
983 if ((opcode->spi_type == SPI_OPCODE_TYPE_READ_WITH_ADDRESS) &&
984 (writecnt != 4)) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000985 msg_perr("%s: Internal command size error for opcode "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000986 "0x%02x, got writecnt=%i, want =4\n", __func__, cmd,
987 writecnt);
988 return SPI_INVALID_LENGTH;
989 }
990 if ((opcode->spi_type == SPI_OPCODE_TYPE_READ_NO_ADDRESS) &&
991 (writecnt != 1)) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000992 msg_perr("%s: Internal command size error for opcode "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000993 "0x%02x, got writecnt=%i, want =1\n", __func__, cmd,
994 writecnt);
995 return SPI_INVALID_LENGTH;
996 }
997 if ((opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) &&
998 (writecnt < 4)) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000999 msg_perr("%s: Internal command size error for opcode "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001000 "0x%02x, got writecnt=%i, want >=4\n", __func__, cmd,
1001 writecnt);
1002 return SPI_INVALID_LENGTH;
1003 }
1004 if (((opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) ||
1005 (opcode->spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS)) &&
1006 (readcnt)) {
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 readcnt=%i, want =0\n", __func__, cmd,
1009 readcnt);
1010 return SPI_INVALID_LENGTH;
1011 }
1012
Dominik Geyerb46acba2008-05-16 12:55:55 +00001013 /* if opcode-type requires an address */
1014 if (opcode->spi_type == SPI_OPCODE_TYPE_READ_WITH_ADDRESS ||
1015 opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) {
Stefan Reinauer325b5d42008-06-27 15:18:20 +00001016 addr = (writearr[1] << 16) |
1017 (writearr[2] << 8) | (writearr[3] << 0);
Stefan Taunera8d838d2011-11-06 23:51:09 +00001018 if (addr < ichspi_bbar) {
1019 msg_perr("%s: Address 0x%06x below allowed "
1020 "range 0x%06x-0xffffff\n", __func__,
1021 addr, ichspi_bbar);
1022 return SPI_INVALID_ADDRESS;
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +00001023 }
Dominik Geyerb46acba2008-05-16 12:55:55 +00001024 }
Stefan Reinauer325b5d42008-06-27 15:18:20 +00001025
Stefan Taunerb2d5f6a2011-06-11 19:44:31 +00001026 /* Translate read/write array/count.
1027 * The maximum data length is identical for the maximum read length and
1028 * for the maximum write length excluding opcode and address. Opcode and
1029 * address are stored in separate registers, not in the data registers
1030 * and are thus not counted towards data length. The only exception
1031 * applies if the opcode definition (un)intentionally classifies said
1032 * opcode incorrectly as non-address opcode or vice versa. */
Dominik Geyerb46acba2008-05-16 12:55:55 +00001033 if (opcode->spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS) {
Stefan Reinauer325b5d42008-06-27 15:18:20 +00001034 data = (uint8_t *) (writearr + 1);
1035 count = writecnt - 1;
1036 } else if (opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) {
1037 data = (uint8_t *) (writearr + 4);
1038 count = writecnt - 4;
1039 } else {
1040 data = (uint8_t *) readarr;
Dominik Geyerb46acba2008-05-16 12:55:55 +00001041 count = readcnt;
1042 }
Stefan Reinauer325b5d42008-06-27 15:18:20 +00001043
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +00001044 result = run_opcode(*opcode, addr, count, data);
1045 if (result) {
Stefan Tauner8ed29342011-04-29 23:53:09 +00001046 msg_pdbg("Running OPCODE 0x%02x failed ", opcode->opcode);
1047 if ((opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) ||
1048 (opcode->spi_type == SPI_OPCODE_TYPE_READ_WITH_ADDRESS)) {
1049 msg_pdbg("at address 0x%06x ", addr);
1050 }
1051 msg_pdbg("(payload length was %d).\n", count);
1052
1053 /* Print out the data array if it contains data to write.
1054 * Errors are detected before the received data is read back into
1055 * the array so it won't make sense to print it then. */
1056 if ((opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) ||
1057 (opcode->spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS)) {
1058 int i;
1059 msg_pspew("The data was:\n");
1060 for(i=0; i<count; i++){
1061 msg_pspew("%3d: 0x%02x\n", i, data[i]);
1062 }
1063 }
Dominik Geyerb46acba2008-05-16 12:55:55 +00001064 }
1065
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +00001066 return result;
Dominik Geyerb46acba2008-05-16 12:55:55 +00001067}
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +00001068
Stefan Taunerd0c5dc22011-10-20 12:57:14 +00001069#if 0
1070/* Sets FLA in FADDR to (addr & 0x01FFFFFF) without touching other bits. */
1071static void ich_hwseq_set_addr(uint32_t addr)
1072{
1073 uint32_t addr_old = REGREAD32(ICH9_REG_FADDR) & ~0x01FFFFFF;
1074 REGWRITE32(ICH9_REG_FADDR, (addr & 0x01FFFFFF) | addr_old);
1075}
1076
1077/* Sets FADDR.FLA to 'addr' and returns the erase block size in bytes
1078 * of the block containing this address. May return nonsense if the address is
1079 * not valid. The erase block size for a specific address depends on the flash
1080 * partition layout as specified by FPB and the partition properties as defined
1081 * by UVSCC and LVSCC respectively. An alternative to implement this method
1082 * would be by querying FPB and the respective VSCC register directly.
1083 */
1084static uint32_t ich_hwseq_get_erase_block_size(unsigned int addr)
1085{
1086 uint8_t enc_berase;
1087 static const uint32_t const dec_berase[4] = {
1088 256,
1089 4 * 1024,
1090 8 * 1024,
1091 64 * 1024
1092 };
1093
1094 ich_hwseq_set_addr(addr);
1095 enc_berase = (REGREAD16(ICH9_REG_HSFS) & HSFS_BERASE) >>
1096 HSFS_BERASE_OFF;
1097 return dec_berase[enc_berase];
1098}
1099
1100/* Polls for Cycle Done Status, Flash Cycle Error or timeout in 8 us intervals.
1101 Resets all error flags in HSFS.
1102 Returns 0 if the cycle completes successfully without errors within
1103 timeout us, 1 on errors. */
1104static int ich_hwseq_wait_for_cycle_complete(unsigned int timeout,
1105 unsigned int len)
1106{
1107 uint16_t hsfs;
1108 uint32_t addr;
1109
1110 timeout /= 8; /* scale timeout duration to counter */
1111 while ((((hsfs = REGREAD16(ICH9_REG_HSFS)) &
1112 (HSFS_FDONE | HSFS_FCERR)) == 0) &&
1113 --timeout) {
1114 programmer_delay(8);
1115 }
1116 REGWRITE16(ICH9_REG_HSFS, REGREAD16(ICH9_REG_HSFS));
1117 if (!timeout) {
1118 addr = REGREAD32(ICH9_REG_FADDR) & 0x01FFFFFF;
1119 msg_perr("Timeout error between offset 0x%08x and "
1120 "0x%08x + %d (=0x%08x)!\n",
1121 addr, addr, len - 1, addr + len - 1);
1122 prettyprint_ich9_reg_hsfs(hsfs);
1123 prettyprint_ich9_reg_hsfc(REGREAD16(ICH9_REG_HSFC));
1124 return 1;
1125 }
1126
1127 if (hsfs & HSFS_FCERR) {
1128 addr = REGREAD32(ICH9_REG_FADDR) & 0x01FFFFFF;
1129 msg_perr("Transaction error between offset 0x%08x and "
1130 "0x%08x (=0x%08x + %d)!\n",
1131 addr, addr + len - 1, addr, len - 1);
1132 prettyprint_ich9_reg_hsfs(hsfs);
1133 prettyprint_ich9_reg_hsfc(REGREAD16(ICH9_REG_HSFC));
1134 return 1;
1135 }
1136 return 0;
1137}
1138#endif
1139
Michael Karcherb9dbe482011-05-11 17:07:07 +00001140static int ich_spi_send_multicommand(struct spi_command *cmds)
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +00001141{
1142 int ret = 0;
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001143 int i;
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +00001144 int oppos, preoppos;
1145 for (; (cmds->writecnt || cmds->readcnt) && !ret; cmds++) {
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +00001146 if ((cmds + 1)->writecnt || (cmds + 1)->readcnt) {
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001147 /* Next command is valid. */
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +00001148 preoppos = find_preop(curopcodes, cmds->writearr[0]);
1149 oppos = find_opcode(curopcodes, (cmds + 1)->writearr[0]);
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001150 if ((oppos == -1) && (preoppos != -1)) {
1151 /* Current command is listed as preopcode in
1152 * ICH struct OPCODES, but next command is not
1153 * listed as opcode in that struct.
1154 * Check for command sanity, then
1155 * try to reprogram the ICH opcode list.
1156 */
1157 if (find_preop(curopcodes,
1158 (cmds + 1)->writearr[0]) != -1) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001159 msg_perr("%s: Two subsequent "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001160 "preopcodes 0x%02x and 0x%02x, "
1161 "ignoring the first.\n",
1162 __func__, cmds->writearr[0],
1163 (cmds + 1)->writearr[0]);
1164 continue;
1165 }
1166 /* If the chipset is locked down, we'll fail
1167 * during execution of the next command anyway.
1168 * No need to bother with fixups.
1169 */
1170 if (!ichspi_lock) {
Helge Wagner738e2522010-10-05 22:06:05 +00001171 oppos = reprogram_opcode_on_the_fly((cmds + 1)->writearr[0], (cmds + 1)->writecnt, (cmds + 1)->readcnt);
1172 if (oppos == -1)
1173 continue;
1174 curopcodes->opcode[oppos].atomic = preoppos + 1;
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001175 continue;
1176 }
1177 }
1178 if ((oppos != -1) && (preoppos != -1)) {
1179 /* Current command is listed as preopcode in
1180 * ICH struct OPCODES and next command is listed
1181 * as opcode in that struct. Match them up.
1182 */
1183 curopcodes->opcode[oppos].atomic = preoppos + 1;
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +00001184 continue;
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001185 }
1186 /* If none of the above if-statements about oppos or
1187 * preoppos matched, this is a normal opcode.
1188 */
1189 }
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +00001190 ret = ich_spi_send_command(cmds->writecnt, cmds->readcnt,
1191 cmds->writearr, cmds->readarr);
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001192 /* Reset the type of all opcodes to non-atomic. */
1193 for (i = 0; i < 8; i++)
1194 curopcodes->opcode[i].atomic = 0;
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +00001195 }
1196 return ret;
1197}
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001198
Michael Karchera4448d92010-07-22 18:04:15 +00001199#define ICH_BMWAG(x) ((x >> 24) & 0xff)
1200#define ICH_BMRAG(x) ((x >> 16) & 0xff)
1201#define ICH_BRWA(x) ((x >> 8) & 0xff)
1202#define ICH_BRRA(x) ((x >> 0) & 0xff)
1203
Michael Karchera4448d92010-07-22 18:04:15 +00001204static void do_ich9_spi_frap(uint32_t frap, int i)
1205{
Mathias Krausea60faab2011-01-17 07:50:42 +00001206 static const char *const access_names[4] = {
Michael Karchera4448d92010-07-22 18:04:15 +00001207 "locked", "read-only", "write-only", "read-write"
1208 };
Mathias Krausea60faab2011-01-17 07:50:42 +00001209 static const char *const region_names[5] = {
Michael Karchera4448d92010-07-22 18:04:15 +00001210 "Flash Descriptor", "BIOS", "Management Engine",
1211 "Gigabit Ethernet", "Platform Data"
1212 };
1213 uint32_t base, limit;
1214 int rwperms = (((ICH_BRWA(frap) >> i) & 1) << 1) |
1215 (((ICH_BRRA(frap) >> i) & 1) << 0);
Stefan Tauner29c80832011-06-12 08:14:10 +00001216 int offset = ICH9_REG_FREG0 + i * 4;
Michael Karchera4448d92010-07-22 18:04:15 +00001217 uint32_t freg = mmio_readl(ich_spibar + offset);
1218
1219 msg_pdbg("0x%02X: 0x%08x (FREG%i: %s)\n",
1220 offset, freg, i, region_names[i]);
1221
1222 base = ICH_FREG_BASE(freg);
1223 limit = ICH_FREG_LIMIT(freg);
Joshua Roysd172ecd2011-05-26 13:30:51 +00001224 if (base > limit) {
Michael Karchera4448d92010-07-22 18:04:15 +00001225 /* this FREG is disabled */
1226 msg_pdbg("%s region is unused.\n", region_names[i]);
1227 return;
1228 }
1229
Stefan Tauner1e146392011-09-15 23:52:55 +00001230 msg_pdbg("0x%08x-0x%08x is %s\n", base, (limit | 0x0fff),
1231 access_names[rwperms]);
Michael Karchera4448d92010-07-22 18:04:15 +00001232}
1233
Stefan Taunerbf69aaa2011-09-17 21:21:48 +00001234 /* In contrast to FRAP and the master section of the descriptor the bits
1235 * in the PR registers have an inverted meaning. The bits in FRAP
1236 * indicate read and write access _grant_. Here they indicate read
1237 * and write _protection_ respectively. If both bits are 0 the address
1238 * bits are ignored.
1239 */
1240#define ICH_PR_PERMS(pr) (((~((pr) >> PR_RP_OFF) & 1) << 0) | \
1241 ((~((pr) >> PR_WP_OFF) & 1) << 1))
1242
1243static void prettyprint_ich9_reg_pr(int i)
1244{
1245 static const char *const access_names[4] = {
1246 "locked", "read-only", "write-only", "read-write"
1247 };
1248 uint8_t off = ICH9_REG_PR0 + (i * 4);
1249 uint32_t pr = mmio_readl(ich_spibar + off);
1250 int rwperms = ICH_PR_PERMS(pr);
1251
1252 msg_pdbg2("0x%02X: 0x%08x (PR%u", off, pr, i);
1253 if (rwperms != 0x3)
1254 msg_pdbg2(")\n0x%08x-0x%08x is %s\n", ICH_FREG_BASE(pr),
1255 ICH_FREG_LIMIT(pr) | 0x0fff, access_names[rwperms]);
1256 else
1257 msg_pdbg2(", unused)\n");
1258}
1259
Stefan Tauner75da80c2011-09-17 22:21:55 +00001260/* Set/Clear the read and write protection enable bits of PR register @i
1261 * according to @read_prot and @write_prot. */
1262static void ich9_set_pr(int i, int read_prot, int write_prot)
1263{
1264 void *addr = ich_spibar + ICH9_REG_PR0 + (i * 4);
1265 uint32_t old = mmio_readl(addr);
1266 uint32_t new;
1267
1268 msg_gspew("PR%u is 0x%08x", i, old);
1269 new = old & ~((1 << PR_RP_OFF) | (1 << PR_WP_OFF));
1270 if (read_prot)
1271 new |= (1 << PR_RP_OFF);
1272 if (write_prot)
1273 new |= (1 << PR_WP_OFF);
1274 if (old == new) {
1275 msg_gspew(" already.\n");
1276 return;
1277 }
1278 msg_gspew(", trying to set it to 0x%08x ", new);
1279 rmmio_writel(new, addr);
1280 msg_gspew("resulted in 0x%08x.\n", mmio_readl(addr));
1281}
1282
Michael Karcherb9dbe482011-05-11 17:07:07 +00001283static const struct spi_programmer spi_programmer_ich7 = {
1284 .type = SPI_CONTROLLER_ICH7,
1285 .max_data_read = 64,
1286 .max_data_write = 64,
1287 .command = ich_spi_send_command,
1288 .multicommand = ich_spi_send_multicommand,
1289 .read = default_spi_read,
1290 .write_256 = default_spi_write_256,
1291};
1292
1293static const struct spi_programmer spi_programmer_ich9 = {
1294 .type = SPI_CONTROLLER_ICH9,
1295 .max_data_read = 64,
1296 .max_data_write = 64,
1297 .command = ich_spi_send_command,
1298 .multicommand = ich_spi_send_multicommand,
1299 .read = default_spi_read,
1300 .write_256 = default_spi_write_256,
1301};
1302
Michael Karchera4448d92010-07-22 18:04:15 +00001303int ich_init_spi(struct pci_dev *dev, uint32_t base, void *rcrb,
Stefan Taunera8d838d2011-11-06 23:51:09 +00001304 enum ich_chipset ich_gen)
Michael Karchera4448d92010-07-22 18:04:15 +00001305{
1306 int i;
1307 uint8_t old, new;
1308 uint16_t spibar_offset, tmp2;
1309 uint32_t tmp;
Stefan Taunerd0c5dc22011-10-20 12:57:14 +00001310 int desc_valid = 0;
Michael Karchera4448d92010-07-22 18:04:15 +00001311
Stefan Taunera8d838d2011-11-06 23:51:09 +00001312 ich_generation = ich_gen;
1313
Michael Karchera4448d92010-07-22 18:04:15 +00001314 switch (ich_generation) {
Stefan Taunera8d838d2011-11-06 23:51:09 +00001315 case CHIPSET_ICH_UNKNOWN:
1316 return -1;
1317 case CHIPSET_ICH7:
1318 case CHIPSET_ICH8:
Michael Karchera4448d92010-07-22 18:04:15 +00001319 spibar_offset = 0x3020;
1320 break;
Stefan Taunera8d838d2011-11-06 23:51:09 +00001321 case CHIPSET_ICH9:
Michael Karchera4448d92010-07-22 18:04:15 +00001322 default: /* Future version might behave the same */
Michael Karchera4448d92010-07-22 18:04:15 +00001323 spibar_offset = 0x3800;
1324 break;
1325 }
1326
1327 /* SPIBAR is at RCRB+0x3020 for ICH[78] and RCRB+0x3800 for ICH9. */
1328 msg_pdbg("SPIBAR = 0x%x + 0x%04x\n", base, spibar_offset);
1329
1330 /* Assign Virtual Address */
1331 ich_spibar = rcrb + spibar_offset;
1332
Stefan Taunerd0c5dc22011-10-20 12:57:14 +00001333 switch (ich_generation) {
Stefan Taunera8d838d2011-11-06 23:51:09 +00001334 case CHIPSET_ICH7:
Michael Karchera4448d92010-07-22 18:04:15 +00001335 msg_pdbg("0x00: 0x%04x (SPIS)\n",
1336 mmio_readw(ich_spibar + 0));
1337 msg_pdbg("0x02: 0x%04x (SPIC)\n",
1338 mmio_readw(ich_spibar + 2));
1339 msg_pdbg("0x04: 0x%08x (SPIA)\n",
1340 mmio_readl(ich_spibar + 4));
1341 for (i = 0; i < 8; i++) {
1342 int offs;
1343 offs = 8 + (i * 8);
1344 msg_pdbg("0x%02x: 0x%08x (SPID%d)\n", offs,
1345 mmio_readl(ich_spibar + offs), i);
1346 msg_pdbg("0x%02x: 0x%08x (SPID%d+4)\n", offs + 4,
1347 mmio_readl(ich_spibar + offs + 4), i);
1348 }
1349 ichspi_bbar = mmio_readl(ich_spibar + 0x50);
1350 msg_pdbg("0x50: 0x%08x (BBAR)\n",
1351 ichspi_bbar);
1352 msg_pdbg("0x54: 0x%04x (PREOP)\n",
1353 mmio_readw(ich_spibar + 0x54));
1354 msg_pdbg("0x56: 0x%04x (OPTYPE)\n",
1355 mmio_readw(ich_spibar + 0x56));
1356 msg_pdbg("0x58: 0x%08x (OPMENU)\n",
1357 mmio_readl(ich_spibar + 0x58));
1358 msg_pdbg("0x5c: 0x%08x (OPMENU+4)\n",
1359 mmio_readl(ich_spibar + 0x5c));
Stefan Tauner122dd122011-07-24 15:34:56 +00001360 for (i = 0; i < 3; i++) {
Michael Karchera4448d92010-07-22 18:04:15 +00001361 int offs;
1362 offs = 0x60 + (i * 4);
1363 msg_pdbg("0x%02x: 0x%08x (PBR%d)\n", offs,
1364 mmio_readl(ich_spibar + offs), i);
1365 }
Michael Karchera4448d92010-07-22 18:04:15 +00001366 if (mmio_readw(ich_spibar) & (1 << 15)) {
1367 msg_pinfo("WARNING: SPI Configuration Lockdown activated.\n");
1368 ichspi_lock = 1;
1369 }
Stefan Taunera8d838d2011-11-06 23:51:09 +00001370 ich_set_bbar(0);
Stefan Taunerd0c5dc22011-10-20 12:57:14 +00001371 register_spi_programmer(&spi_programmer_ich7);
Michael Karchera4448d92010-07-22 18:04:15 +00001372 ich_init_opcodes();
1373 break;
Stefan Taunera8d838d2011-11-06 23:51:09 +00001374 case CHIPSET_ICH8:
Stefan Taunerd0c5dc22011-10-20 12:57:14 +00001375 default: /* Future version might behave the same */
Stefan Tauner29c80832011-06-12 08:14:10 +00001376 tmp2 = mmio_readw(ich_spibar + ICH9_REG_HSFS);
Michael Karchera4448d92010-07-22 18:04:15 +00001377 msg_pdbg("0x04: 0x%04x (HSFS)\n", tmp2);
Stefan Tauner55206942011-06-11 09:53:22 +00001378 prettyprint_ich9_reg_hsfs(tmp2);
Stefan Tauner29c80832011-06-12 08:14:10 +00001379 if (tmp2 & HSFS_FLOCKDN) {
Stefan Tauner55206942011-06-11 09:53:22 +00001380 msg_pinfo("WARNING: SPI Configuration Lockdown activated.\n");
1381 ichspi_lock = 1;
1382 }
Stefan Tauner1e146392011-09-15 23:52:55 +00001383 if (tmp2 & HSFS_FDV)
Stefan Taunerd0c5dc22011-10-20 12:57:14 +00001384 desc_valid = 1;
1385 if (!(tmp2 & HSFS_FDOPSS) && desc_valid)
Stefan Taunere3185c02011-09-18 15:15:31 +00001386 msg_pinfo("The Flash Descriptor Security Override "
1387 "Strap-Pin is set. Restrictions implied\n"
1388 "by the FRAP and FREG registers are NOT in "
1389 "effect. Please note that Protected\n"
1390 "Range (PR) restrictions still apply.\n");
Stefan Tauner55206942011-06-11 09:53:22 +00001391
Stefan Tauner29c80832011-06-12 08:14:10 +00001392 tmp2 = mmio_readw(ich_spibar + ICH9_REG_HSFC);
Stefan Tauner55206942011-06-11 09:53:22 +00001393 msg_pdbg("0x06: 0x%04x (HSFC)\n", tmp2);
1394 prettyprint_ich9_reg_hsfc(tmp2);
Michael Karchera4448d92010-07-22 18:04:15 +00001395
Stefan Tauner5ffe65b2011-07-07 04:10:57 +00001396 tmp = mmio_readl(ich_spibar + ICH9_REG_FADDR);
1397 msg_pdbg("0x08: 0x%08x (FADDR)\n", tmp);
Stefan Tauner29c80832011-06-12 08:14:10 +00001398 tmp = mmio_readl(ich_spibar + ICH9_REG_FRAP);
Michael Karchera4448d92010-07-22 18:04:15 +00001399 msg_pdbg("0x50: 0x%08x (FRAP)\n", tmp);
1400 msg_pdbg("BMWAG 0x%02x, ", ICH_BMWAG(tmp));
1401 msg_pdbg("BMRAG 0x%02x, ", ICH_BMRAG(tmp));
1402 msg_pdbg("BRWA 0x%02x, ", ICH_BRWA(tmp));
1403 msg_pdbg("BRRA 0x%02x\n", ICH_BRRA(tmp));
1404
1405 /* print out the FREGx registers along with FRAP access bits */
1406 for(i = 0; i < 5; i++)
1407 do_ich9_spi_frap(tmp, i);
1408
Stefan Tauner75da80c2011-09-17 22:21:55 +00001409 /* try to disable PR locks before printing them */
1410 if (!ichspi_lock)
1411 for(i = 0; i < 5; i++)
1412 ich9_set_pr(i, 0, 0);
Stefan Taunerbf69aaa2011-09-17 21:21:48 +00001413 for(i = 0; i < 5; i++)
1414 prettyprint_ich9_reg_pr(i);
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +00001415
Stefan Tauner29c80832011-06-12 08:14:10 +00001416 tmp = mmio_readl(ich_spibar + ICH9_REG_SSFS);
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +00001417 msg_pdbg("0x90: 0x%02x (SSFS)\n", tmp & 0xff);
Stefan Tauner2a8b2622011-06-11 09:53:16 +00001418 prettyprint_ich9_reg_ssfs(tmp);
Stefan Tauner29c80832011-06-12 08:14:10 +00001419 if (tmp & SSFS_FCERR) {
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +00001420 msg_pdbg("Clearing SSFS.FCERR\n");
Stefan Tauner29c80832011-06-12 08:14:10 +00001421 mmio_writeb(SSFS_FCERR, ich_spibar + ICH9_REG_SSFS);
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +00001422 }
Stefan Tauner2a8b2622011-06-11 09:53:16 +00001423 msg_pdbg("0x91: 0x%06x (SSFC)\n", tmp >> 8);
1424 prettyprint_ich9_reg_ssfc(tmp);
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +00001425
Michael Karchera4448d92010-07-22 18:04:15 +00001426 msg_pdbg("0x94: 0x%04x (PREOP)\n",
Stefan Tauner29c80832011-06-12 08:14:10 +00001427 mmio_readw(ich_spibar + ICH9_REG_PREOP));
Michael Karchera4448d92010-07-22 18:04:15 +00001428 msg_pdbg("0x96: 0x%04x (OPTYPE)\n",
Stefan Tauner29c80832011-06-12 08:14:10 +00001429 mmio_readw(ich_spibar + ICH9_REG_OPTYPE));
Michael Karchera4448d92010-07-22 18:04:15 +00001430 msg_pdbg("0x98: 0x%08x (OPMENU)\n",
Stefan Tauner29c80832011-06-12 08:14:10 +00001431 mmio_readl(ich_spibar + ICH9_REG_OPMENU));
Michael Karchera4448d92010-07-22 18:04:15 +00001432 msg_pdbg("0x9C: 0x%08x (OPMENU+4)\n",
Stefan Tauner29c80832011-06-12 08:14:10 +00001433 mmio_readl(ich_spibar + ICH9_REG_OPMENU + 4));
Stefan Taunera8d838d2011-11-06 23:51:09 +00001434 if (ich_generation == CHIPSET_ICH8) {
Stefan Tauner1e146392011-09-15 23:52:55 +00001435 tmp = mmio_readl(ich_spibar + ICH8_REG_VSCC);
1436 msg_pdbg("0xC1: 0x%08x (VSCC)\n", tmp);
1437 msg_pdbg("VSCC: ");
1438 prettyprint_ich_reg_vscc(tmp, MSG_DEBUG);
1439 } else {
1440 ichspi_bbar = mmio_readl(ich_spibar + ICH9_REG_BBAR);
1441 msg_pdbg("0xA0: 0x%08x (BBAR)\n",
1442 ichspi_bbar);
Stefan Taunerbd649e42011-07-01 00:39:16 +00001443
Stefan Tauner1e146392011-09-15 23:52:55 +00001444 tmp = mmio_readl(ich_spibar + ICH9_REG_LVSCC);
1445 msg_pdbg("0xC4: 0x%08x (LVSCC)\n", tmp);
1446 msg_pdbg("LVSCC: ");
1447 prettyprint_ich_reg_vscc(tmp, MSG_DEBUG);
1448
1449 tmp = mmio_readl(ich_spibar + ICH9_REG_UVSCC);
1450 msg_pdbg("0xC8: 0x%08x (UVSCC)\n", tmp);
1451 msg_pdbg("UVSCC: ");
1452 prettyprint_ich_reg_vscc(tmp, MSG_DEBUG);
1453
1454 tmp = mmio_readl(ich_spibar + ICH9_REG_FPB);
1455 msg_pdbg("0xD0: 0x%08x (FPB)\n", tmp);
Stefan Taunera8d838d2011-11-06 23:51:09 +00001456 ich_set_bbar(0);
Stefan Tauner1e146392011-09-15 23:52:55 +00001457 }
1458
1459 msg_pdbg("\n");
Stefan Taunerd0c5dc22011-10-20 12:57:14 +00001460 if (desc_valid) {
Stefan Tauner1e146392011-09-15 23:52:55 +00001461 struct ich_descriptors desc = {{ 0 }};
1462 if (read_ich_descriptors_via_fdo(ich_spibar, &desc) ==
1463 ICH_RET_OK)
1464 prettyprint_ich_descriptors(CHIPSET_ICH_UNKNOWN,
1465 &desc);
1466 }
Stefan Taunerd0c5dc22011-10-20 12:57:14 +00001467 register_spi_programmer(&spi_programmer_ich9);
Michael Karchera4448d92010-07-22 18:04:15 +00001468 ich_init_opcodes();
1469 break;
Michael Karchera4448d92010-07-22 18:04:15 +00001470 }
1471
1472 old = pci_read_byte(dev, 0xdc);
1473 msg_pdbg("SPI Read Configuration: ");
1474 new = (old >> 2) & 0x3;
1475 switch (new) {
1476 case 0:
1477 case 1:
1478 case 2:
1479 msg_pdbg("prefetching %sabled, caching %sabled, ",
1480 (new & 0x2) ? "en" : "dis",
1481 (new & 0x1) ? "dis" : "en");
1482 break;
1483 default:
1484 msg_pdbg("invalid prefetching/caching settings, ");
1485 break;
1486 }
1487 return 0;
1488}
1489
Michael Karcherb9dbe482011-05-11 17:07:07 +00001490static const struct spi_programmer spi_programmer_via = {
1491 .type = SPI_CONTROLLER_VIA,
1492 .max_data_read = 16,
1493 .max_data_write = 16,
1494 .command = ich_spi_send_command,
1495 .multicommand = ich_spi_send_multicommand,
1496 .read = default_spi_read,
1497 .write_256 = default_spi_write_256,
1498};
1499
Michael Karchera4448d92010-07-22 18:04:15 +00001500int via_init_spi(struct pci_dev *dev)
1501{
1502 uint32_t mmio_base;
Carl-Daniel Hailfinger841d6312010-11-24 23:37:22 +00001503 int i;
Michael Karchera4448d92010-07-22 18:04:15 +00001504
1505 mmio_base = (pci_read_long(dev, 0xbc)) << 8;
1506 msg_pdbg("MMIO base at = 0x%x\n", mmio_base);
1507 ich_spibar = physmap("VT8237S MMIO registers", mmio_base, 0x70);
1508
Michael Karchera4448d92010-07-22 18:04:15 +00001509 /* Not sure if it speaks all these bus protocols. */
Carl-Daniel Hailfinger1a227952011-07-27 07:13:06 +00001510 buses_supported = BUS_LPC | BUS_FWH;
Stefan Taunera8d838d2011-11-06 23:51:09 +00001511 ich_generation = CHIPSET_ICH7;
Michael Karcherb9dbe482011-05-11 17:07:07 +00001512 register_spi_programmer(&spi_programmer_via);
Carl-Daniel Hailfinger841d6312010-11-24 23:37:22 +00001513
1514 msg_pdbg("0x00: 0x%04x (SPIS)\n", mmio_readw(ich_spibar + 0));
1515 msg_pdbg("0x02: 0x%04x (SPIC)\n", mmio_readw(ich_spibar + 2));
1516 msg_pdbg("0x04: 0x%08x (SPIA)\n", mmio_readl(ich_spibar + 4));
1517 for (i = 0; i < 2; i++) {
1518 int offs;
1519 offs = 8 + (i * 8);
1520 msg_pdbg("0x%02x: 0x%08x (SPID%d)\n", offs,
1521 mmio_readl(ich_spibar + offs), i);
1522 msg_pdbg("0x%02x: 0x%08x (SPID%d+4)\n", offs + 4,
1523 mmio_readl(ich_spibar + offs + 4), i);
1524 }
1525 ichspi_bbar = mmio_readl(ich_spibar + 0x50);
1526 msg_pdbg("0x50: 0x%08x (BBAR)\n", ichspi_bbar);
1527 msg_pdbg("0x54: 0x%04x (PREOP)\n", mmio_readw(ich_spibar + 0x54));
1528 msg_pdbg("0x56: 0x%04x (OPTYPE)\n", mmio_readw(ich_spibar + 0x56));
1529 msg_pdbg("0x58: 0x%08x (OPMENU)\n", mmio_readl(ich_spibar + 0x58));
1530 msg_pdbg("0x5c: 0x%08x (OPMENU+4)\n", mmio_readl(ich_spibar + 0x5c));
1531 for (i = 0; i < 3; i++) {
1532 int offs;
1533 offs = 0x60 + (i * 4);
1534 msg_pdbg("0x%02x: 0x%08x (PBR%d)\n", offs,
1535 mmio_readl(ich_spibar + offs), i);
1536 }
1537 msg_pdbg("0x6c: 0x%04x (CLOCK/DEBUG)\n",
1538 mmio_readw(ich_spibar + 0x6c));
1539 if (mmio_readw(ich_spibar) & (1 << 15)) {
1540 msg_pinfo("WARNING: SPI Configuration Lockdown activated.\n");
1541 ichspi_lock = 1;
1542 }
1543
Stefan Taunera8d838d2011-11-06 23:51:09 +00001544 ich_set_bbar(0);
Michael Karchera4448d92010-07-22 18:04:15 +00001545 ich_init_opcodes();
1546
1547 return 0;
1548}
1549
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001550#endif