blob: 133b25b72e48c0960eb7393e05365ba23c74922b [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 Glassb47aa262019-12-06 21:42:40 -070011#include <div64.h>
Simon Glassba457562015-03-26 09:29:26 -060012#include <dm.h>
Simon Glass0d3ee3e2019-12-06 21:42:45 -070013#include <dt-structs.h>
Simon Glass5093bad2015-01-27 22:13:43 -070014#include <errno.h>
Simon Glass18530302013-03-19 04:58:56 +000015#include <malloc.h>
Simon Glassf2b85ab2016-01-18 20:19:21 -070016#include <pch.h>
Simon Glass18530302013-03-19 04:58:56 +000017#include <pci.h>
18#include <pci_ids.h>
Simon Glassf2b85ab2016-01-18 20:19:21 -070019#include <spi.h>
Simon Glass1facebd2019-12-06 21:42:46 -070020#include <spi_flash.h>
Bernhard Messerklinger0709ddb2019-08-02 08:38:34 +020021#include <spi-mem.h>
Simon Glass636555a2019-12-06 21:42:48 -070022#include <spl.h>
Simon Glass1facebd2019-12-06 21:42:46 -070023#include <asm/fast_spi.h>
Simon Glassb47aa262019-12-06 21:42:40 -070024#include <asm/io.h>
Simon Glass636555a2019-12-06 21:42:48 -070025#include <asm/mtrr.h>
26#include <linux/sizes.h>
Simon Glass18530302013-03-19 04:58:56 +000027
28#include "ich.h"
29
Simon Glassfffe25d2016-01-18 20:19:20 -070030#ifdef DEBUG_TRACE
31#define debug_trace(fmt, args...) debug(fmt, ##args)
32#else
33#define debug_trace(x, args...)
34#endif
35
Simon Glass75214b02019-12-06 21:42:42 -070036struct ich_spi_platdata {
Simon Glass0d3ee3e2019-12-06 21:42:45 -070037#if CONFIG_IS_ENABLED(OF_PLATDATA)
38 struct dtd_intel_fast_spi dtplat;
39#endif
Simon Glass75214b02019-12-06 21:42:42 -070040 enum ich_version ich_version; /* Controller version, 7 or 9 */
41 bool lockdown; /* lock down controller settings? */
42 ulong mmio_base; /* Base of MMIO registers */
Simon Glass0d3ee3e2019-12-06 21:42:45 -070043 pci_dev_t bdf; /* PCI address used by of-platdata */
Simon Glass1facebd2019-12-06 21:42:46 -070044 bool hwseq; /* Use hardware sequencing (not s/w) */
Simon Glass75214b02019-12-06 21:42:42 -070045};
46
Simon Glassba457562015-03-26 09:29:26 -060047static u8 ich_readb(struct ich_spi_priv *priv, int reg)
Simon Glass18530302013-03-19 04:58:56 +000048{
Simon Glassba457562015-03-26 09:29:26 -060049 u8 value = readb(priv->base + reg);
Simon Glass18530302013-03-19 04:58:56 +000050
Simon Glassfffe25d2016-01-18 20:19:20 -070051 debug_trace("read %2.2x from %4.4x\n", value, reg);
Simon Glass18530302013-03-19 04:58:56 +000052
53 return value;
54}
55
Simon Glassba457562015-03-26 09:29:26 -060056static u16 ich_readw(struct ich_spi_priv *priv, int reg)
Simon Glass18530302013-03-19 04:58:56 +000057{
Simon Glassba457562015-03-26 09:29:26 -060058 u16 value = readw(priv->base + reg);
Simon Glass18530302013-03-19 04:58:56 +000059
Simon Glassfffe25d2016-01-18 20:19:20 -070060 debug_trace("read %4.4x from %4.4x\n", value, reg);
Simon Glass18530302013-03-19 04:58:56 +000061
62 return value;
63}
64
Simon Glassba457562015-03-26 09:29:26 -060065static u32 ich_readl(struct ich_spi_priv *priv, int reg)
Simon Glass18530302013-03-19 04:58:56 +000066{
Simon Glassba457562015-03-26 09:29:26 -060067 u32 value = readl(priv->base + reg);
Simon Glass18530302013-03-19 04:58:56 +000068
Simon Glassfffe25d2016-01-18 20:19:20 -070069 debug_trace("read %8.8x from %4.4x\n", value, reg);
Simon Glass18530302013-03-19 04:58:56 +000070
71 return value;
72}
73
Simon Glassba457562015-03-26 09:29:26 -060074static void ich_writeb(struct ich_spi_priv *priv, u8 value, int reg)
Simon Glass18530302013-03-19 04:58:56 +000075{
Simon Glassba457562015-03-26 09:29:26 -060076 writeb(value, priv->base + reg);
Simon Glassfffe25d2016-01-18 20:19:20 -070077 debug_trace("wrote %2.2x 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_writew(struct ich_spi_priv *priv, u16 value, int reg)
Simon Glass18530302013-03-19 04:58:56 +000081{
Simon Glassba457562015-03-26 09:29:26 -060082 writew(value, priv->base + reg);
Simon Glassfffe25d2016-01-18 20:19:20 -070083 debug_trace("wrote %4.4x to %4.4x\n", value, reg);
Simon Glass18530302013-03-19 04:58:56 +000084}
85
Simon Glassba457562015-03-26 09:29:26 -060086static void ich_writel(struct ich_spi_priv *priv, u32 value, int reg)
Simon Glass18530302013-03-19 04:58:56 +000087{
Simon Glassba457562015-03-26 09:29:26 -060088 writel(value, priv->base + reg);
Simon Glassfffe25d2016-01-18 20:19:20 -070089 debug_trace("wrote %8.8x to %4.4x\n", value, reg);
Simon Glass18530302013-03-19 04:58:56 +000090}
91
Simon Glassba457562015-03-26 09:29:26 -060092static void write_reg(struct ich_spi_priv *priv, const void *value,
93 int dest_reg, uint32_t size)
Simon Glass18530302013-03-19 04:58:56 +000094{
Simon Glassba457562015-03-26 09:29:26 -060095 memcpy_toio(priv->base + dest_reg, value, size);
Simon Glass18530302013-03-19 04:58:56 +000096}
97
Simon Glassba457562015-03-26 09:29:26 -060098static void read_reg(struct ich_spi_priv *priv, int src_reg, void *value,
99 uint32_t size)
Simon Glass18530302013-03-19 04:58:56 +0000100{
Simon Glassba457562015-03-26 09:29:26 -0600101 memcpy_fromio(value, priv->base + src_reg, size);
Simon Glass18530302013-03-19 04:58:56 +0000102}
103
Simon Glassba457562015-03-26 09:29:26 -0600104static void ich_set_bbar(struct ich_spi_priv *ctlr, uint32_t minaddr)
Simon Glass18530302013-03-19 04:58:56 +0000105{
106 const uint32_t bbar_mask = 0x00ffff00;
107 uint32_t ichspi_bbar;
108
Simon Glass3937df32019-12-06 21:42:49 -0700109 if (ctlr->bbar) {
110 minaddr &= bbar_mask;
111 ichspi_bbar = ich_readl(ctlr, ctlr->bbar) & ~bbar_mask;
112 ichspi_bbar |= minaddr;
113 ich_writel(ctlr, ichspi_bbar, ctlr->bbar);
114 }
Simon Glass18530302013-03-19 04:58:56 +0000115}
116
Simon Glass18530302013-03-19 04:58:56 +0000117/* @return 1 if the SPI flash supports the 33MHz speed */
Simon Glassa5506622019-12-06 21:42:41 -0700118static bool ich9_can_do_33mhz(struct udevice *dev)
Simon Glass18530302013-03-19 04:58:56 +0000119{
Simon Glass17e75442019-12-06 21:42:38 -0700120 struct ich_spi_priv *priv = dev_get_priv(dev);
Simon Glass18530302013-03-19 04:58:56 +0000121 u32 fdod, speed;
122
Simon Glass636555a2019-12-06 21:42:48 -0700123 if (!CONFIG_IS_ENABLED(PCI))
124 return false;
Simon Glass18530302013-03-19 04:58:56 +0000125 /* Observe SPI Descriptor Component Section 0 */
Simon Glass17e75442019-12-06 21:42:38 -0700126 dm_pci_write_config32(priv->pch, 0xb0, 0x1000);
Simon Glass18530302013-03-19 04:58:56 +0000127
128 /* Extract the Write/Erase SPI Frequency from descriptor */
Simon Glass17e75442019-12-06 21:42:38 -0700129 dm_pci_read_config32(priv->pch, 0xb4, &fdod);
Simon Glass18530302013-03-19 04:58:56 +0000130
131 /* Bits 23:21 have the fast read clock frequency, 0=20MHz, 1=33MHz */
132 speed = (fdod >> 21) & 7;
133
134 return speed == 1;
135}
136
Bin Mengab201072017-10-18 18:20:57 -0700137static void spi_lock_down(struct ich_spi_platdata *plat, void *sbase)
138{
139 if (plat->ich_version == ICHV_7) {
140 struct ich7_spi_regs *ich7_spi = sbase;
141
142 setbits_le16(&ich7_spi->spis, SPIS_LOCK);
143 } else if (plat->ich_version == ICHV_9) {
144 struct ich9_spi_regs *ich9_spi = sbase;
145
146 setbits_le16(&ich9_spi->hsfs, HSFS_FLOCKDN);
147 }
148}
149
Bin Meng3e791412017-08-15 22:38:29 -0700150static bool spi_lock_status(struct ich_spi_platdata *plat, void *sbase)
151{
152 int lock = 0;
153
154 if (plat->ich_version == ICHV_7) {
155 struct ich7_spi_regs *ich7_spi = sbase;
156
157 lock = readw(&ich7_spi->spis) & SPIS_LOCK;
158 } else if (plat->ich_version == ICHV_9) {
159 struct ich9_spi_regs *ich9_spi = sbase;
160
161 lock = readw(&ich9_spi->hsfs) & HSFS_FLOCKDN;
162 }
163
164 return lock != 0;
165}
166
Bin Meng3e791412017-08-15 22:38:29 -0700167static int spi_setup_opcode(struct ich_spi_priv *ctlr, struct spi_trans *trans,
168 bool lock)
Simon Glass18530302013-03-19 04:58:56 +0000169{
170 uint16_t optypes;
Simon Glassba457562015-03-26 09:29:26 -0600171 uint8_t opmenu[ctlr->menubytes];
Simon Glass18530302013-03-19 04:58:56 +0000172
Bin Meng3e791412017-08-15 22:38:29 -0700173 if (!lock) {
Simon Glass18530302013-03-19 04:58:56 +0000174 /* The lock is off, so just use index 0. */
Simon Glassba457562015-03-26 09:29:26 -0600175 ich_writeb(ctlr, trans->opcode, ctlr->opmenu);
176 optypes = ich_readw(ctlr, ctlr->optype);
Simon Glass18530302013-03-19 04:58:56 +0000177 optypes = (optypes & 0xfffc) | (trans->type & 0x3);
Simon Glassba457562015-03-26 09:29:26 -0600178 ich_writew(ctlr, optypes, ctlr->optype);
Simon Glass18530302013-03-19 04:58:56 +0000179 return 0;
180 } else {
181 /* The lock is on. See if what we need is on the menu. */
182 uint8_t optype;
183 uint16_t opcode_index;
184
185 /* Write Enable is handled as atomic prefix */
186 if (trans->opcode == SPI_OPCODE_WREN)
187 return 0;
188
Simon Glassba457562015-03-26 09:29:26 -0600189 read_reg(ctlr, ctlr->opmenu, opmenu, sizeof(opmenu));
190 for (opcode_index = 0; opcode_index < ctlr->menubytes;
Simon Glass18530302013-03-19 04:58:56 +0000191 opcode_index++) {
192 if (opmenu[opcode_index] == trans->opcode)
193 break;
194 }
195
Simon Glassba457562015-03-26 09:29:26 -0600196 if (opcode_index == ctlr->menubytes) {
Simon Glassa5506622019-12-06 21:42:41 -0700197 debug("ICH SPI: Opcode %x not found\n", trans->opcode);
Simon Glassba457562015-03-26 09:29:26 -0600198 return -EINVAL;
Simon Glass18530302013-03-19 04:58:56 +0000199 }
200
Simon Glassba457562015-03-26 09:29:26 -0600201 optypes = ich_readw(ctlr, ctlr->optype);
Simon Glass18530302013-03-19 04:58:56 +0000202 optype = (optypes >> (opcode_index * 2)) & 0x3;
Bernhard Messerklinger0709ddb2019-08-02 08:38:34 +0200203
Simon Glass18530302013-03-19 04:58:56 +0000204 if (optype != trans->type) {
Simon Glassa5506622019-12-06 21:42:41 -0700205 debug("ICH SPI: Transaction doesn't fit type %d\n",
206 optype);
Simon Glassba457562015-03-26 09:29:26 -0600207 return -ENOSPC;
Simon Glass18530302013-03-19 04:58:56 +0000208 }
209 return opcode_index;
210 }
211}
212
Simon Glass18530302013-03-19 04:58:56 +0000213/*
214 * Wait for up to 6s til status register bit(s) turn 1 (in case wait_til_set
York Sun472d5462013-04-01 11:29:11 -0700215 * below is true) or 0. In case the wait was for the bit(s) to set - write
Simon Glass18530302013-03-19 04:58:56 +0000216 * those bits back, which would cause resetting them.
217 *
218 * Return the last read status value on success or -1 on failure.
219 */
Simon Glassba457562015-03-26 09:29:26 -0600220static int ich_status_poll(struct ich_spi_priv *ctlr, u16 bitmask,
221 int wait_til_set)
Simon Glass18530302013-03-19 04:58:56 +0000222{
223 int timeout = 600000; /* This will result in 6s */
224 u16 status = 0;
225
226 while (timeout--) {
Simon Glassba457562015-03-26 09:29:26 -0600227 status = ich_readw(ctlr, ctlr->status);
Simon Glass18530302013-03-19 04:58:56 +0000228 if (wait_til_set ^ ((status & bitmask) == 0)) {
Simon Glassba457562015-03-26 09:29:26 -0600229 if (wait_til_set) {
230 ich_writew(ctlr, status & bitmask,
231 ctlr->status);
232 }
Simon Glass18530302013-03-19 04:58:56 +0000233 return status;
234 }
235 udelay(10);
236 }
Simon Glassa5506622019-12-06 21:42:41 -0700237 debug("ICH SPI: SCIP timeout, read %x, expected %x, wts %x %x\n",
238 status, bitmask, wait_til_set, status & bitmask);
Simon Glass18530302013-03-19 04:58:56 +0000239
Simon Glassba457562015-03-26 09:29:26 -0600240 return -ETIMEDOUT;
Simon Glass18530302013-03-19 04:58:56 +0000241}
242
Bernhard Messerklinger0709ddb2019-08-02 08:38:34 +0200243static void ich_spi_config_opcode(struct udevice *dev)
Bin Mengb42711f2017-08-15 22:38:30 -0700244{
245 struct ich_spi_priv *ctlr = dev_get_priv(dev);
246
247 /*
248 * PREOP, OPTYPE, OPMENU1/OPMENU2 registers can be locked down
249 * to prevent accidental or intentional writes. Before they get
250 * locked down, these registers should be initialized properly.
251 */
252 ich_writew(ctlr, SPI_OPPREFIX, ctlr->preop);
253 ich_writew(ctlr, SPI_OPTYPE, ctlr->optype);
254 ich_writel(ctlr, SPI_OPMENU_LOWER, ctlr->opmenu);
255 ich_writel(ctlr, SPI_OPMENU_UPPER, ctlr->opmenu + sizeof(u32));
256}
257
Simon Glass1facebd2019-12-06 21:42:46 -0700258static int ich_spi_exec_op_swseq(struct spi_slave *slave,
259 const struct spi_mem_op *op)
Simon Glass18530302013-03-19 04:58:56 +0000260{
Bernhard Messerklinger0709ddb2019-08-02 08:38:34 +0200261 struct udevice *bus = dev_get_parent(slave->dev);
Simon Glasse1e332c2015-07-03 18:28:21 -0600262 struct ich_spi_platdata *plat = dev_get_platdata(bus);
Simon Glassba457562015-03-26 09:29:26 -0600263 struct ich_spi_priv *ctlr = dev_get_priv(bus);
Simon Glass18530302013-03-19 04:58:56 +0000264 uint16_t control;
265 int16_t opcode_index;
266 int with_address;
267 int status;
Simon Glassba457562015-03-26 09:29:26 -0600268 struct spi_trans *trans = &ctlr->trans;
Bin Meng3e791412017-08-15 22:38:29 -0700269 bool lock = spi_lock_status(plat, ctlr->base);
Bernhard Messerklinger0709ddb2019-08-02 08:38:34 +0200270 int ret = 0;
Simon Glass18530302013-03-19 04:58:56 +0000271
Bernhard Messerklinger0709ddb2019-08-02 08:38:34 +0200272 trans->in = NULL;
273 trans->out = NULL;
274 trans->type = 0xFF;
Simon Glass18530302013-03-19 04:58:56 +0000275
Bernhard Messerklinger0709ddb2019-08-02 08:38:34 +0200276 if (op->data.nbytes) {
277 if (op->data.dir == SPI_MEM_DATA_IN) {
278 trans->in = op->data.buf.in;
279 trans->bytesin = op->data.nbytes;
280 } else {
281 trans->out = op->data.buf.out;
282 trans->bytesout = op->data.nbytes;
Simon Glass18530302013-03-19 04:58:56 +0000283 }
Bernhard Messerklinger0709ddb2019-08-02 08:38:34 +0200284 }
285
286 if (trans->opcode != op->cmd.opcode)
287 trans->opcode = op->cmd.opcode;
288
289 if (lock && trans->opcode == SPI_OPCODE_WRDIS)
Simon Glass18530302013-03-19 04:58:56 +0000290 return 0;
Simon Glass18530302013-03-19 04:58:56 +0000291
292 if (trans->opcode == SPI_OPCODE_WREN) {
293 /*
294 * Treat Write Enable as Atomic Pre-Op if possible
295 * in order to prevent the Management Engine from
296 * issuing a transaction between WREN and DATA.
297 */
Bin Meng3e791412017-08-15 22:38:29 -0700298 if (!lock)
Simon Glassba457562015-03-26 09:29:26 -0600299 ich_writew(ctlr, trans->opcode, ctlr->preop);
Simon Glass18530302013-03-19 04:58:56 +0000300 return 0;
301 }
302
Bernhard Messerklinger0709ddb2019-08-02 08:38:34 +0200303 ret = ich_status_poll(ctlr, SPIS_SCIP, 0);
304 if (ret < 0)
305 return ret;
306
307 if (plat->ich_version == ICHV_7)
308 ich_writew(ctlr, SPIS_CDS | SPIS_FCERR, ctlr->status);
309 else
310 ich_writeb(ctlr, SPIS_CDS | SPIS_FCERR, ctlr->status);
311
312 /* Try to guess spi transaction type */
313 if (op->data.dir == SPI_MEM_DATA_OUT) {
314 if (op->addr.nbytes)
315 trans->type = SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS;
316 else
317 trans->type = SPI_OPCODE_TYPE_WRITE_NO_ADDRESS;
318 } else {
319 if (op->addr.nbytes)
320 trans->type = SPI_OPCODE_TYPE_READ_WITH_ADDRESS;
321 else
322 trans->type = SPI_OPCODE_TYPE_READ_NO_ADDRESS;
323 }
324 /* Special erase case handling */
325 if (op->addr.nbytes && !op->data.buswidth)
326 trans->type = SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS;
327
328 opcode_index = spi_setup_opcode(ctlr, trans, lock);
329 if (opcode_index < 0)
330 return -EINVAL;
331
332 if (op->addr.nbytes) {
333 trans->offset = op->addr.val;
334 with_address = 1;
335 }
336
Simon Glassba457562015-03-26 09:29:26 -0600337 if (ctlr->speed && ctlr->max_speed >= 33000000) {
Simon Glass18530302013-03-19 04:58:56 +0000338 int byte;
339
Simon Glassba457562015-03-26 09:29:26 -0600340 byte = ich_readb(ctlr, ctlr->speed);
341 if (ctlr->cur_speed >= 33000000)
Simon Glass18530302013-03-19 04:58:56 +0000342 byte |= SSFC_SCF_33MHZ;
343 else
344 byte &= ~SSFC_SCF_33MHZ;
Simon Glassba457562015-03-26 09:29:26 -0600345 ich_writeb(ctlr, byte, ctlr->speed);
Simon Glass18530302013-03-19 04:58:56 +0000346 }
347
Simon Glass18530302013-03-19 04:58:56 +0000348 /* Preset control fields */
Simon Glass18530302013-03-19 04:58:56 +0000349 control = SPIC_SCGO | ((opcode_index & 0x07) << 4);
350
351 /* Issue atomic preop cycle if needed */
Simon Glassba457562015-03-26 09:29:26 -0600352 if (ich_readw(ctlr, ctlr->preop))
Simon Glass18530302013-03-19 04:58:56 +0000353 control |= SPIC_ACS;
354
355 if (!trans->bytesout && !trans->bytesin) {
356 /* SPI addresses are 24 bit only */
Simon Glassba457562015-03-26 09:29:26 -0600357 if (with_address) {
358 ich_writel(ctlr, trans->offset & 0x00FFFFFF,
359 ctlr->addr);
360 }
Simon Glass18530302013-03-19 04:58:56 +0000361 /*
362 * This is a 'no data' command (like Write Enable), its
363 * bitesout size was 1, decremented to zero while executing
364 * spi_setup_opcode() above. Tell the chip to send the
365 * command.
366 */
Simon Glassba457562015-03-26 09:29:26 -0600367 ich_writew(ctlr, control, ctlr->control);
Simon Glass18530302013-03-19 04:58:56 +0000368
369 /* wait for the result */
Simon Glassba457562015-03-26 09:29:26 -0600370 status = ich_status_poll(ctlr, SPIS_CDS | SPIS_FCERR, 1);
371 if (status < 0)
372 return status;
Simon Glass18530302013-03-19 04:58:56 +0000373
374 if (status & SPIS_FCERR) {
375 debug("ICH SPI: Command transaction error\n");
Simon Glassba457562015-03-26 09:29:26 -0600376 return -EIO;
Simon Glass18530302013-03-19 04:58:56 +0000377 }
378
379 return 0;
380 }
381
Simon Glass18530302013-03-19 04:58:56 +0000382 while (trans->bytesout || trans->bytesin) {
383 uint32_t data_length;
Simon Glass18530302013-03-19 04:58:56 +0000384
385 /* SPI addresses are 24 bit only */
Simon Glassba457562015-03-26 09:29:26 -0600386 ich_writel(ctlr, trans->offset & 0x00FFFFFF, ctlr->addr);
Simon Glass18530302013-03-19 04:58:56 +0000387
388 if (trans->bytesout)
Simon Glassba457562015-03-26 09:29:26 -0600389 data_length = min(trans->bytesout, ctlr->databytes);
Simon Glass18530302013-03-19 04:58:56 +0000390 else
Simon Glassba457562015-03-26 09:29:26 -0600391 data_length = min(trans->bytesin, ctlr->databytes);
Simon Glass18530302013-03-19 04:58:56 +0000392
393 /* Program data into FDATA0 to N */
394 if (trans->bytesout) {
Simon Glassba457562015-03-26 09:29:26 -0600395 write_reg(ctlr, trans->out, ctlr->data, data_length);
Bernhard Messerklinger0709ddb2019-08-02 08:38:34 +0200396 trans->bytesout -= data_length;
Simon Glass18530302013-03-19 04:58:56 +0000397 }
398
399 /* Add proper control fields' values */
Simon Glassba457562015-03-26 09:29:26 -0600400 control &= ~((ctlr->databytes - 1) << 8);
Simon Glass18530302013-03-19 04:58:56 +0000401 control |= SPIC_DS;
402 control |= (data_length - 1) << 8;
403
404 /* write it */
Simon Glassba457562015-03-26 09:29:26 -0600405 ich_writew(ctlr, control, ctlr->control);
Simon Glass18530302013-03-19 04:58:56 +0000406
Bin Meng9eb43392016-02-01 01:40:36 -0800407 /* Wait for Cycle Done Status or Flash Cycle Error */
Simon Glassba457562015-03-26 09:29:26 -0600408 status = ich_status_poll(ctlr, SPIS_CDS | SPIS_FCERR, 1);
409 if (status < 0)
410 return status;
Simon Glass18530302013-03-19 04:58:56 +0000411
412 if (status & SPIS_FCERR) {
Simon Glass5d4a7572015-06-07 08:50:33 -0600413 debug("ICH SPI: Data transaction error %x\n", status);
Simon Glassba457562015-03-26 09:29:26 -0600414 return -EIO;
Simon Glass18530302013-03-19 04:58:56 +0000415 }
416
417 if (trans->bytesin) {
Simon Glassba457562015-03-26 09:29:26 -0600418 read_reg(ctlr, ctlr->data, trans->in, data_length);
Bernhard Messerklinger0709ddb2019-08-02 08:38:34 +0200419 trans->bytesin -= data_length;
Simon Glass18530302013-03-19 04:58:56 +0000420 }
421 }
422
423 /* Clear atomic preop now that xfer is done */
Bin Mengd2ca80c2017-08-26 19:22:59 -0700424 if (!lock)
425 ich_writew(ctlr, 0, ctlr->preop);
Simon Glass18530302013-03-19 04:58:56 +0000426
427 return 0;
428}
429
Simon Glass1facebd2019-12-06 21:42:46 -0700430/*
431 * Ensure read/write xfer len is not greater than SPIBAR_FDATA_FIFO_SIZE and
432 * that the operation does not cross page boundary.
433 */
434static uint get_xfer_len(u32 offset, int len, int page_size)
435{
436 uint xfer_len = min(len, SPIBAR_FDATA_FIFO_SIZE);
437 uint bytes_left = ALIGN(offset, page_size) - offset;
438
439 if (bytes_left)
440 xfer_len = min(xfer_len, bytes_left);
441
442 return xfer_len;
443}
444
445/* Fill FDATAn FIFO in preparation for a write transaction */
446static void fill_xfer_fifo(struct fast_spi_regs *regs, const void *data,
447 uint len)
448{
449 memcpy(regs->fdata, data, len);
450}
451
452/* Drain FDATAn FIFO after a read transaction populates data */
453static void drain_xfer_fifo(struct fast_spi_regs *regs, void *dest, uint len)
454{
455 memcpy(dest, regs->fdata, len);
456}
457
458/* Fire up a transfer using the hardware sequencer */
459static void start_hwseq_xfer(struct fast_spi_regs *regs, uint hsfsts_cycle,
460 uint offset, uint len)
461{
462 /* Make sure all W1C status bits get cleared */
463 u32 hsfsts;
464
465 hsfsts = readl(&regs->hsfsts_ctl);
466 hsfsts &= ~(HSFSTS_FCYCLE_MASK | HSFSTS_FDBC_MASK);
467 hsfsts |= HSFSTS_AEL | HSFSTS_FCERR | HSFSTS_FDONE;
468
469 /* Set up transaction parameters */
470 hsfsts |= hsfsts_cycle << HSFSTS_FCYCLE_SHIFT;
471 hsfsts |= ((len - 1) << HSFSTS_FDBC_SHIFT) & HSFSTS_FDBC_MASK;
472 hsfsts |= HSFSTS_FGO;
473
474 writel(offset, &regs->faddr);
475 writel(hsfsts, &regs->hsfsts_ctl);
476}
477
478static int wait_for_hwseq_xfer(struct fast_spi_regs *regs, uint offset)
479{
480 ulong start;
481 u32 hsfsts;
482
483 start = get_timer(0);
484 do {
485 hsfsts = readl(&regs->hsfsts_ctl);
486 if (hsfsts & HSFSTS_FCERR) {
487 debug("SPI transaction error at offset %x HSFSTS = %08x\n",
488 offset, hsfsts);
489 return -EIO;
490 }
491 if (hsfsts & HSFSTS_AEL)
492 return -EPERM;
493
494 if (hsfsts & HSFSTS_FDONE)
495 return 0;
496 } while (get_timer(start) < SPIBAR_HWSEQ_XFER_TIMEOUT_MS);
497
498 debug("SPI transaction timeout at offset %x HSFSTS = %08x, timer %d\n",
499 offset, hsfsts, (uint)get_timer(start));
500
501 return -ETIMEDOUT;
502}
503
504/**
505 * exec_sync_hwseq_xfer() - Execute flash transfer by hardware sequencing
506 *
507 * This waits until complete or timeout
508 *
509 * @regs: SPI registers
510 * @hsfsts_cycle: Cycle type (enum hsfsts_cycle_t)
511 * @offset: Offset to access
512 * @len: Number of bytes to transfer (can be 0)
513 * @return 0 if OK, -EIO on flash-cycle error (FCERR), -EPERM on access error
514 * (AEL), -ETIMEDOUT on timeout
515 */
516static int exec_sync_hwseq_xfer(struct fast_spi_regs *regs, uint hsfsts_cycle,
517 uint offset, uint len)
518{
519 start_hwseq_xfer(regs, hsfsts_cycle, offset, len);
520
521 return wait_for_hwseq_xfer(regs, offset);
522}
523
524static int ich_spi_exec_op_hwseq(struct spi_slave *slave,
525 const struct spi_mem_op *op)
526{
527 struct spi_flash *flash = dev_get_uclass_priv(slave->dev);
528 struct udevice *bus = dev_get_parent(slave->dev);
529 struct ich_spi_priv *priv = dev_get_priv(bus);
530 struct fast_spi_regs *regs = priv->base;
531 uint page_size;
532 uint offset;
533 int cycle;
534 uint len;
535 bool out;
536 int ret;
537 u8 *buf;
538
539 offset = op->addr.val;
540 len = op->data.nbytes;
541
542 switch (op->cmd.opcode) {
543 case SPINOR_OP_RDID:
544 cycle = HSFSTS_CYCLE_RDID;
545 break;
546 case SPINOR_OP_READ_FAST:
547 cycle = HSFSTS_CYCLE_READ;
548 break;
549 case SPINOR_OP_PP:
550 cycle = HSFSTS_CYCLE_WRITE;
551 break;
552 case SPINOR_OP_WREN:
553 /* Nothing needs to be done */
554 return 0;
555 case SPINOR_OP_WRSR:
556 cycle = HSFSTS_CYCLE_WR_STATUS;
557 break;
558 case SPINOR_OP_RDSR:
559 cycle = HSFSTS_CYCLE_RD_STATUS;
560 break;
561 case SPINOR_OP_WRDI:
562 return 0; /* ignore */
563 case SPINOR_OP_BE_4K:
564 cycle = HSFSTS_CYCLE_4K_ERASE;
565 while (len) {
566 uint xfer_len = 0x1000;
567
568 ret = exec_sync_hwseq_xfer(regs, cycle, offset, 0);
569 if (ret)
570 return ret;
571 offset += xfer_len;
572 len -= xfer_len;
573 }
574 return 0;
575 default:
576 debug("Unknown cycle %x\n", op->cmd.opcode);
577 return -EINVAL;
578 };
579
580 out = op->data.dir == SPI_MEM_DATA_OUT;
581 buf = out ? (u8 *)op->data.buf.out : op->data.buf.in;
582 page_size = flash->page_size ? : 256;
583
584 while (len) {
585 uint xfer_len = get_xfer_len(offset, len, page_size);
586
587 if (out)
588 fill_xfer_fifo(regs, buf, xfer_len);
589
590 ret = exec_sync_hwseq_xfer(regs, cycle, offset, xfer_len);
591 if (ret)
592 return ret;
593
594 if (!out)
595 drain_xfer_fifo(regs, buf, xfer_len);
596
597 offset += xfer_len;
598 buf += xfer_len;
599 len -= xfer_len;
600 }
601
602 return 0;
603}
604
605static int ich_spi_exec_op(struct spi_slave *slave, const struct spi_mem_op *op)
606{
607 struct udevice *bus = dev_get_parent(slave->dev);
608 struct ich_spi_platdata *plat = dev_get_platdata(bus);
609 int ret;
610
611 bootstage_start(BOOTSTAGE_ID_ACCUM_SPI, "fast_spi");
612 if (plat->hwseq)
613 ret = ich_spi_exec_op_hwseq(slave, op);
614 else
615 ret = ich_spi_exec_op_swseq(slave, op);
616 bootstage_accum(BOOTSTAGE_ID_ACCUM_SPI);
617
618 return ret;
619}
620
Simon Glass92842142019-12-06 21:42:47 -0700621static int ich_get_mmap_bus(struct udevice *bus, ulong *map_basep,
622 uint *map_sizep, uint *offsetp)
623{
624 pci_dev_t spi_bdf;
625
626#if !CONFIG_IS_ENABLED(OF_PLATDATA)
627 struct pci_child_platdata *pplat = dev_get_parent_platdata(bus);
628
629 spi_bdf = pplat->devfn;
630#else
631 struct ich_spi_platdata *plat = dev_get_platdata(bus);
632
633 /*
634 * We cannot rely on plat->bdf being set up yet since this method can
635 * be called before the device is probed. Use the of-platdata directly
636 * instead.
637 */
638 spi_bdf = pci_ofplat_get_devfn(plat->dtplat.reg[0]);
639#endif
640
641 return fast_spi_get_bios_mmap(spi_bdf, map_basep, map_sizep, offsetp);
642}
643
644static int ich_get_mmap(struct udevice *dev, ulong *map_basep, uint *map_sizep,
645 uint *offsetp)
646{
647 struct udevice *bus = dev_get_parent(dev);
648
649 return ich_get_mmap_bus(bus, map_basep, map_sizep, offsetp);
650}
651
Bernhard Messerklinger0709ddb2019-08-02 08:38:34 +0200652static int ich_spi_adjust_size(struct spi_slave *slave, struct spi_mem_op *op)
653{
654 unsigned int page_offset;
655 int addr = op->addr.val;
656 unsigned int byte_count = op->data.nbytes;
657
658 if (hweight32(ICH_BOUNDARY) == 1) {
659 page_offset = addr & (ICH_BOUNDARY - 1);
660 } else {
661 u64 aux = addr;
662
663 page_offset = do_div(aux, ICH_BOUNDARY);
664 }
665
Simon Glass43c145b2019-12-06 21:42:44 -0700666 if (op->data.dir == SPI_MEM_DATA_IN) {
667 if (slave->max_read_size) {
668 op->data.nbytes = min(ICH_BOUNDARY - page_offset,
669 slave->max_read_size);
670 }
Bernhard Messerklinger0709ddb2019-08-02 08:38:34 +0200671 } else if (slave->max_write_size) {
672 op->data.nbytes = min(ICH_BOUNDARY - page_offset,
673 slave->max_write_size);
674 }
675
676 op->data.nbytes = min(op->data.nbytes, byte_count);
677
678 return 0;
679}
680
Simon Glass17e75442019-12-06 21:42:38 -0700681static int ich_protect_lockdown(struct udevice *dev)
682{
683 struct ich_spi_platdata *plat = dev_get_platdata(dev);
684 struct ich_spi_priv *priv = dev_get_priv(dev);
685 int ret = -ENOSYS;
686
687 /* Disable the BIOS write protect so write commands are allowed */
688 if (priv->pch)
689 ret = pch_set_spi_protect(priv->pch, false);
690 if (ret == -ENOSYS) {
691 u8 bios_cntl;
692
693 bios_cntl = ich_readb(priv, priv->bcr);
694 bios_cntl &= ~BIT(5); /* clear Enable InSMM_STS (EISS) */
695 bios_cntl |= 1; /* Write Protect Disable (WPD) */
696 ich_writeb(priv, bios_cntl, priv->bcr);
697 } else if (ret) {
698 debug("%s: Failed to disable write-protect: err=%d\n",
699 __func__, ret);
700 return ret;
701 }
702
703 /* Lock down SPI controller settings if required */
704 if (plat->lockdown) {
705 ich_spi_config_opcode(dev);
706 spi_lock_down(plat, priv->base);
707 }
708
709 return 0;
710}
711
Simon Glass674990c2019-12-06 21:42:37 -0700712static int ich_init_controller(struct udevice *dev,
713 struct ich_spi_platdata *plat,
714 struct ich_spi_priv *ctlr)
715{
Simon Glass636555a2019-12-06 21:42:48 -0700716 if (spl_phase() == PHASE_TPL) {
717 struct ich_spi_platdata *plat = dev_get_platdata(dev);
718 int ret;
719
720 ret = fast_spi_early_init(plat->bdf, plat->mmio_base);
721 if (ret)
722 return ret;
723 }
724
Simon Glass75214b02019-12-06 21:42:42 -0700725 ctlr->base = (void *)plat->mmio_base;
Simon Glass674990c2019-12-06 21:42:37 -0700726 if (plat->ich_version == ICHV_7) {
Simon Glass75214b02019-12-06 21:42:42 -0700727 struct ich7_spi_regs *ich7_spi = ctlr->base;
Simon Glass674990c2019-12-06 21:42:37 -0700728
729 ctlr->opmenu = offsetof(struct ich7_spi_regs, opmenu);
730 ctlr->menubytes = sizeof(ich7_spi->opmenu);
731 ctlr->optype = offsetof(struct ich7_spi_regs, optype);
732 ctlr->addr = offsetof(struct ich7_spi_regs, spia);
733 ctlr->data = offsetof(struct ich7_spi_regs, spid);
734 ctlr->databytes = sizeof(ich7_spi->spid);
735 ctlr->status = offsetof(struct ich7_spi_regs, spis);
736 ctlr->control = offsetof(struct ich7_spi_regs, spic);
737 ctlr->bbar = offsetof(struct ich7_spi_regs, bbar);
738 ctlr->preop = offsetof(struct ich7_spi_regs, preop);
Simon Glass674990c2019-12-06 21:42:37 -0700739 } else if (plat->ich_version == ICHV_9) {
Simon Glass75214b02019-12-06 21:42:42 -0700740 struct ich9_spi_regs *ich9_spi = ctlr->base;
Simon Glass674990c2019-12-06 21:42:37 -0700741
742 ctlr->opmenu = offsetof(struct ich9_spi_regs, opmenu);
743 ctlr->menubytes = sizeof(ich9_spi->opmenu);
744 ctlr->optype = offsetof(struct ich9_spi_regs, optype);
745 ctlr->addr = offsetof(struct ich9_spi_regs, faddr);
746 ctlr->data = offsetof(struct ich9_spi_regs, fdata);
747 ctlr->databytes = sizeof(ich9_spi->fdata);
748 ctlr->status = offsetof(struct ich9_spi_regs, ssfs);
749 ctlr->control = offsetof(struct ich9_spi_regs, ssfc);
750 ctlr->speed = ctlr->control + 2;
751 ctlr->bbar = offsetof(struct ich9_spi_regs, bbar);
752 ctlr->preop = offsetof(struct ich9_spi_regs, preop);
753 ctlr->bcr = offsetof(struct ich9_spi_regs, bcr);
754 ctlr->pr = &ich9_spi->pr[0];
Simon Glass3937df32019-12-06 21:42:49 -0700755 } else if (plat->ich_version == ICHV_APL) {
Simon Glass674990c2019-12-06 21:42:37 -0700756 } else {
757 debug("ICH SPI: Unrecognised ICH version %d\n",
758 plat->ich_version);
759 return -EINVAL;
760 }
761
762 /* Work out the maximum speed we can support */
763 ctlr->max_speed = 20000000;
764 if (plat->ich_version == ICHV_9 && ich9_can_do_33mhz(dev))
765 ctlr->max_speed = 33000000;
Simon Glass75214b02019-12-06 21:42:42 -0700766 debug("ICH SPI: Version ID %d detected at %lx, speed %ld\n",
767 plat->ich_version, plat->mmio_base, ctlr->max_speed);
Simon Glass674990c2019-12-06 21:42:37 -0700768
769 ich_set_bbar(ctlr, 0);
770
771 return 0;
772}
773
Simon Glass636555a2019-12-06 21:42:48 -0700774static int ich_cache_bios_region(struct udevice *dev)
775{
776 ulong map_base;
777 uint map_size;
778 uint offset;
779 ulong base;
780 int ret;
781
782 ret = ich_get_mmap_bus(dev, &map_base, &map_size, &offset);
783 if (ret)
784 return ret;
785
786 /* Don't use WRBACK since we are not supposed to write to SPI flash */
787 base = SZ_4G - map_size;
788 mtrr_set_next_var(MTRR_TYPE_WRPROT, base, map_size);
789 log_debug("BIOS cache base=%lx, size=%x\n", base, (uint)map_size);
790
791 return 0;
792}
793
Simon Glassf2b85ab2016-01-18 20:19:21 -0700794static int ich_spi_probe(struct udevice *dev)
Simon Glassba457562015-03-26 09:29:26 -0600795{
Simon Glassf2b85ab2016-01-18 20:19:21 -0700796 struct ich_spi_platdata *plat = dev_get_platdata(dev);
797 struct ich_spi_priv *priv = dev_get_priv(dev);
Simon Glassba457562015-03-26 09:29:26 -0600798 int ret;
799
Simon Glassf2b85ab2016-01-18 20:19:21 -0700800 ret = ich_init_controller(dev, plat, priv);
Simon Glassba457562015-03-26 09:29:26 -0600801 if (ret)
802 return ret;
Simon Glassba457562015-03-26 09:29:26 -0600803
Simon Glass636555a2019-12-06 21:42:48 -0700804 if (spl_phase() == PHASE_TPL) {
805 /* Cache the BIOS to speed things up */
806 ret = ich_cache_bios_region(dev);
807 if (ret)
808 return ret;
809 } else {
810 ret = ich_protect_lockdown(dev);
811 if (ret)
812 return ret;
813 }
Simon Glassba457562015-03-26 09:29:26 -0600814 priv->cur_speed = priv->max_speed;
815
816 return 0;
817}
818
Stefan Roese4759dff2017-04-24 09:48:04 +0200819static int ich_spi_remove(struct udevice *bus)
820{
Stefan Roese4759dff2017-04-24 09:48:04 +0200821 /*
822 * Configure SPI controller so that the Linux MTD driver can fully
823 * access the SPI NOR chip
824 */
Bin Mengb42711f2017-08-15 22:38:30 -0700825 ich_spi_config_opcode(bus);
Stefan Roese4759dff2017-04-24 09:48:04 +0200826
827 return 0;
828}
829
Simon Glassba457562015-03-26 09:29:26 -0600830static int ich_spi_set_speed(struct udevice *bus, uint speed)
831{
832 struct ich_spi_priv *priv = dev_get_priv(bus);
833
834 priv->cur_speed = speed;
835
836 return 0;
837}
838
839static int ich_spi_set_mode(struct udevice *bus, uint mode)
840{
841 debug("%s: mode=%d\n", __func__, mode);
842
843 return 0;
844}
845
846static int ich_spi_child_pre_probe(struct udevice *dev)
847{
848 struct udevice *bus = dev_get_parent(dev);
849 struct ich_spi_platdata *plat = dev_get_platdata(bus);
850 struct ich_spi_priv *priv = dev_get_priv(bus);
Simon Glassbcbe3d12015-09-28 23:32:01 -0600851 struct spi_slave *slave = dev_get_parent_priv(dev);
Simon Glassba457562015-03-26 09:29:26 -0600852
853 /*
854 * Yes this controller can only write a small number of bytes at
Simon Glass1facebd2019-12-06 21:42:46 -0700855 * once! The limit is typically 64 bytes. For hardware sequencing a
856 * a loop is used to get around this.
Simon Glassba457562015-03-26 09:29:26 -0600857 */
Simon Glass1facebd2019-12-06 21:42:46 -0700858 if (!plat->hwseq)
859 slave->max_write_size = priv->databytes;
Simon Glassba457562015-03-26 09:29:26 -0600860 /*
861 * ICH 7 SPI controller only supports array read command
862 * and byte program command for SST flash
863 */
Jagan Teki08fe9c22016-08-08 17:12:12 +0530864 if (plat->ich_version == ICHV_7)
865 slave->mode = SPI_RX_SLOW | SPI_TX_BYTE;
Simon Glassba457562015-03-26 09:29:26 -0600866
867 return 0;
868}
869
Bin Meng1f9eb592016-02-01 01:40:37 -0800870static int ich_spi_ofdata_to_platdata(struct udevice *dev)
871{
872 struct ich_spi_platdata *plat = dev_get_platdata(dev);
Simon Glass0d3ee3e2019-12-06 21:42:45 -0700873
874#if !CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glass17e75442019-12-06 21:42:38 -0700875 struct ich_spi_priv *priv = dev_get_priv(dev);
Bin Meng1f9eb592016-02-01 01:40:37 -0800876
Simon Glass17e75442019-12-06 21:42:38 -0700877 /* Find a PCH if there is one */
878 uclass_first_device(UCLASS_PCH, &priv->pch);
879 if (!priv->pch)
880 priv->pch = dev_get_parent(dev);
881
Simon Glass702b28a2019-12-06 21:42:39 -0700882 plat->ich_version = dev_get_driver_data(dev);
883 plat->lockdown = dev_read_bool(dev, "intel,spi-lock-down");
Simon Glass3937df32019-12-06 21:42:49 -0700884 if (plat->ich_version == ICHV_APL) {
885 plat->mmio_base = dm_pci_read_bar32(dev, 0);
886 } else {
887 /* SBASE is similar */
888 pch_get_spi_base(priv->pch, &plat->mmio_base);
889 }
Simon Glass1facebd2019-12-06 21:42:46 -0700890 /*
891 * Use an int so that the property is present in of-platdata even
892 * when false.
893 */
894 plat->hwseq = dev_read_u32_default(dev, "intel,hardware-seq", 0);
Simon Glass0d3ee3e2019-12-06 21:42:45 -0700895#else
896 plat->ich_version = ICHV_APL;
897 plat->mmio_base = plat->dtplat.early_regs[0];
898 plat->bdf = pci_ofplat_get_devfn(plat->dtplat.reg[0]);
Simon Glass1facebd2019-12-06 21:42:46 -0700899 plat->hwseq = plat->dtplat.intel_hardware_seq;
Simon Glass0d3ee3e2019-12-06 21:42:45 -0700900#endif
901 debug("%s: mmio_base=%lx\n", __func__, plat->mmio_base);
Simon Glass75214b02019-12-06 21:42:42 -0700902
Simon Glass702b28a2019-12-06 21:42:39 -0700903 return 0;
Bin Meng1f9eb592016-02-01 01:40:37 -0800904}
905
Bernhard Messerklinger0709ddb2019-08-02 08:38:34 +0200906static const struct spi_controller_mem_ops ich_controller_mem_ops = {
907 .adjust_op_size = ich_spi_adjust_size,
908 .supports_op = NULL,
909 .exec_op = ich_spi_exec_op,
910};
911
Simon Glassba457562015-03-26 09:29:26 -0600912static const struct dm_spi_ops ich_spi_ops = {
Simon Glassccdabd82019-12-06 21:42:35 -0700913 /* xfer is not supported */
Simon Glassba457562015-03-26 09:29:26 -0600914 .set_speed = ich_spi_set_speed,
915 .set_mode = ich_spi_set_mode,
Bernhard Messerklinger0709ddb2019-08-02 08:38:34 +0200916 .mem_ops = &ich_controller_mem_ops,
Simon Glass92842142019-12-06 21:42:47 -0700917 .get_mmap = ich_get_mmap,
Simon Glassba457562015-03-26 09:29:26 -0600918 /*
919 * cs_info is not needed, since we require all chip selects to be
920 * in the device tree explicitly
921 */
922};
923
924static const struct udevice_id ich_spi_ids[] = {
Simon Glass702b28a2019-12-06 21:42:39 -0700925 { .compatible = "intel,ich7-spi", ICHV_7 },
926 { .compatible = "intel,ich9-spi", ICHV_9 },
Simon Glass3937df32019-12-06 21:42:49 -0700927 { .compatible = "intel,fast-spi", ICHV_APL },
Simon Glassba457562015-03-26 09:29:26 -0600928 { }
929};
930
Simon Glass0d3ee3e2019-12-06 21:42:45 -0700931U_BOOT_DRIVER(intel_fast_spi) = {
932 .name = "intel_fast_spi",
Simon Glassba457562015-03-26 09:29:26 -0600933 .id = UCLASS_SPI,
934 .of_match = ich_spi_ids,
935 .ops = &ich_spi_ops,
Bin Meng1f9eb592016-02-01 01:40:37 -0800936 .ofdata_to_platdata = ich_spi_ofdata_to_platdata,
Simon Glassba457562015-03-26 09:29:26 -0600937 .platdata_auto_alloc_size = sizeof(struct ich_spi_platdata),
938 .priv_auto_alloc_size = sizeof(struct ich_spi_priv),
939 .child_pre_probe = ich_spi_child_pre_probe,
940 .probe = ich_spi_probe,
Stefan Roese4759dff2017-04-24 09:48:04 +0200941 .remove = ich_spi_remove,
942 .flags = DM_FLAG_OS_PREPARE,
Simon Glassba457562015-03-26 09:29:26 -0600943};