blob: 44d283c590755cee50b528341c727b214b1c0d4c [file] [log] [blame]
Patrick Georgiac959032020-05-05 22:49:26 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -07002
Arthur Heymans026863b2019-11-21 08:24:02 +01003#define __SIMPLE_DEVICE__
4
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -07005/* This file is derived from the flashrom project. */
Elyes HAOUAS361a9352019-12-18 21:26:33 +01006
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -07007#include <string.h>
David Hendricksf2612a12014-04-13 16:27:02 -07008#include <bootstate.h>
Furquan Shaikhde705fa2017-04-19 19:27:28 -07009#include <commonlib/helpers.h>
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070010#include <delay.h>
Kyösti Mälkki13f66502019-03-03 08:01:05 +020011#include <device/mmio.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020012#include <device/pci_ops.h>
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070013#include <console/console.h>
Kyösti Mälkki7ba14402019-02-07 12:44:00 +020014#include <device/device.h>
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +010015#include <device/pci.h>
16#include <spi_flash.h>
Zheng Bao600784e2013-02-07 17:30:23 +080017#include <spi-generic.h>
Aaron Durbin4ed8e9c2019-12-27 14:30:51 -070018#include <timer.h>
Elyes HAOUAS608a75c2021-02-12 08:09:58 +010019#include <types.h>
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070020
Arthur Heymans92185e32019-05-28 13:06:34 +020021#include "spi.h"
22
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +010023#define HSFC_FCYCLE_OFF 1 /* 1-2: FLASH Cycle */
24#define HSFC_FCYCLE (0x3 << HSFC_FCYCLE_OFF)
25#define HSFC_FDBC_OFF 8 /* 8-13: Flash Data Byte Count */
26#define HSFC_FDBC (0x3f << HSFC_FDBC_OFF)
27
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +010028static int spi_is_multichip(void);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +010029
Angel Ponsd21b4632021-02-10 17:12:05 +010030static void spi_set_smm_only_flashing(bool enable);
31
Arthur Heymansa9c1a5f2019-06-15 18:21:58 +020032struct ich7_spi_regs {
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070033 uint16_t spis;
34 uint16_t spic;
35 uint32_t spia;
36 uint64_t spid[8];
37 uint64_t _pad;
38 uint32_t bbar;
39 uint16_t preop;
40 uint16_t optype;
41 uint8_t opmenu[8];
Arthur Heymans11fcb2bc2018-01-07 20:46:31 +010042 uint32_t pbr[3];
Arthur Heymansa9c1a5f2019-06-15 18:21:58 +020043} __packed;
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070044
Arthur Heymansa9c1a5f2019-06-15 18:21:58 +020045struct ich9_spi_regs {
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070046 uint32_t bfpr;
47 uint16_t hsfs;
48 uint16_t hsfc;
49 uint32_t faddr;
50 uint32_t _reserved0;
51 uint32_t fdata[16];
52 uint32_t frap;
53 uint32_t freg[5];
54 uint32_t _reserved1[3];
55 uint32_t pr[5];
56 uint32_t _reserved2[2];
57 uint8_t ssfs;
58 uint8_t ssfc[3];
59 uint16_t preop;
60 uint16_t optype;
61 uint8_t opmenu[8];
62 uint32_t bbar;
63 uint8_t _reserved3[12];
64 uint32_t fdoc;
65 uint32_t fdod;
66 uint8_t _reserved4[8];
67 uint32_t afc;
68 uint32_t lvscc;
69 uint32_t uvscc;
70 uint8_t _reserved5[4];
71 uint32_t fpb;
72 uint8_t _reserved6[28];
73 uint32_t srdl;
74 uint32_t srdc;
75 uint32_t srd;
Arthur Heymansa9c1a5f2019-06-15 18:21:58 +020076} __packed;
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070077
Arthur Heymansa9c1a5f2019-06-15 18:21:58 +020078struct ich_spi_controller {
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070079 int locked;
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +010080 uint32_t flmap0;
Stefan Tauner327205d2018-08-26 13:53:16 +020081 uint32_t flcomp;
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +010082 uint32_t hsfs;
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070083
Arthur Heymans21c5d432019-06-15 18:23:29 +020084 union {
85 struct ich9_spi_regs *ich9_spi;
86 struct ich7_spi_regs *ich7_spi;
87 };
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070088 uint8_t *opmenu;
89 int menubytes;
90 uint16_t *preop;
91 uint16_t *optype;
92 uint32_t *addr;
93 uint8_t *data;
Martin Rothff744bf2019-10-23 21:46:03 -060094 unsigned int databytes;
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070095 uint8_t *status;
96 uint16_t *control;
97 uint32_t *bbar;
Arthur Heymans11fcb2bc2018-01-07 20:46:31 +010098 uint32_t *fpr;
99 uint8_t fpr_max;
Arthur Heymansa9c1a5f2019-06-15 18:21:58 +0200100};
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700101
Patrick Georgic9b13592019-11-29 11:47:47 +0100102static struct ich_spi_controller cntlr;
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700103
104enum {
105 SPIS_SCIP = 0x0001,
106 SPIS_GRANT = 0x0002,
107 SPIS_CDS = 0x0004,
108 SPIS_FCERR = 0x0008,
109 SSFS_AEL = 0x0010,
110 SPIS_LOCK = 0x8000,
111 SPIS_RESERVED_MASK = 0x7ff0,
112 SSFS_RESERVED_MASK = 0x7fe2
113};
114
115enum {
116 SPIC_SCGO = 0x000002,
117 SPIC_ACS = 0x000004,
118 SPIC_SPOP = 0x000008,
119 SPIC_DBC = 0x003f00,
120 SPIC_DS = 0x004000,
121 SPIC_SME = 0x008000,
122 SSFC_SCF_MASK = 0x070000,
123 SSFC_RESERVED = 0xf80000
124};
125
126enum {
127 HSFS_FDONE = 0x0001,
128 HSFS_FCERR = 0x0002,
129 HSFS_AEL = 0x0004,
130 HSFS_BERASE_MASK = 0x0018,
131 HSFS_BERASE_SHIFT = 3,
132 HSFS_SCIP = 0x0020,
133 HSFS_FDOPSS = 0x2000,
134 HSFS_FDV = 0x4000,
135 HSFS_FLOCKDN = 0x8000
136};
137
138enum {
139 HSFC_FGO = 0x0001,
140 HSFC_FCYCLE_MASK = 0x0006,
141 HSFC_FCYCLE_SHIFT = 1,
142 HSFC_FDBC_MASK = 0x3f00,
143 HSFC_FDBC_SHIFT = 8,
144 HSFC_FSMIE = 0x8000
145};
146
147enum {
148 SPI_OPCODE_TYPE_READ_NO_ADDRESS = 0,
149 SPI_OPCODE_TYPE_WRITE_NO_ADDRESS = 1,
150 SPI_OPCODE_TYPE_READ_WITH_ADDRESS = 2,
151 SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS = 3
152};
153
Julius Wernercd49cce2019-03-05 16:53:33 -0800154#if CONFIG(DEBUG_SPI_FLASH)
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700155
156static u8 readb_(const void *addr)
157{
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800158 u8 v = read8(addr);
Elyes HAOUASad19c2f2018-11-26 15:57:30 +0100159
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700160 printk(BIOS_DEBUG, "read %2.2x from %4.4x\n",
Martin Rothff744bf2019-10-23 21:46:03 -0600161 v, ((unsigned int) addr & 0xffff) - 0xf020);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700162 return v;
163}
164
165static u16 readw_(const void *addr)
166{
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800167 u16 v = read16(addr);
Elyes HAOUASad19c2f2018-11-26 15:57:30 +0100168
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700169 printk(BIOS_DEBUG, "read %4.4x from %4.4x\n",
Martin Rothff744bf2019-10-23 21:46:03 -0600170 v, ((unsigned int) addr & 0xffff) - 0xf020);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700171 return v;
172}
173
174static u32 readl_(const void *addr)
175{
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800176 u32 v = read32(addr);
Elyes HAOUASad19c2f2018-11-26 15:57:30 +0100177
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700178 printk(BIOS_DEBUG, "read %8.8x from %4.4x\n",
Martin Rothff744bf2019-10-23 21:46:03 -0600179 v, ((unsigned int) addr & 0xffff) - 0xf020);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700180 return v;
181}
182
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800183static void writeb_(u8 b, void *addr)
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700184{
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800185 write8(addr, b);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700186 printk(BIOS_DEBUG, "wrote %2.2x to %4.4x\n",
Martin Rothff744bf2019-10-23 21:46:03 -0600187 b, ((unsigned int) addr & 0xffff) - 0xf020);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700188}
189
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800190static void writew_(u16 b, void *addr)
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700191{
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800192 write16(addr, b);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700193 printk(BIOS_DEBUG, "wrote %4.4x to %4.4x\n",
Martin Rothff744bf2019-10-23 21:46:03 -0600194 b, ((unsigned int) addr & 0xffff) - 0xf020);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700195}
196
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800197static void writel_(u32 b, void *addr)
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700198{
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800199 write32(addr, b);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700200 printk(BIOS_DEBUG, "wrote %8.8x to %4.4x\n",
Martin Rothff744bf2019-10-23 21:46:03 -0600201 b, ((unsigned int) addr & 0xffff) - 0xf020);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700202}
203
204#else /* CONFIG_DEBUG_SPI_FLASH ^^^ enabled vvv NOT enabled */
205
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800206#define readb_(a) read8(a)
207#define readw_(a) read16(a)
208#define readl_(a) read32(a)
209#define writeb_(val, addr) write8(addr, val)
210#define writew_(val, addr) write16(addr, val)
211#define writel_(val, addr) write32(addr, val)
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700212
213#endif /* CONFIG_DEBUG_SPI_FLASH ^^^ NOT enabled */
214
215static void write_reg(const void *value, void *dest, uint32_t size)
216{
217 const uint8_t *bvalue = value;
218 uint8_t *bdest = dest;
219
220 while (size >= 4) {
221 writel_(*(const uint32_t *)bvalue, bdest);
222 bdest += 4; bvalue += 4; size -= 4;
223 }
224 while (size) {
225 writeb_(*bvalue, bdest);
226 bdest++; bvalue++; size--;
227 }
228}
229
230static void read_reg(const void *src, void *value, uint32_t size)
231{
232 const uint8_t *bsrc = src;
233 uint8_t *bvalue = value;
234
235 while (size >= 4) {
236 *(uint32_t *)bvalue = readl_(bsrc);
237 bsrc += 4; bvalue += 4; size -= 4;
238 }
239 while (size) {
240 *bvalue = readb_(bsrc);
241 bsrc++; bvalue++; size--;
242 }
243}
244
245static void ich_set_bbar(uint32_t minaddr)
246{
247 const uint32_t bbar_mask = 0x00ffff00;
248 uint32_t ichspi_bbar;
249
250 minaddr &= bbar_mask;
Patrick Georgic9b13592019-11-29 11:47:47 +0100251 ichspi_bbar = readl_(cntlr.bbar) & ~bbar_mask;
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700252 ichspi_bbar |= minaddr;
Patrick Georgic9b13592019-11-29 11:47:47 +0100253 writel_(ichspi_bbar, cntlr.bbar);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700254}
255
Jacob Garber9172b692019-06-26 16:18:16 -0600256#if CONFIG(SOUTHBRIDGE_INTEL_I82801GX)
257#define MENU_BYTES member_size(struct ich7_spi_regs, opmenu)
258#else
259#define MENU_BYTES member_size(struct ich9_spi_regs, opmenu)
260#endif
261
Arthur Heymans47a66032019-10-25 23:43:14 +0200262#define RCBA 0xf0
263#define SBASE 0x54
264
Arthur Heymans47a66032019-10-25 23:43:14 +0200265static void *get_spi_bar(pci_devfn_t dev)
Arthur Heymans47a66032019-10-25 23:43:14 +0200266{
267 uintptr_t rcba; /* Root Complex Register Block */
268 uintptr_t sbase;
269
270 if (CONFIG(SOUTHBRIDGE_INTEL_I82801GX)) {
271 rcba = pci_read_config32(dev, RCBA);
272 return (void *)((rcba & 0xffffc000) + 0x3020);
273 }
274 if (CONFIG(SOUTHBRIDGE_INTEL_COMMON_SPI_SILVERMONT)) {
275 sbase = pci_read_config32(dev, SBASE);
276 sbase &= ~0x1ff;
277 return (void *)sbase;
278 }
279 if (CONFIG(SOUTHBRIDGE_INTEL_COMMON_SPI_ICH9)) {
280 rcba = pci_read_config32(dev, RCBA);
281 return (void *)((rcba & 0xffffc000) + 0x3800);
282 }
283}
284
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700285void spi_init(void)
286{
Arthur Heymansa9c1a5f2019-06-15 18:21:58 +0200287 struct ich9_spi_regs *ich9_spi;
288 struct ich7_spi_regs *ich7_spi;
Vladimir Serbinenko42c4a9d2014-02-16 17:13:19 +0100289 uint16_t hsfs;
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700290
Elyes HAOUAS68c851b2018-06-12 22:06:09 +0200291 pci_devfn_t dev = PCI_DEV(0, 31, 0);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700292
Julius Wernercd49cce2019-03-05 16:53:33 -0800293 if (CONFIG(SOUTHBRIDGE_INTEL_I82801GX)) {
Arthur Heymans47a66032019-10-25 23:43:14 +0200294 ich7_spi = get_spi_bar(dev);
Patrick Georgic9b13592019-11-29 11:47:47 +0100295 cntlr.ich7_spi = ich7_spi;
296 cntlr.opmenu = ich7_spi->opmenu;
297 cntlr.menubytes = sizeof(ich7_spi->opmenu);
298 cntlr.optype = &ich7_spi->optype;
299 cntlr.addr = &ich7_spi->spia;
300 cntlr.data = (uint8_t *)ich7_spi->spid;
301 cntlr.databytes = sizeof(ich7_spi->spid);
302 cntlr.status = (uint8_t *)&ich7_spi->spis;
303 cntlr.control = &ich7_spi->spic;
304 cntlr.bbar = &ich7_spi->bbar;
305 cntlr.preop = &ich7_spi->preop;
306 cntlr.fpr = &ich7_spi->pbr[0];
307 cntlr.fpr_max = 3;
Arthur Heymansc88e3702017-08-20 20:50:17 +0200308 } else {
Arthur Heymans47a66032019-10-25 23:43:14 +0200309 ich9_spi = get_spi_bar(dev);
Patrick Georgic9b13592019-11-29 11:47:47 +0100310 cntlr.ich9_spi = ich9_spi;
Arthur Heymansc88e3702017-08-20 20:50:17 +0200311 hsfs = readw_(&ich9_spi->hsfs);
Patrick Georgic9b13592019-11-29 11:47:47 +0100312 cntlr.hsfs = hsfs;
313 cntlr.opmenu = ich9_spi->opmenu;
314 cntlr.menubytes = sizeof(ich9_spi->opmenu);
315 cntlr.optype = &ich9_spi->optype;
316 cntlr.addr = &ich9_spi->faddr;
317 cntlr.data = (uint8_t *)ich9_spi->fdata;
318 cntlr.databytes = sizeof(ich9_spi->fdata);
319 cntlr.status = &ich9_spi->ssfs;
320 cntlr.control = (uint16_t *)ich9_spi->ssfc;
321 cntlr.bbar = &ich9_spi->bbar;
322 cntlr.preop = &ich9_spi->preop;
323 cntlr.fpr = &ich9_spi->pr[0];
324 cntlr.fpr_max = 5;
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700325
Patrick Georgic9b13592019-11-29 11:47:47 +0100326 if (cntlr.hsfs & HSFS_FDV) {
Patrick Georgic88828d2018-11-26 10:42:59 +0100327 writel_(4, &ich9_spi->fdoc);
Patrick Georgic9b13592019-11-29 11:47:47 +0100328 cntlr.flmap0 = readl_(&ich9_spi->fdod);
Elyes HAOUASad19c2f2018-11-26 15:57:30 +0100329 writel_(0x1000, &ich9_spi->fdoc);
Patrick Georgic9b13592019-11-29 11:47:47 +0100330 cntlr.flcomp = readl_(&ich9_spi->fdod);
Arthur Heymansc88e3702017-08-20 20:50:17 +0200331 }
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700332 }
333
334 ich_set_bbar(0);
335
Angel Ponsd21b4632021-02-10 17:12:05 +0100336 /* Disable the BIOS write protect so write commands are allowed. */
337 spi_set_smm_only_flashing(false);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700338}
Aaron Durbin4d3de7e2015-09-02 17:34:04 -0500339
Arthur Heymans816aaba2019-06-11 11:10:25 +0200340static int spi_locked(void)
341{
Arthur Heymans816aaba2019-06-11 11:10:25 +0200342 if (CONFIG(SOUTHBRIDGE_INTEL_I82801GX)) {
Patrick Georgic9b13592019-11-29 11:47:47 +0100343 return !!(readw_(&cntlr.ich7_spi->spis) & HSFS_FLOCKDN);
Arthur Heymans816aaba2019-06-11 11:10:25 +0200344 } else {
Patrick Georgic9b13592019-11-29 11:47:47 +0100345 return !!(readw_(&cntlr.ich9_spi->hsfs) & HSFS_FLOCKDN);
Arthur Heymans816aaba2019-06-11 11:10:25 +0200346 }
347}
348
David Hendricksf2612a12014-04-13 16:27:02 -0700349static void spi_init_cb(void *unused)
350{
351 spi_init();
352}
353
Aaron Durbin9ef9d852015-03-16 17:30:09 -0500354BOOT_STATE_INIT_ENTRY(BS_DEV_INIT, BS_ON_ENTRY, spi_init_cb, NULL);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700355
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700356typedef struct spi_transaction {
357 const uint8_t *out;
358 uint32_t bytesout;
359 uint8_t *in;
360 uint32_t bytesin;
361 uint8_t type;
362 uint8_t opcode;
363 uint32_t offset;
364} spi_transaction;
365
Martin Rothff744bf2019-10-23 21:46:03 -0600366static inline void spi_use_out(spi_transaction *trans, unsigned int bytes)
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700367{
368 trans->out += bytes;
369 trans->bytesout -= bytes;
370}
371
Martin Rothff744bf2019-10-23 21:46:03 -0600372static inline void spi_use_in(spi_transaction *trans, unsigned int bytes)
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700373{
374 trans->in += bytes;
375 trans->bytesin -= bytes;
376}
377
378static void spi_setup_type(spi_transaction *trans)
379{
380 trans->type = 0xFF;
381
382 /* Try to guess spi type from read/write sizes. */
383 if (trans->bytesin == 0) {
384 if (trans->bytesout > 4)
385 /*
386 * If bytesin = 0 and bytesout > 4, we presume this is
387 * a write data operation, which is accompanied by an
388 * address.
389 */
390 trans->type = SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS;
391 else
392 trans->type = SPI_OPCODE_TYPE_WRITE_NO_ADDRESS;
393 return;
394 }
395
396 if (trans->bytesout == 1) { /* and bytesin is > 0 */
397 trans->type = SPI_OPCODE_TYPE_READ_NO_ADDRESS;
398 return;
399 }
400
401 if (trans->bytesout == 4) { /* and bytesin is > 0 */
402 trans->type = SPI_OPCODE_TYPE_READ_WITH_ADDRESS;
403 }
Duncan Laurie23b00532012-10-10 14:21:23 -0700404
405 /* Fast read command is called with 5 bytes instead of 4 */
406 if (trans->out[0] == SPI_OPCODE_FAST_READ && trans->bytesout == 5) {
407 trans->type = SPI_OPCODE_TYPE_READ_WITH_ADDRESS;
408 --trans->bytesout;
409 }
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700410}
411
412static int spi_setup_opcode(spi_transaction *trans)
413{
414 uint16_t optypes;
Jacob Garber9172b692019-06-26 16:18:16 -0600415 uint8_t opmenu[MENU_BYTES];
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700416
417 trans->opcode = trans->out[0];
418 spi_use_out(trans, 1);
Arthur Heymans816aaba2019-06-11 11:10:25 +0200419 if (!spi_locked()) {
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700420 /* The lock is off, so just use index 0. */
Patrick Georgic9b13592019-11-29 11:47:47 +0100421 writeb_(trans->opcode, cntlr.opmenu);
422 optypes = readw_(cntlr.optype);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700423 optypes = (optypes & 0xfffc) | (trans->type & 0x3);
Patrick Georgic9b13592019-11-29 11:47:47 +0100424 writew_(optypes, cntlr.optype);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700425 return 0;
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700426 }
Elyes HAOUASad19c2f2018-11-26 15:57:30 +0100427
428 /* The lock is on. See if what we need is on the menu. */
429 uint8_t optype;
430 uint16_t opcode_index;
431
432 /* Write Enable is handled as atomic prefix */
433 if (trans->opcode == SPI_OPCODE_WREN)
434 return 0;
435
Patrick Georgic9b13592019-11-29 11:47:47 +0100436 read_reg(cntlr.opmenu, opmenu, sizeof(opmenu));
Jacob Garber9172b692019-06-26 16:18:16 -0600437 for (opcode_index = 0; opcode_index < ARRAY_SIZE(opmenu); opcode_index++) {
Elyes HAOUASad19c2f2018-11-26 15:57:30 +0100438 if (opmenu[opcode_index] == trans->opcode)
439 break;
440 }
441
Jacob Garber9172b692019-06-26 16:18:16 -0600442 if (opcode_index == ARRAY_SIZE(opmenu)) {
Elyes HAOUASad19c2f2018-11-26 15:57:30 +0100443 printk(BIOS_DEBUG, "ICH SPI: Opcode %x not found\n",
444 trans->opcode);
445 return -1;
446 }
447
Patrick Georgic9b13592019-11-29 11:47:47 +0100448 optypes = readw_(cntlr.optype);
Elyes HAOUASad19c2f2018-11-26 15:57:30 +0100449 optype = (optypes >> (opcode_index * 2)) & 0x3;
450 if (trans->type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS &&
451 optype == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS &&
452 trans->bytesout >= 3) {
453 /* We guessed wrong earlier. Fix it up. */
454 trans->type = optype;
455 }
456 if (optype != trans->type) {
457 printk(BIOS_DEBUG, "ICH SPI: Transaction doesn't fit type %d\n",
458 optype);
459 return -1;
460 }
461 return opcode_index;
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700462}
463
464static int spi_setup_offset(spi_transaction *trans)
465{
466 /* Separate the SPI address and data. */
467 switch (trans->type) {
468 case SPI_OPCODE_TYPE_READ_NO_ADDRESS:
469 case SPI_OPCODE_TYPE_WRITE_NO_ADDRESS:
470 return 0;
471 case SPI_OPCODE_TYPE_READ_WITH_ADDRESS:
472 case SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS:
473 trans->offset = ((uint32_t)trans->out[0] << 16) |
474 ((uint32_t)trans->out[1] << 8) |
475 ((uint32_t)trans->out[2] << 0);
476 spi_use_out(trans, 3);
477 return 1;
478 default:
479 printk(BIOS_DEBUG, "Unrecognized SPI transaction type %#x\n", trans->type);
480 return -1;
481 }
482}
483
484/*
Philipp Deppenwiese93643e32014-10-17 16:10:32 +0200485 * Wait for up to 6s til status register bit(s) turn 1 (in case wait_til_set
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700486 * below is True) or 0. In case the wait was for the bit(s) to set - write
487 * those bits back, which would cause resetting them.
488 *
489 * Return the last read status value on success or -1 on failure.
490 */
491static int ich_status_poll(u16 bitmask, int wait_til_set)
492{
Philipp Deppenwiese93643e32014-10-17 16:10:32 +0200493 int timeout = 600000; /* This will result in 6 seconds */
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700494 u16 status = 0;
495
496 while (timeout--) {
Patrick Georgic9b13592019-11-29 11:47:47 +0100497 status = readw_(cntlr.status);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700498 if (wait_til_set ^ ((status & bitmask) == 0)) {
499 if (wait_til_set)
Patrick Georgic9b13592019-11-29 11:47:47 +0100500 writew_((status & bitmask), cntlr.status);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700501 return status;
502 }
503 udelay(10);
504 }
505
Philipp Deppenwiese93643e32014-10-17 16:10:32 +0200506 printk(BIOS_DEBUG, "ICH SPI: SCIP timeout, read %x, bitmask %x\n",
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700507 status, bitmask);
508 return -1;
509}
510
Elyes HAOUASad19c2f2018-11-26 15:57:30 +0100511static int spi_is_multichip(void)
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100512{
Patrick Georgic9b13592019-11-29 11:47:47 +0100513 if (!(cntlr.hsfs & HSFS_FDV))
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100514 return 0;
Patrick Georgic9b13592019-11-29 11:47:47 +0100515 return !!((cntlr.flmap0 >> 8) & 3);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100516}
517
Furquan Shaikh94f86992016-12-01 07:12:32 -0800518static int spi_ctrlr_xfer(const struct spi_slave *slave, const void *dout,
Furquan Shaikh0dba0252016-11-30 04:34:22 -0800519 size_t bytesout, void *din, size_t bytesin)
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700520{
521 uint16_t control;
522 int16_t opcode_index;
523 int with_address;
524 int status;
525
526 spi_transaction trans = {
Gabe Black93d9f922014-03-27 21:52:43 -0700527 dout, bytesout,
528 din, bytesin,
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700529 0xff, 0xff, 0
530 };
531
532 /* There has to always at least be an opcode. */
Gabe Black93d9f922014-03-27 21:52:43 -0700533 if (!bytesout || !dout) {
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700534 printk(BIOS_DEBUG, "ICH SPI: No opcode for transfer\n");
535 return -1;
536 }
537 /* Make sure if we read something we have a place to put it. */
Gabe Black93d9f922014-03-27 21:52:43 -0700538 if (bytesin != 0 && !din) {
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700539 printk(BIOS_DEBUG, "ICH SPI: Read but no target buffer\n");
540 return -1;
541 }
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700542
543 if (ich_status_poll(SPIS_SCIP, 0) == -1)
544 return -1;
545
Patrick Georgic9b13592019-11-29 11:47:47 +0100546 writew_(SPIS_CDS | SPIS_FCERR, cntlr.status);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700547
548 spi_setup_type(&trans);
549 if ((opcode_index = spi_setup_opcode(&trans)) < 0)
550 return -1;
551 if ((with_address = spi_setup_offset(&trans)) < 0)
552 return -1;
553
Duncan Laurie3beb6db2012-09-01 13:44:17 -0700554 if (trans.opcode == SPI_OPCODE_WREN) {
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700555 /*
556 * Treat Write Enable as Atomic Pre-Op if possible
557 * in order to prevent the Management Engine from
558 * issuing a transaction between WREN and DATA.
559 */
Arthur Heymans816aaba2019-06-11 11:10:25 +0200560 if (!spi_locked())
Patrick Georgic9b13592019-11-29 11:47:47 +0100561 writew_(trans.opcode, cntlr.preop);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700562 return 0;
563 }
564
565 /* Preset control fields */
566 control = SPIC_SCGO | ((opcode_index & 0x07) << 4);
567
568 /* Issue atomic preop cycle if needed */
Patrick Georgic9b13592019-11-29 11:47:47 +0100569 if (readw_(cntlr.preop))
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700570 control |= SPIC_ACS;
571
572 if (!trans.bytesout && !trans.bytesin) {
Duncan Laurie3beb6db2012-09-01 13:44:17 -0700573 /* SPI addresses are 24 bit only */
574 if (with_address)
Patrick Georgic9b13592019-11-29 11:47:47 +0100575 writel_(trans.offset & 0x00FFFFFF, cntlr.addr);
Duncan Laurie3beb6db2012-09-01 13:44:17 -0700576
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700577 /*
578 * This is a 'no data' command (like Write Enable), its
579 * bitesout size was 1, decremented to zero while executing
580 * spi_setup_opcode() above. Tell the chip to send the
581 * command.
582 */
Patrick Georgic9b13592019-11-29 11:47:47 +0100583 writew_(control, cntlr.control);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700584
585 /* wait for the result */
586 status = ich_status_poll(SPIS_CDS | SPIS_FCERR, 1);
587 if (status == -1)
588 return -1;
589
590 if (status & SPIS_FCERR) {
591 printk(BIOS_DEBUG, "ICH SPI: Command transaction error\n");
592 return -1;
593 }
594
Werner Zehf13a6f92018-11-14 10:55:52 +0100595 goto spi_xfer_exit;
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700596 }
597
598 /*
Paul Menzel94782972013-06-29 11:41:27 +0200599 * Check if this is a write command attempting to transfer more bytes
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700600 * than the controller can handle. Iterations for writes are not
601 * supported here because each SPI write command needs to be preceded
602 * and followed by other SPI commands, and this sequence is controlled
603 * by the SPI chip driver.
604 */
Patrick Georgic9b13592019-11-29 11:47:47 +0100605 if (trans.bytesout > cntlr.databytes) {
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700606 printk(BIOS_DEBUG, "ICH SPI: Too much to write. Does your SPI chip driver use"
Kyösti Mälkki11104952014-06-29 16:17:33 +0300607 " spi_crop_chunk()?\n");
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700608 return -1;
609 }
610
611 /*
612 * Read or write up to databytes bytes at a time until everything has
613 * been sent.
614 */
615 while (trans.bytesout || trans.bytesin) {
616 uint32_t data_length;
617
618 /* SPI addresses are 24 bit only */
Patrick Georgic9b13592019-11-29 11:47:47 +0100619 writel_(trans.offset & 0x00FFFFFF, cntlr.addr);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700620
621 if (trans.bytesout)
Elyes HAOUAS361a9352019-12-18 21:26:33 +0100622 data_length = MIN(trans.bytesout, cntlr.databytes);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700623 else
Elyes HAOUAS361a9352019-12-18 21:26:33 +0100624 data_length = MIN(trans.bytesin, cntlr.databytes);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700625
626 /* Program data into FDATA0 to N */
627 if (trans.bytesout) {
Patrick Georgic9b13592019-11-29 11:47:47 +0100628 write_reg(trans.out, cntlr.data, data_length);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700629 spi_use_out(&trans, data_length);
630 if (with_address)
631 trans.offset += data_length;
632 }
633
634 /* Add proper control fields' values */
Patrick Georgic9b13592019-11-29 11:47:47 +0100635 control &= ~((cntlr.databytes - 1) << 8);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700636 control |= SPIC_DS;
637 control |= (data_length - 1) << 8;
638
639 /* write it */
Patrick Georgic9b13592019-11-29 11:47:47 +0100640 writew_(control, cntlr.control);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700641
642 /* Wait for Cycle Done Status or Flash Cycle Error. */
643 status = ich_status_poll(SPIS_CDS | SPIS_FCERR, 1);
644 if (status == -1)
645 return -1;
646
647 if (status & SPIS_FCERR) {
648 printk(BIOS_DEBUG, "ICH SPI: Data transaction error\n");
649 return -1;
650 }
651
652 if (trans.bytesin) {
Patrick Georgic9b13592019-11-29 11:47:47 +0100653 read_reg(cntlr.data, trans.in, data_length);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700654 spi_use_in(&trans, data_length);
655 if (with_address)
656 trans.offset += data_length;
657 }
658 }
659
Werner Zehf13a6f92018-11-14 10:55:52 +0100660spi_xfer_exit:
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700661 /* Clear atomic preop now that xfer is done */
Patrick Georgic9b13592019-11-29 11:47:47 +0100662 writew_(0, cntlr.preop);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700663
664 return 0;
665}
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100666
667/* Sets FLA in FADDR to (addr & 0x01FFFFFF) without touching other bits. */
668static void ich_hwseq_set_addr(uint32_t addr)
669{
Patrick Georgic9b13592019-11-29 11:47:47 +0100670 uint32_t addr_old = readl_(&cntlr.ich9_spi->faddr) & ~0x01FFFFFF;
Elyes HAOUASad19c2f2018-11-26 15:57:30 +0100671
Patrick Georgic9b13592019-11-29 11:47:47 +0100672 writel_((addr & 0x01FFFFFF) | addr_old, &cntlr.ich9_spi->faddr);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100673}
674
675/* Polls for Cycle Done Status, Flash Cycle Error or timeout in 8 us intervals.
676 Resets all error flags in HSFS.
677 Returns 0 if the cycle completes successfully without errors within
678 timeout us, 1 on errors. */
679static int ich_hwseq_wait_for_cycle_complete(unsigned int timeout,
680 unsigned int len)
681{
682 uint16_t hsfs;
683 uint32_t addr;
684
685 timeout /= 8; /* scale timeout duration to counter */
Patrick Georgic9b13592019-11-29 11:47:47 +0100686 while ((((hsfs = readw_(&cntlr.ich9_spi->hsfs)) &
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100687 (HSFS_FDONE | HSFS_FCERR)) == 0) &&
688 --timeout) {
689 udelay(8);
690 }
Patrick Georgic9b13592019-11-29 11:47:47 +0100691 writew_(readw_(&cntlr.ich9_spi->hsfs), &cntlr.ich9_spi->hsfs);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100692
693 if (!timeout) {
694 uint16_t hsfc;
Patrick Georgic9b13592019-11-29 11:47:47 +0100695 addr = readl_(&cntlr.ich9_spi->faddr) & 0x01FFFFFF;
696 hsfc = readw_(&cntlr.ich9_spi->hsfc);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100697 printk(BIOS_ERR, "Transaction timeout between offset 0x%08x and "
698 "0x%08x (= 0x%08x + %d) HSFC=%x HSFS=%x!\n",
699 addr, addr + len - 1, addr, len - 1,
700 hsfc, hsfs);
701 return 1;
702 }
703
704 if (hsfs & HSFS_FCERR) {
705 uint16_t hsfc;
Patrick Georgic9b13592019-11-29 11:47:47 +0100706 addr = readl_(&cntlr.ich9_spi->faddr) & 0x01FFFFFF;
707 hsfc = readw_(&cntlr.ich9_spi->hsfc);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100708 printk(BIOS_ERR, "Transaction error between offset 0x%08x and "
709 "0x%08x (= 0x%08x + %d) HSFC=%x HSFS=%x!\n",
710 addr, addr + len - 1, addr, len - 1,
711 hsfc, hsfs);
712 return 1;
713 }
714 return 0;
715}
716
Furquan Shaikhc28984d2016-11-20 21:04:00 -0800717static int ich_hwseq_erase(const struct spi_flash *flash, u32 offset,
718 size_t len)
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100719{
720 u32 start, end, erase_size;
721 int ret;
722 uint16_t hsfc;
Aaron Durbin4ed8e9c2019-12-27 14:30:51 -0700723 unsigned int timeout = 1000 * USECS_PER_MSEC; /* 1 second timeout */
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100724
725 erase_size = flash->sector_size;
726 if (offset % erase_size || len % erase_size) {
727 printk(BIOS_ERR, "SF: Erase offset/length not multiple of erase size\n");
728 return -1;
729 }
730
Furquan Shaikh810e2cd2016-12-05 20:32:24 -0800731 ret = spi_claim_bus(&flash->spi);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100732 if (ret) {
733 printk(BIOS_ERR, "SF: Unable to claim SPI bus\n");
734 return ret;
735 }
736
737 start = offset;
738 end = start + len;
739
740 while (offset < end) {
741 /* make sure FDONE, FCERR, AEL are cleared by writing 1 to them */
Patrick Georgic9b13592019-11-29 11:47:47 +0100742 writew_(readw_(&cntlr.ich9_spi->hsfs), &cntlr.ich9_spi->hsfs);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100743
744 ich_hwseq_set_addr(offset);
745
746 offset += erase_size;
747
Patrick Georgic9b13592019-11-29 11:47:47 +0100748 hsfc = readw_(&cntlr.ich9_spi->hsfc);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100749 hsfc &= ~HSFC_FCYCLE; /* clear operation */
750 hsfc |= (0x3 << HSFC_FCYCLE_OFF); /* set erase operation */
751 hsfc |= HSFC_FGO; /* start */
Patrick Georgic9b13592019-11-29 11:47:47 +0100752 writew_(hsfc, &cntlr.ich9_spi->hsfc);
Elyes HAOUASad19c2f2018-11-26 15:57:30 +0100753 if (ich_hwseq_wait_for_cycle_complete(timeout, len)) {
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100754 printk(BIOS_ERR, "SF: Erase failed at %x\n", offset - erase_size);
755 ret = -1;
756 goto out;
757 }
758 }
759
760 printk(BIOS_DEBUG, "SF: Successfully erased %zu bytes @ %#x\n", len, start);
761
762out:
Furquan Shaikh810e2cd2016-12-05 20:32:24 -0800763 spi_release_bus(&flash->spi);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100764 return ret;
765}
766
767static void ich_read_data(uint8_t *data, int len)
768{
769 int i;
770 uint32_t temp32 = 0;
771
772 for (i = 0; i < len; i++) {
773 if ((i % 4) == 0)
Patrick Georgic9b13592019-11-29 11:47:47 +0100774 temp32 = readl_(cntlr.data + i);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100775
776 data[i] = (temp32 >> ((i % 4) * 8)) & 0xff;
777 }
778}
779
Furquan Shaikhc28984d2016-11-20 21:04:00 -0800780static int ich_hwseq_read(const struct spi_flash *flash, u32 addr, size_t len,
781 void *buf)
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100782{
783 uint16_t hsfc;
784 uint16_t timeout = 100 * 60;
785 uint8_t block_len;
786
787 if (addr + len > flash->size) {
Elyes HAOUASad19c2f2018-11-26 15:57:30 +0100788 printk(BIOS_ERR,
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100789 "Attempt to read %x-%x which is out of chip\n",
Martin Rothff744bf2019-10-23 21:46:03 -0600790 (unsigned int) addr,
791 (unsigned int) addr+(unsigned int) len);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100792 return -1;
793 }
794
795 /* clear FDONE, FCERR, AEL by writing 1 to them (if they are set) */
Patrick Georgic9b13592019-11-29 11:47:47 +0100796 writew_(readw_(&cntlr.ich9_spi->hsfs), &cntlr.ich9_spi->hsfs);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100797
798 while (len > 0) {
Elyes HAOUAS361a9352019-12-18 21:26:33 +0100799 block_len = MIN(len, cntlr.databytes);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100800 if (block_len > (~addr & 0xff))
801 block_len = (~addr & 0xff) + 1;
802 ich_hwseq_set_addr(addr);
Patrick Georgic9b13592019-11-29 11:47:47 +0100803 hsfc = readw_(&cntlr.ich9_spi->hsfc);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100804 hsfc &= ~HSFC_FCYCLE; /* set read operation */
805 hsfc &= ~HSFC_FDBC; /* clear byte count */
806 /* set byte count */
807 hsfc |= (((block_len - 1) << HSFC_FDBC_OFF) & HSFC_FDBC);
808 hsfc |= HSFC_FGO; /* start */
Patrick Georgic9b13592019-11-29 11:47:47 +0100809 writew_(hsfc, &cntlr.ich9_spi->hsfc);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100810
811 if (ich_hwseq_wait_for_cycle_complete(timeout, block_len))
812 return 1;
813 ich_read_data(buf, block_len);
814 addr += block_len;
815 buf += block_len;
816 len -= block_len;
817 }
818 return 0;
819}
820
821/* Fill len bytes from the data array into the fdata/spid registers.
822 *
823 * Note that using len > flash->pgm->spi.max_data_write will trash the registers
824 * following the data registers.
825 */
826static void ich_fill_data(const uint8_t *data, int len)
827{
828 uint32_t temp32 = 0;
829 int i;
830
831 if (len <= 0)
832 return;
833
834 for (i = 0; i < len; i++) {
835 if ((i % 4) == 0)
836 temp32 = 0;
837
838 temp32 |= ((uint32_t) data[i]) << ((i % 4) * 8);
839
840 if ((i % 4) == 3) /* 32 bits are full, write them to regs. */
Patrick Georgic9b13592019-11-29 11:47:47 +0100841 writel_(temp32, cntlr.data + (i - (i % 4)));
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100842 }
843 i--;
844 if ((i % 4) != 3) /* Write remaining data to regs. */
Patrick Georgic9b13592019-11-29 11:47:47 +0100845 writel_(temp32, cntlr.data + (i - (i % 4)));
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100846}
847
Furquan Shaikhc28984d2016-11-20 21:04:00 -0800848static int ich_hwseq_write(const struct spi_flash *flash, u32 addr, size_t len,
849 const void *buf)
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100850{
851 uint16_t hsfc;
852 uint16_t timeout = 100 * 60;
853 uint8_t block_len;
854 uint32_t start = addr;
855
856 if (addr + len > flash->size) {
Elyes HAOUASad19c2f2018-11-26 15:57:30 +0100857 printk(BIOS_ERR,
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100858 "Attempt to write 0x%x-0x%x which is out of chip\n",
Martin Rothff744bf2019-10-23 21:46:03 -0600859 (unsigned int)addr, (unsigned int) (addr+len));
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100860 return -1;
861 }
862
863 /* clear FDONE, FCERR, AEL by writing 1 to them (if they are set) */
Patrick Georgic9b13592019-11-29 11:47:47 +0100864 writew_(readw_(&cntlr.ich9_spi->hsfs), &cntlr.ich9_spi->hsfs);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100865
866 while (len > 0) {
Elyes HAOUAS361a9352019-12-18 21:26:33 +0100867 block_len = MIN(len, cntlr.databytes);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100868 if (block_len > (~addr & 0xff))
869 block_len = (~addr & 0xff) + 1;
870
871 ich_hwseq_set_addr(addr);
872
873 ich_fill_data(buf, block_len);
Patrick Georgic9b13592019-11-29 11:47:47 +0100874 hsfc = readw_(&cntlr.ich9_spi->hsfc);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100875 hsfc &= ~HSFC_FCYCLE; /* clear operation */
876 hsfc |= (0x2 << HSFC_FCYCLE_OFF); /* set write operation */
877 hsfc &= ~HSFC_FDBC; /* clear byte count */
878 /* set byte count */
879 hsfc |= (((block_len - 1) << HSFC_FDBC_OFF) & HSFC_FDBC);
880 hsfc |= HSFC_FGO; /* start */
Patrick Georgic9b13592019-11-29 11:47:47 +0100881 writew_(hsfc, &cntlr.ich9_spi->hsfc);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100882
Elyes HAOUASad19c2f2018-11-26 15:57:30 +0100883 if (ich_hwseq_wait_for_cycle_complete(timeout, block_len)) {
884 printk(BIOS_ERR, "SF: write failure at %x\n",
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100885 addr);
886 return -1;
887 }
888 addr += block_len;
889 buf += block_len;
890 len -= block_len;
891 }
892 printk(BIOS_DEBUG, "SF: Successfully written %u bytes @ %#x\n",
Martin Rothff744bf2019-10-23 21:46:03 -0600893 (unsigned int) (addr - start), start);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100894 return 0;
895}
896
Furquan Shaikhe2fc5e22017-05-17 17:26:01 -0700897static const struct spi_flash_ops spi_flash_ops = {
898 .read = ich_hwseq_read,
899 .write = ich_hwseq_write,
900 .erase = ich_hwseq_erase,
901};
902
Furquan Shaikha1491572017-05-17 19:14:06 -0700903static int spi_flash_programmer_probe(const struct spi_slave *spi,
904 struct spi_flash *flash)
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100905{
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100906
Julius Wernercd49cce2019-03-05 16:53:33 -0800907 if (CONFIG(SOUTHBRIDGE_INTEL_I82801GX))
Arthur Heymansc88e3702017-08-20 20:50:17 +0200908 return spi_flash_generic_probe(spi, flash);
909
Furquan Shaikha1491572017-05-17 19:14:06 -0700910 /* Try generic probing first if spi_is_multichip returns 0. */
911 if (!spi_is_multichip() && !spi_flash_generic_probe(spi, flash))
912 return 0;
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100913
Furquan Shaikh810e2cd2016-12-05 20:32:24 -0800914 memcpy(&flash->spi, spi, sizeof(*spi));
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100915
Elyes HAOUASad19c2f2018-11-26 15:57:30 +0100916 ich_hwseq_set_addr(0);
Patrick Georgic9b13592019-11-29 11:47:47 +0100917 switch ((cntlr.hsfs >> 3) & 3) {
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100918 case 0:
919 flash->sector_size = 256;
920 break;
921 case 1:
922 flash->sector_size = 4096;
923 break;
924 case 2:
925 flash->sector_size = 8192;
926 break;
927 case 3:
928 flash->sector_size = 65536;
929 break;
930 }
931
Patrick Georgic9b13592019-11-29 11:47:47 +0100932 flash->size = 1 << (19 + (cntlr.flcomp & 7));
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100933
Furquan Shaikhe2fc5e22017-05-17 17:26:01 -0700934 flash->ops = &spi_flash_ops;
935
Patrick Georgic9b13592019-11-29 11:47:47 +0100936 if ((cntlr.hsfs & HSFS_FDV) && ((cntlr.flmap0 >> 8) & 3))
937 flash->size += 1 << (19 + ((cntlr.flcomp >> 3) & 7));
Elyes HAOUASad19c2f2018-11-26 15:57:30 +0100938 printk(BIOS_DEBUG, "flash size 0x%x bytes\n", flash->size);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100939
Furquan Shaikh30221b42017-05-15 14:35:15 -0700940 return 0;
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100941}
Furquan Shaikha1491572017-05-17 19:14:06 -0700942
Aaron Durbin851dde82018-04-19 21:15:25 -0600943static int xfer_vectors(const struct spi_slave *slave,
944 struct spi_op vectors[], size_t count)
945{
946 return spi_flash_vector_helper(slave, vectors, count, spi_ctrlr_xfer);
947}
948
Elyes HAOUASad19c2f2018-11-26 15:57:30 +0100949#define SPI_FPR_SHIFT 12
Arthur Heymans11fcb2bc2018-01-07 20:46:31 +0100950#define ICH7_SPI_FPR_MASK 0xfff
951#define ICH9_SPI_FPR_MASK 0x1fff
Elyes HAOUASad19c2f2018-11-26 15:57:30 +0100952#define SPI_FPR_BASE_SHIFT 0
Arthur Heymans11fcb2bc2018-01-07 20:46:31 +0100953#define ICH7_SPI_FPR_LIMIT_SHIFT 12
954#define ICH9_SPI_FPR_LIMIT_SHIFT 16
955#define ICH9_SPI_FPR_RPE (1 << 15) /* Read Protect */
Elyes HAOUASad19c2f2018-11-26 15:57:30 +0100956#define SPI_FPR_WPE (1 << 31) /* Write Protect */
Arthur Heymans11fcb2bc2018-01-07 20:46:31 +0100957
958static u32 spi_fpr(u32 base, u32 limit)
959{
960 u32 ret;
961 u32 mask, limit_shift;
Elyes HAOUASad19c2f2018-11-26 15:57:30 +0100962
Julius Wernercd49cce2019-03-05 16:53:33 -0800963 if (CONFIG(SOUTHBRIDGE_INTEL_I82801GX)) {
Arthur Heymans11fcb2bc2018-01-07 20:46:31 +0100964 mask = ICH7_SPI_FPR_MASK;
965 limit_shift = ICH7_SPI_FPR_LIMIT_SHIFT;
966 } else {
967 mask = ICH9_SPI_FPR_MASK;
968 limit_shift = ICH9_SPI_FPR_LIMIT_SHIFT;
969 }
970 ret = ((limit >> SPI_FPR_SHIFT) & mask) << limit_shift;
971 ret |= ((base >> SPI_FPR_SHIFT) & mask) << SPI_FPR_BASE_SHIFT;
972 return ret;
973}
974
975/*
976 * Protect range of SPI flash defined by [start, start+size-1] using Flash
977 * Protected Range (FPR) register if available.
978 * Returns 0 on success, -1 on failure of programming fpr registers.
979 */
980static int spi_flash_protect(const struct spi_flash *flash,
Rizwan Qureshif9f50932018-12-31 15:19:16 +0530981 const struct region *region,
982 const enum ctrlr_prot_type type)
Arthur Heymans11fcb2bc2018-01-07 20:46:31 +0100983{
984 u32 start = region_offset(region);
985 u32 end = start + region_sz(region) - 1;
986 u32 reg;
Rizwan Qureshif9f50932018-12-31 15:19:16 +0530987 u32 protect_mask = 0;
Arthur Heymans11fcb2bc2018-01-07 20:46:31 +0100988 int fpr;
989 uint32_t *fpr_base;
990
Patrick Georgic9b13592019-11-29 11:47:47 +0100991 fpr_base = cntlr.fpr;
Arthur Heymans11fcb2bc2018-01-07 20:46:31 +0100992
993 /* Find first empty FPR */
Patrick Georgic9b13592019-11-29 11:47:47 +0100994 for (fpr = 0; fpr < cntlr.fpr_max; fpr++) {
Arthur Heymans11fcb2bc2018-01-07 20:46:31 +0100995 reg = read32(&fpr_base[fpr]);
996 if (reg == 0)
997 break;
998 }
999
Patrick Georgic9b13592019-11-29 11:47:47 +01001000 if (fpr == cntlr.fpr_max) {
Julius Wernere9665952022-01-21 17:06:20 -08001001 printk(BIOS_ERR, "No SPI FPR free!\n");
Arthur Heymans11fcb2bc2018-01-07 20:46:31 +01001002 return -1;
1003 }
1004
Rizwan Qureshif9f50932018-12-31 15:19:16 +05301005 switch (type) {
1006 case WRITE_PROTECT:
1007 protect_mask |= SPI_FPR_WPE;
1008 break;
1009 case READ_PROTECT:
Julius Wernercd49cce2019-03-05 16:53:33 -08001010 if (CONFIG(SOUTHBRIDGE_INTEL_I82801GX))
Rizwan Qureshif9f50932018-12-31 15:19:16 +05301011 return -1;
1012 protect_mask |= ICH9_SPI_FPR_RPE;
1013 break;
1014 case READ_WRITE_PROTECT:
Julius Wernercd49cce2019-03-05 16:53:33 -08001015 if (CONFIG(SOUTHBRIDGE_INTEL_I82801GX))
Rizwan Qureshif9f50932018-12-31 15:19:16 +05301016 return -1;
1017 protect_mask |= (ICH9_SPI_FPR_RPE | SPI_FPR_WPE);
1018 break;
1019 default:
Julius Wernere9665952022-01-21 17:06:20 -08001020 printk(BIOS_ERR, "Seeking invalid protection!\n");
Rizwan Qureshif9f50932018-12-31 15:19:16 +05301021 return -1;
1022 }
1023
Arthur Heymans11fcb2bc2018-01-07 20:46:31 +01001024 /* Set protected range base and limit */
Rizwan Qureshif9f50932018-12-31 15:19:16 +05301025 reg = spi_fpr(start, end) | protect_mask;
Arthur Heymans11fcb2bc2018-01-07 20:46:31 +01001026
1027 /* Set the FPR register and verify it is protected */
1028 write32(&fpr_base[fpr], reg);
Arthur Heymansf9572012019-06-11 11:15:10 +02001029 if (reg != read32(&fpr_base[fpr])) {
Julius Wernere9665952022-01-21 17:06:20 -08001030 printk(BIOS_ERR, "Unable to set SPI FPR %d\n", fpr);
Arthur Heymans11fcb2bc2018-01-07 20:46:31 +01001031 return -1;
1032 }
1033
1034 printk(BIOS_INFO, "%s: FPR %d is enabled for range 0x%08x-0x%08x\n",
1035 __func__, fpr, start, end);
1036 return 0;
1037}
1038
Arthur Heymans92185e32019-05-28 13:06:34 +02001039void spi_finalize_ops(void)
1040{
Arthur Heymans92185e32019-05-28 13:06:34 +02001041 u16 spi_opprefix;
1042 u16 optype = 0;
Arthur Heymans50b4f782019-09-23 11:49:17 +02001043 struct intel_swseq_spi_config spi_config_default = {
Arthur Heymans92185e32019-05-28 13:06:34 +02001044 {0x06, 0x50}, /* OPPREFIXES: EWSR and WREN */
Arthur Heymans50b4f782019-09-23 11:49:17 +02001045 { /* OPCODE and OPTYPE */
Arthur Heymans92185e32019-05-28 13:06:34 +02001046 {0x01, WRITE_NO_ADDR}, /* WRSR: Write Status Register */
1047 {0x02, WRITE_WITH_ADDR}, /* BYPR: Byte Program */
1048 {0x03, READ_WITH_ADDR}, /* READ: Read Data */
1049 {0x05, READ_NO_ADDR}, /* RDSR: Read Status Register */
1050 {0x20, WRITE_WITH_ADDR}, /* SE20: Sector Erase 0x20 */
1051 {0x9f, READ_NO_ADDR}, /* RDID: Read ID */
1052 {0xd8, WRITE_WITH_ADDR}, /* BED8: Block Erase 0xd8 */
1053 {0x0b, READ_WITH_ADDR}, /* FAST: Fast Read */
1054 }
1055 };
Arthur Heymans50b4f782019-09-23 11:49:17 +02001056 struct intel_swseq_spi_config spi_config_aai_write = {
1057 {0x06, 0x50}, /* OPPREFIXES: EWSR and WREN */
1058 { /* OPCODE and OPTYPE */
1059 {0x01, WRITE_NO_ADDR}, /* WRSR: Write Status Register */
1060 {0x02, WRITE_WITH_ADDR}, /* BYPR: Byte Program */
1061 {0x03, READ_WITH_ADDR}, /* READ: Read Data */
1062 {0x05, READ_NO_ADDR}, /* RDSR: Read Status Register */
1063 {0x20, WRITE_WITH_ADDR}, /* SE20: Sector Erase 0x20 */
1064 {0x9f, READ_NO_ADDR}, /* RDID: Read ID */
1065 {0xad, WRITE_NO_ADDR}, /* Auto Address Increment Word Program */
1066 {0x04, WRITE_NO_ADDR} /* Write Disable */
1067 }
1068 };
1069 const struct spi_flash *flash = boot_device_spi_flash();
1070 struct intel_swseq_spi_config *spi_config = &spi_config_default;
Arthur Heymans92185e32019-05-28 13:06:34 +02001071 int i;
1072
Arthur Heymans50b4f782019-09-23 11:49:17 +02001073 /*
1074 * Some older SST SPI flashes support AAI write but use 0xaf opcde for
1075 * that. Flashrom uses the byte program opcode to write those flashes,
1076 * so this configuration is fine too. SST25VF064C (id = 0x4b) is an
1077 * exception.
1078 */
1079 if (flash && flash->vendor == VENDOR_ID_SST && (flash->model & 0x00ff) != 0x4b)
1080 spi_config = &spi_config_aai_write;
1081
Arthur Heymans92185e32019-05-28 13:06:34 +02001082 if (spi_locked())
1083 return;
1084
Arthur Heymans50b4f782019-09-23 11:49:17 +02001085 intel_southbridge_override_spi(spi_config);
Arthur Heymans92185e32019-05-28 13:06:34 +02001086
Arthur Heymans50b4f782019-09-23 11:49:17 +02001087 spi_opprefix = spi_config->opprefixes[0]
1088 | (spi_config->opprefixes[1] << 8);
Patrick Georgic9b13592019-11-29 11:47:47 +01001089 writew_(spi_opprefix, cntlr.preop);
Arthur Heymans50b4f782019-09-23 11:49:17 +02001090 for (i = 0; i < ARRAY_SIZE(spi_config->ops); i++) {
1091 optype |= (spi_config->ops[i].type & 3) << (i * 2);
Patrick Georgic9b13592019-11-29 11:47:47 +01001092 writeb_(spi_config->ops[i].op, &cntlr.opmenu[i]);
Arthur Heymans92185e32019-05-28 13:06:34 +02001093 }
Patrick Georgic9b13592019-11-29 11:47:47 +01001094 writew_(optype, cntlr.optype);
Angel Ponsd21b4632021-02-10 17:12:05 +01001095
1096 spi_set_smm_only_flashing(CONFIG(BOOTMEDIA_SMM_BWP));
Arthur Heymans92185e32019-05-28 13:06:34 +02001097}
1098
1099__weak void intel_southbridge_override_spi(struct intel_swseq_spi_config *spi_config)
1100{
1101}
1102
Angel Ponsd21b4632021-02-10 17:12:05 +01001103#define BIOS_CNTL 0xdc
1104#define BIOS_CNTL_BIOSWE (1 << 0)
1105#define BIOS_CNTL_BLE (1 << 1)
1106#define BIOS_CNTL_SMM_BWP (1 << 5)
1107
1108static void spi_set_smm_only_flashing(bool enable)
1109{
1110 if (!(CONFIG(SOUTHBRIDGE_INTEL_I82801GX) || CONFIG(SOUTHBRIDGE_INTEL_COMMON_SPI_ICH9)))
1111 return;
1112
1113 const pci_devfn_t dev = PCI_DEV(0, 31, 0);
1114
1115 uint8_t bios_cntl = pci_read_config8(dev, BIOS_CNTL);
1116
1117 if (enable) {
1118 bios_cntl &= ~BIOS_CNTL_BIOSWE;
1119 bios_cntl |= BIOS_CNTL_BLE | BIOS_CNTL_SMM_BWP;
1120 } else {
1121 bios_cntl &= ~(BIOS_CNTL_BLE | BIOS_CNTL_SMM_BWP);
1122 bios_cntl |= BIOS_CNTL_BIOSWE;
1123 }
1124
1125 pci_write_config8(dev, BIOS_CNTL, bios_cntl);
1126}
1127
Furquan Shaikha1491572017-05-17 19:14:06 -07001128static const struct spi_ctrlr spi_ctrlr = {
Aaron Durbin851dde82018-04-19 21:15:25 -06001129 .xfer_vector = xfer_vectors,
Arthur Heymansa9c1a5f2019-06-15 18:21:58 +02001130 .max_xfer_size = member_size(struct ich9_spi_regs, fdata),
Furquan Shaikha1491572017-05-17 19:14:06 -07001131 .flash_probe = spi_flash_programmer_probe,
Arthur Heymans11fcb2bc2018-01-07 20:46:31 +01001132 .flash_protect = spi_flash_protect,
Furquan Shaikha1491572017-05-17 19:14:06 -07001133};
1134
Furquan Shaikh2cd03f12017-05-18 14:58:32 -07001135const struct spi_ctrlr_buses spi_ctrlr_bus_map[] = {
1136 {
1137 .ctrlr = &spi_ctrlr,
1138 .bus_start = 0,
1139 .bus_end = 0,
1140 },
1141};
1142
1143const size_t spi_ctrlr_bus_map_count = ARRAY_SIZE(spi_ctrlr_bus_map);