blob: 1989a877e15b9dd50915634fbc9acc410ce64d3d [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.
Dominik Geyerb46acba2008-05-16 12:55:55 +000020 */
21
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +000022#if defined(__i386__) || defined(__x86_64__)
23
Dominik Geyerb46acba2008-05-16 12:55:55 +000024#include <string.h>
Stefan Taunerd0c5dc22011-10-20 12:57:14 +000025#include <stdlib.h>
Dominik Geyerb46acba2008-05-16 12:55:55 +000026#include "flash.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000027#include "programmer.h"
Patrick Georgi32508eb2012-07-20 20:35:14 +000028#include "hwaccess.h"
Dominik Geyerb46acba2008-05-16 12:55:55 +000029#include "spi.h"
Stefan Tauner1e146392011-09-15 23:52:55 +000030#include "ich_descriptors.h"
Dominik Geyerb46acba2008-05-16 12:55:55 +000031
Nico Huberd54e4f42017-03-23 23:45:47 +010032/* Sunrise Point */
33
34/* Added HSFS Status bits */
35#define HSFS_WRSDIS_OFF 11 /* 11: Flash Configuration Lock-Down */
36#define HSFS_WRSDIS (0x1 << HSFS_WRSDIS_OFF)
37#define HSFS_PRR34_LOCKDN_OFF 12 /* 12: PRR3 PRR4 Lock-Down */
38#define HSFS_PRR34_LOCKDN (0x1 << HSFS_PRR34_LOCKDN_OFF)
39/* HSFS_BERASE vanished */
40
41/*
42 * HSFC and HSFS 16-bit registers are combined into the 32-bit
43 * BIOS_HSFSTS_CTL register in the Sunrise Point datasheet,
44 * however we still treat them separately in order to reuse code.
45 */
46
47/* Changed HSFC Control bits */
48#define PCH100_HSFC_FCYCLE_OFF (17 - 16) /* 1-4: FLASH Cycle */
49#define PCH100_HSFC_FCYCLE (0xf << PCH100_HSFC_FCYCLE_OFF)
50/* New HSFC Control bit */
51#define HSFC_WET_OFF (21 - 16) /* 5: Write Enable Type */
52#define HSFC_WET (0x1 << HSFC_WET_OFF)
53
54#define PCH100_FADDR_FLA 0x07ffffff
55
56#define PCH100_REG_DLOCK 0x0c /* 32 Bits Discrete Lock Bits */
57#define DLOCK_BMWAG_LOCKDN_OFF 0
58#define DLOCK_BMWAG_LOCKDN (0x1 << DLOCK_BMWAG_LOCKDN_OFF)
59#define DLOCK_BMRAG_LOCKDN_OFF 1
60#define DLOCK_BMRAG_LOCKDN (0x1 << DLOCK_BMRAG_LOCKDN_OFF)
61#define DLOCK_SBMWAG_LOCKDN_OFF 2
62#define DLOCK_SBMWAG_LOCKDN (0x1 << DLOCK_SBMWAG_LOCKDN_OFF)
63#define DLOCK_SBMRAG_LOCKDN_OFF 3
64#define DLOCK_SBMRAG_LOCKDN (0x1 << DLOCK_SBMRAG_LOCKDN_OFF)
65#define DLOCK_PR0_LOCKDN_OFF 8
66#define DLOCK_PR0_LOCKDN (0x1 << DLOCK_PR0_LOCKDN_OFF)
67#define DLOCK_PR1_LOCKDN_OFF 9
68#define DLOCK_PR1_LOCKDN (0x1 << DLOCK_PR1_LOCKDN_OFF)
69#define DLOCK_PR2_LOCKDN_OFF 10
70#define DLOCK_PR2_LOCKDN (0x1 << DLOCK_PR2_LOCKDN_OFF)
71#define DLOCK_PR3_LOCKDN_OFF 11
72#define DLOCK_PR3_LOCKDN (0x1 << DLOCK_PR3_LOCKDN_OFF)
73#define DLOCK_PR4_LOCKDN_OFF 12
74#define DLOCK_PR4_LOCKDN (0x1 << DLOCK_PR4_LOCKDN_OFF)
75#define DLOCK_SSEQ_LOCKDN_OFF 16
76#define DLOCK_SSEQ_LOCKDN (0x1 << DLOCK_SSEQ_LOCKDN_OFF)
77
78#define PCH100_REG_FPR0 0x84 /* 32 Bits Protected Range 0 */
79#define PCH100_REG_GPR0 0x98 /* 32 Bits Global Protected Range 0 */
80
81#define PCH100_REG_SSFSC 0xA0 /* 32 Bits Status (8) + Control (24) */
82#define PCH100_REG_PREOP 0xA4 /* 16 Bits */
83#define PCH100_REG_OPTYPE 0xA6 /* 16 Bits */
84#define PCH100_REG_OPMENU 0xA8 /* 64 Bits */
85
Stefan Reinauera9424d52008-06-27 16:28:34 +000086/* ICH9 controller register definition */
Stefan Tauner55206942011-06-11 09:53:22 +000087#define ICH9_REG_HSFS 0x04 /* 16 Bits Hardware Sequencing Flash Status */
88#define HSFS_FDONE_OFF 0 /* 0: Flash Cycle Done */
89#define HSFS_FDONE (0x1 << HSFS_FDONE_OFF)
90#define HSFS_FCERR_OFF 1 /* 1: Flash Cycle Error */
91#define HSFS_FCERR (0x1 << HSFS_FCERR_OFF)
92#define HSFS_AEL_OFF 2 /* 2: Access Error Log */
93#define HSFS_AEL (0x1 << HSFS_AEL_OFF)
94#define HSFS_BERASE_OFF 3 /* 3-4: Block/Sector Erase Size */
95#define HSFS_BERASE (0x3 << HSFS_BERASE_OFF)
96#define HSFS_SCIP_OFF 5 /* 5: SPI Cycle In Progress */
97#define HSFS_SCIP (0x1 << HSFS_SCIP_OFF)
98 /* 6-12: reserved */
99#define HSFS_FDOPSS_OFF 13 /* 13: Flash Descriptor Override Pin-Strap Status */
100#define HSFS_FDOPSS (0x1 << HSFS_FDOPSS_OFF)
101#define HSFS_FDV_OFF 14 /* 14: Flash Descriptor Valid */
102#define HSFS_FDV (0x1 << HSFS_FDV_OFF)
103#define HSFS_FLOCKDN_OFF 15 /* 15: Flash Configuration Lock-Down */
104#define HSFS_FLOCKDN (0x1 << HSFS_FLOCKDN_OFF)
105
106#define ICH9_REG_HSFC 0x06 /* 16 Bits Hardware Sequencing Flash Control */
107#define HSFC_FGO_OFF 0 /* 0: Flash Cycle Go */
108#define HSFC_FGO (0x1 << HSFC_FGO_OFF)
109#define HSFC_FCYCLE_OFF 1 /* 1-2: FLASH Cycle */
110#define HSFC_FCYCLE (0x3 << HSFC_FCYCLE_OFF)
111 /* 3-7: reserved */
112#define HSFC_FDBC_OFF 8 /* 8-13: Flash Data Byte Count */
113#define HSFC_FDBC (0x3f << HSFC_FDBC_OFF)
114 /* 14: reserved */
115#define HSFC_SME_OFF 15 /* 15: SPI SMI# Enable */
116#define HSFC_SME (0x1 << HSFC_SME_OFF)
117
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000118#define ICH9_REG_FADDR 0x08 /* 32 Bits */
Nico Huberd54e4f42017-03-23 23:45:47 +0100119#define ICH9_FADDR_FLA 0x01ffffff
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000120#define ICH9_REG_FDATA0 0x10 /* 64 Bytes */
Stefan Reinauera9424d52008-06-27 16:28:34 +0000121
Stefan Tauner29c80832011-06-12 08:14:10 +0000122#define ICH9_REG_FRAP 0x50 /* 32 Bytes Flash Region Access Permissions */
123#define ICH9_REG_FREG0 0x54 /* 32 Bytes Flash Region 0 */
124
125#define ICH9_REG_PR0 0x74 /* 32 Bytes Protected Range 0 */
Stefan Taunerbf69aaa2011-09-17 21:21:48 +0000126#define PR_WP_OFF 31 /* 31: write protection enable */
127#define PR_RP_OFF 15 /* 15: read protection enable */
Stefan Tauner29c80832011-06-12 08:14:10 +0000128
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000129#define ICH9_REG_SSFS 0x90 /* 08 Bits */
Stefan Tauner0c1ec452011-06-11 09:53:09 +0000130#define SSFS_SCIP_OFF 0 /* SPI Cycle In Progress */
131#define SSFS_SCIP (0x1 << SSFS_SCIP_OFF)
132#define SSFS_FDONE_OFF 2 /* Cycle Done Status */
133#define SSFS_FDONE (0x1 << SSFS_FDONE_OFF)
134#define SSFS_FCERR_OFF 3 /* Flash Cycle Error */
135#define SSFS_FCERR (0x1 << SSFS_FCERR_OFF)
136#define SSFS_AEL_OFF 4 /* Access Error Log */
137#define SSFS_AEL (0x1 << SSFS_AEL_OFF)
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000138/* The following bits are reserved in SSFS: 1,5-7. */
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000139#define SSFS_RESERVED_MASK 0x000000e2
Stefan Reinauera9424d52008-06-27 16:28:34 +0000140
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000141#define ICH9_REG_SSFC 0x91 /* 24 Bits */
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000142/* We combine SSFS and SSFC to one 32-bit word,
Stefan Tauner0c1ec452011-06-11 09:53:09 +0000143 * therefore SSFC bits are off by 8. */
144 /* 0: reserved */
145#define SSFC_SCGO_OFF (1 + 8) /* 1: SPI Cycle Go */
146#define SSFC_SCGO (0x1 << SSFC_SCGO_OFF)
147#define SSFC_ACS_OFF (2 + 8) /* 2: Atomic Cycle Sequence */
148#define SSFC_ACS (0x1 << SSFC_ACS_OFF)
149#define SSFC_SPOP_OFF (3 + 8) /* 3: Sequence Prefix Opcode Pointer */
150#define SSFC_SPOP (0x1 << SSFC_SPOP_OFF)
151#define SSFC_COP_OFF (4 + 8) /* 4-6: Cycle Opcode Pointer */
152#define SSFC_COP (0x7 << SSFC_COP_OFF)
153 /* 7: reserved */
154#define SSFC_DBC_OFF (8 + 8) /* 8-13: Data Byte Count */
155#define SSFC_DBC (0x3f << SSFC_DBC_OFF)
156#define SSFC_DS_OFF (14 + 8) /* 14: Data Cycle */
157#define SSFC_DS (0x1 << SSFC_DS_OFF)
158#define SSFC_SME_OFF (15 + 8) /* 15: SPI SMI# Enable */
159#define SSFC_SME (0x1 << SSFC_SME_OFF)
160#define SSFC_SCF_OFF (16 + 8) /* 16-18: SPI Cycle Frequency */
161#define SSFC_SCF (0x7 << SSFC_SCF_OFF)
162#define SSFC_SCF_20MHZ 0x00000000
163#define SSFC_SCF_33MHZ 0x01000000
164 /* 19-23: reserved */
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000165#define SSFC_RESERVED_MASK 0xf8008100
Stefan Reinauera9424d52008-06-27 16:28:34 +0000166
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000167#define ICH9_REG_PREOP 0x94 /* 16 Bits */
168#define ICH9_REG_OPTYPE 0x96 /* 16 Bits */
169#define ICH9_REG_OPMENU 0x98 /* 64 Bits */
Dominik Geyerb46acba2008-05-16 12:55:55 +0000170
Stefan Tauner29c80832011-06-12 08:14:10 +0000171#define ICH9_REG_BBAR 0xA0 /* 32 Bits BIOS Base Address Configuration */
172#define BBAR_MASK 0x00ffff00 /* 8-23: Bottom of System Flash */
173
Stefan Tauner1e146392011-09-15 23:52:55 +0000174#define ICH8_REG_VSCC 0xC1 /* 32 Bits Vendor Specific Component Capabilities */
175#define ICH9_REG_LVSCC 0xC4 /* 32 Bits Host Lower Vendor Specific Component Capabilities */
176#define ICH9_REG_UVSCC 0xC8 /* 32 Bits Host Upper Vendor Specific Component Capabilities */
177/* The individual fields of the VSCC registers are defined in the file
178 * ich_descriptors.h. The reason is that the same layout is also used in the
179 * flash descriptor to define the properties of the different flash chips
180 * supported. The BIOS (or the ME?) is responsible to populate the ICH registers
181 * with the information from the descriptor on startup depending on the actual
182 * chip(s) detected. */
183
Stefan Taunerbd649e42011-07-01 00:39:16 +0000184#define ICH9_REG_FPB 0xD0 /* 32 Bits Flash Partition Boundary */
185#define FPB_FPBA_OFF 0 /* 0-12: Block/Sector Erase Size */
186#define FPB_FPBA (0x1FFF << FPB_FPBA_OFF)
187
Dominik Geyerb46acba2008-05-16 12:55:55 +0000188// ICH9R SPI commands
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000189#define SPI_OPCODE_TYPE_READ_NO_ADDRESS 0
190#define SPI_OPCODE_TYPE_WRITE_NO_ADDRESS 1
191#define SPI_OPCODE_TYPE_READ_WITH_ADDRESS 2
192#define SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS 3
Dominik Geyerb46acba2008-05-16 12:55:55 +0000193
Stefan Reinauera9424d52008-06-27 16:28:34 +0000194// ICH7 registers
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000195#define ICH7_REG_SPIS 0x00 /* 16 Bits */
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000196#define SPIS_SCIP 0x0001
197#define SPIS_GRANT 0x0002
198#define SPIS_CDS 0x0004
199#define SPIS_FCERR 0x0008
200#define SPIS_RESERVED_MASK 0x7ff0
Stefan Reinauera9424d52008-06-27 16:28:34 +0000201
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000202/* VIA SPI is compatible with ICH7, but maxdata
203 to transfer is 16 bytes.
204
205 DATA byte count on ICH7 is 8:13, on VIA 8:11
206
207 bit 12 is port select CS0 CS1
208 bit 13 is FAST READ enable
209 bit 7 is used with fast read and one shot controls CS de-assert?
210*/
211
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000212#define ICH7_REG_SPIC 0x02 /* 16 Bits */
213#define SPIC_SCGO 0x0002
214#define SPIC_ACS 0x0004
215#define SPIC_SPOP 0x0008
216#define SPIC_DS 0x4000
Stefan Reinauera9424d52008-06-27 16:28:34 +0000217
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000218#define ICH7_REG_SPIA 0x04 /* 32 Bits */
219#define ICH7_REG_SPID0 0x08 /* 64 Bytes */
220#define ICH7_REG_PREOP 0x54 /* 16 Bits */
221#define ICH7_REG_OPTYPE 0x56 /* 16 Bits */
222#define ICH7_REG_OPMENU 0x58 /* 64 Bits */
Stefan Reinauera9424d52008-06-27 16:28:34 +0000223
FENG yu ningc05a2952008-12-08 18:16:58 +0000224/* ICH SPI configuration lock-down. May be set during chipset enabling. */
Michael Karchera4448d92010-07-22 18:04:15 +0000225static int ichspi_lock = 0;
FENG yu ningc05a2952008-12-08 18:16:58 +0000226
Stefan Taunera8d838d2011-11-06 23:51:09 +0000227static enum ich_chipset ich_generation = CHIPSET_ICH_UNKNOWN;
Nico Hubered098d62017-04-21 23:47:08 +0200228static uint32_t ichspi_bbar;
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000229
Michael Karchera4448d92010-07-22 18:04:15 +0000230static void *ich_spibar = NULL;
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000231
Dominik Geyerb46acba2008-05-16 12:55:55 +0000232typedef struct _OPCODE {
233 uint8_t opcode; //This commands spi opcode
234 uint8_t spi_type; //This commands spi type
235 uint8_t atomic; //Use preop: (0: none, 1: preop0, 2: preop1
236} OPCODE;
237
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000238/* Suggested opcode definition:
Dominik Geyerb46acba2008-05-16 12:55:55 +0000239 * Preop 1: Write Enable
240 * Preop 2: Write Status register enable
241 *
242 * OP 0: Write address
243 * OP 1: Read Address
244 * OP 2: ERASE block
245 * OP 3: Read Status register
246 * OP 4: Read ID
247 * OP 5: Write Status register
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000248 * OP 6: chip private (read JEDEC id)
Dominik Geyerb46acba2008-05-16 12:55:55 +0000249 * OP 7: Chip erase
250 */
251typedef struct _OPCODES {
252 uint8_t preop[2];
253 OPCODE opcode[8];
254} OPCODES;
255
Stefan Reinauer325b5d42008-06-27 15:18:20 +0000256static OPCODES *curopcodes = NULL;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000257
258/* HW access functions */
Uwe Hermann09e04f72009-05-16 22:36:00 +0000259static uint32_t REGREAD32(int X)
Dominik Geyerb46acba2008-05-16 12:55:55 +0000260{
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000261 return mmio_readl(ich_spibar + X);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000262}
263
Uwe Hermann09e04f72009-05-16 22:36:00 +0000264static uint16_t REGREAD16(int X)
Stefan Reinauera9424d52008-06-27 16:28:34 +0000265{
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000266 return mmio_readw(ich_spibar + X);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000267}
268
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000269static uint16_t REGREAD8(int X)
270{
271 return mmio_readb(ich_spibar + X);
272}
273
Stefan Taunerccd92a12011-07-01 00:39:01 +0000274#define REGWRITE32(off, val) mmio_writel(val, ich_spibar+(off))
275#define REGWRITE16(off, val) mmio_writew(val, ich_spibar+(off))
276#define REGWRITE8(off, val) mmio_writeb(val, ich_spibar+(off))
Dominik Geyerb46acba2008-05-16 12:55:55 +0000277
Dominik Geyerb46acba2008-05-16 12:55:55 +0000278/* Common SPI functions */
Uwe Hermann09e04f72009-05-16 22:36:00 +0000279static int find_opcode(OPCODES *op, uint8_t opcode);
280static int find_preop(OPCODES *op, uint8_t preop);
FENG yu ningf041e9b2008-12-15 02:32:11 +0000281static int generate_opcodes(OPCODES * op);
Carl-Daniel Hailfinger54ce73a2011-05-03 21:49:41 +0000282static int program_opcodes(OPCODES *op, int enable_undo);
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000283static int run_opcode(const struct flashctx *flash, OPCODE op, uint32_t offset,
Stefan Reinauer325b5d42008-06-27 15:18:20 +0000284 uint8_t datalength, uint8_t * data);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000285
FENG yu ningf041e9b2008-12-15 02:32:11 +0000286/* for pairing opcodes with their required preop */
287struct preop_opcode_pair {
288 uint8_t preop;
289 uint8_t opcode;
290};
291
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000292/* List of opcodes which need preopcodes and matching preopcodes. Unused. */
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000293const struct preop_opcode_pair pops[] = {
FENG yu ningf041e9b2008-12-15 02:32:11 +0000294 {JEDEC_WREN, JEDEC_BYTE_PROGRAM},
295 {JEDEC_WREN, JEDEC_SE}, /* sector erase */
296 {JEDEC_WREN, JEDEC_BE_52}, /* block erase */
297 {JEDEC_WREN, JEDEC_BE_D8}, /* block erase */
298 {JEDEC_WREN, JEDEC_CE_60}, /* chip erase */
299 {JEDEC_WREN, JEDEC_CE_C7}, /* chip erase */
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000300 /* FIXME: WRSR requires either EWSR or WREN depending on chip type. */
301 {JEDEC_WREN, JEDEC_WRSR},
FENG yu ningf041e9b2008-12-15 02:32:11 +0000302 {JEDEC_EWSR, JEDEC_WRSR},
303 {0,}
304};
305
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000306/* Reasonable default configuration. Needs ad-hoc modifications if we
307 * encounter unlisted opcodes. Fun.
308 */
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000309static OPCODES O_ST_M25P = {
Dominik Geyerb46acba2008-05-16 12:55:55 +0000310 {
311 JEDEC_WREN,
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000312 JEDEC_EWSR,
313 },
Dominik Geyerb46acba2008-05-16 12:55:55 +0000314 {
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000315 {JEDEC_BYTE_PROGRAM, SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS, 0}, // Write Byte
Stefan Reinauer325b5d42008-06-27 15:18:20 +0000316 {JEDEC_READ, SPI_OPCODE_TYPE_READ_WITH_ADDRESS, 0}, // Read Data
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000317 {JEDEC_BE_D8, SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS, 0}, // Erase Sector
Stefan Reinauer325b5d42008-06-27 15:18:20 +0000318 {JEDEC_RDSR, SPI_OPCODE_TYPE_READ_NO_ADDRESS, 0}, // Read Device Status Reg
Carl-Daniel Hailfinger15aa7c62009-05-26 21:25:08 +0000319 {JEDEC_REMS, SPI_OPCODE_TYPE_READ_WITH_ADDRESS, 0}, // Read Electronic Manufacturer Signature
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000320 {JEDEC_WRSR, SPI_OPCODE_TYPE_WRITE_NO_ADDRESS, 0}, // Write Status Register
Stefan Reinauer325b5d42008-06-27 15:18:20 +0000321 {JEDEC_RDID, SPI_OPCODE_TYPE_READ_NO_ADDRESS, 0}, // Read JDEC ID
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000322 {JEDEC_CE_C7, SPI_OPCODE_TYPE_WRITE_NO_ADDRESS, 0}, // Bulk erase
323 }
Dominik Geyerb46acba2008-05-16 12:55:55 +0000324};
325
Helge Wagner738e2522010-10-05 22:06:05 +0000326/* List of opcodes with their corresponding spi_type
327 * It is used to reprogram the chipset OPCODE table on-the-fly if an opcode
328 * is needed which is currently not in the chipset OPCODE table
329 */
330static OPCODE POSSIBLE_OPCODES[] = {
331 {JEDEC_BYTE_PROGRAM, SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS, 0}, // Write Byte
332 {JEDEC_READ, SPI_OPCODE_TYPE_READ_WITH_ADDRESS, 0}, // Read Data
333 {JEDEC_BE_D8, SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS, 0}, // Erase Sector
334 {JEDEC_RDSR, SPI_OPCODE_TYPE_READ_NO_ADDRESS, 0}, // Read Device Status Reg
335 {JEDEC_REMS, SPI_OPCODE_TYPE_READ_WITH_ADDRESS, 0}, // Read Electronic Manufacturer Signature
336 {JEDEC_WRSR, SPI_OPCODE_TYPE_WRITE_NO_ADDRESS, 0}, // Write Status Register
337 {JEDEC_RDID, SPI_OPCODE_TYPE_READ_NO_ADDRESS, 0}, // Read JDEC ID
338 {JEDEC_CE_C7, SPI_OPCODE_TYPE_WRITE_NO_ADDRESS, 0}, // Bulk erase
339 {JEDEC_SE, SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS, 0}, // Sector erase
340 {JEDEC_BE_52, SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS, 0}, // Block erase
341 {JEDEC_AAI_WORD_PROGRAM, SPI_OPCODE_TYPE_WRITE_NO_ADDRESS, 0}, // Auto Address Increment
342};
343
Carl-Daniel Hailfingerad3cc552010-07-03 11:02:10 +0000344static OPCODES O_EXISTING = {};
FENG yu ningc05a2952008-12-08 18:16:58 +0000345
Stefan Tauner2a8b2622011-06-11 09:53:16 +0000346/* pretty printing functions */
Stefan Tauner8b391b82011-08-09 01:49:34 +0000347static void prettyprint_opcodes(OPCODES *ops)
Stefan Tauner2a8b2622011-06-11 09:53:16 +0000348{
Stefan Tauner84e1dde2011-09-17 19:53:11 +0000349 OPCODE oc;
350 const char *t;
351 const char *a;
352 uint8_t i;
353 static const char *const spi_type[4] = {
354 "read w/o addr",
355 "write w/o addr",
356 "read w/ addr",
357 "write w/ addr"
358 };
359 static const char *const atomic_type[3] = {
360 "none",
361 " 0 ",
362 " 1 "
363 };
364
365 if (ops == NULL)
Stefan Tauner2a8b2622011-06-11 09:53:16 +0000366 return;
367
Stefan Tauner84e1dde2011-09-17 19:53:11 +0000368 msg_pdbg2(" OP Type Pre-OP\n");
Stefan Tauner2a8b2622011-06-11 09:53:16 +0000369 for (i = 0; i < 8; i++) {
370 oc = ops->opcode[i];
Stefan Tauner84e1dde2011-09-17 19:53:11 +0000371 t = (oc.spi_type > 3) ? "invalid" : spi_type[oc.spi_type];
372 a = (oc.atomic > 2) ? "invalid" : atomic_type[oc.atomic];
373 msg_pdbg2("op[%d]: 0x%02x, %s, %s\n", i, oc.opcode, t, a);
Stefan Tauner2a8b2622011-06-11 09:53:16 +0000374 }
Stefan Tauner84e1dde2011-09-17 19:53:11 +0000375 msg_pdbg2("Pre-OP 0: 0x%02x, Pre-OP 1: 0x%02x\n", ops->preop[0],
376 ops->preop[1]);
Stefan Tauner2a8b2622011-06-11 09:53:16 +0000377}
378
Nico Huberd54e4f42017-03-23 23:45:47 +0100379#define _pprint_reg(bit, mask, off, val, sep) msg_pdbg("%s=%d" sep, #bit, (val & mask) >> off)
380#define pprint_reg(reg, bit, val, sep) _pprint_reg(bit, reg##_##bit, reg##_##bit##_OFF, val, sep)
Stefan Tauner2a8b2622011-06-11 09:53:16 +0000381
Stefan Tauner55206942011-06-11 09:53:22 +0000382static void prettyprint_ich9_reg_hsfs(uint16_t reg_val)
383{
384 msg_pdbg("HSFS: ");
385 pprint_reg(HSFS, FDONE, reg_val, ", ");
386 pprint_reg(HSFS, FCERR, reg_val, ", ");
387 pprint_reg(HSFS, AEL, reg_val, ", ");
David Hendricksa5216362017-08-08 20:02:22 -0700388 if (ich_generation != CHIPSET_100_SERIES_SUNRISE_POINT &&
389 ich_generation != CHIPSET_C620_SERIES_LEWISBURG) {
Nico Huberd54e4f42017-03-23 23:45:47 +0100390 pprint_reg(HSFS, BERASE, reg_val, ", ");
391 }
Stefan Tauner55206942011-06-11 09:53:22 +0000392 pprint_reg(HSFS, SCIP, reg_val, ", ");
David Hendricksa5216362017-08-08 20:02:22 -0700393 if (ich_generation == CHIPSET_100_SERIES_SUNRISE_POINT ||
394 ich_generation == CHIPSET_C620_SERIES_LEWISBURG) {
Nico Huberd54e4f42017-03-23 23:45:47 +0100395 pprint_reg(HSFS, PRR34_LOCKDN, reg_val, ", ");
396 pprint_reg(HSFS, WRSDIS, reg_val, ", ");
397 }
Stefan Tauner55206942011-06-11 09:53:22 +0000398 pprint_reg(HSFS, FDOPSS, reg_val, ", ");
399 pprint_reg(HSFS, FDV, reg_val, ", ");
400 pprint_reg(HSFS, FLOCKDN, reg_val, "\n");
401}
402
403static void prettyprint_ich9_reg_hsfc(uint16_t reg_val)
404{
405 msg_pdbg("HSFC: ");
406 pprint_reg(HSFC, FGO, reg_val, ", ");
David Hendricksa5216362017-08-08 20:02:22 -0700407 if (ich_generation != CHIPSET_100_SERIES_SUNRISE_POINT &&
408 ich_generation != CHIPSET_C620_SERIES_LEWISBURG) {
Nico Huberd54e4f42017-03-23 23:45:47 +0100409 pprint_reg(HSFC, FCYCLE, reg_val, ", ");
410 } else {
411 _pprint_reg(HSFC, PCH100_HSFC_FCYCLE, PCH100_HSFC_FCYCLE_OFF, reg_val, ", ");
412 pprint_reg(HSFC, WET, reg_val, ", ");
413 }
Stefan Tauner55206942011-06-11 09:53:22 +0000414 pprint_reg(HSFC, FDBC, reg_val, ", ");
415 pprint_reg(HSFC, SME, reg_val, "\n");
416}
417
Stefan Tauner2a8b2622011-06-11 09:53:16 +0000418static void prettyprint_ich9_reg_ssfs(uint32_t reg_val)
419{
420 msg_pdbg("SSFS: ");
421 pprint_reg(SSFS, SCIP, reg_val, ", ");
422 pprint_reg(SSFS, FDONE, reg_val, ", ");
423 pprint_reg(SSFS, FCERR, reg_val, ", ");
424 pprint_reg(SSFS, AEL, reg_val, "\n");
425}
426
427static void prettyprint_ich9_reg_ssfc(uint32_t reg_val)
428{
429 msg_pdbg("SSFC: ");
430 pprint_reg(SSFC, SCGO, reg_val, ", ");
431 pprint_reg(SSFC, ACS, reg_val, ", ");
432 pprint_reg(SSFC, SPOP, reg_val, ", ");
433 pprint_reg(SSFC, COP, reg_val, ", ");
434 pprint_reg(SSFC, DBC, reg_val, ", ");
435 pprint_reg(SSFC, SME, reg_val, ", ");
436 pprint_reg(SSFC, SCF, reg_val, "\n");
437}
438
Nico Huberd54e4f42017-03-23 23:45:47 +0100439static void prettyprint_pch100_reg_dlock(const uint32_t reg_val)
440{
441 msg_pdbg("DLOCK: ");
442 pprint_reg(DLOCK, BMWAG_LOCKDN, reg_val, ", ");
443 pprint_reg(DLOCK, BMRAG_LOCKDN, reg_val, ", ");
444 pprint_reg(DLOCK, SBMWAG_LOCKDN, reg_val, ", ");
445 pprint_reg(DLOCK, SBMRAG_LOCKDN, reg_val, ",\n ");
446 pprint_reg(DLOCK, PR0_LOCKDN, reg_val, ", ");
447 pprint_reg(DLOCK, PR1_LOCKDN, reg_val, ", ");
448 pprint_reg(DLOCK, PR2_LOCKDN, reg_val, ", ");
449 pprint_reg(DLOCK, PR3_LOCKDN, reg_val, ", ");
450 pprint_reg(DLOCK, PR4_LOCKDN, reg_val, ",\n ");
451 pprint_reg(DLOCK, SSEQ_LOCKDN, reg_val, "\n");
452}
453
454static struct {
455 size_t reg_ssfsc;
456 size_t reg_preop;
457 size_t reg_optype;
458 size_t reg_opmenu;
459} swseq_data;
460
Helge Wagner738e2522010-10-05 22:06:05 +0000461static uint8_t lookup_spi_type(uint8_t opcode)
462{
463 int a;
464
Uwe Hermann91f4afa2011-07-28 08:13:25 +0000465 for (a = 0; a < ARRAY_SIZE(POSSIBLE_OPCODES); a++) {
Helge Wagner738e2522010-10-05 22:06:05 +0000466 if (POSSIBLE_OPCODES[a].opcode == opcode)
467 return POSSIBLE_OPCODES[a].spi_type;
468 }
469
470 return 0xFF;
471}
472
473static int reprogram_opcode_on_the_fly(uint8_t opcode, unsigned int writecnt, unsigned int readcnt)
474{
475 uint8_t spi_type;
476
477 spi_type = lookup_spi_type(opcode);
478 if (spi_type > 3) {
479 /* Try to guess spi type from read/write sizes.
480 * The following valid writecnt/readcnt combinations exist:
481 * writecnt = 4, readcnt >= 0
482 * writecnt = 1, readcnt >= 0
483 * writecnt >= 4, readcnt = 0
484 * writecnt >= 1, readcnt = 0
485 * writecnt >= 1 is guaranteed for all commands.
486 */
487 if (readcnt == 0)
488 /* if readcnt=0 and writecount >= 4, we don't know if it is WRITE_NO_ADDRESS
489 * or WRITE_WITH_ADDRESS. But if we use WRITE_NO_ADDRESS and the first 3 data
490 * bytes are actual the address, they go to the bus anyhow
491 */
492 spi_type = SPI_OPCODE_TYPE_WRITE_NO_ADDRESS;
493 else if (writecnt == 1) // and readcnt is > 0
494 spi_type = SPI_OPCODE_TYPE_READ_NO_ADDRESS;
495 else if (writecnt == 4) // and readcnt is > 0
496 spi_type = SPI_OPCODE_TYPE_READ_WITH_ADDRESS;
Stefan Taunerdc704ed2012-05-06 15:11:26 +0000497 else // we have an invalid case
498 return SPI_INVALID_LENGTH;
Helge Wagner738e2522010-10-05 22:06:05 +0000499 }
Stefan Taunerdc704ed2012-05-06 15:11:26 +0000500 int oppos = 2; // use original JEDEC_BE_D8 offset
501 curopcodes->opcode[oppos].opcode = opcode;
502 curopcodes->opcode[oppos].spi_type = spi_type;
503 program_opcodes(curopcodes, 0);
504 oppos = find_opcode(curopcodes, opcode);
Stefan Taunerd94d25d2012-07-28 03:17:15 +0000505 msg_pdbg2("on-the-fly OPCODE (0x%02X) re-programmed, op-pos=%d\n", opcode, oppos);
Stefan Taunerdc704ed2012-05-06 15:11:26 +0000506 return oppos;
Helge Wagner738e2522010-10-05 22:06:05 +0000507}
508
Uwe Hermann09e04f72009-05-16 22:36:00 +0000509static int find_opcode(OPCODES *op, uint8_t opcode)
FENG yu ningc05a2952008-12-08 18:16:58 +0000510{
511 int a;
512
Stefan Tauner50e7c602011-11-08 10:55:54 +0000513 if (op == NULL) {
514 msg_perr("\n%s: null OPCODES pointer!\n", __func__);
515 return -1;
516 }
517
FENG yu ningc05a2952008-12-08 18:16:58 +0000518 for (a = 0; a < 8; a++) {
519 if (op->opcode[a].opcode == opcode)
520 return a;
521 }
522
523 return -1;
524}
525
Uwe Hermann09e04f72009-05-16 22:36:00 +0000526static int find_preop(OPCODES *op, uint8_t preop)
FENG yu ningc05a2952008-12-08 18:16:58 +0000527{
528 int a;
529
Stefan Tauner50e7c602011-11-08 10:55:54 +0000530 if (op == NULL) {
531 msg_perr("\n%s: null OPCODES pointer!\n", __func__);
532 return -1;
533 }
534
FENG yu ningc05a2952008-12-08 18:16:58 +0000535 for (a = 0; a < 2; a++) {
536 if (op->preop[a] == preop)
537 return a;
538 }
539
540 return -1;
541}
542
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000543/* Create a struct OPCODES based on what we find in the locked down chipset. */
FENG yu ningf041e9b2008-12-15 02:32:11 +0000544static int generate_opcodes(OPCODES * op)
FENG yu ningc05a2952008-12-08 18:16:58 +0000545{
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000546 int a;
FENG yu ningc05a2952008-12-08 18:16:58 +0000547 uint16_t preop, optype;
548 uint32_t opmenu[2];
FENG yu ningc05a2952008-12-08 18:16:58 +0000549
550 if (op == NULL) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000551 msg_perr("\n%s: null OPCODES pointer!\n", __func__);
FENG yu ningc05a2952008-12-08 18:16:58 +0000552 return -1;
553 }
554
Stefan Taunera8d838d2011-11-06 23:51:09 +0000555 switch (ich_generation) {
556 case CHIPSET_ICH7:
Stefan Tauner92d6a862013-10-25 00:33:37 +0000557 case CHIPSET_TUNNEL_CREEK:
558 case CHIPSET_CENTERTON:
FENG yu ningc05a2952008-12-08 18:16:58 +0000559 preop = REGREAD16(ICH7_REG_PREOP);
560 optype = REGREAD16(ICH7_REG_OPTYPE);
561 opmenu[0] = REGREAD32(ICH7_REG_OPMENU);
562 opmenu[1] = REGREAD32(ICH7_REG_OPMENU + 4);
563 break;
Stefan Taunera8d838d2011-11-06 23:51:09 +0000564 case CHIPSET_ICH8:
565 default: /* Future version might behave the same */
Nico Huberd54e4f42017-03-23 23:45:47 +0100566 preop = REGREAD16(swseq_data.reg_preop);
567 optype = REGREAD16(swseq_data.reg_optype);
568 opmenu[0] = REGREAD32(swseq_data.reg_opmenu);
569 opmenu[1] = REGREAD32(swseq_data.reg_opmenu + 4);
FENG yu ningc05a2952008-12-08 18:16:58 +0000570 break;
FENG yu ningc05a2952008-12-08 18:16:58 +0000571 }
572
573 op->preop[0] = (uint8_t) preop;
574 op->preop[1] = (uint8_t) (preop >> 8);
575
576 for (a = 0; a < 8; a++) {
577 op->opcode[a].spi_type = (uint8_t) (optype & 0x3);
578 optype >>= 2;
579 }
580
581 for (a = 0; a < 4; a++) {
582 op->opcode[a].opcode = (uint8_t) (opmenu[0] & 0xff);
583 opmenu[0] >>= 8;
584 }
585
586 for (a = 4; a < 8; a++) {
587 op->opcode[a].opcode = (uint8_t) (opmenu[1] & 0xff);
588 opmenu[1] >>= 8;
589 }
590
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000591 /* No preopcodes used by default. */
592 for (a = 0; a < 8; a++)
FENG yu ningc05a2952008-12-08 18:16:58 +0000593 op->opcode[a].atomic = 0;
594
FENG yu ningc05a2952008-12-08 18:16:58 +0000595 return 0;
596}
597
Carl-Daniel Hailfinger54ce73a2011-05-03 21:49:41 +0000598static int program_opcodes(OPCODES *op, int enable_undo)
Dominik Geyerb46acba2008-05-16 12:55:55 +0000599{
600 uint8_t a;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000601 uint16_t preop, optype;
602 uint32_t opmenu[2];
Dominik Geyerb46acba2008-05-16 12:55:55 +0000603
604 /* Program Prefix Opcodes */
Dominik Geyerb46acba2008-05-16 12:55:55 +0000605 /* 0:7 Prefix Opcode 1 */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000606 preop = (op->preop[0]);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000607 /* 8:16 Prefix Opcode 2 */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000608 preop |= ((uint16_t) op->preop[1]) << 8;
Uwe Hermann394131e2008-10-18 21:14:13 +0000609
Stefan Reinauera9424d52008-06-27 16:28:34 +0000610 /* Program Opcode Types 0 - 7 */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000611 optype = 0;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000612 for (a = 0; a < 8; a++) {
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000613 optype |= ((uint16_t) op->opcode[a].spi_type) << (a * 2);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000614 }
Uwe Hermann394131e2008-10-18 21:14:13 +0000615
Stefan Reinauera9424d52008-06-27 16:28:34 +0000616 /* Program Allowable Opcodes 0 - 3 */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000617 opmenu[0] = 0;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000618 for (a = 0; a < 4; a++) {
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000619 opmenu[0] |= ((uint32_t) op->opcode[a].opcode) << (a * 8);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000620 }
Stefan Reinauera9424d52008-06-27 16:28:34 +0000621
Stefan Tauner92d6a862013-10-25 00:33:37 +0000622 /* Program Allowable Opcodes 4 - 7 */
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000623 opmenu[1] = 0;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000624 for (a = 4; a < 8; a++) {
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000625 opmenu[1] |= ((uint32_t) op->opcode[a].opcode) << ((a - 4) * 8);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000626 }
Stefan Reinauera9424d52008-06-27 16:28:34 +0000627
Stefan Taunerd94d25d2012-07-28 03:17:15 +0000628 msg_pdbg2("\n%s: preop=%04x optype=%04x opmenu=%08x%08x\n", __func__, preop, optype, opmenu[0], opmenu[1]);
Stefan Taunera8d838d2011-11-06 23:51:09 +0000629 switch (ich_generation) {
630 case CHIPSET_ICH7:
Stefan Tauner92d6a862013-10-25 00:33:37 +0000631 case CHIPSET_TUNNEL_CREEK:
632 case CHIPSET_CENTERTON:
Carl-Daniel Hailfinger54ce73a2011-05-03 21:49:41 +0000633 /* Register undo only for enable_undo=1, i.e. first call. */
634 if (enable_undo) {
635 rmmio_valw(ich_spibar + ICH7_REG_PREOP);
636 rmmio_valw(ich_spibar + ICH7_REG_OPTYPE);
637 rmmio_vall(ich_spibar + ICH7_REG_OPMENU);
638 rmmio_vall(ich_spibar + ICH7_REG_OPMENU + 4);
639 }
640 mmio_writew(preop, ich_spibar + ICH7_REG_PREOP);
641 mmio_writew(optype, ich_spibar + ICH7_REG_OPTYPE);
642 mmio_writel(opmenu[0], ich_spibar + ICH7_REG_OPMENU);
643 mmio_writel(opmenu[1], ich_spibar + ICH7_REG_OPMENU + 4);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000644 break;
Stefan Taunera8d838d2011-11-06 23:51:09 +0000645 case CHIPSET_ICH8:
646 default: /* Future version might behave the same */
Carl-Daniel Hailfinger54ce73a2011-05-03 21:49:41 +0000647 /* Register undo only for enable_undo=1, i.e. first call. */
648 if (enable_undo) {
Nico Huberd54e4f42017-03-23 23:45:47 +0100649 rmmio_valw(ich_spibar + swseq_data.reg_preop);
650 rmmio_valw(ich_spibar + swseq_data.reg_optype);
651 rmmio_vall(ich_spibar + swseq_data.reg_opmenu);
652 rmmio_vall(ich_spibar + swseq_data.reg_opmenu + 4);
Carl-Daniel Hailfinger54ce73a2011-05-03 21:49:41 +0000653 }
Nico Huberd54e4f42017-03-23 23:45:47 +0100654 mmio_writew(preop, ich_spibar + swseq_data.reg_preop);
655 mmio_writew(optype, ich_spibar + swseq_data.reg_optype);
656 mmio_writel(opmenu[0], ich_spibar + swseq_data.reg_opmenu);
657 mmio_writel(opmenu[1], ich_spibar + swseq_data.reg_opmenu + 4);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000658 break;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000659 }
Dominik Geyerb46acba2008-05-16 12:55:55 +0000660
661 return 0;
662}
663
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000664/*
Stefan Tauner50e7c602011-11-08 10:55:54 +0000665 * Returns -1 if at least one mandatory opcode is inaccessible, 0 otherwise.
666 * FIXME: this should also check for
667 * - at least one probing opcode (RDID (incl. AT25F variants?), REMS, RES?)
668 * - at least one erasing opcode (lots.)
669 * - at least one program opcode (BYTE_PROGRAM, AAI_WORD_PROGRAM, ...?)
670 * - necessary preops? (EWSR, WREN, ...?)
671 */
672static int ich_missing_opcodes()
673{
674 uint8_t ops[] = {
675 JEDEC_READ,
676 JEDEC_RDSR,
677 0
678 };
679 int i = 0;
680 while (ops[i] != 0) {
681 msg_pspew("checking for opcode 0x%02x\n", ops[i]);
682 if (find_opcode(curopcodes, ops[i]) == -1)
683 return -1;
684 i++;
685 }
686 return 0;
687}
688
689/*
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000690 * Try to set BBAR (BIOS Base Address Register), but read back the value in case
691 * it didn't stick.
692 */
Stefan Taunera8d838d2011-11-06 23:51:09 +0000693static void ich_set_bbar(uint32_t min_addr)
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000694{
Stefan Taunere27b2d42011-07-01 00:39:09 +0000695 int bbar_off;
Stefan Tauner7783f312011-09-17 21:21:42 +0000696 switch (ich_generation) {
Stefan Taunera8d838d2011-11-06 23:51:09 +0000697 case CHIPSET_ICH7:
Stefan Tauner92d6a862013-10-25 00:33:37 +0000698 case CHIPSET_TUNNEL_CREEK:
699 case CHIPSET_CENTERTON:
Stefan Taunere27b2d42011-07-01 00:39:09 +0000700 bbar_off = 0x50;
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000701 break;
Stefan Taunera8d838d2011-11-06 23:51:09 +0000702 case CHIPSET_ICH8:
Duncan Laurie4095ed72014-08-20 15:39:32 +0000703 case CHIPSET_BAYTRAIL:
704 msg_pdbg("BBAR offset is unknown!\n");
Stefan Tauner7783f312011-09-17 21:21:42 +0000705 return;
Stefan Taunera8d838d2011-11-06 23:51:09 +0000706 case CHIPSET_ICH9:
Stefan Tauner7783f312011-09-17 21:21:42 +0000707 default: /* Future version might behave the same */
Stefan Taunere27b2d42011-07-01 00:39:09 +0000708 bbar_off = ICH9_REG_BBAR;
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000709 break;
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000710 }
Elyes HAOUAS124ef382018-03-27 12:15:09 +0200711
Stefan Taunere27b2d42011-07-01 00:39:09 +0000712 ichspi_bbar = mmio_readl(ich_spibar + bbar_off) & ~BBAR_MASK;
713 if (ichspi_bbar) {
714 msg_pdbg("Reserved bits in BBAR not zero: 0x%08x\n",
715 ichspi_bbar);
716 }
717 min_addr &= BBAR_MASK;
718 ichspi_bbar |= min_addr;
719 rmmio_writel(ichspi_bbar, ich_spibar + bbar_off);
720 ichspi_bbar = mmio_readl(ich_spibar + bbar_off) & BBAR_MASK;
721
722 /* We don't have any option except complaining. And if the write
723 * failed, the restore will fail as well, so no problem there.
724 */
725 if (ichspi_bbar != min_addr)
Stefan Tauner7783f312011-09-17 21:21:42 +0000726 msg_perr("Setting BBAR to 0x%08x failed! New value: 0x%08x.\n",
727 min_addr, ichspi_bbar);
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000728}
729
Stefan Tauner8b391b82011-08-09 01:49:34 +0000730/* Read len bytes from the fdata/spid register into the data array.
731 *
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000732 * Note that using len > flash->mst->spi.max_data_read will return garbage or
Stefan Tauner8b391b82011-08-09 01:49:34 +0000733 * may even crash.
734 */
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +0000735static void ich_read_data(uint8_t *data, int len, int reg0_off)
Elyes HAOUAS124ef382018-03-27 12:15:09 +0200736{
Stefan Tauner8b391b82011-08-09 01:49:34 +0000737 int i;
738 uint32_t temp32 = 0;
739
740 for (i = 0; i < len; i++) {
741 if ((i % 4) == 0)
742 temp32 = REGREAD32(reg0_off + i);
743
744 data[i] = (temp32 >> ((i % 4) * 8)) & 0xff;
745 }
746}
747
748/* Fill len bytes from the data array into the fdata/spid registers.
749 *
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +0000750 * Note that using len > flash->mst->spi.max_data_write will trash the registers
Stefan Tauner8b391b82011-08-09 01:49:34 +0000751 * following the data registers.
752 */
753static void ich_fill_data(const uint8_t *data, int len, int reg0_off)
754{
755 uint32_t temp32 = 0;
756 int i;
757
758 if (len <= 0)
759 return;
760
761 for (i = 0; i < len; i++) {
762 if ((i % 4) == 0)
763 temp32 = 0;
764
765 temp32 |= ((uint32_t) data[i]) << ((i % 4) * 8);
766
767 if ((i % 4) == 3) /* 32 bits are full, write them to regs. */
768 REGWRITE32(reg0_off + (i - (i % 4)), temp32);
769 }
770 i--;
771 if ((i % 4) != 3) /* Write remaining data to regs. */
772 REGWRITE32(reg0_off + (i - (i % 4)), temp32);
773}
774
FENG yu ningf041e9b2008-12-15 02:32:11 +0000775/* This function generates OPCODES from or programs OPCODES to ICH according to
776 * the chipset's SPI configuration lock.
FENG yu ningc05a2952008-12-08 18:16:58 +0000777 *
FENG yu ningf041e9b2008-12-15 02:32:11 +0000778 * It should be called before ICH sends any spi command.
FENG yu ningc05a2952008-12-08 18:16:58 +0000779 */
Michael Karchera4448d92010-07-22 18:04:15 +0000780static int ich_init_opcodes(void)
FENG yu ningc05a2952008-12-08 18:16:58 +0000781{
782 int rc = 0;
783 OPCODES *curopcodes_done;
784
785 if (curopcodes)
786 return 0;
787
788 if (ichspi_lock) {
Carl-Daniel Hailfinger80f3d052010-05-28 15:53:08 +0000789 msg_pdbg("Reading OPCODES... ");
FENG yu ningc05a2952008-12-08 18:16:58 +0000790 curopcodes_done = &O_EXISTING;
FENG yu ningf041e9b2008-12-15 02:32:11 +0000791 rc = generate_opcodes(curopcodes_done);
FENG yu ningc05a2952008-12-08 18:16:58 +0000792 } else {
Sean Nelson316a29f2010-05-07 20:09:04 +0000793 msg_pdbg("Programming OPCODES... ");
FENG yu ningc05a2952008-12-08 18:16:58 +0000794 curopcodes_done = &O_ST_M25P;
Carl-Daniel Hailfinger54ce73a2011-05-03 21:49:41 +0000795 rc = program_opcodes(curopcodes_done, 1);
FENG yu ningc05a2952008-12-08 18:16:58 +0000796 }
797
798 if (rc) {
799 curopcodes = NULL;
Sean Nelson316a29f2010-05-07 20:09:04 +0000800 msg_perr("failed\n");
FENG yu ningc05a2952008-12-08 18:16:58 +0000801 return 1;
802 } else {
803 curopcodes = curopcodes_done;
Sean Nelson316a29f2010-05-07 20:09:04 +0000804 msg_pdbg("done\n");
Stefan Tauner8b391b82011-08-09 01:49:34 +0000805 prettyprint_opcodes(curopcodes);
FENG yu ningc05a2952008-12-08 18:16:58 +0000806 return 0;
807 }
808}
809
Stefan Reinauer43119562008-11-02 19:51:50 +0000810static int ich7_run_opcode(OPCODE op, uint32_t offset,
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000811 uint8_t datalength, uint8_t * data, int maxdata)
Dominik Geyerb46acba2008-05-16 12:55:55 +0000812{
813 int write_cmd = 0;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000814 int timeout;
Stefan Tauner8b391b82011-08-09 01:49:34 +0000815 uint32_t temp32;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000816 uint16_t temp16;
Stefan Reinauer43119562008-11-02 19:51:50 +0000817 uint64_t opmenu;
818 int opcode_index;
Dominik Geyerb46acba2008-05-16 12:55:55 +0000819
820 /* Is it a write command? */
821 if ((op.spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS)
822 || (op.spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS)) {
823 write_cmd = 1;
824 }
825
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000826 timeout = 100 * 60; /* 60 ms are 9.6 million cycles at 16 MHz. */
827 while ((REGREAD16(ICH7_REG_SPIS) & SPIS_SCIP) && --timeout) {
828 programmer_delay(10);
829 }
830 if (!timeout) {
831 msg_perr("Error: SCIP never cleared!\n");
832 return 1;
833 }
834
Stefan Tauner10b3e222011-07-01 00:39:23 +0000835 /* Program offset in flash into SPIA while preserving reserved bits. */
836 temp32 = REGREAD32(ICH7_REG_SPIA) & ~0x00FFFFFF;
837 REGWRITE32(ICH7_REG_SPIA, (offset & 0x00FFFFFF) | temp32);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000838
Stefan Tauner10b3e222011-07-01 00:39:23 +0000839 /* Program data into SPID0 to N */
Stefan Tauner8b391b82011-08-09 01:49:34 +0000840 if (write_cmd && (datalength != 0))
841 ich_fill_data(data, datalength, ICH7_REG_SPID0);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000842
843 /* Assemble SPIS */
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000844 temp16 = REGREAD16(ICH7_REG_SPIS);
845 /* keep reserved bits */
846 temp16 &= SPIS_RESERVED_MASK;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000847 /* clear error status registers */
Stefan Tauner0c1ec452011-06-11 09:53:09 +0000848 temp16 |= (SPIS_CDS | SPIS_FCERR);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000849 REGWRITE16(ICH7_REG_SPIS, temp16);
850
851 /* Assemble SPIC */
852 temp16 = 0;
853
854 if (datalength != 0) {
855 temp16 |= SPIC_DS;
Rudolf Marek3fdbccf2008-06-30 21:38:30 +0000856 temp16 |= ((uint32_t) ((datalength - 1) & (maxdata - 1))) << 8;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000857 }
858
859 /* Select opcode */
Stefan Reinauer43119562008-11-02 19:51:50 +0000860 opmenu = REGREAD32(ICH7_REG_OPMENU);
861 opmenu |= ((uint64_t)REGREAD32(ICH7_REG_OPMENU + 4)) << 32;
862
Uwe Hermann7b2969b2009-04-15 10:52:49 +0000863 for (opcode_index = 0; opcode_index < 8; opcode_index++) {
864 if ((opmenu & 0xff) == op.opcode) {
Stefan Reinauer43119562008-11-02 19:51:50 +0000865 break;
866 }
867 opmenu >>= 8;
868 }
869 if (opcode_index == 8) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000870 msg_pdbg("Opcode %x not found.\n", op.opcode);
Stefan Reinauer43119562008-11-02 19:51:50 +0000871 return 1;
872 }
873 temp16 |= ((uint16_t) (opcode_index & 0x07)) << 4;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000874
Michael Karcher136125a2011-04-29 22:11:36 +0000875 timeout = 100 * 60; /* 60 ms are 9.6 million cycles at 16 MHz. */
876 /* Handle Atomic. Atomic commands include three steps:
877 - sending the preop (mainly EWSR or WREN)
878 - sending the main command
879 - waiting for the busy bit (WIP) to be cleared
880 This means the timeout must be sufficient for chip erase
881 of slow high-capacity chips.
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000882 */
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000883 switch (op.atomic) {
884 case 2:
885 /* Select second preop. */
886 temp16 |= SPIC_SPOP;
887 /* And fall through. */
888 case 1:
889 /* Atomic command (preop+op) */
Stefan Reinauera9424d52008-06-27 16:28:34 +0000890 temp16 |= SPIC_ACS;
Michael Karcher136125a2011-04-29 22:11:36 +0000891 timeout = 100 * 1000 * 60; /* 60 seconds */
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +0000892 break;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000893 }
894
895 /* Start */
896 temp16 |= SPIC_SCGO;
897
898 /* write it */
899 REGWRITE16(ICH7_REG_SPIC, temp16);
900
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000901 /* Wait for Cycle Done Status or Flash Cycle Error. */
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000902 while (((REGREAD16(ICH7_REG_SPIS) & (SPIS_CDS | SPIS_FCERR)) == 0) &&
903 --timeout) {
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +0000904 programmer_delay(10);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000905 }
906 if (!timeout) {
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000907 msg_perr("timeout, ICH7_REG_SPIS=0x%04x\n",
908 REGREAD16(ICH7_REG_SPIS));
909 return 1;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000910 }
911
Sean Nelson316a29f2010-05-07 20:09:04 +0000912 /* FIXME: make sure we do not needlessly cause transaction errors. */
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000913 temp16 = REGREAD16(ICH7_REG_SPIS);
914 if (temp16 & SPIS_FCERR) {
Stefan Tauner8ed29342011-04-29 23:53:09 +0000915 msg_perr("Transaction error!\n");
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000916 /* keep reserved bits */
917 temp16 &= SPIS_RESERVED_MASK;
918 REGWRITE16(ICH7_REG_SPIS, temp16 | SPIS_FCERR);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000919 return 1;
920 }
921
Stefan Tauner8b391b82011-08-09 01:49:34 +0000922 if ((!write_cmd) && (datalength != 0))
923 ich_read_data(data, datalength, ICH7_REG_SPID0);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000924
925 return 0;
926}
927
Stefan Reinauer43119562008-11-02 19:51:50 +0000928static int ich9_run_opcode(OPCODE op, uint32_t offset,
Stefan Reinauera9424d52008-06-27 16:28:34 +0000929 uint8_t datalength, uint8_t * data)
930{
931 int write_cmd = 0;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +0000932 int timeout;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000933 uint32_t temp32;
Stefan Reinauer43119562008-11-02 19:51:50 +0000934 uint64_t opmenu;
935 int opcode_index;
Stefan Reinauera9424d52008-06-27 16:28:34 +0000936
937 /* Is it a write command? */
938 if ((op.spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS)
939 || (op.spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS)) {
940 write_cmd = 1;
941 }
942
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000943 timeout = 100 * 60; /* 60 ms are 9.6 million cycles at 16 MHz. */
Nico Huberd54e4f42017-03-23 23:45:47 +0100944 while ((REGREAD8(swseq_data.reg_ssfsc) & SSFS_SCIP) && --timeout) {
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000945 programmer_delay(10);
946 }
947 if (!timeout) {
948 msg_perr("Error: SCIP never cleared!\n");
949 return 1;
950 }
951
Stefan Tauner10b3e222011-07-01 00:39:23 +0000952 /* Program offset in flash into FADDR while preserve the reserved bits
953 * and clearing the 25. address bit which is only useable in hwseq. */
954 temp32 = REGREAD32(ICH9_REG_FADDR) & ~0x01FFFFFF;
955 REGWRITE32(ICH9_REG_FADDR, (offset & 0x00FFFFFF) | temp32);
Stefan Reinauera9424d52008-06-27 16:28:34 +0000956
957 /* Program data into FDATA0 to N */
Stefan Tauner8b391b82011-08-09 01:49:34 +0000958 if (write_cmd && (datalength != 0))
959 ich_fill_data(data, datalength, ICH9_REG_FDATA0);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000960
961 /* Assemble SSFS + SSFC */
Nico Huberd54e4f42017-03-23 23:45:47 +0100962 temp32 = REGREAD32(swseq_data.reg_ssfsc);
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000963 /* Keep reserved bits only */
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000964 temp32 &= SSFS_RESERVED_MASK | SSFC_RESERVED_MASK;
Stefan Tauner0c1ec452011-06-11 09:53:09 +0000965 /* Clear cycle done and cycle error status registers */
966 temp32 |= (SSFS_FDONE | SSFS_FCERR);
Nico Huberd54e4f42017-03-23 23:45:47 +0100967 REGWRITE32(swseq_data.reg_ssfsc, temp32);
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +0000968
Uwe Hermann4e3d0b32010-03-25 23:18:41 +0000969 /* Use 20 MHz */
Dominik Geyerb46acba2008-05-16 12:55:55 +0000970 temp32 |= SSFC_SCF_20MHZ;
971
Stefan Taunerc0aaf952011-05-19 02:58:17 +0000972 /* Set data byte count (DBC) and data cycle bit (DS) */
Dominik Geyerb46acba2008-05-16 12:55:55 +0000973 if (datalength != 0) {
974 uint32_t datatemp;
975 temp32 |= SSFC_DS;
Stefan Tauner0c1ec452011-06-11 09:53:09 +0000976 datatemp = ((((uint32_t)datalength - 1) << SSFC_DBC_OFF) &
977 SSFC_DBC);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000978 temp32 |= datatemp;
979 }
980
981 /* Select opcode */
Nico Huber8b2152d2017-08-31 13:18:49 +0200982 opmenu = REGREAD32(swseq_data.reg_opmenu);
983 opmenu |= ((uint64_t)REGREAD32(swseq_data.reg_opmenu + 4)) << 32;
Stefan Reinauer43119562008-11-02 19:51:50 +0000984
Uwe Hermann7b2969b2009-04-15 10:52:49 +0000985 for (opcode_index = 0; opcode_index < 8; opcode_index++) {
986 if ((opmenu & 0xff) == op.opcode) {
Stefan Reinauer43119562008-11-02 19:51:50 +0000987 break;
988 }
989 opmenu >>= 8;
990 }
991 if (opcode_index == 8) {
Sean Nelson316a29f2010-05-07 20:09:04 +0000992 msg_pdbg("Opcode %x not found.\n", op.opcode);
Stefan Reinauer43119562008-11-02 19:51:50 +0000993 return 1;
994 }
995 temp32 |= ((uint32_t) (opcode_index & 0x07)) << (8 + 4);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000996
Michael Karcher136125a2011-04-29 22:11:36 +0000997 timeout = 100 * 60; /* 60 ms are 9.6 million cycles at 16 MHz. */
998 /* Handle Atomic. Atomic commands include three steps:
999 - sending the preop (mainly EWSR or WREN)
1000 - sending the main command
1001 - waiting for the busy bit (WIP) to be cleared
1002 This means the timeout must be sufficient for chip erase
1003 of slow high-capacity chips.
Stefan Taunerc0aaf952011-05-19 02:58:17 +00001004 */
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001005 switch (op.atomic) {
1006 case 2:
1007 /* Select second preop. */
1008 temp32 |= SSFC_SPOP;
1009 /* And fall through. */
1010 case 1:
1011 /* Atomic command (preop+op) */
Dominik Geyerb46acba2008-05-16 12:55:55 +00001012 temp32 |= SSFC_ACS;
Michael Karcher136125a2011-04-29 22:11:36 +00001013 timeout = 100 * 1000 * 60; /* 60 seconds */
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001014 break;
Dominik Geyerb46acba2008-05-16 12:55:55 +00001015 }
1016
1017 /* Start */
1018 temp32 |= SSFC_SCGO;
1019
1020 /* write it */
Nico Huberd54e4f42017-03-23 23:45:47 +01001021 REGWRITE32(swseq_data.reg_ssfsc, temp32);
Dominik Geyerb46acba2008-05-16 12:55:55 +00001022
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +00001023 /* Wait for Cycle Done Status or Flash Cycle Error. */
Nico Huberd54e4f42017-03-23 23:45:47 +01001024 while (((REGREAD32(swseq_data.reg_ssfsc) & (SSFS_FDONE | SSFS_FCERR)) == 0) &&
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +00001025 --timeout) {
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +00001026 programmer_delay(10);
Stefan Reinauer2cb94e12008-06-30 23:45:22 +00001027 }
1028 if (!timeout) {
Nico Huberd54e4f42017-03-23 23:45:47 +01001029 msg_perr("timeout, REG_SSFS=0x%08x\n",
1030 REGREAD32(swseq_data.reg_ssfsc));
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +00001031 return 1;
Dominik Geyerb46acba2008-05-16 12:55:55 +00001032 }
1033
Sean Nelson316a29f2010-05-07 20:09:04 +00001034 /* FIXME make sure we do not needlessly cause transaction errors. */
Nico Huberd54e4f42017-03-23 23:45:47 +01001035 temp32 = REGREAD32(swseq_data.reg_ssfsc);
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +00001036 if (temp32 & SSFS_FCERR) {
Stefan Tauner8ed29342011-04-29 23:53:09 +00001037 msg_perr("Transaction error!\n");
Stefan Tauner2a8b2622011-06-11 09:53:16 +00001038 prettyprint_ich9_reg_ssfs(temp32);
1039 prettyprint_ich9_reg_ssfc(temp32);
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +00001040 /* keep reserved bits */
1041 temp32 &= SSFS_RESERVED_MASK | SSFC_RESERVED_MASK;
1042 /* Clear the transaction error. */
Nico Huberd54e4f42017-03-23 23:45:47 +01001043 REGWRITE32(swseq_data.reg_ssfsc, temp32 | SSFS_FCERR);
Dominik Geyerb46acba2008-05-16 12:55:55 +00001044 return 1;
1045 }
1046
Stefan Tauner8b391b82011-08-09 01:49:34 +00001047 if ((!write_cmd) && (datalength != 0))
1048 ich_read_data(data, datalength, ICH9_REG_FDATA0);
Dominik Geyerb46acba2008-05-16 12:55:55 +00001049
1050 return 0;
1051}
1052
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +00001053static int run_opcode(const struct flashctx *flash, OPCODE op, uint32_t offset,
Stefan Reinauera9424d52008-06-27 16:28:34 +00001054 uint8_t datalength, uint8_t * data)
1055{
Stefan Taunerb2d5f6a2011-06-11 19:44:31 +00001056 /* max_data_read == max_data_write for all Intel/VIA SPI masters */
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +00001057 uint8_t maxlength = flash->mst->spi.max_data_read;
Stefan Taunerb2d5f6a2011-06-11 19:44:31 +00001058
Carl-Daniel Hailfingerc40cff72011-12-20 00:19:29 +00001059 if (ich_generation == CHIPSET_ICH_UNKNOWN) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001060 msg_perr("%s: unsupported chipset\n", __func__);
Stefan Taunerb2d5f6a2011-06-11 19:44:31 +00001061 return -1;
Stefan Reinauer2cb94e12008-06-30 23:45:22 +00001062 }
Stefan Reinauera9424d52008-06-27 16:28:34 +00001063
Stefan Taunerb2d5f6a2011-06-11 19:44:31 +00001064 if (datalength > maxlength) {
1065 msg_perr("%s: Internal command size error for "
1066 "opcode 0x%02x, got datalength=%i, want <=%i\n",
1067 __func__, op.opcode, datalength, maxlength);
1068 return SPI_INVALID_LENGTH;
1069 }
1070
Stefan Taunera8d838d2011-11-06 23:51:09 +00001071 switch (ich_generation) {
1072 case CHIPSET_ICH7:
Stefan Tauner92d6a862013-10-25 00:33:37 +00001073 case CHIPSET_TUNNEL_CREEK:
1074 case CHIPSET_CENTERTON:
Stefan Taunerb2d5f6a2011-06-11 19:44:31 +00001075 return ich7_run_opcode(op, offset, datalength, data, maxlength);
Stefan Taunera8d838d2011-11-06 23:51:09 +00001076 case CHIPSET_ICH8:
1077 default: /* Future version might behave the same */
Stefan Taunerb2d5f6a2011-06-11 19:44:31 +00001078 return ich9_run_opcode(op, offset, datalength, data);
Stefan Taunerb2d5f6a2011-06-11 19:44:31 +00001079 }
Stefan Reinauera9424d52008-06-27 16:28:34 +00001080}
1081
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +00001082static int ich_spi_send_command(struct flashctx *flash, unsigned int writecnt,
1083 unsigned int readcnt,
1084 const unsigned char *writearr,
1085 unsigned char *readarr)
Dominik Geyerb46acba2008-05-16 12:55:55 +00001086{
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +00001087 int result;
Dominik Geyerb46acba2008-05-16 12:55:55 +00001088 int opcode_index = -1;
1089 const unsigned char cmd = *writearr;
1090 OPCODE *opcode;
1091 uint32_t addr = 0;
1092 uint8_t *data;
1093 int count;
1094
Dominik Geyerb46acba2008-05-16 12:55:55 +00001095 /* find cmd in opcodes-table */
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001096 opcode_index = find_opcode(curopcodes, cmd);
Dominik Geyerb46acba2008-05-16 12:55:55 +00001097 if (opcode_index == -1) {
Helge Wagner738e2522010-10-05 22:06:05 +00001098 if (!ichspi_lock)
1099 opcode_index = reprogram_opcode_on_the_fly(cmd, writecnt, readcnt);
Stefan Taunerdc704ed2012-05-06 15:11:26 +00001100 if (opcode_index == SPI_INVALID_LENGTH) {
1101 msg_pdbg("OPCODE 0x%02x has unsupported length, will not execute.\n", cmd);
1102 return SPI_INVALID_LENGTH;
1103 } else if (opcode_index == -1) {
Stefan Tauner355cbfd2011-05-28 02:37:14 +00001104 msg_pdbg("Invalid OPCODE 0x%02x, will not execute.\n",
1105 cmd);
Helge Wagner738e2522010-10-05 22:06:05 +00001106 return SPI_INVALID_OPCODE;
1107 }
Dominik Geyerb46acba2008-05-16 12:55:55 +00001108 }
1109
1110 opcode = &(curopcodes->opcode[opcode_index]);
1111
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001112 /* The following valid writecnt/readcnt combinations exist:
1113 * writecnt = 4, readcnt >= 0
1114 * writecnt = 1, readcnt >= 0
1115 * writecnt >= 4, readcnt = 0
1116 * writecnt >= 1, readcnt = 0
1117 * writecnt >= 1 is guaranteed for all commands.
1118 */
1119 if ((opcode->spi_type == SPI_OPCODE_TYPE_READ_WITH_ADDRESS) &&
1120 (writecnt != 4)) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001121 msg_perr("%s: Internal command size error for opcode "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001122 "0x%02x, got writecnt=%i, want =4\n", __func__, cmd,
1123 writecnt);
1124 return SPI_INVALID_LENGTH;
1125 }
1126 if ((opcode->spi_type == SPI_OPCODE_TYPE_READ_NO_ADDRESS) &&
1127 (writecnt != 1)) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001128 msg_perr("%s: Internal command size error for opcode "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001129 "0x%02x, got writecnt=%i, want =1\n", __func__, cmd,
1130 writecnt);
1131 return SPI_INVALID_LENGTH;
1132 }
1133 if ((opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) &&
1134 (writecnt < 4)) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001135 msg_perr("%s: Internal command size error for opcode "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001136 "0x%02x, got writecnt=%i, want >=4\n", __func__, cmd,
1137 writecnt);
1138 return SPI_INVALID_LENGTH;
1139 }
1140 if (((opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) ||
1141 (opcode->spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS)) &&
1142 (readcnt)) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001143 msg_perr("%s: Internal command size error for opcode "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001144 "0x%02x, got readcnt=%i, want =0\n", __func__, cmd,
1145 readcnt);
1146 return SPI_INVALID_LENGTH;
1147 }
1148
Stefan Taunerb2d5f6a2011-06-11 19:44:31 +00001149 /* Translate read/write array/count.
1150 * The maximum data length is identical for the maximum read length and
1151 * for the maximum write length excluding opcode and address. Opcode and
1152 * address are stored in separate registers, not in the data registers
1153 * and are thus not counted towards data length. The only exception
1154 * applies if the opcode definition (un)intentionally classifies said
1155 * opcode incorrectly as non-address opcode or vice versa. */
Dominik Geyerb46acba2008-05-16 12:55:55 +00001156 if (opcode->spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS) {
Stefan Reinauer325b5d42008-06-27 15:18:20 +00001157 data = (uint8_t *) (writearr + 1);
1158 count = writecnt - 1;
1159 } else if (opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) {
1160 data = (uint8_t *) (writearr + 4);
1161 count = writecnt - 4;
1162 } else {
1163 data = (uint8_t *) readarr;
Dominik Geyerb46acba2008-05-16 12:55:55 +00001164 count = readcnt;
1165 }
Stefan Reinauer325b5d42008-06-27 15:18:20 +00001166
Nico Hubered098d62017-04-21 23:47:08 +02001167 /* if opcode-type requires an address */
1168 if (cmd == JEDEC_REMS || cmd == JEDEC_RES) {
1169 addr = ichspi_bbar;
1170 } else if (opcode->spi_type == SPI_OPCODE_TYPE_READ_WITH_ADDRESS ||
1171 opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) {
1172 /* BBAR may cut part of the chip off at the lower end. */
1173 const uint32_t valid_base = ichspi_bbar & ((flash->chip->total_size * 1024) - 1);
1174 const uint32_t addr_offset = ichspi_bbar - valid_base;
1175 /* Highest address we can program is (2^24 - 1). */
1176 const uint32_t valid_end = (1 << 24) - addr_offset;
1177
1178 addr = writearr[1] << 16 | writearr[2] << 8 | writearr[3];
1179 const uint32_t addr_end = addr + count;
1180
1181 if (addr < valid_base ||
1182 addr_end < addr || /* integer overflow check */
1183 addr_end > valid_end) {
1184 msg_perr("%s: Addressed region 0x%06x-0x%06x not in allowed range 0x%06x-0x%06x\n",
1185 __func__, addr, addr_end - 1, valid_base, valid_end - 1);
1186 return SPI_INVALID_ADDRESS;
1187 }
1188 addr += addr_offset;
1189 }
1190
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +00001191 result = run_opcode(flash, *opcode, addr, count, data);
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +00001192 if (result) {
Stefan Tauner8ed29342011-04-29 23:53:09 +00001193 msg_pdbg("Running OPCODE 0x%02x failed ", opcode->opcode);
1194 if ((opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) ||
1195 (opcode->spi_type == SPI_OPCODE_TYPE_READ_WITH_ADDRESS)) {
1196 msg_pdbg("at address 0x%06x ", addr);
1197 }
1198 msg_pdbg("(payload length was %d).\n", count);
1199
1200 /* Print out the data array if it contains data to write.
1201 * Errors are detected before the received data is read back into
1202 * the array so it won't make sense to print it then. */
1203 if ((opcode->spi_type == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS) ||
1204 (opcode->spi_type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS)) {
1205 int i;
1206 msg_pspew("The data was:\n");
Stefan Taunerf382e352011-11-08 11:55:24 +00001207 for (i = 0; i < count; i++){
Stefan Tauner8ed29342011-04-29 23:53:09 +00001208 msg_pspew("%3d: 0x%02x\n", i, data[i]);
1209 }
1210 }
Dominik Geyerb46acba2008-05-16 12:55:55 +00001211 }
1212
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +00001213 return result;
Dominik Geyerb46acba2008-05-16 12:55:55 +00001214}
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +00001215
Stefan Tauner50e7c602011-11-08 10:55:54 +00001216static struct hwseq_data {
1217 uint32_t size_comp0;
1218 uint32_t size_comp1;
Nico Huberd54e4f42017-03-23 23:45:47 +01001219 uint32_t addr_mask;
1220 bool only_4k;
1221 uint32_t hsfc_fcycle;
Stefan Tauner50e7c602011-11-08 10:55:54 +00001222} hwseq_data;
1223
Nico Huberd54e4f42017-03-23 23:45:47 +01001224/* Sets FLA in FADDR to (addr & hwseq_data.addr_mask) without touching other bits. */
Stefan Taunerd0c5dc22011-10-20 12:57:14 +00001225static void ich_hwseq_set_addr(uint32_t addr)
1226{
Nico Huberd54e4f42017-03-23 23:45:47 +01001227 uint32_t addr_old = REGREAD32(ICH9_REG_FADDR) & ~hwseq_data.addr_mask;
1228 REGWRITE32(ICH9_REG_FADDR, (addr & hwseq_data.addr_mask) | addr_old);
Stefan Taunerd0c5dc22011-10-20 12:57:14 +00001229}
1230
1231/* Sets FADDR.FLA to 'addr' and returns the erase block size in bytes
1232 * of the block containing this address. May return nonsense if the address is
1233 * not valid. The erase block size for a specific address depends on the flash
1234 * partition layout as specified by FPB and the partition properties as defined
1235 * by UVSCC and LVSCC respectively. An alternative to implement this method
1236 * would be by querying FPB and the respective VSCC register directly.
1237 */
1238static uint32_t ich_hwseq_get_erase_block_size(unsigned int addr)
1239{
Nico Huberd54e4f42017-03-23 23:45:47 +01001240 if (hwseq_data.only_4k) {
1241 return 4 * 1024;
1242 } else {
1243 uint8_t enc_berase;
1244 static const uint32_t dec_berase[4] = {
1245 256,
1246 4 * 1024,
1247 8 * 1024,
1248 64 * 1024
1249 };
Stefan Taunerd0c5dc22011-10-20 12:57:14 +00001250
Nico Huberd54e4f42017-03-23 23:45:47 +01001251 ich_hwseq_set_addr(addr);
1252 enc_berase = (REGREAD16(ICH9_REG_HSFS) & HSFS_BERASE) >> HSFS_BERASE_OFF;
1253 return dec_berase[enc_berase];
1254 }
Stefan Taunerd0c5dc22011-10-20 12:57:14 +00001255}
1256
1257/* Polls for Cycle Done Status, Flash Cycle Error or timeout in 8 us intervals.
1258 Resets all error flags in HSFS.
1259 Returns 0 if the cycle completes successfully without errors within
1260 timeout us, 1 on errors. */
1261static int ich_hwseq_wait_for_cycle_complete(unsigned int timeout,
1262 unsigned int len)
1263{
1264 uint16_t hsfs;
1265 uint32_t addr;
1266
1267 timeout /= 8; /* scale timeout duration to counter */
1268 while ((((hsfs = REGREAD16(ICH9_REG_HSFS)) &
1269 (HSFS_FDONE | HSFS_FCERR)) == 0) &&
1270 --timeout) {
1271 programmer_delay(8);
1272 }
1273 REGWRITE16(ICH9_REG_HSFS, REGREAD16(ICH9_REG_HSFS));
1274 if (!timeout) {
Nico Huberd54e4f42017-03-23 23:45:47 +01001275 addr = REGREAD32(ICH9_REG_FADDR) & hwseq_data.addr_mask;
Stefan Taunerd0c5dc22011-10-20 12:57:14 +00001276 msg_perr("Timeout error between offset 0x%08x and "
Stefan Tauner50e7c602011-11-08 10:55:54 +00001277 "0x%08x (= 0x%08x + %d)!\n",
1278 addr, addr + len - 1, addr, len - 1);
Stefan Taunerd0c5dc22011-10-20 12:57:14 +00001279 prettyprint_ich9_reg_hsfs(hsfs);
1280 prettyprint_ich9_reg_hsfc(REGREAD16(ICH9_REG_HSFC));
1281 return 1;
1282 }
1283
1284 if (hsfs & HSFS_FCERR) {
Nico Huberd54e4f42017-03-23 23:45:47 +01001285 addr = REGREAD32(ICH9_REG_FADDR) & hwseq_data.addr_mask;
Stefan Taunerd0c5dc22011-10-20 12:57:14 +00001286 msg_perr("Transaction error between offset 0x%08x and "
Stefan Tauner50e7c602011-11-08 10:55:54 +00001287 "0x%08x (= 0x%08x + %d)!\n",
Stefan Taunerd0c5dc22011-10-20 12:57:14 +00001288 addr, addr + len - 1, addr, len - 1);
1289 prettyprint_ich9_reg_hsfs(hsfs);
1290 prettyprint_ich9_reg_hsfc(REGREAD16(ICH9_REG_HSFC));
1291 return 1;
1292 }
1293 return 0;
1294}
Stefan Tauner50e7c602011-11-08 10:55:54 +00001295
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +00001296static int ich_hwseq_probe(struct flashctx *flash)
Stefan Tauner50e7c602011-11-08 10:55:54 +00001297{
1298 uint32_t total_size, boundary;
1299 uint32_t erase_size_low, size_low, erase_size_high, size_high;
1300 struct block_eraser *eraser;
1301
1302 total_size = hwseq_data.size_comp0 + hwseq_data.size_comp1;
Stefan Tauner5c316f92015-02-08 21:57:52 +00001303 msg_cdbg("Hardware sequencing reports %d attached SPI flash chip",
Stefan Tauner50e7c602011-11-08 10:55:54 +00001304 (hwseq_data.size_comp1 != 0) ? 2 : 1);
1305 if (hwseq_data.size_comp1 != 0)
1306 msg_cdbg("s with a combined");
1307 else
1308 msg_cdbg(" with a");
1309 msg_cdbg(" density of %d kB.\n", total_size / 1024);
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001310 flash->chip->total_size = total_size / 1024;
Stefan Tauner50e7c602011-11-08 10:55:54 +00001311
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001312 eraser = &(flash->chip->block_erasers[0]);
Nico Huberd54e4f42017-03-23 23:45:47 +01001313 if (!hwseq_data.only_4k)
1314 boundary = (REGREAD32(ICH9_REG_FPB) & FPB_FPBA) << 12;
1315 else
1316 boundary = 0;
Stefan Tauner50e7c602011-11-08 10:55:54 +00001317 size_high = total_size - boundary;
1318 erase_size_high = ich_hwseq_get_erase_block_size(boundary);
1319
1320 if (boundary == 0) {
Stefan Tauner5c316f92015-02-08 21:57:52 +00001321 msg_cdbg2("There is only one partition containing the whole "
Stefan Tauner50e7c602011-11-08 10:55:54 +00001322 "address space (0x%06x - 0x%06x).\n", 0, size_high-1);
1323 eraser->eraseblocks[0].size = erase_size_high;
1324 eraser->eraseblocks[0].count = size_high / erase_size_high;
Stefan Tauner5c316f92015-02-08 21:57:52 +00001325 msg_cdbg2("There are %d erase blocks with %d B each.\n",
Stefan Tauner50e7c602011-11-08 10:55:54 +00001326 size_high / erase_size_high, erase_size_high);
1327 } else {
Stefan Tauner5c316f92015-02-08 21:57:52 +00001328 msg_cdbg2("The flash address space (0x%06x - 0x%06x) is divided "
Stefan Tauner50e7c602011-11-08 10:55:54 +00001329 "at address 0x%06x in two partitions.\n",
Stefan Taunerdbac46c2013-08-13 22:10:41 +00001330 0, total_size-1, boundary);
Stefan Tauner50e7c602011-11-08 10:55:54 +00001331 size_low = total_size - size_high;
1332 erase_size_low = ich_hwseq_get_erase_block_size(0);
1333
1334 eraser->eraseblocks[0].size = erase_size_low;
1335 eraser->eraseblocks[0].count = size_low / erase_size_low;
1336 msg_cdbg("The first partition ranges from 0x%06x to 0x%06x.\n",
1337 0, size_low-1);
1338 msg_cdbg("In that range are %d erase blocks with %d B each.\n",
1339 size_low / erase_size_low, erase_size_low);
1340
1341 eraser->eraseblocks[1].size = erase_size_high;
1342 eraser->eraseblocks[1].count = size_high / erase_size_high;
1343 msg_cdbg("The second partition ranges from 0x%06x to 0x%06x.\n",
Stefan Taunerdbac46c2013-08-13 22:10:41 +00001344 boundary, total_size-1);
Stefan Tauner50e7c602011-11-08 10:55:54 +00001345 msg_cdbg("In that range are %d erase blocks with %d B each.\n",
1346 size_high / erase_size_high, erase_size_high);
1347 }
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001348 flash->chip->tested = TEST_OK_PREW;
Stefan Tauner50e7c602011-11-08 10:55:54 +00001349 return 1;
1350}
1351
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +00001352static int ich_hwseq_block_erase(struct flashctx *flash, unsigned int addr,
1353 unsigned int len)
Stefan Tauner50e7c602011-11-08 10:55:54 +00001354{
1355 uint32_t erase_block;
1356 uint16_t hsfc;
1357 uint32_t timeout = 5000 * 1000; /* 5 s for max 64 kB */
1358
1359 erase_block = ich_hwseq_get_erase_block_size(addr);
1360 if (len != erase_block) {
1361 msg_cerr("Erase block size for address 0x%06x is %d B, "
1362 "but requested erase block size is %d B. "
1363 "Not erasing anything.\n", addr, erase_block, len);
1364 return -1;
1365 }
1366
1367 /* Although the hardware supports this (it would erase the whole block
1368 * containing the address) we play safe here. */
1369 if (addr % erase_block != 0) {
1370 msg_cerr("Erase address 0x%06x is not aligned to the erase "
1371 "block boundary (any multiple of %d). "
1372 "Not erasing anything.\n", addr, erase_block);
1373 return -1;
1374 }
1375
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001376 if (addr + len > flash->chip->total_size * 1024) {
Stefan Tauner50e7c602011-11-08 10:55:54 +00001377 msg_perr("Request to erase some inaccessible memory address(es)"
1378 " (addr=0x%x, len=%d). "
1379 "Not erasing anything.\n", addr, len);
1380 return -1;
1381 }
1382
1383 msg_pdbg("Erasing %d bytes starting at 0x%06x.\n", len, addr);
Stefan Tauner7608d362014-08-05 23:28:47 +00001384 ich_hwseq_set_addr(addr);
Stefan Tauner50e7c602011-11-08 10:55:54 +00001385
1386 /* make sure FDONE, FCERR, AEL are cleared by writing 1 to them */
1387 REGWRITE16(ICH9_REG_HSFS, REGREAD16(ICH9_REG_HSFS));
1388
1389 hsfc = REGREAD16(ICH9_REG_HSFC);
Nico Huberd54e4f42017-03-23 23:45:47 +01001390 hsfc &= ~hwseq_data.hsfc_fcycle; /* clear operation */
Stefan Tauner50e7c602011-11-08 10:55:54 +00001391 hsfc |= (0x3 << HSFC_FCYCLE_OFF); /* set erase operation */
1392 hsfc |= HSFC_FGO; /* start */
1393 msg_pdbg("HSFC used for block erasing: ");
1394 prettyprint_ich9_reg_hsfc(hsfc);
1395 REGWRITE16(ICH9_REG_HSFC, hsfc);
1396
1397 if (ich_hwseq_wait_for_cycle_complete(timeout, len))
1398 return -1;
1399 return 0;
1400}
1401
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +00001402static int ich_hwseq_read(struct flashctx *flash, uint8_t *buf,
1403 unsigned int addr, unsigned int len)
Stefan Tauner50e7c602011-11-08 10:55:54 +00001404{
1405 uint16_t hsfc;
1406 uint16_t timeout = 100 * 60;
1407 uint8_t block_len;
1408
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001409 if (addr + len > flash->chip->total_size * 1024) {
Stefan Tauner50e7c602011-11-08 10:55:54 +00001410 msg_perr("Request to read from an inaccessible memory address "
1411 "(addr=0x%x, len=%d).\n", addr, len);
1412 return -1;
1413 }
1414
1415 msg_pdbg("Reading %d bytes starting at 0x%06x.\n", len, addr);
1416 /* clear FDONE, FCERR, AEL by writing 1 to them (if they are set) */
1417 REGWRITE16(ICH9_REG_HSFS, REGREAD16(ICH9_REG_HSFS));
1418
1419 while (len > 0) {
Stefan Tauner7608d362014-08-05 23:28:47 +00001420 /* Obey programmer limit... */
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +00001421 block_len = min(len, flash->mst->opaque.max_data_read);
Stefan Tauner7608d362014-08-05 23:28:47 +00001422 /* as well as flash chip page borders as demanded in the Intel datasheets. */
1423 block_len = min(block_len, 256 - (addr & 0xFF));
1424
Stefan Tauner50e7c602011-11-08 10:55:54 +00001425 ich_hwseq_set_addr(addr);
1426 hsfc = REGREAD16(ICH9_REG_HSFC);
Nico Huberd54e4f42017-03-23 23:45:47 +01001427 hsfc &= ~hwseq_data.hsfc_fcycle; /* set read operation */
Stefan Tauner50e7c602011-11-08 10:55:54 +00001428 hsfc &= ~HSFC_FDBC; /* clear byte count */
1429 /* set byte count */
1430 hsfc |= (((block_len - 1) << HSFC_FDBC_OFF) & HSFC_FDBC);
1431 hsfc |= HSFC_FGO; /* start */
1432 REGWRITE16(ICH9_REG_HSFC, hsfc);
1433
1434 if (ich_hwseq_wait_for_cycle_complete(timeout, block_len))
1435 return 1;
1436 ich_read_data(buf, block_len, ICH9_REG_FDATA0);
1437 addr += block_len;
1438 buf += block_len;
1439 len -= block_len;
1440 }
1441 return 0;
1442}
1443
Mark Marshallf20b7be2014-05-09 21:16:21 +00001444static int ich_hwseq_write(struct flashctx *flash, const uint8_t *buf, unsigned int addr, unsigned int len)
Stefan Tauner50e7c602011-11-08 10:55:54 +00001445{
1446 uint16_t hsfc;
1447 uint16_t timeout = 100 * 60;
1448 uint8_t block_len;
1449
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +00001450 if (addr + len > flash->chip->total_size * 1024) {
Stefan Tauner50e7c602011-11-08 10:55:54 +00001451 msg_perr("Request to write to an inaccessible memory address "
1452 "(addr=0x%x, len=%d).\n", addr, len);
1453 return -1;
1454 }
1455
1456 msg_pdbg("Writing %d bytes starting at 0x%06x.\n", len, addr);
1457 /* clear FDONE, FCERR, AEL by writing 1 to them (if they are set) */
1458 REGWRITE16(ICH9_REG_HSFS, REGREAD16(ICH9_REG_HSFS));
1459
1460 while (len > 0) {
1461 ich_hwseq_set_addr(addr);
Stefan Tauner7608d362014-08-05 23:28:47 +00001462 /* Obey programmer limit... */
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +00001463 block_len = min(len, flash->mst->opaque.max_data_write);
Stefan Tauner7608d362014-08-05 23:28:47 +00001464 /* as well as flash chip page borders as demanded in the Intel datasheets. */
1465 block_len = min(block_len, 256 - (addr & 0xFF));
Stefan Tauner50e7c602011-11-08 10:55:54 +00001466 ich_fill_data(buf, block_len, ICH9_REG_FDATA0);
1467 hsfc = REGREAD16(ICH9_REG_HSFC);
Nico Huberd54e4f42017-03-23 23:45:47 +01001468 hsfc &= ~hwseq_data.hsfc_fcycle; /* clear operation */
Stefan Tauner50e7c602011-11-08 10:55:54 +00001469 hsfc |= (0x2 << HSFC_FCYCLE_OFF); /* set write operation */
1470 hsfc &= ~HSFC_FDBC; /* clear byte count */
1471 /* set byte count */
1472 hsfc |= (((block_len - 1) << HSFC_FDBC_OFF) & HSFC_FDBC);
1473 hsfc |= HSFC_FGO; /* start */
1474 REGWRITE16(ICH9_REG_HSFC, hsfc);
1475
1476 if (ich_hwseq_wait_for_cycle_complete(timeout, block_len))
1477 return -1;
1478 addr += block_len;
1479 buf += block_len;
1480 len -= block_len;
1481 }
1482 return 0;
1483}
Stefan Taunerd0c5dc22011-10-20 12:57:14 +00001484
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +00001485static int ich_spi_send_multicommand(struct flashctx *flash,
1486 struct spi_command *cmds)
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +00001487{
1488 int ret = 0;
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001489 int i;
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +00001490 int oppos, preoppos;
1491 for (; (cmds->writecnt || cmds->readcnt) && !ret; cmds++) {
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +00001492 if ((cmds + 1)->writecnt || (cmds + 1)->readcnt) {
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001493 /* Next command is valid. */
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +00001494 preoppos = find_preop(curopcodes, cmds->writearr[0]);
1495 oppos = find_opcode(curopcodes, (cmds + 1)->writearr[0]);
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001496 if ((oppos == -1) && (preoppos != -1)) {
1497 /* Current command is listed as preopcode in
1498 * ICH struct OPCODES, but next command is not
1499 * listed as opcode in that struct.
1500 * Check for command sanity, then
1501 * try to reprogram the ICH opcode list.
1502 */
1503 if (find_preop(curopcodes,
1504 (cmds + 1)->writearr[0]) != -1) {
Sean Nelson316a29f2010-05-07 20:09:04 +00001505 msg_perr("%s: Two subsequent "
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001506 "preopcodes 0x%02x and 0x%02x, "
1507 "ignoring the first.\n",
1508 __func__, cmds->writearr[0],
1509 (cmds + 1)->writearr[0]);
1510 continue;
1511 }
1512 /* If the chipset is locked down, we'll fail
1513 * during execution of the next command anyway.
1514 * No need to bother with fixups.
1515 */
1516 if (!ichspi_lock) {
Helge Wagner738e2522010-10-05 22:06:05 +00001517 oppos = reprogram_opcode_on_the_fly((cmds + 1)->writearr[0], (cmds + 1)->writecnt, (cmds + 1)->readcnt);
1518 if (oppos == -1)
1519 continue;
1520 curopcodes->opcode[oppos].atomic = preoppos + 1;
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001521 continue;
1522 }
1523 }
1524 if ((oppos != -1) && (preoppos != -1)) {
1525 /* Current command is listed as preopcode in
1526 * ICH struct OPCODES and next command is listed
1527 * as opcode in that struct. Match them up.
1528 */
1529 curopcodes->opcode[oppos].atomic = preoppos + 1;
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +00001530 continue;
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001531 }
1532 /* If none of the above if-statements about oppos or
1533 * preoppos matched, this is a normal opcode.
1534 */
1535 }
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +00001536 ret = ich_spi_send_command(flash, cmds->writecnt, cmds->readcnt,
Carl-Daniel Hailfinger26f7e642009-09-18 15:50:56 +00001537 cmds->writearr, cmds->readarr);
Carl-Daniel Hailfingerf15e1ab2010-02-11 11:28:37 +00001538 /* Reset the type of all opcodes to non-atomic. */
1539 for (i = 0; i < 8; i++)
1540 curopcodes->opcode[i].atomic = 0;
Carl-Daniel Hailfinger02487aa2009-07-22 15:36:50 +00001541 }
1542 return ret;
1543}
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00001544
Michael Karchera4448d92010-07-22 18:04:15 +00001545#define ICH_BMWAG(x) ((x >> 24) & 0xff)
1546#define ICH_BMRAG(x) ((x >> 16) & 0xff)
1547#define ICH_BRWA(x) ((x >> 8) & 0xff)
1548#define ICH_BRRA(x) ((x >> 0) & 0xff)
1549
Stefan Tauner5210e722012-02-16 01:13:00 +00001550/* returns 0 if region is unused or r/w */
1551static int ich9_handle_frap(uint32_t frap, int i)
Michael Karchera4448d92010-07-22 18:04:15 +00001552{
Mathias Krausea60faab2011-01-17 07:50:42 +00001553 static const char *const access_names[4] = {
Michael Karchera4448d92010-07-22 18:04:15 +00001554 "locked", "read-only", "write-only", "read-write"
1555 };
Nico Huberaa91d5c2017-08-19 17:04:21 +02001556 const int rwperms_unknown = ARRAY_SIZE(access_names);
Mathias Krausea60faab2011-01-17 07:50:42 +00001557 static const char *const region_names[5] = {
Michael Karchera4448d92010-07-22 18:04:15 +00001558 "Flash Descriptor", "BIOS", "Management Engine",
1559 "Gigabit Ethernet", "Platform Data"
1560 };
Nico Huberd54e4f42017-03-23 23:45:47 +01001561 const char *const region_name = i < ARRAY_SIZE(region_names) ? region_names[i] : "unknown";
1562
Michael Karchera4448d92010-07-22 18:04:15 +00001563 uint32_t base, limit;
Nico Huberaa91d5c2017-08-19 17:04:21 +02001564 int rwperms;
Stefan Tauner29c80832011-06-12 08:14:10 +00001565 int offset = ICH9_REG_FREG0 + i * 4;
Michael Karchera4448d92010-07-22 18:04:15 +00001566 uint32_t freg = mmio_readl(ich_spibar + offset);
1567
Nico Huberaa91d5c2017-08-19 17:04:21 +02001568 if (i < 8) {
1569 rwperms = (((ICH_BRWA(frap) >> i) & 1) << 1) |
1570 (((ICH_BRRA(frap) >> i) & 1) << 0);
1571 } else {
1572 /* Datasheets don't define any access bits for regions > 7. We
1573 can't rely on the actual descriptor settings either as there
1574 are several overrides for them (those by other masters are
1575 not even readable by us, *shrug*). */
1576 rwperms = rwperms_unknown;
1577 }
1578
Michael Karchera4448d92010-07-22 18:04:15 +00001579 base = ICH_FREG_BASE(freg);
1580 limit = ICH_FREG_LIMIT(freg);
Stefan Taunere3adea02012-08-27 15:12:36 +00001581 if (base > limit || (freg == 0 && i > 0)) {
Michael Karchera4448d92010-07-22 18:04:15 +00001582 /* this FREG is disabled */
Stefan Tauner5210e722012-02-16 01:13:00 +00001583 msg_pdbg2("0x%02X: 0x%08x FREG%i: %s region is unused.\n",
Nico Huberd54e4f42017-03-23 23:45:47 +01001584 offset, freg, i, region_name);
Stefan Tauner5210e722012-02-16 01:13:00 +00001585 return 0;
1586 }
1587 msg_pdbg("0x%02X: 0x%08x ", offset, freg);
1588 if (rwperms == 0x3) {
1589 msg_pdbg("FREG%i: %s region (0x%08x-0x%08x) is %s.\n", i,
Nico Huber0bb3f712017-03-29 16:44:33 +02001590 region_name, base, limit, access_names[rwperms]);
Stefan Tauner5210e722012-02-16 01:13:00 +00001591 return 0;
Michael Karchera4448d92010-07-22 18:04:15 +00001592 }
Nico Huberaa91d5c2017-08-19 17:04:21 +02001593 if (rwperms == rwperms_unknown) {
1594 msg_pdbg("FREG%i: %s region (0x%08x-0x%08x) has unknown permissions.\n",
1595 i, region_name, base, limit);
1596 return 0;
1597 }
Michael Karchera4448d92010-07-22 18:04:15 +00001598
Stefan Taunerc6fa32d2013-01-04 22:54:07 +00001599 msg_pwarn("FREG%i: Warning: %s region (0x%08x-0x%08x) is %s.\n", i,
Nico Huber0bb3f712017-03-29 16:44:33 +02001600 region_name, base, limit, access_names[rwperms]);
Stefan Tauner5210e722012-02-16 01:13:00 +00001601 return 1;
Michael Karchera4448d92010-07-22 18:04:15 +00001602}
1603
Stefan Taunerbf69aaa2011-09-17 21:21:48 +00001604 /* In contrast to FRAP and the master section of the descriptor the bits
1605 * in the PR registers have an inverted meaning. The bits in FRAP
1606 * indicate read and write access _grant_. Here they indicate read
1607 * and write _protection_ respectively. If both bits are 0 the address
1608 * bits are ignored.
1609 */
1610#define ICH_PR_PERMS(pr) (((~((pr) >> PR_RP_OFF) & 1) << 0) | \
1611 ((~((pr) >> PR_WP_OFF) & 1) << 1))
1612
Stefan Tauner5210e722012-02-16 01:13:00 +00001613/* returns 0 if range is unused (i.e. r/w) */
Nico Huberd54e4f42017-03-23 23:45:47 +01001614static int ich9_handle_pr(const size_t reg_pr0, int i)
Stefan Taunerbf69aaa2011-09-17 21:21:48 +00001615{
Stefan Tauner5210e722012-02-16 01:13:00 +00001616 static const char *const access_names[3] = {
1617 "locked", "read-only", "write-only"
Stefan Taunerbf69aaa2011-09-17 21:21:48 +00001618 };
Nico Huberd54e4f42017-03-23 23:45:47 +01001619 uint8_t off = reg_pr0 + (i * 4);
Stefan Taunerbf69aaa2011-09-17 21:21:48 +00001620 uint32_t pr = mmio_readl(ich_spibar + off);
Stefan Tauner5210e722012-02-16 01:13:00 +00001621 unsigned int rwperms = ICH_PR_PERMS(pr);
Stefan Taunerbf69aaa2011-09-17 21:21:48 +00001622
Nico Huberd54e4f42017-03-23 23:45:47 +01001623 /* From 5 on we have GPR registers and start from 0 again. */
1624 const char *const prefix = i >= 5 ? "G" : "";
1625 if (i >= 5)
1626 i -= 5;
1627
Stefan Tauner5210e722012-02-16 01:13:00 +00001628 if (rwperms == 0x3) {
Nico Huberd54e4f42017-03-23 23:45:47 +01001629 msg_pdbg2("0x%02X: 0x%08x (%sPR%u is unused)\n", off, pr, prefix, i);
Stefan Tauner5210e722012-02-16 01:13:00 +00001630 return 0;
1631 }
1632
1633 msg_pdbg("0x%02X: 0x%08x ", off, pr);
Nico Huberd54e4f42017-03-23 23:45:47 +01001634 msg_pwarn("%sPR%u: Warning: 0x%08x-0x%08x is %s.\n", prefix, i, ICH_FREG_BASE(pr),
Nico Huber0bb3f712017-03-29 16:44:33 +02001635 ICH_FREG_LIMIT(pr), access_names[rwperms]);
Stefan Tauner5210e722012-02-16 01:13:00 +00001636 return 1;
Stefan Taunerbf69aaa2011-09-17 21:21:48 +00001637}
1638
Stefan Tauner75da80c2011-09-17 22:21:55 +00001639/* Set/Clear the read and write protection enable bits of PR register @i
1640 * according to @read_prot and @write_prot. */
Nico Huberd54e4f42017-03-23 23:45:47 +01001641static void ich9_set_pr(const size_t reg_pr0, int i, int read_prot, int write_prot)
Stefan Tauner75da80c2011-09-17 22:21:55 +00001642{
Nico Huberd54e4f42017-03-23 23:45:47 +01001643 void *addr = ich_spibar + reg_pr0 + (i * 4);
Stefan Tauner75da80c2011-09-17 22:21:55 +00001644 uint32_t old = mmio_readl(addr);
1645 uint32_t new;
1646
1647 msg_gspew("PR%u is 0x%08x", i, old);
1648 new = old & ~((1 << PR_RP_OFF) | (1 << PR_WP_OFF));
1649 if (read_prot)
1650 new |= (1 << PR_RP_OFF);
1651 if (write_prot)
1652 new |= (1 << PR_WP_OFF);
1653 if (old == new) {
1654 msg_gspew(" already.\n");
1655 return;
1656 }
1657 msg_gspew(", trying to set it to 0x%08x ", new);
1658 rmmio_writel(new, addr);
1659 msg_gspew("resulted in 0x%08x.\n", mmio_readl(addr));
1660}
1661
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +00001662static const struct spi_master spi_master_ich7 = {
Michael Karcherb9dbe482011-05-11 17:07:07 +00001663 .type = SPI_CONTROLLER_ICH7,
1664 .max_data_read = 64,
1665 .max_data_write = 64,
1666 .command = ich_spi_send_command,
1667 .multicommand = ich_spi_send_multicommand,
1668 .read = default_spi_read,
1669 .write_256 = default_spi_write_256,
Nico Huber7bca1262012-06-15 22:28:12 +00001670 .write_aai = default_spi_write_aai,
Michael Karcherb9dbe482011-05-11 17:07:07 +00001671};
1672
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +00001673static const struct spi_master spi_master_ich9 = {
Michael Karcherb9dbe482011-05-11 17:07:07 +00001674 .type = SPI_CONTROLLER_ICH9,
1675 .max_data_read = 64,
1676 .max_data_write = 64,
1677 .command = ich_spi_send_command,
1678 .multicommand = ich_spi_send_multicommand,
1679 .read = default_spi_read,
1680 .write_256 = default_spi_write_256,
Nico Huber7bca1262012-06-15 22:28:12 +00001681 .write_aai = default_spi_write_aai,
Michael Karcherb9dbe482011-05-11 17:07:07 +00001682};
1683
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +00001684static const struct opaque_master opaque_master_ich_hwseq = {
Stefan Tauner50e7c602011-11-08 10:55:54 +00001685 .max_data_read = 64,
1686 .max_data_write = 64,
1687 .probe = ich_hwseq_probe,
1688 .read = ich_hwseq_read,
1689 .write = ich_hwseq_write,
1690 .erase = ich_hwseq_block_erase,
1691};
1692
Nico Huber560111e2017-04-26 12:27:17 +02001693int ich_init_spi(void *spibar, enum ich_chipset ich_gen)
Michael Karchera4448d92010-07-22 18:04:15 +00001694{
1695 int i;
Stefan Tauner92d6a862013-10-25 00:33:37 +00001696 uint16_t tmp2;
Michael Karchera4448d92010-07-22 18:04:15 +00001697 uint32_t tmp;
Stefan Tauner50e7c602011-11-08 10:55:54 +00001698 char *arg;
Stefan Tauner5210e722012-02-16 01:13:00 +00001699 int ich_spi_force = 0;
1700 int ich_spi_rw_restricted = 0;
Stefan Taunerd0c5dc22011-10-20 12:57:14 +00001701 int desc_valid = 0;
Stefan Tauner50e7c602011-11-08 10:55:54 +00001702 struct ich_descriptors desc = {{ 0 }};
1703 enum ich_spi_mode {
1704 ich_auto,
1705 ich_hwseq,
1706 ich_swseq
1707 } ich_spi_mode = ich_auto;
Nico Huberd54e4f42017-03-23 23:45:47 +01001708 size_t num_freg, num_pr, reg_pr0;
Michael Karchera4448d92010-07-22 18:04:15 +00001709
Stefan Taunera8d838d2011-11-06 23:51:09 +00001710 ich_generation = ich_gen;
Stefan Tauner92d6a862013-10-25 00:33:37 +00001711 ich_spibar = spibar;
Michael Karchera4448d92010-07-22 18:04:15 +00001712
Nico Huberd54e4f42017-03-23 23:45:47 +01001713 /* Moving registers / bits */
1714 if (ich_generation == CHIPSET_100_SERIES_SUNRISE_POINT) {
1715 num_freg = 10;
David Hendricksa5216362017-08-08 20:02:22 -07001716 num_pr = 6; /* Includes GPR0 */
1717 reg_pr0 = PCH100_REG_FPR0;
1718 swseq_data.reg_ssfsc = PCH100_REG_SSFSC;
1719 swseq_data.reg_preop = PCH100_REG_PREOP;
1720 swseq_data.reg_optype = PCH100_REG_OPTYPE;
1721 swseq_data.reg_opmenu = PCH100_REG_OPMENU;
1722 hwseq_data.addr_mask = PCH100_FADDR_FLA;
1723 hwseq_data.only_4k = true;
1724 hwseq_data.hsfc_fcycle = PCH100_HSFC_FCYCLE;
Nico Huber19eb0792017-12-13 00:44:45 +01001725 } else if (ich_generation == CHIPSET_C620_SERIES_LEWISBURG) {
David Hendricksa5216362017-08-08 20:02:22 -07001726 num_freg = 12; /* 12 MMIO regs, but 16 regions in FD spec */
1727 num_pr = 6; /* Includes GPR0 */
Nico Huberd54e4f42017-03-23 23:45:47 +01001728 reg_pr0 = PCH100_REG_FPR0;
1729 swseq_data.reg_ssfsc = PCH100_REG_SSFSC;
1730 swseq_data.reg_preop = PCH100_REG_PREOP;
1731 swseq_data.reg_optype = PCH100_REG_OPTYPE;
1732 swseq_data.reg_opmenu = PCH100_REG_OPMENU;
1733 hwseq_data.addr_mask = PCH100_FADDR_FLA;
1734 hwseq_data.only_4k = true;
1735 hwseq_data.hsfc_fcycle = PCH100_HSFC_FCYCLE;
1736 } else {
1737 num_freg = 5;
1738 num_pr = 5;
1739 reg_pr0 = ICH9_REG_PR0;
1740 swseq_data.reg_ssfsc = ICH9_REG_SSFS;
1741 swseq_data.reg_preop = ICH9_REG_PREOP;
1742 swseq_data.reg_optype = ICH9_REG_OPTYPE;
1743 swseq_data.reg_opmenu = ICH9_REG_OPMENU;
1744 hwseq_data.addr_mask = ICH9_FADDR_FLA;
1745 hwseq_data.only_4k = false;
1746 hwseq_data.hsfc_fcycle = HSFC_FCYCLE;
1747 }
1748
Stefan Taunerd0c5dc22011-10-20 12:57:14 +00001749 switch (ich_generation) {
Stefan Taunera8d838d2011-11-06 23:51:09 +00001750 case CHIPSET_ICH7:
Stefan Tauner92d6a862013-10-25 00:33:37 +00001751 case CHIPSET_TUNNEL_CREEK:
1752 case CHIPSET_CENTERTON:
Michael Karchera4448d92010-07-22 18:04:15 +00001753 msg_pdbg("0x00: 0x%04x (SPIS)\n",
1754 mmio_readw(ich_spibar + 0));
1755 msg_pdbg("0x02: 0x%04x (SPIC)\n",
1756 mmio_readw(ich_spibar + 2));
1757 msg_pdbg("0x04: 0x%08x (SPIA)\n",
1758 mmio_readl(ich_spibar + 4));
Michael Karchera4448d92010-07-22 18:04:15 +00001759 ichspi_bbar = mmio_readl(ich_spibar + 0x50);
1760 msg_pdbg("0x50: 0x%08x (BBAR)\n",
1761 ichspi_bbar);
1762 msg_pdbg("0x54: 0x%04x (PREOP)\n",
1763 mmio_readw(ich_spibar + 0x54));
1764 msg_pdbg("0x56: 0x%04x (OPTYPE)\n",
1765 mmio_readw(ich_spibar + 0x56));
1766 msg_pdbg("0x58: 0x%08x (OPMENU)\n",
1767 mmio_readl(ich_spibar + 0x58));
1768 msg_pdbg("0x5c: 0x%08x (OPMENU+4)\n",
1769 mmio_readl(ich_spibar + 0x5c));
Stefan Tauner122dd122011-07-24 15:34:56 +00001770 for (i = 0; i < 3; i++) {
Michael Karchera4448d92010-07-22 18:04:15 +00001771 int offs;
1772 offs = 0x60 + (i * 4);
1773 msg_pdbg("0x%02x: 0x%08x (PBR%d)\n", offs,
1774 mmio_readl(ich_spibar + offs), i);
1775 }
Michael Karchera4448d92010-07-22 18:04:15 +00001776 if (mmio_readw(ich_spibar) & (1 << 15)) {
Stefan Taunerc6fa32d2013-01-04 22:54:07 +00001777 msg_pwarn("WARNING: SPI Configuration Lockdown activated.\n");
Michael Karchera4448d92010-07-22 18:04:15 +00001778 ichspi_lock = 1;
1779 }
Stefan Tauner745f6bb2011-11-13 15:17:10 +00001780 ich_init_opcodes();
Stefan Taunera8d838d2011-11-06 23:51:09 +00001781 ich_set_bbar(0);
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +00001782 register_spi_master(&spi_master_ich7);
Michael Karchera4448d92010-07-22 18:04:15 +00001783 break;
Stefan Taunera8d838d2011-11-06 23:51:09 +00001784 case CHIPSET_ICH8:
Stefan Taunerd0c5dc22011-10-20 12:57:14 +00001785 default: /* Future version might behave the same */
Stefan Tauner50e7c602011-11-08 10:55:54 +00001786 arg = extract_programmer_param("ich_spi_mode");
1787 if (arg && !strcmp(arg, "hwseq")) {
1788 ich_spi_mode = ich_hwseq;
1789 msg_pspew("user selected hwseq\n");
1790 } else if (arg && !strcmp(arg, "swseq")) {
1791 ich_spi_mode = ich_swseq;
1792 msg_pspew("user selected swseq\n");
1793 } else if (arg && !strcmp(arg, "auto")) {
1794 msg_pspew("user selected auto\n");
1795 ich_spi_mode = ich_auto;
1796 } else if (arg && !strlen(arg)) {
1797 msg_perr("Missing argument for ich_spi_mode.\n");
1798 free(arg);
1799 return ERROR_FATAL;
1800 } else if (arg) {
1801 msg_perr("Unknown argument for ich_spi_mode: %s\n",
1802 arg);
1803 free(arg);
1804 return ERROR_FATAL;
1805 }
1806 free(arg);
1807
Stefan Tauner5210e722012-02-16 01:13:00 +00001808 arg = extract_programmer_param("ich_spi_force");
1809 if (arg && !strcmp(arg, "yes")) {
1810 ich_spi_force = 1;
1811 msg_pspew("ich_spi_force enabled.\n");
1812 } else if (arg && !strlen(arg)) {
1813 msg_perr("Missing argument for ich_spi_force.\n");
1814 free(arg);
1815 return ERROR_FATAL;
1816 } else if (arg) {
1817 msg_perr("Unknown argument for ich_spi_force: \"%s\" "
1818 "(not \"yes\").\n", arg);
1819 free(arg);
1820 return ERROR_FATAL;
1821 }
1822 free(arg);
1823
Stefan Tauner29c80832011-06-12 08:14:10 +00001824 tmp2 = mmio_readw(ich_spibar + ICH9_REG_HSFS);
Michael Karchera4448d92010-07-22 18:04:15 +00001825 msg_pdbg("0x04: 0x%04x (HSFS)\n", tmp2);
Stefan Tauner55206942011-06-11 09:53:22 +00001826 prettyprint_ich9_reg_hsfs(tmp2);
Stefan Tauner29c80832011-06-12 08:14:10 +00001827 if (tmp2 & HSFS_FLOCKDN) {
Stefan Taunerc6fa32d2013-01-04 22:54:07 +00001828 msg_pwarn("Warning: SPI Configuration Lockdown activated.\n");
Stefan Tauner55206942011-06-11 09:53:22 +00001829 ichspi_lock = 1;
1830 }
Stefan Tauner1e146392011-09-15 23:52:55 +00001831 if (tmp2 & HSFS_FDV)
Stefan Taunerd0c5dc22011-10-20 12:57:14 +00001832 desc_valid = 1;
1833 if (!(tmp2 & HSFS_FDOPSS) && desc_valid)
Stefan Taunerd7d423b2012-10-20 09:13:16 +00001834 msg_pinfo("The Flash Descriptor Override Strap-Pin is set. Restrictions implied by\n"
1835 "the Master Section of the flash descriptor are NOT in effect. Please note\n"
1836 "that Protected Range (PR) restrictions still apply.\n");
Stefan Tauner745f6bb2011-11-13 15:17:10 +00001837 ich_init_opcodes();
Stefan Tauner55206942011-06-11 09:53:22 +00001838
Stefan Taunerf382e352011-11-08 11:55:24 +00001839 if (desc_valid) {
1840 tmp2 = mmio_readw(ich_spibar + ICH9_REG_HSFC);
1841 msg_pdbg("0x06: 0x%04x (HSFC)\n", tmp2);
1842 prettyprint_ich9_reg_hsfc(tmp2);
1843 }
Michael Karchera4448d92010-07-22 18:04:15 +00001844
Stefan Tauner5ffe65b2011-07-07 04:10:57 +00001845 tmp = mmio_readl(ich_spibar + ICH9_REG_FADDR);
Stefan Taunereb582572012-09-21 12:52:50 +00001846 msg_pdbg2("0x08: 0x%08x (FADDR)\n", tmp);
Michael Karchera4448d92010-07-22 18:04:15 +00001847
David Hendricksa5216362017-08-08 20:02:22 -07001848 if (ich_gen == CHIPSET_100_SERIES_SUNRISE_POINT || ich_gen == CHIPSET_C620_SERIES_LEWISBURG) {
Nico Huberd54e4f42017-03-23 23:45:47 +01001849 const uint32_t dlock = mmio_readl(ich_spibar + PCH100_REG_DLOCK);
1850 msg_pdbg("0x0c: 0x%08x (DLOCK)\n", dlock);
1851 prettyprint_pch100_reg_dlock(dlock);
1852 }
1853
Stefan Taunerf382e352011-11-08 11:55:24 +00001854 if (desc_valid) {
1855 tmp = mmio_readl(ich_spibar + ICH9_REG_FRAP);
1856 msg_pdbg("0x50: 0x%08x (FRAP)\n", tmp);
1857 msg_pdbg("BMWAG 0x%02x, ", ICH_BMWAG(tmp));
1858 msg_pdbg("BMRAG 0x%02x, ", ICH_BMRAG(tmp));
1859 msg_pdbg("BRWA 0x%02x, ", ICH_BRWA(tmp));
1860 msg_pdbg("BRRA 0x%02x\n", ICH_BRRA(tmp));
1861
Stefan Tauner5210e722012-02-16 01:13:00 +00001862 /* Handle FREGx and FRAP registers */
Nico Huberd54e4f42017-03-23 23:45:47 +01001863 for (i = 0; i < num_freg; i++)
Stefan Tauner5210e722012-02-16 01:13:00 +00001864 ich_spi_rw_restricted |= ich9_handle_frap(tmp, i);
Stefan Tauner27cb34b2013-06-01 00:06:12 +00001865 if (ich_spi_rw_restricted)
1866 msg_pwarn("Not all flash regions are freely accessible by flashrom. This is "
Stefan Tauner4c723152016-01-14 22:47:55 +00001867 "most likely\ndue to an active ME. Please see "
1868 "https://flashrom.org/ME for details.\n");
Stefan Taunerf382e352011-11-08 11:55:24 +00001869 }
Michael Karchera4448d92010-07-22 18:04:15 +00001870
Stefan Taunereb582572012-09-21 12:52:50 +00001871 /* Handle PR registers */
Nico Huberd54e4f42017-03-23 23:45:47 +01001872 for (i = 0; i < num_pr; i++) {
Stefan Tauner5210e722012-02-16 01:13:00 +00001873 /* if not locked down try to disable PR locks first */
1874 if (!ichspi_lock)
Nico Huberd54e4f42017-03-23 23:45:47 +01001875 ich9_set_pr(reg_pr0, i, 0, 0);
1876 ich_spi_rw_restricted |= ich9_handle_pr(reg_pr0, i);
Stefan Tauner5210e722012-02-16 01:13:00 +00001877 }
1878
1879 if (ich_spi_rw_restricted) {
Stefan Tauner5210e722012-02-16 01:13:00 +00001880 if (!ich_spi_force)
1881 programmer_may_write = 0;
Stefan Taunerd7d423b2012-10-20 09:13:16 +00001882 msg_pinfo("Writes have been disabled for safety reasons. You can enforce write\n"
1883 "support with the ich_spi_force programmer option, but you will most likely\n"
1884 "harm your hardware! If you force flashrom you will get no support if\n"
1885 "something breaks. On a few mainboards it is possible to enable write\n"
1886 "access by setting a jumper (see its documentation or the board itself).\n");
Stefan Tauner5210e722012-02-16 01:13:00 +00001887 if (ich_spi_force)
Stefan Taunerd7d423b2012-10-20 09:13:16 +00001888 msg_pinfo("Continuing with write support because the user forced us to!\n");
Stefan Tauner5210e722012-02-16 01:13:00 +00001889 }
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +00001890
Nico Huberd54e4f42017-03-23 23:45:47 +01001891 tmp = mmio_readl(ich_spibar + swseq_data.reg_ssfsc);
1892 msg_pdbg("0x%zx: 0x%02x (SSFS)\n", swseq_data.reg_ssfsc, tmp & 0xff);
Stefan Tauner2a8b2622011-06-11 09:53:16 +00001893 prettyprint_ich9_reg_ssfs(tmp);
Stefan Tauner29c80832011-06-12 08:14:10 +00001894 if (tmp & SSFS_FCERR) {
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +00001895 msg_pdbg("Clearing SSFS.FCERR\n");
Nico Huberd54e4f42017-03-23 23:45:47 +01001896 mmio_writeb(SSFS_FCERR, ich_spibar + swseq_data.reg_ssfsc);
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +00001897 }
Nico Huberd54e4f42017-03-23 23:45:47 +01001898 msg_pdbg("0x%zx: 0x%06x (SSFC)\n", swseq_data.reg_ssfsc + 1, tmp >> 8);
Stefan Tauner2a8b2622011-06-11 09:53:16 +00001899 prettyprint_ich9_reg_ssfc(tmp);
Carl-Daniel Hailfingereacbd162011-03-17 00:10:25 +00001900
Nico Huberd54e4f42017-03-23 23:45:47 +01001901 msg_pdbg("0x%zx: 0x%04x (PREOP)\n",
1902 swseq_data.reg_preop, mmio_readw(ich_spibar + swseq_data.reg_preop));
1903 msg_pdbg("0x%zx: 0x%04x (OPTYPE)\n",
1904 swseq_data.reg_optype, mmio_readw(ich_spibar + swseq_data.reg_optype));
1905 msg_pdbg("0x%zx: 0x%08x (OPMENU)\n",
1906 swseq_data.reg_opmenu, mmio_readl(ich_spibar + swseq_data.reg_opmenu));
1907 msg_pdbg("0x%zx: 0x%08x (OPMENU+4)\n",
1908 swseq_data.reg_opmenu + 4, mmio_readl(ich_spibar + swseq_data.reg_opmenu + 4));
Stefan Taunerf382e352011-11-08 11:55:24 +00001909 if (ich_generation == CHIPSET_ICH8 && desc_valid) {
Stefan Tauner1e146392011-09-15 23:52:55 +00001910 tmp = mmio_readl(ich_spibar + ICH8_REG_VSCC);
1911 msg_pdbg("0xC1: 0x%08x (VSCC)\n", tmp);
1912 msg_pdbg("VSCC: ");
Nico Huberd152fb92017-06-19 12:57:10 +02001913 prettyprint_ich_reg_vscc(tmp, FLASHROM_MSG_DEBUG, true);
David Hendricksa5216362017-08-08 20:02:22 -07001914 } else if (ich_generation != CHIPSET_100_SERIES_SUNRISE_POINT &&
1915 ich_generation != CHIPSET_C620_SERIES_LEWISBURG) {
Duncan Laurie4095ed72014-08-20 15:39:32 +00001916 if (ich_generation != CHIPSET_BAYTRAIL && desc_valid) {
1917 ichspi_bbar = mmio_readl(ich_spibar + ICH9_REG_BBAR);
1918 msg_pdbg("0xA0: 0x%08x (BBAR)\n",
1919 ichspi_bbar);
1920 ich_set_bbar(0);
1921 }
Stefan Taunerbd649e42011-07-01 00:39:16 +00001922
Stefan Taunerf382e352011-11-08 11:55:24 +00001923 if (desc_valid) {
1924 tmp = mmio_readl(ich_spibar + ICH9_REG_LVSCC);
1925 msg_pdbg("0xC4: 0x%08x (LVSCC)\n", tmp);
1926 msg_pdbg("LVSCC: ");
Nico Huberd152fb92017-06-19 12:57:10 +02001927 prettyprint_ich_reg_vscc(tmp, FLASHROM_MSG_DEBUG, true);
Stefan Tauner1e146392011-09-15 23:52:55 +00001928
Stefan Taunerf382e352011-11-08 11:55:24 +00001929 tmp = mmio_readl(ich_spibar + ICH9_REG_UVSCC);
1930 msg_pdbg("0xC8: 0x%08x (UVSCC)\n", tmp);
1931 msg_pdbg("UVSCC: ");
Nico Huberd152fb92017-06-19 12:57:10 +02001932 prettyprint_ich_reg_vscc(tmp, FLASHROM_MSG_DEBUG, false);
Stefan Tauner1e146392011-09-15 23:52:55 +00001933
Stefan Taunerf382e352011-11-08 11:55:24 +00001934 tmp = mmio_readl(ich_spibar + ICH9_REG_FPB);
1935 msg_pdbg("0xD0: 0x%08x (FPB)\n", tmp);
1936 }
Stefan Tauner1e146392011-09-15 23:52:55 +00001937 }
1938
Stefan Taunerd0c5dc22011-10-20 12:57:14 +00001939 if (desc_valid) {
Nico Huberd54e4f42017-03-23 23:45:47 +01001940 if (read_ich_descriptors_via_fdo(ich_gen, ich_spibar, &desc) == ICH_RET_OK)
Stefan Tauner2ba9f6e2014-08-20 15:39:19 +00001941 prettyprint_ich_descriptors(ich_gen, &desc);
1942
Stefan Tauner50e7c602011-11-08 10:55:54 +00001943 /* If the descriptor is valid and indicates multiple
1944 * flash devices we need to use hwseq to be able to
1945 * access the second flash device.
1946 */
1947 if (ich_spi_mode == ich_auto && desc.content.NC != 0) {
1948 msg_pinfo("Enabling hardware sequencing due to "
1949 "multiple flash chips detected.\n");
1950 ich_spi_mode = ich_hwseq;
1951 }
Stefan Tauner1e146392011-09-15 23:52:55 +00001952 }
Stefan Tauner50e7c602011-11-08 10:55:54 +00001953
1954 if (ich_spi_mode == ich_auto && ichspi_lock &&
1955 ich_missing_opcodes()) {
1956 msg_pinfo("Enabling hardware sequencing because "
1957 "some important opcode is locked.\n");
1958 ich_spi_mode = ich_hwseq;
1959 }
1960
Nico Huber22f2dc52017-08-31 16:14:22 +02001961 if (ich_spi_mode == ich_auto && ich_gen == CHIPSET_100_SERIES_SUNRISE_POINT) {
1962 msg_pdbg("Enabling hardware sequencing by default for 100 series PCH.\n");
1963 ich_spi_mode = ich_hwseq;
1964 }
1965
Stefan Tauner50e7c602011-11-08 10:55:54 +00001966 if (ich_spi_mode == ich_hwseq) {
1967 if (!desc_valid) {
1968 msg_perr("Hardware sequencing was requested "
1969 "but the flash descriptor is not "
1970 "valid. Aborting.\n");
1971 return ERROR_FATAL;
1972 }
Stefan Tauner2ba9f6e2014-08-20 15:39:19 +00001973
1974 int tmpi = getFCBA_component_density(ich_generation, &desc, 0);
1975 if (tmpi < 0) {
1976 msg_perr("Could not determine density of flash component %d.\n", 0);
1977 return ERROR_FATAL;
1978 }
1979 hwseq_data.size_comp0 = tmpi;
1980
1981 tmpi = getFCBA_component_density(ich_generation, &desc, 1);
1982 if (tmpi < 0) {
1983 msg_perr("Could not determine density of flash component %d.\n", 1);
1984 return ERROR_FATAL;
1985 }
1986 hwseq_data.size_comp1 = tmpi;
1987
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +00001988 register_opaque_master(&opaque_master_ich_hwseq);
Stefan Tauner50e7c602011-11-08 10:55:54 +00001989 } else {
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +00001990 register_spi_master(&spi_master_ich9);
Stefan Tauner50e7c602011-11-08 10:55:54 +00001991 }
Michael Karchera4448d92010-07-22 18:04:15 +00001992 break;
Michael Karchera4448d92010-07-22 18:04:15 +00001993 }
1994
Michael Karchera4448d92010-07-22 18:04:15 +00001995 return 0;
1996}
1997
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +00001998static const struct spi_master spi_master_via = {
Michael Karcherb9dbe482011-05-11 17:07:07 +00001999 .type = SPI_CONTROLLER_VIA,
2000 .max_data_read = 16,
2001 .max_data_write = 16,
2002 .command = ich_spi_send_command,
2003 .multicommand = ich_spi_send_multicommand,
2004 .read = default_spi_read,
2005 .write_256 = default_spi_write_256,
Nico Huber7bca1262012-06-15 22:28:12 +00002006 .write_aai = default_spi_write_aai,
Michael Karcherb9dbe482011-05-11 17:07:07 +00002007};
2008
Nico Huber560111e2017-04-26 12:27:17 +02002009int via_init_spi(uint32_t mmio_base)
Michael Karchera4448d92010-07-22 18:04:15 +00002010{
Carl-Daniel Hailfinger841d6312010-11-24 23:37:22 +00002011 int i;
Michael Karchera4448d92010-07-22 18:04:15 +00002012
Stefan Tauner7fb5aa02013-08-14 15:48:44 +00002013 ich_spibar = rphysmap("VIA SPI MMIO registers", mmio_base, 0x70);
2014 if (ich_spibar == ERROR_PTR)
2015 return ERROR_FATAL;
Helge Wagnerdd73d832012-08-24 23:03:46 +00002016 /* Do we really need no write enable? Like the LPC one at D17F0 0x40 */
Michael Karchera4448d92010-07-22 18:04:15 +00002017
Michael Karchera4448d92010-07-22 18:04:15 +00002018 /* Not sure if it speaks all these bus protocols. */
Carl-Daniel Hailfingereaacd2d2011-11-09 23:40:00 +00002019 internal_buses_supported = BUS_LPC | BUS_FWH;
Stefan Taunera8d838d2011-11-06 23:51:09 +00002020 ich_generation = CHIPSET_ICH7;
Carl-Daniel Hailfingera5bcbce2014-07-19 22:03:29 +00002021 register_spi_master(&spi_master_via);
Carl-Daniel Hailfinger841d6312010-11-24 23:37:22 +00002022
2023 msg_pdbg("0x00: 0x%04x (SPIS)\n", mmio_readw(ich_spibar + 0));
2024 msg_pdbg("0x02: 0x%04x (SPIC)\n", mmio_readw(ich_spibar + 2));
2025 msg_pdbg("0x04: 0x%08x (SPIA)\n", mmio_readl(ich_spibar + 4));
2026 for (i = 0; i < 2; i++) {
2027 int offs;
2028 offs = 8 + (i * 8);
2029 msg_pdbg("0x%02x: 0x%08x (SPID%d)\n", offs,
2030 mmio_readl(ich_spibar + offs), i);
2031 msg_pdbg("0x%02x: 0x%08x (SPID%d+4)\n", offs + 4,
2032 mmio_readl(ich_spibar + offs + 4), i);
2033 }
2034 ichspi_bbar = mmio_readl(ich_spibar + 0x50);
2035 msg_pdbg("0x50: 0x%08x (BBAR)\n", ichspi_bbar);
2036 msg_pdbg("0x54: 0x%04x (PREOP)\n", mmio_readw(ich_spibar + 0x54));
2037 msg_pdbg("0x56: 0x%04x (OPTYPE)\n", mmio_readw(ich_spibar + 0x56));
2038 msg_pdbg("0x58: 0x%08x (OPMENU)\n", mmio_readl(ich_spibar + 0x58));
2039 msg_pdbg("0x5c: 0x%08x (OPMENU+4)\n", mmio_readl(ich_spibar + 0x5c));
2040 for (i = 0; i < 3; i++) {
2041 int offs;
2042 offs = 0x60 + (i * 4);
2043 msg_pdbg("0x%02x: 0x%08x (PBR%d)\n", offs,
2044 mmio_readl(ich_spibar + offs), i);
2045 }
2046 msg_pdbg("0x6c: 0x%04x (CLOCK/DEBUG)\n",
2047 mmio_readw(ich_spibar + 0x6c));
2048 if (mmio_readw(ich_spibar) & (1 << 15)) {
Stefan Taunerc6fa32d2013-01-04 22:54:07 +00002049 msg_pwarn("Warning: SPI Configuration Lockdown activated.\n");
Carl-Daniel Hailfinger841d6312010-11-24 23:37:22 +00002050 ichspi_lock = 1;
2051 }
2052
Stefan Taunera8d838d2011-11-06 23:51:09 +00002053 ich_set_bbar(0);
Michael Karchera4448d92010-07-22 18:04:15 +00002054 ich_init_opcodes();
2055
2056 return 0;
2057}
2058
Carl-Daniel Hailfingercceafa22010-05-26 01:45:41 +00002059#endif