blob: 9c42755daed83ecbc821b3323de1e40e4604e7b8 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass41877402013-03-19 04:58:56 +00002/*
3 * Copyright (c) 2011-12 The Chromium OS Authors.
4 *
Simon Glass41877402013-03-19 04:58:56 +00005 * This file is derived from the flashrom project.
6 */
Bin Meng316fd942016-02-01 01:40:36 -08007
Simon Glassd500dd82019-12-06 21:42:41 -07008#define LOG_CATEGORY UCLASS_SPI
9
Simon Glass41877402013-03-19 04:58:56 +000010#include <common.h>
Simon Glass1ea97892020-05-10 11:40:00 -060011#include <bootstage.h>
Simon Glasse87e87b2019-12-06 21:42:40 -070012#include <div64.h>
Simon Glass35f15f62015-03-26 09:29:26 -060013#include <dm.h>
Simon Glassb7632cb2019-12-06 21:42:45 -070014#include <dt-structs.h>
Simon Glassa08ca382015-01-27 22:13:43 -070015#include <errno.h>
Simon Glass0f2af882020-05-10 11:40:05 -060016#include <log.h>
Simon Glass41877402013-03-19 04:58:56 +000017#include <malloc.h>
Simon Glass32761632016-01-18 20:19:21 -070018#include <pch.h>
Simon Glass41877402013-03-19 04:58:56 +000019#include <pci.h>
20#include <pci_ids.h>
Simon Glass32761632016-01-18 20:19:21 -070021#include <spi.h>
Simon Glass0a88fd82019-12-06 21:42:46 -070022#include <spi_flash.h>
Bernhard Messerklingerdb3ffe92019-08-02 08:38:34 +020023#include <spi-mem.h>
Simon Glassbdd28972019-12-06 21:42:48 -070024#include <spl.h>
Simon Glass0a88fd82019-12-06 21:42:46 -070025#include <asm/fast_spi.h>
Simon Glasse87e87b2019-12-06 21:42:40 -070026#include <asm/io.h>
Simon Glassbdd28972019-12-06 21:42:48 -070027#include <asm/mtrr.h>
Simon Glassdbd79542020-05-10 11:40:11 -060028#include <linux/delay.h>
Simon Glassbdd28972019-12-06 21:42:48 -070029#include <linux/sizes.h>
Simon Glass41877402013-03-19 04:58:56 +000030
31#include "ich.h"
32
Simon Glassfcac1dd2016-01-18 20:19:20 -070033#ifdef DEBUG_TRACE
34#define debug_trace(fmt, args...) debug(fmt, ##args)
35#else
36#define debug_trace(x, args...)
37#endif
38
Simon Glasseb0ae6f2019-12-06 21:42:42 -070039struct ich_spi_platdata {
Simon Glassb7632cb2019-12-06 21:42:45 -070040#if CONFIG_IS_ENABLED(OF_PLATDATA)
41 struct dtd_intel_fast_spi dtplat;
42#endif
Simon Glasseb0ae6f2019-12-06 21:42:42 -070043 enum ich_version ich_version; /* Controller version, 7 or 9 */
44 bool lockdown; /* lock down controller settings? */
45 ulong mmio_base; /* Base of MMIO registers */
Simon Glassb7632cb2019-12-06 21:42:45 -070046 pci_dev_t bdf; /* PCI address used by of-platdata */
Simon Glass0a88fd82019-12-06 21:42:46 -070047 bool hwseq; /* Use hardware sequencing (not s/w) */
Simon Glasseb0ae6f2019-12-06 21:42:42 -070048};
49
Simon Glass35f15f62015-03-26 09:29:26 -060050static u8 ich_readb(struct ich_spi_priv *priv, int reg)
Simon Glass41877402013-03-19 04:58:56 +000051{
Simon Glass35f15f62015-03-26 09:29:26 -060052 u8 value = readb(priv->base + reg);
Simon Glass41877402013-03-19 04:58:56 +000053
Simon Glassfcac1dd2016-01-18 20:19:20 -070054 debug_trace("read %2.2x from %4.4x\n", value, reg);
Simon Glass41877402013-03-19 04:58:56 +000055
56 return value;
57}
58
Simon Glass35f15f62015-03-26 09:29:26 -060059static u16 ich_readw(struct ich_spi_priv *priv, int reg)
Simon Glass41877402013-03-19 04:58:56 +000060{
Simon Glass35f15f62015-03-26 09:29:26 -060061 u16 value = readw(priv->base + reg);
Simon Glass41877402013-03-19 04:58:56 +000062
Simon Glassfcac1dd2016-01-18 20:19:20 -070063 debug_trace("read %4.4x from %4.4x\n", value, reg);
Simon Glass41877402013-03-19 04:58:56 +000064
65 return value;
66}
67
Simon Glass35f15f62015-03-26 09:29:26 -060068static u32 ich_readl(struct ich_spi_priv *priv, int reg)
Simon Glass41877402013-03-19 04:58:56 +000069{
Simon Glass35f15f62015-03-26 09:29:26 -060070 u32 value = readl(priv->base + reg);
Simon Glass41877402013-03-19 04:58:56 +000071
Simon Glassfcac1dd2016-01-18 20:19:20 -070072 debug_trace("read %8.8x from %4.4x\n", value, reg);
Simon Glass41877402013-03-19 04:58:56 +000073
74 return value;
75}
76
Simon Glass35f15f62015-03-26 09:29:26 -060077static void ich_writeb(struct ich_spi_priv *priv, u8 value, int reg)
Simon Glass41877402013-03-19 04:58:56 +000078{
Simon Glass35f15f62015-03-26 09:29:26 -060079 writeb(value, priv->base + reg);
Simon Glassfcac1dd2016-01-18 20:19:20 -070080 debug_trace("wrote %2.2x to %4.4x\n", value, reg);
Simon Glass41877402013-03-19 04:58:56 +000081}
82
Simon Glass35f15f62015-03-26 09:29:26 -060083static void ich_writew(struct ich_spi_priv *priv, u16 value, int reg)
Simon Glass41877402013-03-19 04:58:56 +000084{
Simon Glass35f15f62015-03-26 09:29:26 -060085 writew(value, priv->base + reg);
Simon Glassfcac1dd2016-01-18 20:19:20 -070086 debug_trace("wrote %4.4x to %4.4x\n", value, reg);
Simon Glass41877402013-03-19 04:58:56 +000087}
88
Simon Glass35f15f62015-03-26 09:29:26 -060089static void ich_writel(struct ich_spi_priv *priv, u32 value, int reg)
Simon Glass41877402013-03-19 04:58:56 +000090{
Simon Glass35f15f62015-03-26 09:29:26 -060091 writel(value, priv->base + reg);
Simon Glassfcac1dd2016-01-18 20:19:20 -070092 debug_trace("wrote %8.8x to %4.4x\n", value, reg);
Simon Glass41877402013-03-19 04:58:56 +000093}
94
Simon Glass35f15f62015-03-26 09:29:26 -060095static void write_reg(struct ich_spi_priv *priv, const void *value,
96 int dest_reg, uint32_t size)
Simon Glass41877402013-03-19 04:58:56 +000097{
Simon Glass35f15f62015-03-26 09:29:26 -060098 memcpy_toio(priv->base + dest_reg, value, size);
Simon Glass41877402013-03-19 04:58:56 +000099}
100
Simon Glass35f15f62015-03-26 09:29:26 -0600101static void read_reg(struct ich_spi_priv *priv, int src_reg, void *value,
102 uint32_t size)
Simon Glass41877402013-03-19 04:58:56 +0000103{
Simon Glass35f15f62015-03-26 09:29:26 -0600104 memcpy_fromio(value, priv->base + src_reg, size);
Simon Glass41877402013-03-19 04:58:56 +0000105}
106
Simon Glass35f15f62015-03-26 09:29:26 -0600107static void ich_set_bbar(struct ich_spi_priv *ctlr, uint32_t minaddr)
Simon Glass41877402013-03-19 04:58:56 +0000108{
109 const uint32_t bbar_mask = 0x00ffff00;
110 uint32_t ichspi_bbar;
111
Simon Glass07b2b992019-12-06 21:42:49 -0700112 if (ctlr->bbar) {
113 minaddr &= bbar_mask;
114 ichspi_bbar = ich_readl(ctlr, ctlr->bbar) & ~bbar_mask;
115 ichspi_bbar |= minaddr;
116 ich_writel(ctlr, ichspi_bbar, ctlr->bbar);
117 }
Simon Glass41877402013-03-19 04:58:56 +0000118}
119
Simon Glass41877402013-03-19 04:58:56 +0000120/* @return 1 if the SPI flash supports the 33MHz speed */
Simon Glassd500dd82019-12-06 21:42:41 -0700121static bool ich9_can_do_33mhz(struct udevice *dev)
Simon Glass41877402013-03-19 04:58:56 +0000122{
Simon Glass78d520c2019-12-06 21:42:38 -0700123 struct ich_spi_priv *priv = dev_get_priv(dev);
Simon Glass41877402013-03-19 04:58:56 +0000124 u32 fdod, speed;
125
Simon Glassbdd28972019-12-06 21:42:48 -0700126 if (!CONFIG_IS_ENABLED(PCI))
127 return false;
Simon Glass41877402013-03-19 04:58:56 +0000128 /* Observe SPI Descriptor Component Section 0 */
Simon Glass78d520c2019-12-06 21:42:38 -0700129 dm_pci_write_config32(priv->pch, 0xb0, 0x1000);
Simon Glass41877402013-03-19 04:58:56 +0000130
131 /* Extract the Write/Erase SPI Frequency from descriptor */
Simon Glass78d520c2019-12-06 21:42:38 -0700132 dm_pci_read_config32(priv->pch, 0xb4, &fdod);
Simon Glass41877402013-03-19 04:58:56 +0000133
134 /* Bits 23:21 have the fast read clock frequency, 0=20MHz, 1=33MHz */
135 speed = (fdod >> 21) & 7;
136
137 return speed == 1;
138}
139
Bin Meng59de5032017-10-18 18:20:57 -0700140static void spi_lock_down(struct ich_spi_platdata *plat, void *sbase)
141{
142 if (plat->ich_version == ICHV_7) {
143 struct ich7_spi_regs *ich7_spi = sbase;
144
145 setbits_le16(&ich7_spi->spis, SPIS_LOCK);
146 } else if (plat->ich_version == ICHV_9) {
147 struct ich9_spi_regs *ich9_spi = sbase;
148
149 setbits_le16(&ich9_spi->hsfs, HSFS_FLOCKDN);
150 }
151}
152
Bin Meng36ce0242017-08-15 22:38:29 -0700153static bool spi_lock_status(struct ich_spi_platdata *plat, void *sbase)
154{
155 int lock = 0;
156
157 if (plat->ich_version == ICHV_7) {
158 struct ich7_spi_regs *ich7_spi = sbase;
159
160 lock = readw(&ich7_spi->spis) & SPIS_LOCK;
161 } else if (plat->ich_version == ICHV_9) {
162 struct ich9_spi_regs *ich9_spi = sbase;
163
164 lock = readw(&ich9_spi->hsfs) & HSFS_FLOCKDN;
165 }
166
167 return lock != 0;
168}
169
Bin Meng36ce0242017-08-15 22:38:29 -0700170static int spi_setup_opcode(struct ich_spi_priv *ctlr, struct spi_trans *trans,
171 bool lock)
Simon Glass41877402013-03-19 04:58:56 +0000172{
173 uint16_t optypes;
Simon Glass35f15f62015-03-26 09:29:26 -0600174 uint8_t opmenu[ctlr->menubytes];
Simon Glass41877402013-03-19 04:58:56 +0000175
Bin Meng36ce0242017-08-15 22:38:29 -0700176 if (!lock) {
Simon Glass41877402013-03-19 04:58:56 +0000177 /* The lock is off, so just use index 0. */
Simon Glass35f15f62015-03-26 09:29:26 -0600178 ich_writeb(ctlr, trans->opcode, ctlr->opmenu);
179 optypes = ich_readw(ctlr, ctlr->optype);
Simon Glass41877402013-03-19 04:58:56 +0000180 optypes = (optypes & 0xfffc) | (trans->type & 0x3);
Simon Glass35f15f62015-03-26 09:29:26 -0600181 ich_writew(ctlr, optypes, ctlr->optype);
Simon Glass41877402013-03-19 04:58:56 +0000182 return 0;
183 } else {
184 /* The lock is on. See if what we need is on the menu. */
185 uint8_t optype;
186 uint16_t opcode_index;
187
188 /* Write Enable is handled as atomic prefix */
189 if (trans->opcode == SPI_OPCODE_WREN)
190 return 0;
191
Simon Glass35f15f62015-03-26 09:29:26 -0600192 read_reg(ctlr, ctlr->opmenu, opmenu, sizeof(opmenu));
193 for (opcode_index = 0; opcode_index < ctlr->menubytes;
Simon Glass41877402013-03-19 04:58:56 +0000194 opcode_index++) {
195 if (opmenu[opcode_index] == trans->opcode)
196 break;
197 }
198
Simon Glass35f15f62015-03-26 09:29:26 -0600199 if (opcode_index == ctlr->menubytes) {
Simon Glassd500dd82019-12-06 21:42:41 -0700200 debug("ICH SPI: Opcode %x not found\n", trans->opcode);
Simon Glass35f15f62015-03-26 09:29:26 -0600201 return -EINVAL;
Simon Glass41877402013-03-19 04:58:56 +0000202 }
203
Simon Glass35f15f62015-03-26 09:29:26 -0600204 optypes = ich_readw(ctlr, ctlr->optype);
Simon Glass41877402013-03-19 04:58:56 +0000205 optype = (optypes >> (opcode_index * 2)) & 0x3;
Bernhard Messerklingerdb3ffe92019-08-02 08:38:34 +0200206
Simon Glass41877402013-03-19 04:58:56 +0000207 if (optype != trans->type) {
Simon Glassd500dd82019-12-06 21:42:41 -0700208 debug("ICH SPI: Transaction doesn't fit type %d\n",
209 optype);
Simon Glass35f15f62015-03-26 09:29:26 -0600210 return -ENOSPC;
Simon Glass41877402013-03-19 04:58:56 +0000211 }
212 return opcode_index;
213 }
214}
215
Simon Glass41877402013-03-19 04:58:56 +0000216/*
217 * Wait for up to 6s til status register bit(s) turn 1 (in case wait_til_set
York Sun4a598092013-04-01 11:29:11 -0700218 * below is true) or 0. In case the wait was for the bit(s) to set - write
Simon Glass41877402013-03-19 04:58:56 +0000219 * those bits back, which would cause resetting them.
220 *
221 * Return the last read status value on success or -1 on failure.
222 */
Simon Glass35f15f62015-03-26 09:29:26 -0600223static int ich_status_poll(struct ich_spi_priv *ctlr, u16 bitmask,
224 int wait_til_set)
Simon Glass41877402013-03-19 04:58:56 +0000225{
226 int timeout = 600000; /* This will result in 6s */
227 u16 status = 0;
228
229 while (timeout--) {
Simon Glass35f15f62015-03-26 09:29:26 -0600230 status = ich_readw(ctlr, ctlr->status);
Simon Glass41877402013-03-19 04:58:56 +0000231 if (wait_til_set ^ ((status & bitmask) == 0)) {
Simon Glass35f15f62015-03-26 09:29:26 -0600232 if (wait_til_set) {
233 ich_writew(ctlr, status & bitmask,
234 ctlr->status);
235 }
Simon Glass41877402013-03-19 04:58:56 +0000236 return status;
237 }
238 udelay(10);
239 }
Simon Glassd500dd82019-12-06 21:42:41 -0700240 debug("ICH SPI: SCIP timeout, read %x, expected %x, wts %x %x\n",
241 status, bitmask, wait_til_set, status & bitmask);
Simon Glass41877402013-03-19 04:58:56 +0000242
Simon Glass35f15f62015-03-26 09:29:26 -0600243 return -ETIMEDOUT;
Simon Glass41877402013-03-19 04:58:56 +0000244}
245
Bernhard Messerklingerdb3ffe92019-08-02 08:38:34 +0200246static void ich_spi_config_opcode(struct udevice *dev)
Bin Meng552720e2017-08-15 22:38:30 -0700247{
248 struct ich_spi_priv *ctlr = dev_get_priv(dev);
249
250 /*
251 * PREOP, OPTYPE, OPMENU1/OPMENU2 registers can be locked down
252 * to prevent accidental or intentional writes. Before they get
253 * locked down, these registers should be initialized properly.
254 */
255 ich_writew(ctlr, SPI_OPPREFIX, ctlr->preop);
256 ich_writew(ctlr, SPI_OPTYPE, ctlr->optype);
257 ich_writel(ctlr, SPI_OPMENU_LOWER, ctlr->opmenu);
258 ich_writel(ctlr, SPI_OPMENU_UPPER, ctlr->opmenu + sizeof(u32));
259}
260
Simon Glass0a88fd82019-12-06 21:42:46 -0700261static int ich_spi_exec_op_swseq(struct spi_slave *slave,
262 const struct spi_mem_op *op)
Simon Glass41877402013-03-19 04:58:56 +0000263{
Bernhard Messerklingerdb3ffe92019-08-02 08:38:34 +0200264 struct udevice *bus = dev_get_parent(slave->dev);
Simon Glass6634f812015-07-03 18:28:21 -0600265 struct ich_spi_platdata *plat = dev_get_platdata(bus);
Simon Glass35f15f62015-03-26 09:29:26 -0600266 struct ich_spi_priv *ctlr = dev_get_priv(bus);
Simon Glass41877402013-03-19 04:58:56 +0000267 uint16_t control;
268 int16_t opcode_index;
269 int with_address;
270 int status;
Simon Glass35f15f62015-03-26 09:29:26 -0600271 struct spi_trans *trans = &ctlr->trans;
Bin Meng36ce0242017-08-15 22:38:29 -0700272 bool lock = spi_lock_status(plat, ctlr->base);
Bernhard Messerklingerdb3ffe92019-08-02 08:38:34 +0200273 int ret = 0;
Simon Glass41877402013-03-19 04:58:56 +0000274
Bernhard Messerklingerdb3ffe92019-08-02 08:38:34 +0200275 trans->in = NULL;
276 trans->out = NULL;
277 trans->type = 0xFF;
Simon Glass41877402013-03-19 04:58:56 +0000278
Bernhard Messerklingerdb3ffe92019-08-02 08:38:34 +0200279 if (op->data.nbytes) {
280 if (op->data.dir == SPI_MEM_DATA_IN) {
281 trans->in = op->data.buf.in;
282 trans->bytesin = op->data.nbytes;
283 } else {
284 trans->out = op->data.buf.out;
285 trans->bytesout = op->data.nbytes;
Simon Glass41877402013-03-19 04:58:56 +0000286 }
Simon Glass41877402013-03-19 04:58:56 +0000287 }
288
Bernhard Messerklingerdb3ffe92019-08-02 08:38:34 +0200289 if (trans->opcode != op->cmd.opcode)
290 trans->opcode = op->cmd.opcode;
Simon Glass41877402013-03-19 04:58:56 +0000291
Bernhard Messerklingerdb3ffe92019-08-02 08:38:34 +0200292 if (lock && trans->opcode == SPI_OPCODE_WRDIS)
293 return 0;
Simon Glass41877402013-03-19 04:58:56 +0000294
Bernhard Messerklingerdb3ffe92019-08-02 08:38:34 +0200295 if (trans->opcode == SPI_OPCODE_WREN) {
296 /*
297 * Treat Write Enable as Atomic Pre-Op if possible
298 * in order to prevent the Management Engine from
299 * issuing a transaction between WREN and DATA.
300 */
301 if (!lock)
302 ich_writew(ctlr, trans->opcode, ctlr->preop);
303 return 0;
Simon Glass41877402013-03-19 04:58:56 +0000304 }
305
Simon Glass35f15f62015-03-26 09:29:26 -0600306 ret = ich_status_poll(ctlr, SPIS_SCIP, 0);
307 if (ret < 0)
308 return ret;
Simon Glass41877402013-03-19 04:58:56 +0000309
Bin Meng0d3792c2016-02-01 01:40:38 -0800310 if (plat->ich_version == ICHV_7)
Simon Glass6634f812015-07-03 18:28:21 -0600311 ich_writew(ctlr, SPIS_CDS | SPIS_FCERR, ctlr->status);
312 else
313 ich_writeb(ctlr, SPIS_CDS | SPIS_FCERR, ctlr->status);
Simon Glass41877402013-03-19 04:58:56 +0000314
Bernhard Messerklingerdb3ffe92019-08-02 08:38:34 +0200315 /* Try to guess spi transaction type */
316 if (op->data.dir == SPI_MEM_DATA_OUT) {
317 if (op->addr.nbytes)
318 trans->type = SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS;
319 else
320 trans->type = SPI_OPCODE_TYPE_WRITE_NO_ADDRESS;
321 } else {
322 if (op->addr.nbytes)
323 trans->type = SPI_OPCODE_TYPE_READ_WITH_ADDRESS;
324 else
325 trans->type = SPI_OPCODE_TYPE_READ_NO_ADDRESS;
326 }
327 /* Special erase case handling */
328 if (op->addr.nbytes && !op->data.buswidth)
329 trans->type = SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS;
330
Bin Meng36ce0242017-08-15 22:38:29 -0700331 opcode_index = spi_setup_opcode(ctlr, trans, lock);
Simon Glass41877402013-03-19 04:58:56 +0000332 if (opcode_index < 0)
Simon Glass35f15f62015-03-26 09:29:26 -0600333 return -EINVAL;
Simon Glass41877402013-03-19 04:58:56 +0000334
Bernhard Messerklingerdb3ffe92019-08-02 08:38:34 +0200335 if (op->addr.nbytes) {
336 trans->offset = op->addr.val;
337 with_address = 1;
Simon Glass41877402013-03-19 04:58:56 +0000338 }
339
Simon Glass35f15f62015-03-26 09:29:26 -0600340 if (ctlr->speed && ctlr->max_speed >= 33000000) {
Simon Glass41877402013-03-19 04:58:56 +0000341 int byte;
342
Simon Glass35f15f62015-03-26 09:29:26 -0600343 byte = ich_readb(ctlr, ctlr->speed);
344 if (ctlr->cur_speed >= 33000000)
Simon Glass41877402013-03-19 04:58:56 +0000345 byte |= SSFC_SCF_33MHZ;
346 else
347 byte &= ~SSFC_SCF_33MHZ;
Simon Glass35f15f62015-03-26 09:29:26 -0600348 ich_writeb(ctlr, byte, ctlr->speed);
Simon Glass41877402013-03-19 04:58:56 +0000349 }
350
Simon Glass41877402013-03-19 04:58:56 +0000351 /* Preset control fields */
Simon Glass41877402013-03-19 04:58:56 +0000352 control = SPIC_SCGO | ((opcode_index & 0x07) << 4);
353
354 /* Issue atomic preop cycle if needed */
Simon Glass35f15f62015-03-26 09:29:26 -0600355 if (ich_readw(ctlr, ctlr->preop))
Simon Glass41877402013-03-19 04:58:56 +0000356 control |= SPIC_ACS;
357
358 if (!trans->bytesout && !trans->bytesin) {
359 /* SPI addresses are 24 bit only */
Simon Glass35f15f62015-03-26 09:29:26 -0600360 if (with_address) {
361 ich_writel(ctlr, trans->offset & 0x00FFFFFF,
362 ctlr->addr);
363 }
Simon Glass41877402013-03-19 04:58:56 +0000364 /*
365 * This is a 'no data' command (like Write Enable), its
366 * bitesout size was 1, decremented to zero while executing
367 * spi_setup_opcode() above. Tell the chip to send the
368 * command.
369 */
Simon Glass35f15f62015-03-26 09:29:26 -0600370 ich_writew(ctlr, control, ctlr->control);
Simon Glass41877402013-03-19 04:58:56 +0000371
372 /* wait for the result */
Simon Glass35f15f62015-03-26 09:29:26 -0600373 status = ich_status_poll(ctlr, SPIS_CDS | SPIS_FCERR, 1);
374 if (status < 0)
375 return status;
Simon Glass41877402013-03-19 04:58:56 +0000376
377 if (status & SPIS_FCERR) {
378 debug("ICH SPI: Command transaction error\n");
Simon Glass35f15f62015-03-26 09:29:26 -0600379 return -EIO;
Simon Glass41877402013-03-19 04:58:56 +0000380 }
381
382 return 0;
383 }
384
Simon Glass41877402013-03-19 04:58:56 +0000385 while (trans->bytesout || trans->bytesin) {
386 uint32_t data_length;
Simon Glass41877402013-03-19 04:58:56 +0000387
388 /* SPI addresses are 24 bit only */
Simon Glass35f15f62015-03-26 09:29:26 -0600389 ich_writel(ctlr, trans->offset & 0x00FFFFFF, ctlr->addr);
Simon Glass41877402013-03-19 04:58:56 +0000390
391 if (trans->bytesout)
Simon Glass35f15f62015-03-26 09:29:26 -0600392 data_length = min(trans->bytesout, ctlr->databytes);
Simon Glass41877402013-03-19 04:58:56 +0000393 else
Simon Glass35f15f62015-03-26 09:29:26 -0600394 data_length = min(trans->bytesin, ctlr->databytes);
Simon Glass41877402013-03-19 04:58:56 +0000395
396 /* Program data into FDATA0 to N */
397 if (trans->bytesout) {
Simon Glass35f15f62015-03-26 09:29:26 -0600398 write_reg(ctlr, trans->out, ctlr->data, data_length);
Bernhard Messerklingerdb3ffe92019-08-02 08:38:34 +0200399 trans->bytesout -= data_length;
Simon Glass41877402013-03-19 04:58:56 +0000400 }
401
402 /* Add proper control fields' values */
Simon Glass35f15f62015-03-26 09:29:26 -0600403 control &= ~((ctlr->databytes - 1) << 8);
Simon Glass41877402013-03-19 04:58:56 +0000404 control |= SPIC_DS;
405 control |= (data_length - 1) << 8;
406
407 /* write it */
Simon Glass35f15f62015-03-26 09:29:26 -0600408 ich_writew(ctlr, control, ctlr->control);
Simon Glass41877402013-03-19 04:58:56 +0000409
Bin Meng316fd942016-02-01 01:40:36 -0800410 /* Wait for Cycle Done Status or Flash Cycle Error */
Simon Glass35f15f62015-03-26 09:29:26 -0600411 status = ich_status_poll(ctlr, SPIS_CDS | SPIS_FCERR, 1);
412 if (status < 0)
413 return status;
Simon Glass41877402013-03-19 04:58:56 +0000414
415 if (status & SPIS_FCERR) {
Simon Glass7f66bc12015-06-07 08:50:33 -0600416 debug("ICH SPI: Data transaction error %x\n", status);
Simon Glass35f15f62015-03-26 09:29:26 -0600417 return -EIO;
Simon Glass41877402013-03-19 04:58:56 +0000418 }
419
420 if (trans->bytesin) {
Simon Glass35f15f62015-03-26 09:29:26 -0600421 read_reg(ctlr, ctlr->data, trans->in, data_length);
Bernhard Messerklingerdb3ffe92019-08-02 08:38:34 +0200422 trans->bytesin -= data_length;
Simon Glass41877402013-03-19 04:58:56 +0000423 }
424 }
425
426 /* Clear atomic preop now that xfer is done */
Bin Meng4a75e9b2017-08-26 19:22:59 -0700427 if (!lock)
428 ich_writew(ctlr, 0, ctlr->preop);
Simon Glass41877402013-03-19 04:58:56 +0000429
430 return 0;
431}
432
Simon Glass0a88fd82019-12-06 21:42:46 -0700433/*
434 * Ensure read/write xfer len is not greater than SPIBAR_FDATA_FIFO_SIZE and
435 * that the operation does not cross page boundary.
436 */
437static uint get_xfer_len(u32 offset, int len, int page_size)
438{
439 uint xfer_len = min(len, SPIBAR_FDATA_FIFO_SIZE);
440 uint bytes_left = ALIGN(offset, page_size) - offset;
441
442 if (bytes_left)
443 xfer_len = min(xfer_len, bytes_left);
444
445 return xfer_len;
446}
447
448/* Fill FDATAn FIFO in preparation for a write transaction */
449static void fill_xfer_fifo(struct fast_spi_regs *regs, const void *data,
450 uint len)
451{
452 memcpy(regs->fdata, data, len);
453}
454
455/* Drain FDATAn FIFO after a read transaction populates data */
456static void drain_xfer_fifo(struct fast_spi_regs *regs, void *dest, uint len)
457{
458 memcpy(dest, regs->fdata, len);
459}
460
461/* Fire up a transfer using the hardware sequencer */
462static void start_hwseq_xfer(struct fast_spi_regs *regs, uint hsfsts_cycle,
463 uint offset, uint len)
464{
465 /* Make sure all W1C status bits get cleared */
466 u32 hsfsts;
467
468 hsfsts = readl(&regs->hsfsts_ctl);
469 hsfsts &= ~(HSFSTS_FCYCLE_MASK | HSFSTS_FDBC_MASK);
470 hsfsts |= HSFSTS_AEL | HSFSTS_FCERR | HSFSTS_FDONE;
471
472 /* Set up transaction parameters */
473 hsfsts |= hsfsts_cycle << HSFSTS_FCYCLE_SHIFT;
474 hsfsts |= ((len - 1) << HSFSTS_FDBC_SHIFT) & HSFSTS_FDBC_MASK;
475 hsfsts |= HSFSTS_FGO;
476
477 writel(offset, &regs->faddr);
478 writel(hsfsts, &regs->hsfsts_ctl);
479}
480
481static int wait_for_hwseq_xfer(struct fast_spi_regs *regs, uint offset)
482{
483 ulong start;
484 u32 hsfsts;
485
486 start = get_timer(0);
487 do {
488 hsfsts = readl(&regs->hsfsts_ctl);
489 if (hsfsts & HSFSTS_FCERR) {
490 debug("SPI transaction error at offset %x HSFSTS = %08x\n",
491 offset, hsfsts);
492 return -EIO;
493 }
494 if (hsfsts & HSFSTS_AEL)
495 return -EPERM;
496
497 if (hsfsts & HSFSTS_FDONE)
498 return 0;
499 } while (get_timer(start) < SPIBAR_HWSEQ_XFER_TIMEOUT_MS);
500
501 debug("SPI transaction timeout at offset %x HSFSTS = %08x, timer %d\n",
502 offset, hsfsts, (uint)get_timer(start));
503
504 return -ETIMEDOUT;
505}
506
507/**
508 * exec_sync_hwseq_xfer() - Execute flash transfer by hardware sequencing
509 *
510 * This waits until complete or timeout
511 *
512 * @regs: SPI registers
513 * @hsfsts_cycle: Cycle type (enum hsfsts_cycle_t)
514 * @offset: Offset to access
515 * @len: Number of bytes to transfer (can be 0)
516 * @return 0 if OK, -EIO on flash-cycle error (FCERR), -EPERM on access error
517 * (AEL), -ETIMEDOUT on timeout
518 */
519static int exec_sync_hwseq_xfer(struct fast_spi_regs *regs, uint hsfsts_cycle,
520 uint offset, uint len)
521{
522 start_hwseq_xfer(regs, hsfsts_cycle, offset, len);
523
524 return wait_for_hwseq_xfer(regs, offset);
525}
526
527static int ich_spi_exec_op_hwseq(struct spi_slave *slave,
528 const struct spi_mem_op *op)
529{
530 struct spi_flash *flash = dev_get_uclass_priv(slave->dev);
531 struct udevice *bus = dev_get_parent(slave->dev);
532 struct ich_spi_priv *priv = dev_get_priv(bus);
533 struct fast_spi_regs *regs = priv->base;
534 uint page_size;
535 uint offset;
536 int cycle;
537 uint len;
538 bool out;
539 int ret;
540 u8 *buf;
541
542 offset = op->addr.val;
543 len = op->data.nbytes;
544
545 switch (op->cmd.opcode) {
546 case SPINOR_OP_RDID:
547 cycle = HSFSTS_CYCLE_RDID;
548 break;
549 case SPINOR_OP_READ_FAST:
550 cycle = HSFSTS_CYCLE_READ;
551 break;
552 case SPINOR_OP_PP:
553 cycle = HSFSTS_CYCLE_WRITE;
554 break;
555 case SPINOR_OP_WREN:
556 /* Nothing needs to be done */
557 return 0;
558 case SPINOR_OP_WRSR:
559 cycle = HSFSTS_CYCLE_WR_STATUS;
560 break;
561 case SPINOR_OP_RDSR:
562 cycle = HSFSTS_CYCLE_RD_STATUS;
563 break;
564 case SPINOR_OP_WRDI:
565 return 0; /* ignore */
566 case SPINOR_OP_BE_4K:
567 cycle = HSFSTS_CYCLE_4K_ERASE;
Wolfgang Wallner6157ec12020-01-14 14:05:48 +0100568 ret = exec_sync_hwseq_xfer(regs, cycle, offset, 0);
569 return ret;
Simon Glass0a88fd82019-12-06 21:42:46 -0700570 default:
571 debug("Unknown cycle %x\n", op->cmd.opcode);
572 return -EINVAL;
573 };
574
575 out = op->data.dir == SPI_MEM_DATA_OUT;
576 buf = out ? (u8 *)op->data.buf.out : op->data.buf.in;
577 page_size = flash->page_size ? : 256;
578
579 while (len) {
580 uint xfer_len = get_xfer_len(offset, len, page_size);
581
582 if (out)
583 fill_xfer_fifo(regs, buf, xfer_len);
584
585 ret = exec_sync_hwseq_xfer(regs, cycle, offset, xfer_len);
586 if (ret)
587 return ret;
588
589 if (!out)
590 drain_xfer_fifo(regs, buf, xfer_len);
591
592 offset += xfer_len;
593 buf += xfer_len;
594 len -= xfer_len;
595 }
596
597 return 0;
598}
599
600static int ich_spi_exec_op(struct spi_slave *slave, const struct spi_mem_op *op)
601{
602 struct udevice *bus = dev_get_parent(slave->dev);
603 struct ich_spi_platdata *plat = dev_get_platdata(bus);
604 int ret;
605
606 bootstage_start(BOOTSTAGE_ID_ACCUM_SPI, "fast_spi");
607 if (plat->hwseq)
608 ret = ich_spi_exec_op_hwseq(slave, op);
609 else
610 ret = ich_spi_exec_op_swseq(slave, op);
611 bootstage_accum(BOOTSTAGE_ID_ACCUM_SPI);
612
613 return ret;
614}
615
Simon Glass641217d2019-12-06 21:42:47 -0700616static int ich_get_mmap_bus(struct udevice *bus, ulong *map_basep,
617 uint *map_sizep, uint *offsetp)
618{
619 pci_dev_t spi_bdf;
620
621#if !CONFIG_IS_ENABLED(OF_PLATDATA)
622 struct pci_child_platdata *pplat = dev_get_parent_platdata(bus);
623
624 spi_bdf = pplat->devfn;
625#else
626 struct ich_spi_platdata *plat = dev_get_platdata(bus);
627
628 /*
629 * We cannot rely on plat->bdf being set up yet since this method can
630 * be called before the device is probed. Use the of-platdata directly
631 * instead.
632 */
633 spi_bdf = pci_ofplat_get_devfn(plat->dtplat.reg[0]);
634#endif
635
636 return fast_spi_get_bios_mmap(spi_bdf, map_basep, map_sizep, offsetp);
637}
638
639static int ich_get_mmap(struct udevice *dev, ulong *map_basep, uint *map_sizep,
640 uint *offsetp)
641{
642 struct udevice *bus = dev_get_parent(dev);
643
644 return ich_get_mmap_bus(bus, map_basep, map_sizep, offsetp);
645}
646
Bernhard Messerklingerdb3ffe92019-08-02 08:38:34 +0200647static int ich_spi_adjust_size(struct spi_slave *slave, struct spi_mem_op *op)
648{
649 unsigned int page_offset;
650 int addr = op->addr.val;
651 unsigned int byte_count = op->data.nbytes;
652
653 if (hweight32(ICH_BOUNDARY) == 1) {
654 page_offset = addr & (ICH_BOUNDARY - 1);
655 } else {
656 u64 aux = addr;
657
658 page_offset = do_div(aux, ICH_BOUNDARY);
659 }
660
Simon Glassf1c884d2019-12-06 21:42:44 -0700661 if (op->data.dir == SPI_MEM_DATA_IN) {
662 if (slave->max_read_size) {
663 op->data.nbytes = min(ICH_BOUNDARY - page_offset,
664 slave->max_read_size);
665 }
Bernhard Messerklingerdb3ffe92019-08-02 08:38:34 +0200666 } else if (slave->max_write_size) {
667 op->data.nbytes = min(ICH_BOUNDARY - page_offset,
668 slave->max_write_size);
669 }
670
671 op->data.nbytes = min(op->data.nbytes, byte_count);
672
673 return 0;
674}
675
Simon Glass78d520c2019-12-06 21:42:38 -0700676static int ich_protect_lockdown(struct udevice *dev)
677{
678 struct ich_spi_platdata *plat = dev_get_platdata(dev);
679 struct ich_spi_priv *priv = dev_get_priv(dev);
680 int ret = -ENOSYS;
681
682 /* Disable the BIOS write protect so write commands are allowed */
683 if (priv->pch)
684 ret = pch_set_spi_protect(priv->pch, false);
685 if (ret == -ENOSYS) {
686 u8 bios_cntl;
687
688 bios_cntl = ich_readb(priv, priv->bcr);
689 bios_cntl &= ~BIT(5); /* clear Enable InSMM_STS (EISS) */
690 bios_cntl |= 1; /* Write Protect Disable (WPD) */
691 ich_writeb(priv, bios_cntl, priv->bcr);
692 } else if (ret) {
693 debug("%s: Failed to disable write-protect: err=%d\n",
694 __func__, ret);
695 return ret;
696 }
697
698 /* Lock down SPI controller settings if required */
699 if (plat->lockdown) {
700 ich_spi_config_opcode(dev);
701 spi_lock_down(plat, priv->base);
702 }
703
704 return 0;
705}
706
Simon Glass23485eb2019-12-06 21:42:37 -0700707static int ich_init_controller(struct udevice *dev,
708 struct ich_spi_platdata *plat,
709 struct ich_spi_priv *ctlr)
710{
Simon Glassbdd28972019-12-06 21:42:48 -0700711 if (spl_phase() == PHASE_TPL) {
712 struct ich_spi_platdata *plat = dev_get_platdata(dev);
713 int ret;
714
715 ret = fast_spi_early_init(plat->bdf, plat->mmio_base);
716 if (ret)
717 return ret;
718 }
719
Simon Glasseb0ae6f2019-12-06 21:42:42 -0700720 ctlr->base = (void *)plat->mmio_base;
Simon Glass23485eb2019-12-06 21:42:37 -0700721 if (plat->ich_version == ICHV_7) {
Simon Glasseb0ae6f2019-12-06 21:42:42 -0700722 struct ich7_spi_regs *ich7_spi = ctlr->base;
Simon Glass23485eb2019-12-06 21:42:37 -0700723
724 ctlr->opmenu = offsetof(struct ich7_spi_regs, opmenu);
725 ctlr->menubytes = sizeof(ich7_spi->opmenu);
726 ctlr->optype = offsetof(struct ich7_spi_regs, optype);
727 ctlr->addr = offsetof(struct ich7_spi_regs, spia);
728 ctlr->data = offsetof(struct ich7_spi_regs, spid);
729 ctlr->databytes = sizeof(ich7_spi->spid);
730 ctlr->status = offsetof(struct ich7_spi_regs, spis);
731 ctlr->control = offsetof(struct ich7_spi_regs, spic);
732 ctlr->bbar = offsetof(struct ich7_spi_regs, bbar);
733 ctlr->preop = offsetof(struct ich7_spi_regs, preop);
Simon Glass23485eb2019-12-06 21:42:37 -0700734 } else if (plat->ich_version == ICHV_9) {
Simon Glasseb0ae6f2019-12-06 21:42:42 -0700735 struct ich9_spi_regs *ich9_spi = ctlr->base;
Simon Glass23485eb2019-12-06 21:42:37 -0700736
737 ctlr->opmenu = offsetof(struct ich9_spi_regs, opmenu);
738 ctlr->menubytes = sizeof(ich9_spi->opmenu);
739 ctlr->optype = offsetof(struct ich9_spi_regs, optype);
740 ctlr->addr = offsetof(struct ich9_spi_regs, faddr);
741 ctlr->data = offsetof(struct ich9_spi_regs, fdata);
742 ctlr->databytes = sizeof(ich9_spi->fdata);
743 ctlr->status = offsetof(struct ich9_spi_regs, ssfs);
744 ctlr->control = offsetof(struct ich9_spi_regs, ssfc);
745 ctlr->speed = ctlr->control + 2;
746 ctlr->bbar = offsetof(struct ich9_spi_regs, bbar);
747 ctlr->preop = offsetof(struct ich9_spi_regs, preop);
748 ctlr->bcr = offsetof(struct ich9_spi_regs, bcr);
749 ctlr->pr = &ich9_spi->pr[0];
Simon Glass07b2b992019-12-06 21:42:49 -0700750 } else if (plat->ich_version == ICHV_APL) {
Simon Glass23485eb2019-12-06 21:42:37 -0700751 } else {
752 debug("ICH SPI: Unrecognised ICH version %d\n",
753 plat->ich_version);
754 return -EINVAL;
755 }
756
757 /* Work out the maximum speed we can support */
758 ctlr->max_speed = 20000000;
759 if (plat->ich_version == ICHV_9 && ich9_can_do_33mhz(dev))
760 ctlr->max_speed = 33000000;
Simon Glasseb0ae6f2019-12-06 21:42:42 -0700761 debug("ICH SPI: Version ID %d detected at %lx, speed %ld\n",
762 plat->ich_version, plat->mmio_base, ctlr->max_speed);
Simon Glass23485eb2019-12-06 21:42:37 -0700763
764 ich_set_bbar(ctlr, 0);
765
766 return 0;
767}
768
Simon Glassbdd28972019-12-06 21:42:48 -0700769static int ich_cache_bios_region(struct udevice *dev)
770{
771 ulong map_base;
772 uint map_size;
773 uint offset;
774 ulong base;
775 int ret;
776
777 ret = ich_get_mmap_bus(dev, &map_base, &map_size, &offset);
778 if (ret)
779 return ret;
780
781 /* Don't use WRBACK since we are not supposed to write to SPI flash */
782 base = SZ_4G - map_size;
783 mtrr_set_next_var(MTRR_TYPE_WRPROT, base, map_size);
784 log_debug("BIOS cache base=%lx, size=%x\n", base, (uint)map_size);
785
786 return 0;
787}
788
Simon Glass32761632016-01-18 20:19:21 -0700789static int ich_spi_probe(struct udevice *dev)
Simon Glass35f15f62015-03-26 09:29:26 -0600790{
Simon Glass32761632016-01-18 20:19:21 -0700791 struct ich_spi_platdata *plat = dev_get_platdata(dev);
792 struct ich_spi_priv *priv = dev_get_priv(dev);
Simon Glass35f15f62015-03-26 09:29:26 -0600793 int ret;
794
Simon Glass32761632016-01-18 20:19:21 -0700795 ret = ich_init_controller(dev, plat, priv);
Simon Glass35f15f62015-03-26 09:29:26 -0600796 if (ret)
797 return ret;
Simon Glass35f15f62015-03-26 09:29:26 -0600798
Simon Glassbdd28972019-12-06 21:42:48 -0700799 if (spl_phase() == PHASE_TPL) {
800 /* Cache the BIOS to speed things up */
801 ret = ich_cache_bios_region(dev);
802 if (ret)
803 return ret;
804 } else {
805 ret = ich_protect_lockdown(dev);
806 if (ret)
807 return ret;
808 }
Simon Glass35f15f62015-03-26 09:29:26 -0600809 priv->cur_speed = priv->max_speed;
810
811 return 0;
812}
813
Stefan Roeseb6647ab2017-04-24 09:48:04 +0200814static int ich_spi_remove(struct udevice *bus)
815{
Stefan Roeseb6647ab2017-04-24 09:48:04 +0200816 /*
817 * Configure SPI controller so that the Linux MTD driver can fully
818 * access the SPI NOR chip
819 */
Bin Meng552720e2017-08-15 22:38:30 -0700820 ich_spi_config_opcode(bus);
Stefan Roeseb6647ab2017-04-24 09:48:04 +0200821
822 return 0;
823}
824
Simon Glass35f15f62015-03-26 09:29:26 -0600825static int ich_spi_set_speed(struct udevice *bus, uint speed)
826{
827 struct ich_spi_priv *priv = dev_get_priv(bus);
828
829 priv->cur_speed = speed;
830
831 return 0;
832}
833
834static int ich_spi_set_mode(struct udevice *bus, uint mode)
835{
836 debug("%s: mode=%d\n", __func__, mode);
837
838 return 0;
839}
840
841static int ich_spi_child_pre_probe(struct udevice *dev)
842{
843 struct udevice *bus = dev_get_parent(dev);
844 struct ich_spi_platdata *plat = dev_get_platdata(bus);
845 struct ich_spi_priv *priv = dev_get_priv(bus);
Simon Glassde44acf2015-09-28 23:32:01 -0600846 struct spi_slave *slave = dev_get_parent_priv(dev);
Simon Glass35f15f62015-03-26 09:29:26 -0600847
848 /*
849 * Yes this controller can only write a small number of bytes at
Simon Glass0a88fd82019-12-06 21:42:46 -0700850 * once! The limit is typically 64 bytes. For hardware sequencing a
851 * a loop is used to get around this.
Simon Glass35f15f62015-03-26 09:29:26 -0600852 */
Simon Glass0a88fd82019-12-06 21:42:46 -0700853 if (!plat->hwseq)
854 slave->max_write_size = priv->databytes;
Simon Glass35f15f62015-03-26 09:29:26 -0600855 /*
856 * ICH 7 SPI controller only supports array read command
857 * and byte program command for SST flash
858 */
Jagan Teki96536b12016-08-08 17:12:12 +0530859 if (plat->ich_version == ICHV_7)
860 slave->mode = SPI_RX_SLOW | SPI_TX_BYTE;
Simon Glass35f15f62015-03-26 09:29:26 -0600861
862 return 0;
863}
864
Bin Mengd9406672016-02-01 01:40:37 -0800865static int ich_spi_ofdata_to_platdata(struct udevice *dev)
866{
867 struct ich_spi_platdata *plat = dev_get_platdata(dev);
Simon Glassb7632cb2019-12-06 21:42:45 -0700868
869#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glass78d520c2019-12-06 21:42:38 -0700870 struct ich_spi_priv *priv = dev_get_priv(dev);
Bin Mengd9406672016-02-01 01:40:37 -0800871
Simon Glass78d520c2019-12-06 21:42:38 -0700872 /* Find a PCH if there is one */
873 uclass_first_device(UCLASS_PCH, &priv->pch);
874 if (!priv->pch)
875 priv->pch = dev_get_parent(dev);
876
Simon Glass6e37af32019-12-06 21:42:39 -0700877 plat->ich_version = dev_get_driver_data(dev);
878 plat->lockdown = dev_read_bool(dev, "intel,spi-lock-down");
Simon Glass07b2b992019-12-06 21:42:49 -0700879 if (plat->ich_version == ICHV_APL) {
880 plat->mmio_base = dm_pci_read_bar32(dev, 0);
881 } else {
882 /* SBASE is similar */
883 pch_get_spi_base(priv->pch, &plat->mmio_base);
884 }
Simon Glass0a88fd82019-12-06 21:42:46 -0700885 /*
886 * Use an int so that the property is present in of-platdata even
887 * when false.
888 */
889 plat->hwseq = dev_read_u32_default(dev, "intel,hardware-seq", 0);
Simon Glassb7632cb2019-12-06 21:42:45 -0700890#else
891 plat->ich_version = ICHV_APL;
892 plat->mmio_base = plat->dtplat.early_regs[0];
893 plat->bdf = pci_ofplat_get_devfn(plat->dtplat.reg[0]);
Simon Glass0a88fd82019-12-06 21:42:46 -0700894 plat->hwseq = plat->dtplat.intel_hardware_seq;
Simon Glassb7632cb2019-12-06 21:42:45 -0700895#endif
896 debug("%s: mmio_base=%lx\n", __func__, plat->mmio_base);
Simon Glasseb0ae6f2019-12-06 21:42:42 -0700897
Simon Glass6e37af32019-12-06 21:42:39 -0700898 return 0;
Bin Mengd9406672016-02-01 01:40:37 -0800899}
900
Bernhard Messerklingerdb3ffe92019-08-02 08:38:34 +0200901static const struct spi_controller_mem_ops ich_controller_mem_ops = {
902 .adjust_op_size = ich_spi_adjust_size,
903 .supports_op = NULL,
904 .exec_op = ich_spi_exec_op,
905};
906
Simon Glass35f15f62015-03-26 09:29:26 -0600907static const struct dm_spi_ops ich_spi_ops = {
Simon Glass2d2e8602019-12-06 21:42:35 -0700908 /* xfer is not supported */
Simon Glass35f15f62015-03-26 09:29:26 -0600909 .set_speed = ich_spi_set_speed,
910 .set_mode = ich_spi_set_mode,
Bernhard Messerklingerdb3ffe92019-08-02 08:38:34 +0200911 .mem_ops = &ich_controller_mem_ops,
Simon Glass641217d2019-12-06 21:42:47 -0700912 .get_mmap = ich_get_mmap,
Simon Glass35f15f62015-03-26 09:29:26 -0600913 /*
914 * cs_info is not needed, since we require all chip selects to be
915 * in the device tree explicitly
916 */
917};
918
919static const struct udevice_id ich_spi_ids[] = {
Simon Glass6e37af32019-12-06 21:42:39 -0700920 { .compatible = "intel,ich7-spi", ICHV_7 },
921 { .compatible = "intel,ich9-spi", ICHV_9 },
Simon Glass07b2b992019-12-06 21:42:49 -0700922 { .compatible = "intel,fast-spi", ICHV_APL },
Simon Glass35f15f62015-03-26 09:29:26 -0600923 { }
924};
925
Simon Glassb7632cb2019-12-06 21:42:45 -0700926U_BOOT_DRIVER(intel_fast_spi) = {
927 .name = "intel_fast_spi",
Simon Glass35f15f62015-03-26 09:29:26 -0600928 .id = UCLASS_SPI,
929 .of_match = ich_spi_ids,
930 .ops = &ich_spi_ops,
Bin Mengd9406672016-02-01 01:40:37 -0800931 .ofdata_to_platdata = ich_spi_ofdata_to_platdata,
Simon Glass35f15f62015-03-26 09:29:26 -0600932 .platdata_auto_alloc_size = sizeof(struct ich_spi_platdata),
933 .priv_auto_alloc_size = sizeof(struct ich_spi_priv),
934 .child_pre_probe = ich_spi_child_pre_probe,
935 .probe = ich_spi_probe,
Stefan Roeseb6647ab2017-04-24 09:48:04 +0200936 .remove = ich_spi_remove,
937 .flags = DM_FLAG_OS_PREPARE,
Simon Glass35f15f62015-03-26 09:29:26 -0600938};