blob: 9142ffd238701b92cd029394ec3159c259c8b78d [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass18530302013-03-19 04:58:56 +00002/*
3 * Copyright (c) 2011-12 The Chromium OS Authors.
4 *
Simon Glass18530302013-03-19 04:58:56 +00005 * This file is derived from the flashrom project.
6 */
Bin Meng9eb43392016-02-01 01:40:36 -08007
Simon Glassa5506622019-12-06 21:42:41 -07008#define LOG_CATEGORY UCLASS_SPI
9
Simon Glass18530302013-03-19 04:58:56 +000010#include <common.h>
Simon Glass52f24232020-05-10 11:40:00 -060011#include <bootstage.h>
Simon Glassb47aa262019-12-06 21:42:40 -070012#include <div64.h>
Simon Glassba457562015-03-26 09:29:26 -060013#include <dm.h>
Simon Glass0d3ee3e2019-12-06 21:42:45 -070014#include <dt-structs.h>
Simon Glass5093bad2015-01-27 22:13:43 -070015#include <errno.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060016#include <log.h>
Simon Glass18530302013-03-19 04:58:56 +000017#include <malloc.h>
Simon Glassf2b85ab2016-01-18 20:19:21 -070018#include <pch.h>
Simon Glass18530302013-03-19 04:58:56 +000019#include <pci.h>
20#include <pci_ids.h>
Simon Glassf2b85ab2016-01-18 20:19:21 -070021#include <spi.h>
Simon Glass1facebd2019-12-06 21:42:46 -070022#include <spi_flash.h>
Bernhard Messerklinger0709ddb2019-08-02 08:38:34 +020023#include <spi-mem.h>
Simon Glass636555a2019-12-06 21:42:48 -070024#include <spl.h>
Simon Glass1facebd2019-12-06 21:42:46 -070025#include <asm/fast_spi.h>
Simon Glassb47aa262019-12-06 21:42:40 -070026#include <asm/io.h>
Simon Glass609b90a2020-05-27 06:58:47 -060027#include <dm/uclass-internal.h>
Simon Glass636555a2019-12-06 21:42:48 -070028#include <asm/mtrr.h>
Simon Glasscd93d622020-05-10 11:40:13 -060029#include <linux/bitops.h>
Simon Glassc05ed002020-05-10 11:40:11 -060030#include <linux/delay.h>
Simon Glass636555a2019-12-06 21:42:48 -070031#include <linux/sizes.h>
Simon Glass18530302013-03-19 04:58:56 +000032
33#include "ich.h"
34
Simon Glassfffe25d2016-01-18 20:19:20 -070035#ifdef DEBUG_TRACE
36#define debug_trace(fmt, args...) debug(fmt, ##args)
37#else
38#define debug_trace(x, args...)
39#endif
40
Simon Glassba457562015-03-26 09:29:26 -060041static u8 ich_readb(struct ich_spi_priv *priv, int reg)
Simon Glass18530302013-03-19 04:58:56 +000042{
Simon Glassba457562015-03-26 09:29:26 -060043 u8 value = readb(priv->base + reg);
Simon Glass18530302013-03-19 04:58:56 +000044
Simon Glassfffe25d2016-01-18 20:19:20 -070045 debug_trace("read %2.2x from %4.4x\n", value, reg);
Simon Glass18530302013-03-19 04:58:56 +000046
47 return value;
48}
49
Simon Glassba457562015-03-26 09:29:26 -060050static u16 ich_readw(struct ich_spi_priv *priv, int reg)
Simon Glass18530302013-03-19 04:58:56 +000051{
Simon Glassba457562015-03-26 09:29:26 -060052 u16 value = readw(priv->base + reg);
Simon Glass18530302013-03-19 04:58:56 +000053
Simon Glassfffe25d2016-01-18 20:19:20 -070054 debug_trace("read %4.4x from %4.4x\n", value, reg);
Simon Glass18530302013-03-19 04:58:56 +000055
56 return value;
57}
58
Simon Glassba457562015-03-26 09:29:26 -060059static u32 ich_readl(struct ich_spi_priv *priv, int reg)
Simon Glass18530302013-03-19 04:58:56 +000060{
Simon Glassba457562015-03-26 09:29:26 -060061 u32 value = readl(priv->base + reg);
Simon Glass18530302013-03-19 04:58:56 +000062
Simon Glassfffe25d2016-01-18 20:19:20 -070063 debug_trace("read %8.8x from %4.4x\n", value, reg);
Simon Glass18530302013-03-19 04:58:56 +000064
65 return value;
66}
67
Simon Glassba457562015-03-26 09:29:26 -060068static void ich_writeb(struct ich_spi_priv *priv, u8 value, int reg)
Simon Glass18530302013-03-19 04:58:56 +000069{
Simon Glassba457562015-03-26 09:29:26 -060070 writeb(value, priv->base + reg);
Simon Glassfffe25d2016-01-18 20:19:20 -070071 debug_trace("wrote %2.2x to %4.4x\n", value, reg);
Simon Glass18530302013-03-19 04:58:56 +000072}
73
Simon Glassba457562015-03-26 09:29:26 -060074static void ich_writew(struct ich_spi_priv *priv, u16 value, int reg)
Simon Glass18530302013-03-19 04:58:56 +000075{
Simon Glassba457562015-03-26 09:29:26 -060076 writew(value, priv->base + reg);
Simon Glassfffe25d2016-01-18 20:19:20 -070077 debug_trace("wrote %4.4x to %4.4x\n", value, reg);
Simon Glass18530302013-03-19 04:58:56 +000078}
79
Simon Glassba457562015-03-26 09:29:26 -060080static void ich_writel(struct ich_spi_priv *priv, u32 value, int reg)
Simon Glass18530302013-03-19 04:58:56 +000081{
Simon Glassba457562015-03-26 09:29:26 -060082 writel(value, priv->base + reg);
Simon Glassfffe25d2016-01-18 20:19:20 -070083 debug_trace("wrote %8.8x to %4.4x\n", value, reg);
Simon Glass18530302013-03-19 04:58:56 +000084}
85
Simon Glassba457562015-03-26 09:29:26 -060086static void write_reg(struct ich_spi_priv *priv, const void *value,
87 int dest_reg, uint32_t size)
Simon Glass18530302013-03-19 04:58:56 +000088{
Simon Glassba457562015-03-26 09:29:26 -060089 memcpy_toio(priv->base + dest_reg, value, size);
Simon Glass18530302013-03-19 04:58:56 +000090}
91
Simon Glassba457562015-03-26 09:29:26 -060092static void read_reg(struct ich_spi_priv *priv, int src_reg, void *value,
93 uint32_t size)
Simon Glass18530302013-03-19 04:58:56 +000094{
Simon Glassba457562015-03-26 09:29:26 -060095 memcpy_fromio(value, priv->base + src_reg, size);
Simon Glass18530302013-03-19 04:58:56 +000096}
97
Simon Glassba457562015-03-26 09:29:26 -060098static void ich_set_bbar(struct ich_spi_priv *ctlr, uint32_t minaddr)
Simon Glass18530302013-03-19 04:58:56 +000099{
100 const uint32_t bbar_mask = 0x00ffff00;
101 uint32_t ichspi_bbar;
102
Simon Glass3937df32019-12-06 21:42:49 -0700103 if (ctlr->bbar) {
104 minaddr &= bbar_mask;
105 ichspi_bbar = ich_readl(ctlr, ctlr->bbar) & ~bbar_mask;
106 ichspi_bbar |= minaddr;
107 ich_writel(ctlr, ichspi_bbar, ctlr->bbar);
108 }
Simon Glass18530302013-03-19 04:58:56 +0000109}
110
Simon Glass18530302013-03-19 04:58:56 +0000111/* @return 1 if the SPI flash supports the 33MHz speed */
Simon Glassa5506622019-12-06 21:42:41 -0700112static bool ich9_can_do_33mhz(struct udevice *dev)
Simon Glass18530302013-03-19 04:58:56 +0000113{
Simon Glass17e75442019-12-06 21:42:38 -0700114 struct ich_spi_priv *priv = dev_get_priv(dev);
Simon Glass18530302013-03-19 04:58:56 +0000115 u32 fdod, speed;
116
Simon Glassf7843612021-06-27 17:50:59 -0600117 if (!CONFIG_IS_ENABLED(PCI) || !priv->pch)
Simon Glass636555a2019-12-06 21:42:48 -0700118 return false;
Simon Glass18530302013-03-19 04:58:56 +0000119 /* Observe SPI Descriptor Component Section 0 */
Simon Glass17e75442019-12-06 21:42:38 -0700120 dm_pci_write_config32(priv->pch, 0xb0, 0x1000);
Simon Glass18530302013-03-19 04:58:56 +0000121
122 /* Extract the Write/Erase SPI Frequency from descriptor */
Simon Glass17e75442019-12-06 21:42:38 -0700123 dm_pci_read_config32(priv->pch, 0xb4, &fdod);
Simon Glass18530302013-03-19 04:58:56 +0000124
125 /* Bits 23:21 have the fast read clock frequency, 0=20MHz, 1=33MHz */
126 speed = (fdod >> 21) & 7;
127
128 return speed == 1;
129}
130
Simon Glass8a8d24b2020-12-03 16:55:23 -0700131static void spi_lock_down(struct ich_spi_plat *plat, void *sbase)
Bin Mengab201072017-10-18 18:20:57 -0700132{
133 if (plat->ich_version == ICHV_7) {
134 struct ich7_spi_regs *ich7_spi = sbase;
135
136 setbits_le16(&ich7_spi->spis, SPIS_LOCK);
137 } else if (plat->ich_version == ICHV_9) {
138 struct ich9_spi_regs *ich9_spi = sbase;
139
140 setbits_le16(&ich9_spi->hsfs, HSFS_FLOCKDN);
141 }
142}
143
Simon Glass8a8d24b2020-12-03 16:55:23 -0700144static bool spi_lock_status(struct ich_spi_plat *plat, void *sbase)
Bin Meng3e791412017-08-15 22:38:29 -0700145{
146 int lock = 0;
147
148 if (plat->ich_version == ICHV_7) {
149 struct ich7_spi_regs *ich7_spi = sbase;
150
151 lock = readw(&ich7_spi->spis) & SPIS_LOCK;
152 } else if (plat->ich_version == ICHV_9) {
153 struct ich9_spi_regs *ich9_spi = sbase;
154
155 lock = readw(&ich9_spi->hsfs) & HSFS_FLOCKDN;
156 }
157
158 return lock != 0;
159}
160
Bin Meng3e791412017-08-15 22:38:29 -0700161static int spi_setup_opcode(struct ich_spi_priv *ctlr, struct spi_trans *trans,
162 bool lock)
Simon Glass18530302013-03-19 04:58:56 +0000163{
164 uint16_t optypes;
Simon Glassba457562015-03-26 09:29:26 -0600165 uint8_t opmenu[ctlr->menubytes];
Simon Glass18530302013-03-19 04:58:56 +0000166
Bin Meng3e791412017-08-15 22:38:29 -0700167 if (!lock) {
Simon Glass18530302013-03-19 04:58:56 +0000168 /* The lock is off, so just use index 0. */
Simon Glassba457562015-03-26 09:29:26 -0600169 ich_writeb(ctlr, trans->opcode, ctlr->opmenu);
170 optypes = ich_readw(ctlr, ctlr->optype);
Simon Glass18530302013-03-19 04:58:56 +0000171 optypes = (optypes & 0xfffc) | (trans->type & 0x3);
Simon Glassba457562015-03-26 09:29:26 -0600172 ich_writew(ctlr, optypes, ctlr->optype);
Simon Glass18530302013-03-19 04:58:56 +0000173 return 0;
174 } else {
175 /* The lock is on. See if what we need is on the menu. */
176 uint8_t optype;
177 uint16_t opcode_index;
178
179 /* Write Enable is handled as atomic prefix */
180 if (trans->opcode == SPI_OPCODE_WREN)
181 return 0;
182
Simon Glassba457562015-03-26 09:29:26 -0600183 read_reg(ctlr, ctlr->opmenu, opmenu, sizeof(opmenu));
184 for (opcode_index = 0; opcode_index < ctlr->menubytes;
Simon Glass18530302013-03-19 04:58:56 +0000185 opcode_index++) {
186 if (opmenu[opcode_index] == trans->opcode)
187 break;
188 }
189
Simon Glassba457562015-03-26 09:29:26 -0600190 if (opcode_index == ctlr->menubytes) {
Simon Glassa5506622019-12-06 21:42:41 -0700191 debug("ICH SPI: Opcode %x not found\n", trans->opcode);
Simon Glassba457562015-03-26 09:29:26 -0600192 return -EINVAL;
Simon Glass18530302013-03-19 04:58:56 +0000193 }
194
Simon Glassba457562015-03-26 09:29:26 -0600195 optypes = ich_readw(ctlr, ctlr->optype);
Simon Glass18530302013-03-19 04:58:56 +0000196 optype = (optypes >> (opcode_index * 2)) & 0x3;
Bernhard Messerklinger0709ddb2019-08-02 08:38:34 +0200197
Simon Glass18530302013-03-19 04:58:56 +0000198 if (optype != trans->type) {
Simon Glassa5506622019-12-06 21:42:41 -0700199 debug("ICH SPI: Transaction doesn't fit type %d\n",
200 optype);
Simon Glassba457562015-03-26 09:29:26 -0600201 return -ENOSPC;
Simon Glass18530302013-03-19 04:58:56 +0000202 }
203 return opcode_index;
204 }
205}
206
Simon Glass18530302013-03-19 04:58:56 +0000207/*
208 * Wait for up to 6s til status register bit(s) turn 1 (in case wait_til_set
York Sun472d5462013-04-01 11:29:11 -0700209 * below is true) or 0. In case the wait was for the bit(s) to set - write
Simon Glass18530302013-03-19 04:58:56 +0000210 * those bits back, which would cause resetting them.
211 *
212 * Return the last read status value on success or -1 on failure.
213 */
Simon Glassba457562015-03-26 09:29:26 -0600214static int ich_status_poll(struct ich_spi_priv *ctlr, u16 bitmask,
215 int wait_til_set)
Simon Glass18530302013-03-19 04:58:56 +0000216{
217 int timeout = 600000; /* This will result in 6s */
218 u16 status = 0;
219
220 while (timeout--) {
Simon Glassba457562015-03-26 09:29:26 -0600221 status = ich_readw(ctlr, ctlr->status);
Simon Glass18530302013-03-19 04:58:56 +0000222 if (wait_til_set ^ ((status & bitmask) == 0)) {
Simon Glassba457562015-03-26 09:29:26 -0600223 if (wait_til_set) {
224 ich_writew(ctlr, status & bitmask,
225 ctlr->status);
226 }
Simon Glass18530302013-03-19 04:58:56 +0000227 return status;
228 }
229 udelay(10);
230 }
Simon Glassa5506622019-12-06 21:42:41 -0700231 debug("ICH SPI: SCIP timeout, read %x, expected %x, wts %x %x\n",
232 status, bitmask, wait_til_set, status & bitmask);
Simon Glass18530302013-03-19 04:58:56 +0000233
Simon Glassba457562015-03-26 09:29:26 -0600234 return -ETIMEDOUT;
Simon Glass18530302013-03-19 04:58:56 +0000235}
236
Bernhard Messerklinger0709ddb2019-08-02 08:38:34 +0200237static void ich_spi_config_opcode(struct udevice *dev)
Bin Mengb42711f2017-08-15 22:38:30 -0700238{
239 struct ich_spi_priv *ctlr = dev_get_priv(dev);
240
241 /*
242 * PREOP, OPTYPE, OPMENU1/OPMENU2 registers can be locked down
243 * to prevent accidental or intentional writes. Before they get
244 * locked down, these registers should be initialized properly.
245 */
246 ich_writew(ctlr, SPI_OPPREFIX, ctlr->preop);
247 ich_writew(ctlr, SPI_OPTYPE, ctlr->optype);
248 ich_writel(ctlr, SPI_OPMENU_LOWER, ctlr->opmenu);
249 ich_writel(ctlr, SPI_OPMENU_UPPER, ctlr->opmenu + sizeof(u32));
250}
251
Simon Glass1facebd2019-12-06 21:42:46 -0700252static int ich_spi_exec_op_swseq(struct spi_slave *slave,
253 const struct spi_mem_op *op)
Simon Glass18530302013-03-19 04:58:56 +0000254{
Bernhard Messerklinger0709ddb2019-08-02 08:38:34 +0200255 struct udevice *bus = dev_get_parent(slave->dev);
Simon Glass8a8d24b2020-12-03 16:55:23 -0700256 struct ich_spi_plat *plat = dev_get_plat(bus);
Simon Glassba457562015-03-26 09:29:26 -0600257 struct ich_spi_priv *ctlr = dev_get_priv(bus);
Simon Glass18530302013-03-19 04:58:56 +0000258 uint16_t control;
259 int16_t opcode_index;
260 int with_address;
261 int status;
Simon Glassba457562015-03-26 09:29:26 -0600262 struct spi_trans *trans = &ctlr->trans;
Bin Meng3e791412017-08-15 22:38:29 -0700263 bool lock = spi_lock_status(plat, ctlr->base);
Bernhard Messerklinger0709ddb2019-08-02 08:38:34 +0200264 int ret = 0;
Simon Glass18530302013-03-19 04:58:56 +0000265
Bernhard Messerklinger0709ddb2019-08-02 08:38:34 +0200266 trans->in = NULL;
267 trans->out = NULL;
268 trans->type = 0xFF;
Simon Glass18530302013-03-19 04:58:56 +0000269
Bernhard Messerklinger0709ddb2019-08-02 08:38:34 +0200270 if (op->data.nbytes) {
271 if (op->data.dir == SPI_MEM_DATA_IN) {
272 trans->in = op->data.buf.in;
273 trans->bytesin = op->data.nbytes;
274 } else {
275 trans->out = op->data.buf.out;
276 trans->bytesout = op->data.nbytes;
Simon Glass18530302013-03-19 04:58:56 +0000277 }
Bernhard Messerklinger0709ddb2019-08-02 08:38:34 +0200278 }
279
280 if (trans->opcode != op->cmd.opcode)
281 trans->opcode = op->cmd.opcode;
282
283 if (lock && trans->opcode == SPI_OPCODE_WRDIS)
Simon Glass18530302013-03-19 04:58:56 +0000284 return 0;
Simon Glass18530302013-03-19 04:58:56 +0000285
286 if (trans->opcode == SPI_OPCODE_WREN) {
287 /*
288 * Treat Write Enable as Atomic Pre-Op if possible
289 * in order to prevent the Management Engine from
290 * issuing a transaction between WREN and DATA.
291 */
Bin Meng3e791412017-08-15 22:38:29 -0700292 if (!lock)
Simon Glassba457562015-03-26 09:29:26 -0600293 ich_writew(ctlr, trans->opcode, ctlr->preop);
Simon Glass18530302013-03-19 04:58:56 +0000294 return 0;
295 }
296
Bernhard Messerklinger0709ddb2019-08-02 08:38:34 +0200297 ret = ich_status_poll(ctlr, SPIS_SCIP, 0);
298 if (ret < 0)
299 return ret;
300
301 if (plat->ich_version == ICHV_7)
302 ich_writew(ctlr, SPIS_CDS | SPIS_FCERR, ctlr->status);
303 else
304 ich_writeb(ctlr, SPIS_CDS | SPIS_FCERR, ctlr->status);
305
306 /* Try to guess spi transaction type */
307 if (op->data.dir == SPI_MEM_DATA_OUT) {
308 if (op->addr.nbytes)
309 trans->type = SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS;
310 else
311 trans->type = SPI_OPCODE_TYPE_WRITE_NO_ADDRESS;
312 } else {
313 if (op->addr.nbytes)
314 trans->type = SPI_OPCODE_TYPE_READ_WITH_ADDRESS;
315 else
316 trans->type = SPI_OPCODE_TYPE_READ_NO_ADDRESS;
317 }
318 /* Special erase case handling */
319 if (op->addr.nbytes && !op->data.buswidth)
320 trans->type = SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS;
321
322 opcode_index = spi_setup_opcode(ctlr, trans, lock);
323 if (opcode_index < 0)
324 return -EINVAL;
325
326 if (op->addr.nbytes) {
327 trans->offset = op->addr.val;
328 with_address = 1;
329 }
330
Simon Glassba457562015-03-26 09:29:26 -0600331 if (ctlr->speed && ctlr->max_speed >= 33000000) {
Simon Glass18530302013-03-19 04:58:56 +0000332 int byte;
333
Simon Glassba457562015-03-26 09:29:26 -0600334 byte = ich_readb(ctlr, ctlr->speed);
335 if (ctlr->cur_speed >= 33000000)
Simon Glass18530302013-03-19 04:58:56 +0000336 byte |= SSFC_SCF_33MHZ;
337 else
338 byte &= ~SSFC_SCF_33MHZ;
Simon Glassba457562015-03-26 09:29:26 -0600339 ich_writeb(ctlr, byte, ctlr->speed);
Simon Glass18530302013-03-19 04:58:56 +0000340 }
341
Simon Glass18530302013-03-19 04:58:56 +0000342 /* Preset control fields */
Simon Glass18530302013-03-19 04:58:56 +0000343 control = SPIC_SCGO | ((opcode_index & 0x07) << 4);
344
345 /* Issue atomic preop cycle if needed */
Simon Glassba457562015-03-26 09:29:26 -0600346 if (ich_readw(ctlr, ctlr->preop))
Simon Glass18530302013-03-19 04:58:56 +0000347 control |= SPIC_ACS;
348
349 if (!trans->bytesout && !trans->bytesin) {
350 /* SPI addresses are 24 bit only */
Simon Glassba457562015-03-26 09:29:26 -0600351 if (with_address) {
352 ich_writel(ctlr, trans->offset & 0x00FFFFFF,
353 ctlr->addr);
354 }
Simon Glass18530302013-03-19 04:58:56 +0000355 /*
356 * This is a 'no data' command (like Write Enable), its
357 * bitesout size was 1, decremented to zero while executing
358 * spi_setup_opcode() above. Tell the chip to send the
359 * command.
360 */
Simon Glassba457562015-03-26 09:29:26 -0600361 ich_writew(ctlr, control, ctlr->control);
Simon Glass18530302013-03-19 04:58:56 +0000362
363 /* wait for the result */
Simon Glassba457562015-03-26 09:29:26 -0600364 status = ich_status_poll(ctlr, SPIS_CDS | SPIS_FCERR, 1);
365 if (status < 0)
366 return status;
Simon Glass18530302013-03-19 04:58:56 +0000367
368 if (status & SPIS_FCERR) {
369 debug("ICH SPI: Command transaction error\n");
Simon Glassba457562015-03-26 09:29:26 -0600370 return -EIO;
Simon Glass18530302013-03-19 04:58:56 +0000371 }
372
373 return 0;
374 }
375
Simon Glass18530302013-03-19 04:58:56 +0000376 while (trans->bytesout || trans->bytesin) {
377 uint32_t data_length;
Simon Glass18530302013-03-19 04:58:56 +0000378
379 /* SPI addresses are 24 bit only */
Simon Glassba457562015-03-26 09:29:26 -0600380 ich_writel(ctlr, trans->offset & 0x00FFFFFF, ctlr->addr);
Simon Glass18530302013-03-19 04:58:56 +0000381
382 if (trans->bytesout)
Simon Glassba457562015-03-26 09:29:26 -0600383 data_length = min(trans->bytesout, ctlr->databytes);
Simon Glass18530302013-03-19 04:58:56 +0000384 else
Simon Glassba457562015-03-26 09:29:26 -0600385 data_length = min(trans->bytesin, ctlr->databytes);
Simon Glass18530302013-03-19 04:58:56 +0000386
387 /* Program data into FDATA0 to N */
388 if (trans->bytesout) {
Simon Glassba457562015-03-26 09:29:26 -0600389 write_reg(ctlr, trans->out, ctlr->data, data_length);
Bernhard Messerklinger0709ddb2019-08-02 08:38:34 +0200390 trans->bytesout -= data_length;
Simon Glass18530302013-03-19 04:58:56 +0000391 }
392
393 /* Add proper control fields' values */
Simon Glassba457562015-03-26 09:29:26 -0600394 control &= ~((ctlr->databytes - 1) << 8);
Simon Glass18530302013-03-19 04:58:56 +0000395 control |= SPIC_DS;
396 control |= (data_length - 1) << 8;
397
398 /* write it */
Simon Glassba457562015-03-26 09:29:26 -0600399 ich_writew(ctlr, control, ctlr->control);
Simon Glass18530302013-03-19 04:58:56 +0000400
Bin Meng9eb43392016-02-01 01:40:36 -0800401 /* Wait for Cycle Done Status or Flash Cycle Error */
Simon Glassba457562015-03-26 09:29:26 -0600402 status = ich_status_poll(ctlr, SPIS_CDS | SPIS_FCERR, 1);
403 if (status < 0)
404 return status;
Simon Glass18530302013-03-19 04:58:56 +0000405
406 if (status & SPIS_FCERR) {
Simon Glass5d4a7572015-06-07 08:50:33 -0600407 debug("ICH SPI: Data transaction error %x\n", status);
Simon Glassba457562015-03-26 09:29:26 -0600408 return -EIO;
Simon Glass18530302013-03-19 04:58:56 +0000409 }
410
411 if (trans->bytesin) {
Simon Glassba457562015-03-26 09:29:26 -0600412 read_reg(ctlr, ctlr->data, trans->in, data_length);
Bernhard Messerklinger0709ddb2019-08-02 08:38:34 +0200413 trans->bytesin -= data_length;
Simon Glass18530302013-03-19 04:58:56 +0000414 }
415 }
416
417 /* Clear atomic preop now that xfer is done */
Bin Mengd2ca80c2017-08-26 19:22:59 -0700418 if (!lock)
419 ich_writew(ctlr, 0, ctlr->preop);
Simon Glass18530302013-03-19 04:58:56 +0000420
421 return 0;
422}
423
Simon Glass1facebd2019-12-06 21:42:46 -0700424/*
425 * Ensure read/write xfer len is not greater than SPIBAR_FDATA_FIFO_SIZE and
426 * that the operation does not cross page boundary.
427 */
428static uint get_xfer_len(u32 offset, int len, int page_size)
429{
430 uint xfer_len = min(len, SPIBAR_FDATA_FIFO_SIZE);
431 uint bytes_left = ALIGN(offset, page_size) - offset;
432
433 if (bytes_left)
434 xfer_len = min(xfer_len, bytes_left);
435
436 return xfer_len;
437}
438
439/* Fill FDATAn FIFO in preparation for a write transaction */
440static void fill_xfer_fifo(struct fast_spi_regs *regs, const void *data,
441 uint len)
442{
443 memcpy(regs->fdata, data, len);
444}
445
446/* Drain FDATAn FIFO after a read transaction populates data */
447static void drain_xfer_fifo(struct fast_spi_regs *regs, void *dest, uint len)
448{
449 memcpy(dest, regs->fdata, len);
450}
451
452/* Fire up a transfer using the hardware sequencer */
453static void start_hwseq_xfer(struct fast_spi_regs *regs, uint hsfsts_cycle,
454 uint offset, uint len)
455{
456 /* Make sure all W1C status bits get cleared */
457 u32 hsfsts;
458
459 hsfsts = readl(&regs->hsfsts_ctl);
460 hsfsts &= ~(HSFSTS_FCYCLE_MASK | HSFSTS_FDBC_MASK);
461 hsfsts |= HSFSTS_AEL | HSFSTS_FCERR | HSFSTS_FDONE;
462
463 /* Set up transaction parameters */
464 hsfsts |= hsfsts_cycle << HSFSTS_FCYCLE_SHIFT;
465 hsfsts |= ((len - 1) << HSFSTS_FDBC_SHIFT) & HSFSTS_FDBC_MASK;
466 hsfsts |= HSFSTS_FGO;
467
468 writel(offset, &regs->faddr);
469 writel(hsfsts, &regs->hsfsts_ctl);
470}
471
472static int wait_for_hwseq_xfer(struct fast_spi_regs *regs, uint offset)
473{
474 ulong start;
475 u32 hsfsts;
476
477 start = get_timer(0);
478 do {
479 hsfsts = readl(&regs->hsfsts_ctl);
480 if (hsfsts & HSFSTS_FCERR) {
481 debug("SPI transaction error at offset %x HSFSTS = %08x\n",
482 offset, hsfsts);
483 return -EIO;
484 }
485 if (hsfsts & HSFSTS_AEL)
486 return -EPERM;
487
488 if (hsfsts & HSFSTS_FDONE)
489 return 0;
490 } while (get_timer(start) < SPIBAR_HWSEQ_XFER_TIMEOUT_MS);
491
492 debug("SPI transaction timeout at offset %x HSFSTS = %08x, timer %d\n",
493 offset, hsfsts, (uint)get_timer(start));
494
495 return -ETIMEDOUT;
496}
497
498/**
499 * exec_sync_hwseq_xfer() - Execute flash transfer by hardware sequencing
500 *
501 * This waits until complete or timeout
502 *
503 * @regs: SPI registers
504 * @hsfsts_cycle: Cycle type (enum hsfsts_cycle_t)
505 * @offset: Offset to access
506 * @len: Number of bytes to transfer (can be 0)
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100507 * Return: 0 if OK, -EIO on flash-cycle error (FCERR), -EPERM on access error
Simon Glass1facebd2019-12-06 21:42:46 -0700508 * (AEL), -ETIMEDOUT on timeout
509 */
510static int exec_sync_hwseq_xfer(struct fast_spi_regs *regs, uint hsfsts_cycle,
511 uint offset, uint len)
512{
513 start_hwseq_xfer(regs, hsfsts_cycle, offset, len);
514
515 return wait_for_hwseq_xfer(regs, offset);
516}
517
518static int ich_spi_exec_op_hwseq(struct spi_slave *slave,
519 const struct spi_mem_op *op)
520{
521 struct spi_flash *flash = dev_get_uclass_priv(slave->dev);
522 struct udevice *bus = dev_get_parent(slave->dev);
523 struct ich_spi_priv *priv = dev_get_priv(bus);
524 struct fast_spi_regs *regs = priv->base;
525 uint page_size;
526 uint offset;
527 int cycle;
528 uint len;
529 bool out;
530 int ret;
531 u8 *buf;
532
533 offset = op->addr.val;
534 len = op->data.nbytes;
535
536 switch (op->cmd.opcode) {
537 case SPINOR_OP_RDID:
538 cycle = HSFSTS_CYCLE_RDID;
539 break;
540 case SPINOR_OP_READ_FAST:
541 cycle = HSFSTS_CYCLE_READ;
542 break;
543 case SPINOR_OP_PP:
544 cycle = HSFSTS_CYCLE_WRITE;
545 break;
546 case SPINOR_OP_WREN:
547 /* Nothing needs to be done */
548 return 0;
549 case SPINOR_OP_WRSR:
550 cycle = HSFSTS_CYCLE_WR_STATUS;
551 break;
552 case SPINOR_OP_RDSR:
553 cycle = HSFSTS_CYCLE_RD_STATUS;
554 break;
555 case SPINOR_OP_WRDI:
556 return 0; /* ignore */
557 case SPINOR_OP_BE_4K:
558 cycle = HSFSTS_CYCLE_4K_ERASE;
Wolfgang Wallner5e579cc2020-01-14 14:05:48 +0100559 ret = exec_sync_hwseq_xfer(regs, cycle, offset, 0);
560 return ret;
Simon Glass1facebd2019-12-06 21:42:46 -0700561 default:
562 debug("Unknown cycle %x\n", op->cmd.opcode);
563 return -EINVAL;
564 };
565
566 out = op->data.dir == SPI_MEM_DATA_OUT;
567 buf = out ? (u8 *)op->data.buf.out : op->data.buf.in;
568 page_size = flash->page_size ? : 256;
569
570 while (len) {
571 uint xfer_len = get_xfer_len(offset, len, page_size);
572
573 if (out)
574 fill_xfer_fifo(regs, buf, xfer_len);
575
576 ret = exec_sync_hwseq_xfer(regs, cycle, offset, xfer_len);
577 if (ret)
578 return ret;
579
580 if (!out)
581 drain_xfer_fifo(regs, buf, xfer_len);
582
583 offset += xfer_len;
584 buf += xfer_len;
585 len -= xfer_len;
586 }
587
588 return 0;
589}
590
591static int ich_spi_exec_op(struct spi_slave *slave, const struct spi_mem_op *op)
592{
593 struct udevice *bus = dev_get_parent(slave->dev);
Simon Glass8a8d24b2020-12-03 16:55:23 -0700594 struct ich_spi_plat *plat = dev_get_plat(bus);
Simon Glass1facebd2019-12-06 21:42:46 -0700595 int ret;
596
597 bootstage_start(BOOTSTAGE_ID_ACCUM_SPI, "fast_spi");
598 if (plat->hwseq)
599 ret = ich_spi_exec_op_hwseq(slave, op);
600 else
601 ret = ich_spi_exec_op_swseq(slave, op);
602 bootstage_accum(BOOTSTAGE_ID_ACCUM_SPI);
603
604 return ret;
605}
606
Simon Glass95397382021-08-07 07:24:04 -0600607#if CONFIG_IS_ENABLED(OF_REAL)
Simon Glass609b90a2020-05-27 06:58:47 -0600608/**
609 * ich_spi_get_basics() - Get basic information about the ICH device
610 *
611 * This works without probing any devices if requested.
612 *
613 * @bus: SPI controller to use
614 * @can_probe: true if this function is allowed to probe the PCH
615 * @pchp: Returns a pointer to the pch, or NULL if not found
616 * @ich_versionp: Returns ICH version detected on success
617 * @mmio_basep: Returns the address of the SPI registers on success
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100618 * Return: 0 if OK, -EPROTOTYPE if the PCH could not be found, -EAGAIN if
Simon Glass609b90a2020-05-27 06:58:47 -0600619 * the function cannot success without probing, possible another error if
620 * pch_get_spi_base() fails
621 */
622static int ich_spi_get_basics(struct udevice *bus, bool can_probe,
623 struct udevice **pchp,
624 enum ich_version *ich_versionp, ulong *mmio_basep)
625{
626 struct udevice *pch = NULL;
627 int ret = 0;
628
629 /* Find a PCH if there is one */
630 if (can_probe) {
631 pch = dev_get_parent(bus);
632 if (device_get_uclass_id(pch) != UCLASS_PCH) {
633 uclass_first_device(UCLASS_PCH, &pch);
634 if (!pch)
Simon Glassf7843612021-06-27 17:50:59 -0600635 ; /* ignore this error since we don't need it */
Simon Glass609b90a2020-05-27 06:58:47 -0600636 }
637 }
638
639 *ich_versionp = dev_get_driver_data(bus);
640 if (*ich_versionp == ICHV_APL)
641 *mmio_basep = dm_pci_read_bar32(bus, 0);
642 else if (pch)
643 ret = pch_get_spi_base(pch, mmio_basep);
644 else
645 return -EAGAIN;
646 *pchp = pch;
647
648 return ret;
649}
Simon Glassd07f31a2020-10-03 11:31:38 -0600650#endif
Simon Glass609b90a2020-05-27 06:58:47 -0600651
652/**
653 * ich_get_mmap_bus() - Handle the get_mmap() method for a bus
654 *
655 * There are several cases to consider:
656 * 1. Using of-platdata, in which case we have the BDF and can access the
657 * registers by reading the BAR
658 * 2. Not using of-platdata, but still with a SPI controller that is on its own
Simon Glasscaa4daa2020-12-03 16:55:18 -0700659 * PCI PDF. In this case we read the BDF from the parent plat and again get
Simon Glass609b90a2020-05-27 06:58:47 -0600660 * the registers by reading the BAR
661 * 3. Using a SPI controller that is a child of the PCH, in which case we try
662 * to find the registers by asking the PCH. This only works if the PCH has
663 * been probed (which it will be if the bus is probed since parents are
664 * probed before children), since the PCH may not have a PCI address until
665 * its parent (the PCI bus itself) has been probed. If you are using this
666 * method then you should make sure the SPI bus is probed.
667 *
668 * The first two cases are useful in early init. The last one is more useful
669 * afterwards.
670 */
Simon Glass92842142019-12-06 21:42:47 -0700671static int ich_get_mmap_bus(struct udevice *bus, ulong *map_basep,
672 uint *map_sizep, uint *offsetp)
673{
674 pci_dev_t spi_bdf;
Simon Glass95397382021-08-07 07:24:04 -0600675#if CONFIG_IS_ENABLED(OF_REAL)
Simon Glass609b90a2020-05-27 06:58:47 -0600676 if (device_is_on_pci_bus(bus)) {
Simon Glass8a8d24b2020-12-03 16:55:23 -0700677 struct pci_child_plat *pplat;
Simon Glass92842142019-12-06 21:42:47 -0700678
Simon Glasscaa4daa2020-12-03 16:55:18 -0700679 pplat = dev_get_parent_plat(bus);
Simon Glass609b90a2020-05-27 06:58:47 -0600680 spi_bdf = pplat->devfn;
681 } else {
682 enum ich_version ich_version;
683 struct fast_spi_regs *regs;
684 struct udevice *pch;
685 ulong mmio_base;
686 int ret;
687
688 ret = ich_spi_get_basics(bus, device_active(bus), &pch,
689 &ich_version, &mmio_base);
690 if (ret)
691 return log_msg_ret("basics", ret);
692 regs = (struct fast_spi_regs *)mmio_base;
693
694 return fast_spi_get_bios_mmap_regs(regs, map_basep, map_sizep,
695 offsetp);
696 }
Simon Glass92842142019-12-06 21:42:47 -0700697#else
Simon Glass8a8d24b2020-12-03 16:55:23 -0700698 struct ich_spi_plat *plat = dev_get_plat(bus);
Simon Glass92842142019-12-06 21:42:47 -0700699
700 /*
701 * We cannot rely on plat->bdf being set up yet since this method can
702 * be called before the device is probed. Use the of-platdata directly
703 * instead.
704 */
705 spi_bdf = pci_ofplat_get_devfn(plat->dtplat.reg[0]);
706#endif
707
708 return fast_spi_get_bios_mmap(spi_bdf, map_basep, map_sizep, offsetp);
709}
710
711static int ich_get_mmap(struct udevice *dev, ulong *map_basep, uint *map_sizep,
712 uint *offsetp)
713{
714 struct udevice *bus = dev_get_parent(dev);
715
716 return ich_get_mmap_bus(bus, map_basep, map_sizep, offsetp);
717}
718
Bernhard Messerklinger0709ddb2019-08-02 08:38:34 +0200719static int ich_spi_adjust_size(struct spi_slave *slave, struct spi_mem_op *op)
720{
721 unsigned int page_offset;
722 int addr = op->addr.val;
723 unsigned int byte_count = op->data.nbytes;
724
725 if (hweight32(ICH_BOUNDARY) == 1) {
726 page_offset = addr & (ICH_BOUNDARY - 1);
727 } else {
728 u64 aux = addr;
729
730 page_offset = do_div(aux, ICH_BOUNDARY);
731 }
732
Simon Glass43c145b2019-12-06 21:42:44 -0700733 if (op->data.dir == SPI_MEM_DATA_IN) {
734 if (slave->max_read_size) {
735 op->data.nbytes = min(ICH_BOUNDARY - page_offset,
736 slave->max_read_size);
737 }
Bernhard Messerklinger0709ddb2019-08-02 08:38:34 +0200738 } else if (slave->max_write_size) {
739 op->data.nbytes = min(ICH_BOUNDARY - page_offset,
740 slave->max_write_size);
741 }
742
743 op->data.nbytes = min(op->data.nbytes, byte_count);
744
745 return 0;
746}
747
Simon Glass17e75442019-12-06 21:42:38 -0700748static int ich_protect_lockdown(struct udevice *dev)
749{
Simon Glass8a8d24b2020-12-03 16:55:23 -0700750 struct ich_spi_plat *plat = dev_get_plat(dev);
Simon Glass17e75442019-12-06 21:42:38 -0700751 struct ich_spi_priv *priv = dev_get_priv(dev);
752 int ret = -ENOSYS;
753
754 /* Disable the BIOS write protect so write commands are allowed */
755 if (priv->pch)
756 ret = pch_set_spi_protect(priv->pch, false);
757 if (ret == -ENOSYS) {
758 u8 bios_cntl;
759
760 bios_cntl = ich_readb(priv, priv->bcr);
761 bios_cntl &= ~BIT(5); /* clear Enable InSMM_STS (EISS) */
762 bios_cntl |= 1; /* Write Protect Disable (WPD) */
763 ich_writeb(priv, bios_cntl, priv->bcr);
764 } else if (ret) {
765 debug("%s: Failed to disable write-protect: err=%d\n",
766 __func__, ret);
767 return ret;
768 }
769
770 /* Lock down SPI controller settings if required */
771 if (plat->lockdown) {
772 ich_spi_config_opcode(dev);
773 spi_lock_down(plat, priv->base);
774 }
775
776 return 0;
777}
778
Simon Glass674990c2019-12-06 21:42:37 -0700779static int ich_init_controller(struct udevice *dev,
Simon Glass8a8d24b2020-12-03 16:55:23 -0700780 struct ich_spi_plat *plat,
Simon Glass674990c2019-12-06 21:42:37 -0700781 struct ich_spi_priv *ctlr)
782{
Simon Glass636555a2019-12-06 21:42:48 -0700783 if (spl_phase() == PHASE_TPL) {
Simon Glass8a8d24b2020-12-03 16:55:23 -0700784 struct ich_spi_plat *plat = dev_get_plat(dev);
Simon Glass636555a2019-12-06 21:42:48 -0700785 int ret;
786
787 ret = fast_spi_early_init(plat->bdf, plat->mmio_base);
788 if (ret)
789 return ret;
790 }
791
Simon Glass75214b02019-12-06 21:42:42 -0700792 ctlr->base = (void *)plat->mmio_base;
Simon Glass674990c2019-12-06 21:42:37 -0700793 if (plat->ich_version == ICHV_7) {
Simon Glass75214b02019-12-06 21:42:42 -0700794 struct ich7_spi_regs *ich7_spi = ctlr->base;
Simon Glass674990c2019-12-06 21:42:37 -0700795
796 ctlr->opmenu = offsetof(struct ich7_spi_regs, opmenu);
797 ctlr->menubytes = sizeof(ich7_spi->opmenu);
798 ctlr->optype = offsetof(struct ich7_spi_regs, optype);
799 ctlr->addr = offsetof(struct ich7_spi_regs, spia);
800 ctlr->data = offsetof(struct ich7_spi_regs, spid);
801 ctlr->databytes = sizeof(ich7_spi->spid);
802 ctlr->status = offsetof(struct ich7_spi_regs, spis);
803 ctlr->control = offsetof(struct ich7_spi_regs, spic);
804 ctlr->bbar = offsetof(struct ich7_spi_regs, bbar);
805 ctlr->preop = offsetof(struct ich7_spi_regs, preop);
Simon Glass674990c2019-12-06 21:42:37 -0700806 } else if (plat->ich_version == ICHV_9) {
Simon Glass75214b02019-12-06 21:42:42 -0700807 struct ich9_spi_regs *ich9_spi = ctlr->base;
Simon Glass674990c2019-12-06 21:42:37 -0700808
809 ctlr->opmenu = offsetof(struct ich9_spi_regs, opmenu);
810 ctlr->menubytes = sizeof(ich9_spi->opmenu);
811 ctlr->optype = offsetof(struct ich9_spi_regs, optype);
812 ctlr->addr = offsetof(struct ich9_spi_regs, faddr);
813 ctlr->data = offsetof(struct ich9_spi_regs, fdata);
814 ctlr->databytes = sizeof(ich9_spi->fdata);
815 ctlr->status = offsetof(struct ich9_spi_regs, ssfs);
816 ctlr->control = offsetof(struct ich9_spi_regs, ssfc);
817 ctlr->speed = ctlr->control + 2;
818 ctlr->bbar = offsetof(struct ich9_spi_regs, bbar);
819 ctlr->preop = offsetof(struct ich9_spi_regs, preop);
820 ctlr->bcr = offsetof(struct ich9_spi_regs, bcr);
821 ctlr->pr = &ich9_spi->pr[0];
Simon Glass3937df32019-12-06 21:42:49 -0700822 } else if (plat->ich_version == ICHV_APL) {
Simon Glass674990c2019-12-06 21:42:37 -0700823 } else {
824 debug("ICH SPI: Unrecognised ICH version %d\n",
825 plat->ich_version);
826 return -EINVAL;
827 }
828
829 /* Work out the maximum speed we can support */
830 ctlr->max_speed = 20000000;
831 if (plat->ich_version == ICHV_9 && ich9_can_do_33mhz(dev))
832 ctlr->max_speed = 33000000;
Simon Glass75214b02019-12-06 21:42:42 -0700833 debug("ICH SPI: Version ID %d detected at %lx, speed %ld\n",
834 plat->ich_version, plat->mmio_base, ctlr->max_speed);
Simon Glass674990c2019-12-06 21:42:37 -0700835
836 ich_set_bbar(ctlr, 0);
837
838 return 0;
839}
840
Simon Glass636555a2019-12-06 21:42:48 -0700841static int ich_cache_bios_region(struct udevice *dev)
842{
843 ulong map_base;
844 uint map_size;
845 uint offset;
846 ulong base;
847 int ret;
848
849 ret = ich_get_mmap_bus(dev, &map_base, &map_size, &offset);
850 if (ret)
851 return ret;
852
853 /* Don't use WRBACK since we are not supposed to write to SPI flash */
854 base = SZ_4G - map_size;
855 mtrr_set_next_var(MTRR_TYPE_WRPROT, base, map_size);
856 log_debug("BIOS cache base=%lx, size=%x\n", base, (uint)map_size);
857
858 return 0;
859}
860
Simon Glassf2b85ab2016-01-18 20:19:21 -0700861static int ich_spi_probe(struct udevice *dev)
Simon Glassba457562015-03-26 09:29:26 -0600862{
Simon Glass8a8d24b2020-12-03 16:55:23 -0700863 struct ich_spi_plat *plat = dev_get_plat(dev);
Simon Glassf2b85ab2016-01-18 20:19:21 -0700864 struct ich_spi_priv *priv = dev_get_priv(dev);
Simon Glassba457562015-03-26 09:29:26 -0600865 int ret;
866
Simon Glassf2b85ab2016-01-18 20:19:21 -0700867 ret = ich_init_controller(dev, plat, priv);
Simon Glassba457562015-03-26 09:29:26 -0600868 if (ret)
869 return ret;
Simon Glassba457562015-03-26 09:29:26 -0600870
Simon Glass636555a2019-12-06 21:42:48 -0700871 if (spl_phase() == PHASE_TPL) {
872 /* Cache the BIOS to speed things up */
873 ret = ich_cache_bios_region(dev);
874 if (ret)
875 return ret;
876 } else {
877 ret = ich_protect_lockdown(dev);
878 if (ret)
879 return ret;
880 }
Simon Glassba457562015-03-26 09:29:26 -0600881 priv->cur_speed = priv->max_speed;
882
883 return 0;
884}
885
Stefan Roese4759dff2017-04-24 09:48:04 +0200886static int ich_spi_remove(struct udevice *bus)
887{
Stefan Roese4759dff2017-04-24 09:48:04 +0200888 /*
889 * Configure SPI controller so that the Linux MTD driver can fully
890 * access the SPI NOR chip
891 */
Bin Mengb42711f2017-08-15 22:38:30 -0700892 ich_spi_config_opcode(bus);
Stefan Roese4759dff2017-04-24 09:48:04 +0200893
894 return 0;
895}
896
Simon Glassba457562015-03-26 09:29:26 -0600897static int ich_spi_set_speed(struct udevice *bus, uint speed)
898{
899 struct ich_spi_priv *priv = dev_get_priv(bus);
900
901 priv->cur_speed = speed;
902
903 return 0;
904}
905
906static int ich_spi_set_mode(struct udevice *bus, uint mode)
907{
908 debug("%s: mode=%d\n", __func__, mode);
909
910 return 0;
911}
912
913static int ich_spi_child_pre_probe(struct udevice *dev)
914{
915 struct udevice *bus = dev_get_parent(dev);
Simon Glass8a8d24b2020-12-03 16:55:23 -0700916 struct ich_spi_plat *plat = dev_get_plat(bus);
Simon Glassba457562015-03-26 09:29:26 -0600917 struct ich_spi_priv *priv = dev_get_priv(bus);
Simon Glassbcbe3d12015-09-28 23:32:01 -0600918 struct spi_slave *slave = dev_get_parent_priv(dev);
Simon Glassba457562015-03-26 09:29:26 -0600919
920 /*
Bin Meng4dc82792021-07-28 18:28:56 +0800921 * Yes this controller can only transfer a small number of bytes at
Simon Glass1facebd2019-12-06 21:42:46 -0700922 * once! The limit is typically 64 bytes. For hardware sequencing a
923 * a loop is used to get around this.
Simon Glassba457562015-03-26 09:29:26 -0600924 */
Bin Meng4dc82792021-07-28 18:28:56 +0800925 if (!plat->hwseq) {
926 slave->max_read_size = priv->databytes;
Simon Glass1facebd2019-12-06 21:42:46 -0700927 slave->max_write_size = priv->databytes;
Bin Meng4dc82792021-07-28 18:28:56 +0800928 }
Simon Glassba457562015-03-26 09:29:26 -0600929 /*
930 * ICH 7 SPI controller only supports array read command
931 * and byte program command for SST flash
932 */
Jagan Teki08fe9c22016-08-08 17:12:12 +0530933 if (plat->ich_version == ICHV_7)
934 slave->mode = SPI_RX_SLOW | SPI_TX_BYTE;
Simon Glassba457562015-03-26 09:29:26 -0600935
936 return 0;
937}
938
Simon Glassd1998a92020-12-03 16:55:21 -0700939static int ich_spi_of_to_plat(struct udevice *dev)
Bin Meng1f9eb592016-02-01 01:40:37 -0800940{
Simon Glass8a8d24b2020-12-03 16:55:23 -0700941 struct ich_spi_plat *plat = dev_get_plat(dev);
Simon Glass0d3ee3e2019-12-06 21:42:45 -0700942
Simon Glass95397382021-08-07 07:24:04 -0600943#if CONFIG_IS_ENABLED(OF_REAL)
Simon Glass17e75442019-12-06 21:42:38 -0700944 struct ich_spi_priv *priv = dev_get_priv(dev);
Simon Glassd07f31a2020-10-03 11:31:38 -0600945 int ret;
Bin Meng1f9eb592016-02-01 01:40:37 -0800946
Simon Glass609b90a2020-05-27 06:58:47 -0600947 ret = ich_spi_get_basics(dev, true, &priv->pch, &plat->ich_version,
948 &plat->mmio_base);
949 if (ret)
950 return log_msg_ret("basics", ret);
Simon Glass702b28a2019-12-06 21:42:39 -0700951 plat->lockdown = dev_read_bool(dev, "intel,spi-lock-down");
Simon Glass1facebd2019-12-06 21:42:46 -0700952 /*
953 * Use an int so that the property is present in of-platdata even
954 * when false.
955 */
956 plat->hwseq = dev_read_u32_default(dev, "intel,hardware-seq", 0);
Simon Glass0d3ee3e2019-12-06 21:42:45 -0700957#else
958 plat->ich_version = ICHV_APL;
959 plat->mmio_base = plat->dtplat.early_regs[0];
960 plat->bdf = pci_ofplat_get_devfn(plat->dtplat.reg[0]);
Simon Glass1facebd2019-12-06 21:42:46 -0700961 plat->hwseq = plat->dtplat.intel_hardware_seq;
Simon Glass0d3ee3e2019-12-06 21:42:45 -0700962#endif
963 debug("%s: mmio_base=%lx\n", __func__, plat->mmio_base);
Simon Glass75214b02019-12-06 21:42:42 -0700964
Simon Glass702b28a2019-12-06 21:42:39 -0700965 return 0;
Bin Meng1f9eb592016-02-01 01:40:37 -0800966}
967
Bernhard Messerklinger0709ddb2019-08-02 08:38:34 +0200968static const struct spi_controller_mem_ops ich_controller_mem_ops = {
969 .adjust_op_size = ich_spi_adjust_size,
970 .supports_op = NULL,
971 .exec_op = ich_spi_exec_op,
972};
973
Simon Glassba457562015-03-26 09:29:26 -0600974static const struct dm_spi_ops ich_spi_ops = {
Simon Glassccdabd82019-12-06 21:42:35 -0700975 /* xfer is not supported */
Simon Glassba457562015-03-26 09:29:26 -0600976 .set_speed = ich_spi_set_speed,
977 .set_mode = ich_spi_set_mode,
Bernhard Messerklinger0709ddb2019-08-02 08:38:34 +0200978 .mem_ops = &ich_controller_mem_ops,
Simon Glass92842142019-12-06 21:42:47 -0700979 .get_mmap = ich_get_mmap,
Simon Glassba457562015-03-26 09:29:26 -0600980 /*
981 * cs_info is not needed, since we require all chip selects to be
982 * in the device tree explicitly
983 */
984};
985
986static const struct udevice_id ich_spi_ids[] = {
Simon Glass702b28a2019-12-06 21:42:39 -0700987 { .compatible = "intel,ich7-spi", ICHV_7 },
988 { .compatible = "intel,ich9-spi", ICHV_9 },
Simon Glass3937df32019-12-06 21:42:49 -0700989 { .compatible = "intel,fast-spi", ICHV_APL },
Simon Glassba457562015-03-26 09:29:26 -0600990 { }
991};
992
Simon Glass0d3ee3e2019-12-06 21:42:45 -0700993U_BOOT_DRIVER(intel_fast_spi) = {
994 .name = "intel_fast_spi",
Simon Glassba457562015-03-26 09:29:26 -0600995 .id = UCLASS_SPI,
996 .of_match = ich_spi_ids,
997 .ops = &ich_spi_ops,
Simon Glassd1998a92020-12-03 16:55:21 -0700998 .of_to_plat = ich_spi_of_to_plat,
Simon Glass8a8d24b2020-12-03 16:55:23 -0700999 .plat_auto = sizeof(struct ich_spi_plat),
Simon Glass41575d82020-12-03 16:55:17 -07001000 .priv_auto = sizeof(struct ich_spi_priv),
Simon Glassba457562015-03-26 09:29:26 -06001001 .child_pre_probe = ich_spi_child_pre_probe,
1002 .probe = ich_spi_probe,
Stefan Roese4759dff2017-04-24 09:48:04 +02001003 .remove = ich_spi_remove,
1004 .flags = DM_FLAG_OS_PREPARE,
Simon Glassba457562015-03-26 09:29:26 -06001005};