blob: bd89025e4b7b98ca0cc13cf9141ecd550acaf94e [file] [log] [blame]
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -07001/*
2 * Copyright (c) 2011 The Chromium OS Authors.
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +01003 * Copyright (C) 2009, 2010 Carl-Daniel Hailfinger
4 * Copyright (C) 2011 Stefan Tauner
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -07005 *
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -07006 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of
9 * the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but without any warranty; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070015 */
16
17/* This file is derived from the flashrom project. */
Arthur Heymans02c99712018-03-28 18:49:27 +020018#include <arch/early_variables.h>
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070019#include <stdint.h>
20#include <stdlib.h>
21#include <string.h>
Stefan Reinauer6a001132017-07-13 02:20:27 +020022#include <compiler.h>
David Hendricksf2612a12014-04-13 16:27:02 -070023#include <bootstate.h>
Furquan Shaikhde705fa2017-04-19 19:27:28 -070024#include <commonlib/helpers.h>
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070025#include <delay.h>
26#include <arch/io.h>
27#include <console/console.h>
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070028#include <device/pci_ids.h>
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +010029#include <device/pci.h>
30#include <spi_flash.h>
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070031
Zheng Bao600784e2013-02-07 17:30:23 +080032#include <spi-generic.h>
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070033
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +010034#define HSFC_FCYCLE_OFF 1 /* 1-2: FLASH Cycle */
35#define HSFC_FCYCLE (0x3 << HSFC_FCYCLE_OFF)
36#define HSFC_FDBC_OFF 8 /* 8-13: Flash Data Byte Count */
37#define HSFC_FDBC (0x3f << HSFC_FDBC_OFF)
38
39
Duncan Laurie181bbdd2012-06-23 16:53:57 -070040#ifdef __SMM__
Kyösti Mälkkib4a45dc2013-07-26 08:53:59 +030041#include <arch/io.h>
Duncan Laurie181bbdd2012-06-23 16:53:57 -070042#define pci_read_config_byte(dev, reg, targ)\
Kyösti Mälkkifd98c652013-07-26 08:50:53 +030043 *(targ) = pci_read_config8(dev, reg)
Duncan Laurie181bbdd2012-06-23 16:53:57 -070044#define pci_read_config_word(dev, reg, targ)\
Kyösti Mälkkifd98c652013-07-26 08:50:53 +030045 *(targ) = pci_read_config16(dev, reg)
Duncan Laurie181bbdd2012-06-23 16:53:57 -070046#define pci_read_config_dword(dev, reg, targ)\
Kyösti Mälkkifd98c652013-07-26 08:50:53 +030047 *(targ) = pci_read_config32(dev, reg)
Duncan Laurie181bbdd2012-06-23 16:53:57 -070048#define pci_write_config_byte(dev, reg, val)\
Kyösti Mälkkifd98c652013-07-26 08:50:53 +030049 pci_write_config8(dev, reg, val)
Duncan Laurie181bbdd2012-06-23 16:53:57 -070050#define pci_write_config_word(dev, reg, val)\
Kyösti Mälkkifd98c652013-07-26 08:50:53 +030051 pci_write_config16(dev, reg, val)
Duncan Laurie181bbdd2012-06-23 16:53:57 -070052#define pci_write_config_dword(dev, reg, val)\
Kyösti Mälkkifd98c652013-07-26 08:50:53 +030053 pci_write_config32(dev, reg, val)
Duncan Laurie181bbdd2012-06-23 16:53:57 -070054#else /* !__SMM__ */
55#include <device/device.h>
56#include <device/pci.h>
Duncan Laurie181bbdd2012-06-23 16:53:57 -070057#define pci_read_config_byte(dev, reg, targ)\
58 *(targ) = pci_read_config8(dev, reg)
59#define pci_read_config_word(dev, reg, targ)\
60 *(targ) = pci_read_config16(dev, reg)
61#define pci_read_config_dword(dev, reg, targ)\
62 *(targ) = pci_read_config32(dev, reg)
63#define pci_write_config_byte(dev, reg, val)\
64 pci_write_config8(dev, reg, val)
65#define pci_write_config_word(dev, reg, val)\
66 pci_write_config16(dev, reg, val)
67#define pci_write_config_dword(dev, reg, val)\
68 pci_write_config32(dev, reg, val)
69#endif /* !__SMM__ */
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070070
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +010071static int spi_is_multichip(void);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +010072
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070073typedef struct spi_slave ich_spi_slave;
74
Arthur Heymans02c99712018-03-28 18:49:27 +020075static int g_ichspi_lock CAR_GLOBAL = 0;
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070076
77typedef struct ich7_spi_regs {
78 uint16_t spis;
79 uint16_t spic;
80 uint32_t spia;
81 uint64_t spid[8];
82 uint64_t _pad;
83 uint32_t bbar;
84 uint16_t preop;
85 uint16_t optype;
86 uint8_t opmenu[8];
Arthur Heymans11fcb2bc2018-01-07 20:46:31 +010087 uint32_t pbr[3];
Stefan Reinauer6a001132017-07-13 02:20:27 +020088} __packed ich7_spi_regs;
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -070089
90typedef struct ich9_spi_regs {
91 uint32_t bfpr;
92 uint16_t hsfs;
93 uint16_t hsfc;
94 uint32_t faddr;
95 uint32_t _reserved0;
96 uint32_t fdata[16];
97 uint32_t frap;
98 uint32_t freg[5];
99 uint32_t _reserved1[3];
100 uint32_t pr[5];
101 uint32_t _reserved2[2];
102 uint8_t ssfs;
103 uint8_t ssfc[3];
104 uint16_t preop;
105 uint16_t optype;
106 uint8_t opmenu[8];
107 uint32_t bbar;
108 uint8_t _reserved3[12];
109 uint32_t fdoc;
110 uint32_t fdod;
111 uint8_t _reserved4[8];
112 uint32_t afc;
113 uint32_t lvscc;
114 uint32_t uvscc;
115 uint8_t _reserved5[4];
116 uint32_t fpb;
117 uint8_t _reserved6[28];
118 uint32_t srdl;
119 uint32_t srdc;
120 uint32_t srd;
Stefan Reinauer6a001132017-07-13 02:20:27 +0200121} __packed ich9_spi_regs;
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700122
123typedef struct ich_spi_controller {
124 int locked;
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100125 uint32_t flmap0;
126 uint32_t hsfs;
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700127
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100128 ich9_spi_regs *ich9_spi;
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700129 uint8_t *opmenu;
130 int menubytes;
131 uint16_t *preop;
132 uint16_t *optype;
133 uint32_t *addr;
134 uint8_t *data;
135 unsigned databytes;
136 uint8_t *status;
137 uint16_t *control;
138 uint32_t *bbar;
Arthur Heymans11fcb2bc2018-01-07 20:46:31 +0100139 uint32_t *fpr;
140 uint8_t fpr_max;
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700141} ich_spi_controller;
142
Arthur Heymans02c99712018-03-28 18:49:27 +0200143static ich_spi_controller g_cntlr CAR_GLOBAL;
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700144
145enum {
146 SPIS_SCIP = 0x0001,
147 SPIS_GRANT = 0x0002,
148 SPIS_CDS = 0x0004,
149 SPIS_FCERR = 0x0008,
150 SSFS_AEL = 0x0010,
151 SPIS_LOCK = 0x8000,
152 SPIS_RESERVED_MASK = 0x7ff0,
153 SSFS_RESERVED_MASK = 0x7fe2
154};
155
156enum {
157 SPIC_SCGO = 0x000002,
158 SPIC_ACS = 0x000004,
159 SPIC_SPOP = 0x000008,
160 SPIC_DBC = 0x003f00,
161 SPIC_DS = 0x004000,
162 SPIC_SME = 0x008000,
163 SSFC_SCF_MASK = 0x070000,
164 SSFC_RESERVED = 0xf80000
165};
166
167enum {
168 HSFS_FDONE = 0x0001,
169 HSFS_FCERR = 0x0002,
170 HSFS_AEL = 0x0004,
171 HSFS_BERASE_MASK = 0x0018,
172 HSFS_BERASE_SHIFT = 3,
173 HSFS_SCIP = 0x0020,
174 HSFS_FDOPSS = 0x2000,
175 HSFS_FDV = 0x4000,
176 HSFS_FLOCKDN = 0x8000
177};
178
179enum {
180 HSFC_FGO = 0x0001,
181 HSFC_FCYCLE_MASK = 0x0006,
182 HSFC_FCYCLE_SHIFT = 1,
183 HSFC_FDBC_MASK = 0x3f00,
184 HSFC_FDBC_SHIFT = 8,
185 HSFC_FSMIE = 0x8000
186};
187
188enum {
189 SPI_OPCODE_TYPE_READ_NO_ADDRESS = 0,
190 SPI_OPCODE_TYPE_WRITE_NO_ADDRESS = 1,
191 SPI_OPCODE_TYPE_READ_WITH_ADDRESS = 2,
192 SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS = 3
193};
194
Martin Roth7a1a3ad2017-06-24 21:29:38 -0600195#if IS_ENABLED(CONFIG_DEBUG_SPI_FLASH)
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700196
197static u8 readb_(const void *addr)
198{
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800199 u8 v = read8(addr);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700200 printk(BIOS_DEBUG, "read %2.2x from %4.4x\n",
201 v, ((unsigned) addr & 0xffff) - 0xf020);
202 return v;
203}
204
205static u16 readw_(const void *addr)
206{
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800207 u16 v = read16(addr);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700208 printk(BIOS_DEBUG, "read %4.4x from %4.4x\n",
209 v, ((unsigned) addr & 0xffff) - 0xf020);
210 return v;
211}
212
213static u32 readl_(const void *addr)
214{
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800215 u32 v = read32(addr);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700216 printk(BIOS_DEBUG, "read %8.8x from %4.4x\n",
217 v, ((unsigned) addr & 0xffff) - 0xf020);
218 return v;
219}
220
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800221static void writeb_(u8 b, void *addr)
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700222{
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800223 write8(addr, b);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700224 printk(BIOS_DEBUG, "wrote %2.2x to %4.4x\n",
225 b, ((unsigned) addr & 0xffff) - 0xf020);
226}
227
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800228static void writew_(u16 b, void *addr)
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700229{
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800230 write16(addr, b);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700231 printk(BIOS_DEBUG, "wrote %4.4x to %4.4x\n",
232 b, ((unsigned) addr & 0xffff) - 0xf020);
233}
234
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800235static void writel_(u32 b, void *addr)
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700236{
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800237 write32(addr, b);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700238 printk(BIOS_DEBUG, "wrote %8.8x to %4.4x\n",
239 b, ((unsigned) addr & 0xffff) - 0xf020);
240}
241
242#else /* CONFIG_DEBUG_SPI_FLASH ^^^ enabled vvv NOT enabled */
243
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800244#define readb_(a) read8(a)
245#define readw_(a) read16(a)
246#define readl_(a) read32(a)
247#define writeb_(val, addr) write8(addr, val)
248#define writew_(val, addr) write16(addr, val)
249#define writel_(val, addr) write32(addr, val)
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700250
251#endif /* CONFIG_DEBUG_SPI_FLASH ^^^ NOT enabled */
252
253static void write_reg(const void *value, void *dest, uint32_t size)
254{
255 const uint8_t *bvalue = value;
256 uint8_t *bdest = dest;
257
258 while (size >= 4) {
259 writel_(*(const uint32_t *)bvalue, bdest);
260 bdest += 4; bvalue += 4; size -= 4;
261 }
262 while (size) {
263 writeb_(*bvalue, bdest);
264 bdest++; bvalue++; size--;
265 }
266}
267
268static void read_reg(const void *src, void *value, uint32_t size)
269{
270 const uint8_t *bsrc = src;
271 uint8_t *bvalue = value;
272
273 while (size >= 4) {
274 *(uint32_t *)bvalue = readl_(bsrc);
275 bsrc += 4; bvalue += 4; size -= 4;
276 }
277 while (size) {
278 *bvalue = readb_(bsrc);
279 bsrc++; bvalue++; size--;
280 }
281}
282
283static void ich_set_bbar(uint32_t minaddr)
284{
Arthur Heymans02c99712018-03-28 18:49:27 +0200285 ich_spi_controller *cntlr = car_get_var_ptr(&g_cntlr);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700286 const uint32_t bbar_mask = 0x00ffff00;
287 uint32_t ichspi_bbar;
288
289 minaddr &= bbar_mask;
Arthur Heymans02c99712018-03-28 18:49:27 +0200290 ichspi_bbar = readl_(cntlr->bbar) & ~bbar_mask;
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700291 ichspi_bbar |= minaddr;
Arthur Heymans02c99712018-03-28 18:49:27 +0200292 writel_(ichspi_bbar, cntlr->bbar);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700293}
294
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700295void spi_init(void)
296{
Arthur Heymans02c99712018-03-28 18:49:27 +0200297 ich_spi_controller *cntlr = car_get_var_ptr(&g_cntlr);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700298 uint8_t *rcrb; /* Root Complex Register Block */
299 uint32_t rcba; /* Root Complex Base Address */
300 uint8_t bios_cntl;
Stefan Reinauer0c32c972012-07-10 13:26:59 -0700301 device_t dev;
Vladimir Serbinenko42c4a9d2014-02-16 17:13:19 +0100302 ich9_spi_regs *ich9_spi;
Arthur Heymansc88e3702017-08-20 20:50:17 +0200303 ich7_spi_regs *ich7_spi;
Vladimir Serbinenko42c4a9d2014-02-16 17:13:19 +0100304 uint16_t hsfs;
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700305
Arthur Heymans02c99712018-03-28 18:49:27 +0200306#ifdef __SIMPLE_DEVICE__
Duncan Laurie181bbdd2012-06-23 16:53:57 -0700307 dev = PCI_DEV(0, 31, 0);
308#else
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700309 dev = dev_find_slot(0, PCI_DEVFN(31, 0));
Duncan Laurie181bbdd2012-06-23 16:53:57 -0700310#endif
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700311
312 pci_read_config_dword(dev, 0xf0, &rcba);
313 /* Bits 31-14 are the base address, 13-1 are reserved, 0 is enable. */
314 rcrb = (uint8_t *)(rcba & 0xffffc000);
Arthur Heymansc88e3702017-08-20 20:50:17 +0200315 if (IS_ENABLED(CONFIG_SOUTHBRIDGE_INTEL_I82801GX)) {
316 ich7_spi = (ich7_spi_regs *)(rcrb + 0x3020);
Arthur Heymans02c99712018-03-28 18:49:27 +0200317 cntlr->opmenu = ich7_spi->opmenu;
318 cntlr->menubytes = sizeof(ich7_spi->opmenu);
319 cntlr->optype = &ich7_spi->optype;
320 cntlr->addr = &ich7_spi->spia;
321 cntlr->data = (uint8_t *)ich7_spi->spid;
322 cntlr->databytes = sizeof(ich7_spi->spid);
323 cntlr->status = (uint8_t *)&ich7_spi->spis;
324 car_set_var(g_ichspi_lock, readw_(&ich7_spi->spis) & HSFS_FLOCKDN);
325 cntlr->control = &ich7_spi->spic;
326 cntlr->bbar = &ich7_spi->bbar;
327 cntlr->preop = &ich7_spi->preop;
328 cntlr->fpr = &ich7_spi->pbr[0];
329 cntlr->fpr_max = 3;
Arthur Heymansc88e3702017-08-20 20:50:17 +0200330 } else {
331 ich9_spi = (ich9_spi_regs *)(rcrb + 0x3800);
Arthur Heymans02c99712018-03-28 18:49:27 +0200332 cntlr->ich9_spi = ich9_spi;
Arthur Heymansc88e3702017-08-20 20:50:17 +0200333 hsfs = readw_(&ich9_spi->hsfs);
Arthur Heymans02c99712018-03-28 18:49:27 +0200334 car_set_var(g_ichspi_lock, hsfs & HSFS_FLOCKDN);
335 cntlr->hsfs = hsfs;
336 cntlr->opmenu = ich9_spi->opmenu;
337 cntlr->menubytes = sizeof(ich9_spi->opmenu);
338 cntlr->optype = &ich9_spi->optype;
339 cntlr->addr = &ich9_spi->faddr;
340 cntlr->data = (uint8_t *)ich9_spi->fdata;
341 cntlr->databytes = sizeof(ich9_spi->fdata);
342 cntlr->status = &ich9_spi->ssfs;
343 cntlr->control = (uint16_t *)ich9_spi->ssfc;
344 cntlr->bbar = &ich9_spi->bbar;
345 cntlr->preop = &ich9_spi->preop;
346 cntlr->fpr = &ich9_spi->pr[0];
347 cntlr->fpr_max = 5;
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700348
Arthur Heymans02c99712018-03-28 18:49:27 +0200349 if (cntlr->hsfs & HSFS_FDV) {
Arthur Heymansc88e3702017-08-20 20:50:17 +0200350 writel_ (4, &ich9_spi->fdoc);
Arthur Heymans02c99712018-03-28 18:49:27 +0200351 cntlr->flmap0 = readl_(&ich9_spi->fdod);
Arthur Heymansc88e3702017-08-20 20:50:17 +0200352 }
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700353 }
354
355 ich_set_bbar(0);
356
357 /* Disable the BIOS write protect so write commands are allowed. */
358 pci_read_config_byte(dev, 0xdc, &bios_cntl);
Vladimir Serbinenko42c4a9d2014-02-16 17:13:19 +0100359 /* Deassert SMM BIOS Write Protect Disable. */
360 bios_cntl &= ~(1 << 5);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700361 pci_write_config_byte(dev, 0xdc, bios_cntl | 0x1);
362}
Aaron Durbin4d3de7e2015-09-02 17:34:04 -0500363
David Hendricksf2612a12014-04-13 16:27:02 -0700364static void spi_init_cb(void *unused)
365{
366 spi_init();
367}
368
Aaron Durbin9ef9d852015-03-16 17:30:09 -0500369BOOT_STATE_INIT_ENTRY(BS_DEV_INIT, BS_ON_ENTRY, spi_init_cb, NULL);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700370
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700371typedef struct spi_transaction {
372 const uint8_t *out;
373 uint32_t bytesout;
374 uint8_t *in;
375 uint32_t bytesin;
376 uint8_t type;
377 uint8_t opcode;
378 uint32_t offset;
379} spi_transaction;
380
381static inline void spi_use_out(spi_transaction *trans, unsigned bytes)
382{
383 trans->out += bytes;
384 trans->bytesout -= bytes;
385}
386
387static inline void spi_use_in(spi_transaction *trans, unsigned bytes)
388{
389 trans->in += bytes;
390 trans->bytesin -= bytes;
391}
392
393static void spi_setup_type(spi_transaction *trans)
394{
395 trans->type = 0xFF;
396
397 /* Try to guess spi type from read/write sizes. */
398 if (trans->bytesin == 0) {
399 if (trans->bytesout > 4)
400 /*
401 * If bytesin = 0 and bytesout > 4, we presume this is
402 * a write data operation, which is accompanied by an
403 * address.
404 */
405 trans->type = SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS;
406 else
407 trans->type = SPI_OPCODE_TYPE_WRITE_NO_ADDRESS;
408 return;
409 }
410
411 if (trans->bytesout == 1) { /* and bytesin is > 0 */
412 trans->type = SPI_OPCODE_TYPE_READ_NO_ADDRESS;
413 return;
414 }
415
416 if (trans->bytesout == 4) { /* and bytesin is > 0 */
417 trans->type = SPI_OPCODE_TYPE_READ_WITH_ADDRESS;
418 }
Duncan Laurie23b00532012-10-10 14:21:23 -0700419
420 /* Fast read command is called with 5 bytes instead of 4 */
421 if (trans->out[0] == SPI_OPCODE_FAST_READ && trans->bytesout == 5) {
422 trans->type = SPI_OPCODE_TYPE_READ_WITH_ADDRESS;
423 --trans->bytesout;
424 }
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700425}
426
427static int spi_setup_opcode(spi_transaction *trans)
428{
Arthur Heymans02c99712018-03-28 18:49:27 +0200429 ich_spi_controller *cntlr = car_get_var_ptr(&g_cntlr);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700430 uint16_t optypes;
Arthur Heymans02c99712018-03-28 18:49:27 +0200431 uint8_t opmenu[cntlr->menubytes];
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700432
433 trans->opcode = trans->out[0];
434 spi_use_out(trans, 1);
Arthur Heymans02c99712018-03-28 18:49:27 +0200435 if (!car_get_var(g_ichspi_lock)) {
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700436 /* The lock is off, so just use index 0. */
Arthur Heymans02c99712018-03-28 18:49:27 +0200437 writeb_(trans->opcode, cntlr->opmenu);
438 optypes = readw_(cntlr->optype);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700439 optypes = (optypes & 0xfffc) | (trans->type & 0x3);
Arthur Heymans02c99712018-03-28 18:49:27 +0200440 writew_(optypes, cntlr->optype);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700441 return 0;
442 } else {
443 /* The lock is on. See if what we need is on the menu. */
444 uint8_t optype;
445 uint16_t opcode_index;
446
Duncan Lauriea2f1b952012-08-27 11:10:43 -0700447 /* Write Enable is handled as atomic prefix */
448 if (trans->opcode == SPI_OPCODE_WREN)
449 return 0;
450
Arthur Heymans02c99712018-03-28 18:49:27 +0200451 read_reg(cntlr->opmenu, opmenu, sizeof(opmenu));
452 for (opcode_index = 0; opcode_index < cntlr->menubytes;
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700453 opcode_index++) {
454 if (opmenu[opcode_index] == trans->opcode)
455 break;
456 }
457
Arthur Heymans02c99712018-03-28 18:49:27 +0200458 if (opcode_index == cntlr->menubytes) {
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700459 printk(BIOS_DEBUG, "ICH SPI: Opcode %x not found\n",
460 trans->opcode);
461 return -1;
462 }
463
Arthur Heymans02c99712018-03-28 18:49:27 +0200464 optypes = readw_(cntlr->optype);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700465 optype = (optypes >> (opcode_index * 2)) & 0x3;
466 if (trans->type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS &&
467 optype == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS &&
468 trans->bytesout >= 3) {
469 /* We guessed wrong earlier. Fix it up. */
470 trans->type = optype;
471 }
472 if (optype != trans->type) {
473 printk(BIOS_DEBUG, "ICH SPI: Transaction doesn't fit type %d\n",
474 optype);
475 return -1;
476 }
477 return opcode_index;
478 }
479}
480
481static int spi_setup_offset(spi_transaction *trans)
482{
483 /* Separate the SPI address and data. */
484 switch (trans->type) {
485 case SPI_OPCODE_TYPE_READ_NO_ADDRESS:
486 case SPI_OPCODE_TYPE_WRITE_NO_ADDRESS:
487 return 0;
488 case SPI_OPCODE_TYPE_READ_WITH_ADDRESS:
489 case SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS:
490 trans->offset = ((uint32_t)trans->out[0] << 16) |
491 ((uint32_t)trans->out[1] << 8) |
492 ((uint32_t)trans->out[2] << 0);
493 spi_use_out(trans, 3);
494 return 1;
495 default:
496 printk(BIOS_DEBUG, "Unrecognized SPI transaction type %#x\n", trans->type);
497 return -1;
498 }
499}
500
501/*
Philipp Deppenwiese93643e32014-10-17 16:10:32 +0200502 * Wait for up to 6s til status register bit(s) turn 1 (in case wait_til_set
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700503 * below is True) or 0. In case the wait was for the bit(s) to set - write
504 * those bits back, which would cause resetting them.
505 *
506 * Return the last read status value on success or -1 on failure.
507 */
508static int ich_status_poll(u16 bitmask, int wait_til_set)
509{
Arthur Heymans02c99712018-03-28 18:49:27 +0200510 ich_spi_controller *cntlr = car_get_var_ptr(&g_cntlr);
Philipp Deppenwiese93643e32014-10-17 16:10:32 +0200511 int timeout = 600000; /* This will result in 6 seconds */
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700512 u16 status = 0;
513
514 while (timeout--) {
Arthur Heymans02c99712018-03-28 18:49:27 +0200515 status = readw_(cntlr->status);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700516 if (wait_til_set ^ ((status & bitmask) == 0)) {
517 if (wait_til_set)
Arthur Heymans02c99712018-03-28 18:49:27 +0200518 writew_((status & bitmask), cntlr->status);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700519 return status;
520 }
521 udelay(10);
522 }
523
Philipp Deppenwiese93643e32014-10-17 16:10:32 +0200524 printk(BIOS_DEBUG, "ICH SPI: SCIP timeout, read %x, bitmask %x\n",
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700525 status, bitmask);
526 return -1;
527}
528
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100529static int spi_is_multichip (void)
530{
Arthur Heymans02c99712018-03-28 18:49:27 +0200531 ich_spi_controller *cntlr = car_get_var_ptr(&g_cntlr);
532 if (!(cntlr->hsfs & HSFS_FDV))
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100533 return 0;
Arthur Heymans02c99712018-03-28 18:49:27 +0200534 return !!((cntlr->flmap0 >> 8) & 3);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100535}
536
Furquan Shaikh94f86992016-12-01 07:12:32 -0800537static int spi_ctrlr_xfer(const struct spi_slave *slave, const void *dout,
Furquan Shaikh0dba0252016-11-30 04:34:22 -0800538 size_t bytesout, void *din, size_t bytesin)
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700539{
Arthur Heymans02c99712018-03-28 18:49:27 +0200540 ich_spi_controller *cntlr = car_get_var_ptr(&g_cntlr);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700541 uint16_t control;
542 int16_t opcode_index;
543 int with_address;
544 int status;
545
546 spi_transaction trans = {
Gabe Black93d9f922014-03-27 21:52:43 -0700547 dout, bytesout,
548 din, bytesin,
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700549 0xff, 0xff, 0
550 };
551
552 /* There has to always at least be an opcode. */
Gabe Black93d9f922014-03-27 21:52:43 -0700553 if (!bytesout || !dout) {
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700554 printk(BIOS_DEBUG, "ICH SPI: No opcode for transfer\n");
555 return -1;
556 }
557 /* Make sure if we read something we have a place to put it. */
Gabe Black93d9f922014-03-27 21:52:43 -0700558 if (bytesin != 0 && !din) {
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700559 printk(BIOS_DEBUG, "ICH SPI: Read but no target buffer\n");
560 return -1;
561 }
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700562
563 if (ich_status_poll(SPIS_SCIP, 0) == -1)
564 return -1;
565
Arthur Heymans02c99712018-03-28 18:49:27 +0200566 writew_(SPIS_CDS | SPIS_FCERR, cntlr->status);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700567
568 spi_setup_type(&trans);
569 if ((opcode_index = spi_setup_opcode(&trans)) < 0)
570 return -1;
571 if ((with_address = spi_setup_offset(&trans)) < 0)
572 return -1;
573
Duncan Laurie3beb6db2012-09-01 13:44:17 -0700574 if (trans.opcode == SPI_OPCODE_WREN) {
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700575 /*
576 * Treat Write Enable as Atomic Pre-Op if possible
577 * in order to prevent the Management Engine from
578 * issuing a transaction between WREN and DATA.
579 */
Arthur Heymans02c99712018-03-28 18:49:27 +0200580 if (!car_get_var(g_ichspi_lock))
581 writew_(trans.opcode, cntlr->preop);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700582 return 0;
583 }
584
585 /* Preset control fields */
586 control = SPIC_SCGO | ((opcode_index & 0x07) << 4);
587
588 /* Issue atomic preop cycle if needed */
Arthur Heymans02c99712018-03-28 18:49:27 +0200589 if (readw_(cntlr->preop))
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700590 control |= SPIC_ACS;
591
592 if (!trans.bytesout && !trans.bytesin) {
Duncan Laurie3beb6db2012-09-01 13:44:17 -0700593 /* SPI addresses are 24 bit only */
594 if (with_address)
Arthur Heymans02c99712018-03-28 18:49:27 +0200595 writel_(trans.offset & 0x00FFFFFF, cntlr->addr);
Duncan Laurie3beb6db2012-09-01 13:44:17 -0700596
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700597 /*
598 * This is a 'no data' command (like Write Enable), its
599 * bitesout size was 1, decremented to zero while executing
600 * spi_setup_opcode() above. Tell the chip to send the
601 * command.
602 */
Arthur Heymans02c99712018-03-28 18:49:27 +0200603 writew_(control, cntlr->control);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700604
605 /* wait for the result */
606 status = ich_status_poll(SPIS_CDS | SPIS_FCERR, 1);
607 if (status == -1)
608 return -1;
609
610 if (status & SPIS_FCERR) {
611 printk(BIOS_DEBUG, "ICH SPI: Command transaction error\n");
612 return -1;
613 }
614
615 return 0;
616 }
617
618 /*
Paul Menzel94782972013-06-29 11:41:27 +0200619 * Check if this is a write command attempting to transfer more bytes
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700620 * than the controller can handle. Iterations for writes are not
621 * supported here because each SPI write command needs to be preceded
622 * and followed by other SPI commands, and this sequence is controlled
623 * by the SPI chip driver.
624 */
Arthur Heymans02c99712018-03-28 18:49:27 +0200625 if (trans.bytesout > cntlr->databytes) {
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700626 printk(BIOS_DEBUG, "ICH SPI: Too much to write. Does your SPI chip driver use"
Kyösti Mälkki11104952014-06-29 16:17:33 +0300627 " spi_crop_chunk()?\n");
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700628 return -1;
629 }
630
631 /*
632 * Read or write up to databytes bytes at a time until everything has
633 * been sent.
634 */
635 while (trans.bytesout || trans.bytesin) {
636 uint32_t data_length;
637
638 /* SPI addresses are 24 bit only */
Arthur Heymans02c99712018-03-28 18:49:27 +0200639 writel_(trans.offset & 0x00FFFFFF, cntlr->addr);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700640
641 if (trans.bytesout)
Arthur Heymans02c99712018-03-28 18:49:27 +0200642 data_length = min(trans.bytesout, cntlr->databytes);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700643 else
Arthur Heymans02c99712018-03-28 18:49:27 +0200644 data_length = min(trans.bytesin, cntlr->databytes);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700645
646 /* Program data into FDATA0 to N */
647 if (trans.bytesout) {
Arthur Heymans02c99712018-03-28 18:49:27 +0200648 write_reg(trans.out, cntlr->data, data_length);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700649 spi_use_out(&trans, data_length);
650 if (with_address)
651 trans.offset += data_length;
652 }
653
654 /* Add proper control fields' values */
Arthur Heymans02c99712018-03-28 18:49:27 +0200655 control &= ~((cntlr->databytes - 1) << 8);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700656 control |= SPIC_DS;
657 control |= (data_length - 1) << 8;
658
659 /* write it */
Arthur Heymans02c99712018-03-28 18:49:27 +0200660 writew_(control, cntlr->control);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700661
662 /* Wait for Cycle Done Status or Flash Cycle Error. */
663 status = ich_status_poll(SPIS_CDS | SPIS_FCERR, 1);
664 if (status == -1)
665 return -1;
666
667 if (status & SPIS_FCERR) {
668 printk(BIOS_DEBUG, "ICH SPI: Data transaction error\n");
669 return -1;
670 }
671
672 if (trans.bytesin) {
Arthur Heymans02c99712018-03-28 18:49:27 +0200673 read_reg(cntlr->data, trans.in, data_length);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700674 spi_use_in(&trans, data_length);
675 if (with_address)
676 trans.offset += data_length;
677 }
678 }
679
680 /* Clear atomic preop now that xfer is done */
Arthur Heymans02c99712018-03-28 18:49:27 +0200681 writew_(0, cntlr->preop);
Stefan Reinauer1c56d9b2012-05-10 11:27:32 -0700682
683 return 0;
684}
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100685
686/* Sets FLA in FADDR to (addr & 0x01FFFFFF) without touching other bits. */
687static void ich_hwseq_set_addr(uint32_t addr)
688{
Arthur Heymans02c99712018-03-28 18:49:27 +0200689 ich_spi_controller *cntlr = car_get_var_ptr(&g_cntlr);
690 uint32_t addr_old = readl_(&cntlr->ich9_spi->faddr) & ~0x01FFFFFF;
691 writel_((addr & 0x01FFFFFF) | addr_old, &cntlr->ich9_spi->faddr);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100692}
693
694/* Polls for Cycle Done Status, Flash Cycle Error or timeout in 8 us intervals.
695 Resets all error flags in HSFS.
696 Returns 0 if the cycle completes successfully without errors within
697 timeout us, 1 on errors. */
698static int ich_hwseq_wait_for_cycle_complete(unsigned int timeout,
699 unsigned int len)
700{
Arthur Heymans02c99712018-03-28 18:49:27 +0200701 ich_spi_controller *cntlr = car_get_var_ptr(&g_cntlr);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100702 uint16_t hsfs;
703 uint32_t addr;
704
705 timeout /= 8; /* scale timeout duration to counter */
Arthur Heymans02c99712018-03-28 18:49:27 +0200706 while ((((hsfs = readw_(&cntlr->ich9_spi->hsfs)) &
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100707 (HSFS_FDONE | HSFS_FCERR)) == 0) &&
708 --timeout) {
709 udelay(8);
710 }
Arthur Heymans02c99712018-03-28 18:49:27 +0200711 writew_(readw_(&cntlr->ich9_spi->hsfs), &cntlr->ich9_spi->hsfs);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100712
713 if (!timeout) {
714 uint16_t hsfc;
Arthur Heymans02c99712018-03-28 18:49:27 +0200715 addr = readl_(&cntlr->ich9_spi->faddr) & 0x01FFFFFF;
716 hsfc = readw_(&cntlr->ich9_spi->hsfc);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100717 printk(BIOS_ERR, "Transaction timeout between offset 0x%08x and "
718 "0x%08x (= 0x%08x + %d) HSFC=%x HSFS=%x!\n",
719 addr, addr + len - 1, addr, len - 1,
720 hsfc, hsfs);
721 return 1;
722 }
723
724 if (hsfs & HSFS_FCERR) {
725 uint16_t hsfc;
Arthur Heymans02c99712018-03-28 18:49:27 +0200726 addr = readl_(&cntlr->ich9_spi->faddr) & 0x01FFFFFF;
727 hsfc = readw_(&cntlr->ich9_spi->hsfc);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100728 printk(BIOS_ERR, "Transaction error between offset 0x%08x and "
729 "0x%08x (= 0x%08x + %d) HSFC=%x HSFS=%x!\n",
730 addr, addr + len - 1, addr, len - 1,
731 hsfc, hsfs);
732 return 1;
733 }
734 return 0;
735}
736
737
Furquan Shaikhc28984d2016-11-20 21:04:00 -0800738static int ich_hwseq_erase(const struct spi_flash *flash, u32 offset,
739 size_t len)
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100740{
Arthur Heymans02c99712018-03-28 18:49:27 +0200741 ich_spi_controller *cntlr = car_get_var_ptr(&g_cntlr);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100742 u32 start, end, erase_size;
743 int ret;
744 uint16_t hsfc;
745 uint16_t timeout = 1000 * 60;
746
747 erase_size = flash->sector_size;
748 if (offset % erase_size || len % erase_size) {
749 printk(BIOS_ERR, "SF: Erase offset/length not multiple of erase size\n");
750 return -1;
751 }
752
Furquan Shaikh810e2cd2016-12-05 20:32:24 -0800753 ret = spi_claim_bus(&flash->spi);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100754 if (ret) {
755 printk(BIOS_ERR, "SF: Unable to claim SPI bus\n");
756 return ret;
757 }
758
759 start = offset;
760 end = start + len;
761
762 while (offset < end) {
763 /* make sure FDONE, FCERR, AEL are cleared by writing 1 to them */
Arthur Heymans02c99712018-03-28 18:49:27 +0200764 writew_(readw_(&cntlr->ich9_spi->hsfs), &cntlr->ich9_spi->hsfs);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100765
766 ich_hwseq_set_addr(offset);
767
768 offset += erase_size;
769
Arthur Heymans02c99712018-03-28 18:49:27 +0200770 hsfc = readw_(&cntlr->ich9_spi->hsfc);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100771 hsfc &= ~HSFC_FCYCLE; /* clear operation */
772 hsfc |= (0x3 << HSFC_FCYCLE_OFF); /* set erase operation */
773 hsfc |= HSFC_FGO; /* start */
Arthur Heymans02c99712018-03-28 18:49:27 +0200774 writew_(hsfc, &cntlr->ich9_spi->hsfc);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100775 if (ich_hwseq_wait_for_cycle_complete(timeout, len))
776 {
777 printk(BIOS_ERR, "SF: Erase failed at %x\n", offset - erase_size);
778 ret = -1;
779 goto out;
780 }
781 }
782
783 printk(BIOS_DEBUG, "SF: Successfully erased %zu bytes @ %#x\n", len, start);
784
785out:
Furquan Shaikh810e2cd2016-12-05 20:32:24 -0800786 spi_release_bus(&flash->spi);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100787 return ret;
788}
789
790static void ich_read_data(uint8_t *data, int len)
791{
Arthur Heymans02c99712018-03-28 18:49:27 +0200792 ich_spi_controller *cntlr = car_get_var_ptr(&g_cntlr);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100793 int i;
794 uint32_t temp32 = 0;
795
796 for (i = 0; i < len; i++) {
797 if ((i % 4) == 0)
Arthur Heymans02c99712018-03-28 18:49:27 +0200798 temp32 = readl_(cntlr->data + i);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100799
800 data[i] = (temp32 >> ((i % 4) * 8)) & 0xff;
801 }
802}
803
Furquan Shaikhc28984d2016-11-20 21:04:00 -0800804static int ich_hwseq_read(const struct spi_flash *flash, u32 addr, size_t len,
805 void *buf)
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100806{
Arthur Heymans02c99712018-03-28 18:49:27 +0200807 ich_spi_controller *cntlr = car_get_var_ptr(&g_cntlr);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100808 uint16_t hsfc;
809 uint16_t timeout = 100 * 60;
810 uint8_t block_len;
811
812 if (addr + len > flash->size) {
813 printk (BIOS_ERR,
814 "Attempt to read %x-%x which is out of chip\n",
815 (unsigned) addr,
816 (unsigned) addr+(unsigned) len);
817 return -1;
818 }
819
820 /* clear FDONE, FCERR, AEL by writing 1 to them (if they are set) */
Arthur Heymans02c99712018-03-28 18:49:27 +0200821 writew_(readw_(&cntlr->ich9_spi->hsfs), &cntlr->ich9_spi->hsfs);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100822
823 while (len > 0) {
Arthur Heymans02c99712018-03-28 18:49:27 +0200824 block_len = min(len, cntlr->databytes);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100825 if (block_len > (~addr & 0xff))
826 block_len = (~addr & 0xff) + 1;
827 ich_hwseq_set_addr(addr);
Arthur Heymans02c99712018-03-28 18:49:27 +0200828 hsfc = readw_(&cntlr->ich9_spi->hsfc);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100829 hsfc &= ~HSFC_FCYCLE; /* set read operation */
830 hsfc &= ~HSFC_FDBC; /* clear byte count */
831 /* set byte count */
832 hsfc |= (((block_len - 1) << HSFC_FDBC_OFF) & HSFC_FDBC);
833 hsfc |= HSFC_FGO; /* start */
Arthur Heymans02c99712018-03-28 18:49:27 +0200834 writew_(hsfc, &cntlr->ich9_spi->hsfc);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100835
836 if (ich_hwseq_wait_for_cycle_complete(timeout, block_len))
837 return 1;
838 ich_read_data(buf, block_len);
839 addr += block_len;
840 buf += block_len;
841 len -= block_len;
842 }
843 return 0;
844}
845
846/* Fill len bytes from the data array into the fdata/spid registers.
847 *
848 * Note that using len > flash->pgm->spi.max_data_write will trash the registers
849 * following the data registers.
850 */
851static void ich_fill_data(const uint8_t *data, int len)
852{
Arthur Heymans02c99712018-03-28 18:49:27 +0200853 ich_spi_controller *cntlr = car_get_var_ptr(&g_cntlr);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100854 uint32_t temp32 = 0;
855 int i;
856
857 if (len <= 0)
858 return;
859
860 for (i = 0; i < len; i++) {
861 if ((i % 4) == 0)
862 temp32 = 0;
863
864 temp32 |= ((uint32_t) data[i]) << ((i % 4) * 8);
865
866 if ((i % 4) == 3) /* 32 bits are full, write them to regs. */
Arthur Heymans02c99712018-03-28 18:49:27 +0200867 writel_(temp32, cntlr->data + (i - (i % 4)));
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100868 }
869 i--;
870 if ((i % 4) != 3) /* Write remaining data to regs. */
Arthur Heymans02c99712018-03-28 18:49:27 +0200871 writel_(temp32, cntlr->data + (i - (i % 4)));
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100872}
873
Furquan Shaikhc28984d2016-11-20 21:04:00 -0800874static int ich_hwseq_write(const struct spi_flash *flash, u32 addr, size_t len,
875 const void *buf)
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100876{
Arthur Heymans02c99712018-03-28 18:49:27 +0200877 ich_spi_controller *cntlr = car_get_var_ptr(&g_cntlr);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100878 uint16_t hsfc;
879 uint16_t timeout = 100 * 60;
880 uint8_t block_len;
881 uint32_t start = addr;
882
883 if (addr + len > flash->size) {
884 printk (BIOS_ERR,
885 "Attempt to write 0x%x-0x%x which is out of chip\n",
886 (unsigned)addr, (unsigned) (addr+len));
887 return -1;
888 }
889
890 /* clear FDONE, FCERR, AEL by writing 1 to them (if they are set) */
Arthur Heymans02c99712018-03-28 18:49:27 +0200891 writew_(readw_(&cntlr->ich9_spi->hsfs), &cntlr->ich9_spi->hsfs);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100892
893 while (len > 0) {
Arthur Heymans02c99712018-03-28 18:49:27 +0200894 block_len = min(len, cntlr->databytes);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100895 if (block_len > (~addr & 0xff))
896 block_len = (~addr & 0xff) + 1;
897
898 ich_hwseq_set_addr(addr);
899
900 ich_fill_data(buf, block_len);
Arthur Heymans02c99712018-03-28 18:49:27 +0200901 hsfc = readw_(&cntlr->ich9_spi->hsfc);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100902 hsfc &= ~HSFC_FCYCLE; /* clear operation */
903 hsfc |= (0x2 << HSFC_FCYCLE_OFF); /* set write operation */
904 hsfc &= ~HSFC_FDBC; /* clear byte count */
905 /* set byte count */
906 hsfc |= (((block_len - 1) << HSFC_FDBC_OFF) & HSFC_FDBC);
907 hsfc |= HSFC_FGO; /* start */
Arthur Heymans02c99712018-03-28 18:49:27 +0200908 writew_(hsfc, &cntlr->ich9_spi->hsfc);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100909
910 if (ich_hwseq_wait_for_cycle_complete(timeout, block_len))
911 {
912 printk (BIOS_ERR, "SF: write failure at %x\n",
913 addr);
914 return -1;
915 }
916 addr += block_len;
917 buf += block_len;
918 len -= block_len;
919 }
920 printk(BIOS_DEBUG, "SF: Successfully written %u bytes @ %#x\n",
921 (unsigned) (addr - start), start);
922 return 0;
923}
924
Furquan Shaikhe2fc5e22017-05-17 17:26:01 -0700925static const struct spi_flash_ops spi_flash_ops = {
926 .read = ich_hwseq_read,
927 .write = ich_hwseq_write,
928 .erase = ich_hwseq_erase,
929};
930
Furquan Shaikha1491572017-05-17 19:14:06 -0700931static int spi_flash_programmer_probe(const struct spi_slave *spi,
932 struct spi_flash *flash)
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100933{
Arthur Heymans02c99712018-03-28 18:49:27 +0200934 ich_spi_controller *cntlr = car_get_var_ptr(&g_cntlr);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100935 uint32_t flcomp;
936
Arthur Heymansc88e3702017-08-20 20:50:17 +0200937 if (IS_ENABLED(CONFIG_SOUTHBRIDGE_INTEL_I82801GX))
938 return spi_flash_generic_probe(spi, flash);
939
Furquan Shaikha1491572017-05-17 19:14:06 -0700940 /* Try generic probing first if spi_is_multichip returns 0. */
941 if (!spi_is_multichip() && !spi_flash_generic_probe(spi, flash))
942 return 0;
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100943
Furquan Shaikh810e2cd2016-12-05 20:32:24 -0800944 memcpy(&flash->spi, spi, sizeof(*spi));
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100945 flash->name = "Opaque HW-sequencing";
946
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100947 ich_hwseq_set_addr (0);
Arthur Heymans02c99712018-03-28 18:49:27 +0200948 switch ((cntlr->hsfs >> 3) & 3)
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100949 {
950 case 0:
951 flash->sector_size = 256;
952 break;
953 case 1:
954 flash->sector_size = 4096;
955 break;
956 case 2:
957 flash->sector_size = 8192;
958 break;
959 case 3:
960 flash->sector_size = 65536;
961 break;
962 }
963
Arthur Heymans02c99712018-03-28 18:49:27 +0200964 writel_ (0x1000, &cntlr->ich9_spi->fdoc);
965 flcomp = readl_(&cntlr->ich9_spi->fdod);
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100966
967 flash->size = 1 << (19 + (flcomp & 7));
968
Furquan Shaikhe2fc5e22017-05-17 17:26:01 -0700969 flash->ops = &spi_flash_ops;
970
Arthur Heymans02c99712018-03-28 18:49:27 +0200971 if ((cntlr->hsfs & HSFS_FDV) && ((cntlr->flmap0 >> 8) & 3))
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100972 flash->size += 1 << (19 + ((flcomp >> 3) & 7));
973 printk (BIOS_DEBUG, "flash size 0x%x bytes\n", flash->size);
974
Furquan Shaikh30221b42017-05-15 14:35:15 -0700975 return 0;
Vladimir Serbinenkof3c7a9c2014-01-04 21:00:38 +0100976}
Furquan Shaikha1491572017-05-17 19:14:06 -0700977
Aaron Durbin851dde82018-04-19 21:15:25 -0600978static int xfer_vectors(const struct spi_slave *slave,
979 struct spi_op vectors[], size_t count)
980{
981 return spi_flash_vector_helper(slave, vectors, count, spi_ctrlr_xfer);
982}
983
Arthur Heymans11fcb2bc2018-01-07 20:46:31 +0100984#define SPI_FPR_SHIFT 12
985#define ICH7_SPI_FPR_MASK 0xfff
986#define ICH9_SPI_FPR_MASK 0x1fff
987#define SPI_FPR_BASE_SHIFT 0
988#define ICH7_SPI_FPR_LIMIT_SHIFT 12
989#define ICH9_SPI_FPR_LIMIT_SHIFT 16
990#define ICH9_SPI_FPR_RPE (1 << 15) /* Read Protect */
991#define SPI_FPR_WPE (1 << 31) /* Write Protect */
992
993static u32 spi_fpr(u32 base, u32 limit)
994{
995 u32 ret;
996 u32 mask, limit_shift;
997 if (IS_ENABLED(CONFIG_SOUTHBRIDGE_INTEL_I82801GX)) {
998 mask = ICH7_SPI_FPR_MASK;
999 limit_shift = ICH7_SPI_FPR_LIMIT_SHIFT;
1000 } else {
1001 mask = ICH9_SPI_FPR_MASK;
1002 limit_shift = ICH9_SPI_FPR_LIMIT_SHIFT;
1003 }
1004 ret = ((limit >> SPI_FPR_SHIFT) & mask) << limit_shift;
1005 ret |= ((base >> SPI_FPR_SHIFT) & mask) << SPI_FPR_BASE_SHIFT;
1006 return ret;
1007}
1008
1009/*
1010 * Protect range of SPI flash defined by [start, start+size-1] using Flash
1011 * Protected Range (FPR) register if available.
1012 * Returns 0 on success, -1 on failure of programming fpr registers.
1013 */
1014static int spi_flash_protect(const struct spi_flash *flash,
1015 const struct region *region)
1016{
Arthur Heymans02c99712018-03-28 18:49:27 +02001017 ich_spi_controller *cntlr = car_get_var_ptr(&g_cntlr);
Arthur Heymans11fcb2bc2018-01-07 20:46:31 +01001018 u32 start = region_offset(region);
1019 u32 end = start + region_sz(region) - 1;
1020 u32 reg;
1021 int fpr;
1022 uint32_t *fpr_base;
1023
Arthur Heymans02c99712018-03-28 18:49:27 +02001024 fpr_base = cntlr->fpr;
Arthur Heymans11fcb2bc2018-01-07 20:46:31 +01001025
1026 /* Find first empty FPR */
Arthur Heymans02c99712018-03-28 18:49:27 +02001027 for (fpr = 0; fpr < cntlr->fpr_max; fpr++) {
Arthur Heymans11fcb2bc2018-01-07 20:46:31 +01001028 reg = read32(&fpr_base[fpr]);
1029 if (reg == 0)
1030 break;
1031 }
1032
Arthur Heymans02c99712018-03-28 18:49:27 +02001033 if (fpr == cntlr->fpr_max) {
Arthur Heymans11fcb2bc2018-01-07 20:46:31 +01001034 printk(BIOS_ERR, "ERROR: No SPI FPR free!\n");
1035 return -1;
1036 }
1037
1038 /* Set protected range base and limit */
1039 reg = spi_fpr(start, end) | SPI_FPR_WPE;
1040
1041 /* Set the FPR register and verify it is protected */
1042 write32(&fpr_base[fpr], reg);
1043 reg = read32(&fpr_base[fpr]);
1044 if (!(reg & SPI_FPR_WPE)) {
1045 printk(BIOS_ERR, "ERROR: Unable to set SPI FPR %d\n", fpr);
1046 return -1;
1047 }
1048
1049 printk(BIOS_INFO, "%s: FPR %d is enabled for range 0x%08x-0x%08x\n",
1050 __func__, fpr, start, end);
1051 return 0;
1052}
1053
Furquan Shaikha1491572017-05-17 19:14:06 -07001054static const struct spi_ctrlr spi_ctrlr = {
Aaron Durbin851dde82018-04-19 21:15:25 -06001055 .xfer_vector = xfer_vectors,
Furquan Shaikha1491572017-05-17 19:14:06 -07001056 .max_xfer_size = member_size(ich9_spi_regs, fdata),
1057 .flash_probe = spi_flash_programmer_probe,
Arthur Heymans11fcb2bc2018-01-07 20:46:31 +01001058 .flash_protect = spi_flash_protect,
Furquan Shaikha1491572017-05-17 19:14:06 -07001059};
1060
Furquan Shaikh2cd03f12017-05-18 14:58:32 -07001061const struct spi_ctrlr_buses spi_ctrlr_bus_map[] = {
1062 {
1063 .ctrlr = &spi_ctrlr,
1064 .bus_start = 0,
1065 .bus_end = 0,
1066 },
1067};
1068
1069const size_t spi_ctrlr_bus_map_count = ARRAY_SIZE(spi_ctrlr_bus_map);