1 // SPDX-License-Identifier: GPL-2.0
3 * Designware master SPI core controller driver
5 * Copyright (C) 2014 Stefan Roese <sr@denx.de>
6 * Copyright (C) 2020 Sean Anderson <seanga2@gmail.com>
8 * Very loosely based on the Linux driver:
9 * drivers/spi/spi-dw.c, which is:
10 * Copyright (c) 2009, Intel Corporation.
13 #define LOG_CATEGORY UCLASS_SPI
17 #include <dm/device_compat.h>
26 #include <asm-generic/gpio.h>
27 #include <linux/bitfield.h>
28 #include <linux/bitops.h>
29 #include <linux/compat.h>
30 #include <linux/iopoll.h>
31 #include <linux/sizes.h>
33 /* Register offsets */
34 #define DW_SPI_CTRLR0 0x00
35 #define DW_SPI_CTRLR1 0x04
36 #define DW_SPI_SSIENR 0x08
37 #define DW_SPI_MWCR 0x0c
38 #define DW_SPI_SER 0x10
39 #define DW_SPI_BAUDR 0x14
40 #define DW_SPI_TXFTLR 0x18
41 #define DW_SPI_RXFTLR 0x1c
42 #define DW_SPI_TXFLR 0x20
43 #define DW_SPI_RXFLR 0x24
44 #define DW_SPI_SR 0x28
45 #define DW_SPI_IMR 0x2c
46 #define DW_SPI_ISR 0x30
47 #define DW_SPI_RISR 0x34
48 #define DW_SPI_TXOICR 0x38
49 #define DW_SPI_RXOICR 0x3c
50 #define DW_SPI_RXUICR 0x40
51 #define DW_SPI_MSTICR 0x44
52 #define DW_SPI_ICR 0x48
53 #define DW_SPI_DMACR 0x4c
54 #define DW_SPI_DMATDLR 0x50
55 #define DW_SPI_DMARDLR 0x54
56 #define DW_SPI_IDR 0x58
57 #define DW_SPI_VERSION 0x5c
58 #define DW_SPI_DR 0x60
60 /* Bit fields in CTRLR0 */
62 * Only present when SSI_MAX_XFER_SIZE=16. This is the default, and the only
63 * option before version 3.23a.
65 #define CTRLR0_DFS_MASK GENMASK(3, 0)
67 #define CTRLR0_FRF_MASK GENMASK(5, 4)
68 #define CTRLR0_FRF_SPI 0x0
69 #define CTRLR0_FRF_SSP 0x1
70 #define CTRLR0_FRF_MICROWIRE 0x2
71 #define CTRLR0_FRF_RESV 0x3
73 #define CTRLR0_MODE_MASK GENMASK(7, 6)
74 #define CTRLR0_MODE_SCPH 0x1
75 #define CTRLR0_MODE_SCPOL 0x2
77 #define CTRLR0_TMOD_MASK GENMASK(9, 8)
78 #define CTRLR0_TMOD_TR 0x0 /* xmit & recv */
79 #define CTRLR0_TMOD_TO 0x1 /* xmit only */
80 #define CTRLR0_TMOD_RO 0x2 /* recv only */
81 #define CTRLR0_TMOD_EPROMREAD 0x3 /* eeprom read mode */
83 #define CTRLR0_SLVOE_OFFSET 10
84 #define CTRLR0_SRL_OFFSET 11
85 #define CTRLR0_CFS_MASK GENMASK(15, 12)
87 /* Only present when SSI_MAX_XFER_SIZE=32 */
88 #define CTRLR0_DFS_32_MASK GENMASK(20, 16)
90 /* The next field is only present on versions after 4.00a */
91 #define CTRLR0_SPI_FRF_MASK GENMASK(22, 21)
92 #define CTRLR0_SPI_FRF_BYTE 0x0
93 #define CTRLR0_SPI_FRF_DUAL 0x1
94 #define CTRLR0_SPI_FRF_QUAD 0x2
96 /* Bit fields in CTRLR0 based on DWC_ssi_databook.pdf v1.01a */
97 #define DWC_SSI_CTRLR0_DFS_MASK GENMASK(4, 0)
98 #define DWC_SSI_CTRLR0_FRF_MASK GENMASK(7, 6)
99 #define DWC_SSI_CTRLR0_MODE_MASK GENMASK(9, 8)
100 #define DWC_SSI_CTRLR0_TMOD_MASK GENMASK(11, 10)
101 #define DWC_SSI_CTRLR0_SRL_OFFSET 13
102 #define DWC_SSI_CTRLR0_SPI_FRF_MASK GENMASK(23, 22)
104 /* Bit fields in SR, 7 bits */
105 #define SR_MASK GENMASK(6, 0) /* cover 7 bits */
106 #define SR_BUSY BIT(0)
107 #define SR_TF_NOT_FULL BIT(1)
108 #define SR_TF_EMPT BIT(2)
109 #define SR_RF_NOT_EMPT BIT(3)
110 #define SR_RF_FULL BIT(4)
111 #define SR_TX_ERR BIT(5)
112 #define SR_DCOL BIT(6)
114 #define RX_TIMEOUT 1000 /* timeout in ms */
117 s32 frequency; /* Default clock frequency, -1 for none */
123 struct reset_ctl_bulk resets;
124 struct gpio_desc cs_gpio; /* External chip-select gpio */
126 u32 (*update_cr0)(struct dw_spi_priv *priv);
129 unsigned long bus_clk_rate;
130 unsigned int freq; /* Default frequency */
137 u32 fifo_len; /* depth of the FIFO buffer */
138 u32 max_xfer; /* Maximum transfer size (in bits) */
142 u8 cs; /* chip select pin */
143 u8 tmode; /* TR/TO/RO/EEPROM */
144 u8 type; /* SPI/SSP/MicroWire */
147 static inline u32 dw_read(struct dw_spi_priv *priv, u32 offset)
149 return __raw_readl(priv->regs + offset);
152 static inline void dw_write(struct dw_spi_priv *priv, u32 offset, u32 val)
154 __raw_writel(val, priv->regs + offset);
157 static u32 dw_spi_dw16_update_cr0(struct dw_spi_priv *priv)
159 return FIELD_PREP(CTRLR0_DFS_MASK, priv->bits_per_word - 1)
160 | FIELD_PREP(CTRLR0_FRF_MASK, priv->type)
161 | FIELD_PREP(CTRLR0_MODE_MASK, priv->mode)
162 | FIELD_PREP(CTRLR0_TMOD_MASK, priv->tmode);
165 static u32 dw_spi_dw32_update_cr0(struct dw_spi_priv *priv)
167 return FIELD_PREP(CTRLR0_DFS_32_MASK, priv->bits_per_word - 1)
168 | FIELD_PREP(CTRLR0_FRF_MASK, priv->type)
169 | FIELD_PREP(CTRLR0_MODE_MASK, priv->mode)
170 | FIELD_PREP(CTRLR0_TMOD_MASK, priv->tmode);
173 static u32 dw_spi_dwc_update_cr0(struct dw_spi_priv *priv)
175 return FIELD_PREP(DWC_SSI_CTRLR0_DFS_MASK, priv->bits_per_word - 1)
176 | FIELD_PREP(DWC_SSI_CTRLR0_FRF_MASK, priv->type)
177 | FIELD_PREP(DWC_SSI_CTRLR0_MODE_MASK, priv->mode)
178 | FIELD_PREP(DWC_SSI_CTRLR0_TMOD_MASK, priv->tmode);
181 static int dw_spi_apb_init(struct udevice *bus, struct dw_spi_priv *priv)
183 /* If we read zeros from DFS, then we need to use DFS_32 instead */
184 dw_write(priv, DW_SPI_SSIENR, 0);
185 dw_write(priv, DW_SPI_CTRLR0, 0xffffffff);
186 if (FIELD_GET(CTRLR0_DFS_MASK, dw_read(priv, DW_SPI_CTRLR0))) {
188 priv->update_cr0 = dw_spi_dw16_update_cr0;
191 priv->update_cr0 = dw_spi_dw32_update_cr0;
197 static int dw_spi_apb_k210_init(struct udevice *bus, struct dw_spi_priv *priv)
200 * The Canaan Kendryte K210 SoC DW apb_ssi v4 spi controller is
201 * documented to have a 32 word deep TX and RX FIFO, which
202 * spi_hw_init() detects. However, when the RX FIFO is filled up to
203 * 32 entries (RXFLR = 32), an RX FIFO overrun error occurs. Avoid
204 * this problem by force setting fifo_len to 31.
208 return dw_spi_apb_init(bus, priv);
211 static int dw_spi_dwc_init(struct udevice *bus, struct dw_spi_priv *priv)
214 priv->update_cr0 = dw_spi_dwc_update_cr0;
218 static int request_gpio_cs(struct udevice *bus)
220 #if CONFIG_IS_ENABLED(DM_GPIO) && !defined(CONFIG_SPL_BUILD)
221 struct dw_spi_priv *priv = dev_get_priv(bus);
224 /* External chip select gpio line is optional */
225 ret = gpio_request_by_name(bus, "cs-gpios", 0, &priv->cs_gpio,
226 GPIOD_IS_OUT | GPIOD_IS_OUT_ACTIVE);
231 dev_err(bus, "Couldn't request gpio! (error %d)\n", ret);
235 if (dm_gpio_is_valid(&priv->cs_gpio)) {
236 dm_gpio_set_dir_flags(&priv->cs_gpio,
237 GPIOD_IS_OUT | GPIOD_IS_OUT_ACTIVE);
240 dev_dbg(bus, "Using external gpio for CS management\n");
245 static int dw_spi_of_to_plat(struct udevice *bus)
247 struct dw_spi_plat *plat = dev_get_plat(bus);
249 plat->regs = dev_read_addr_ptr(bus);
253 /* Use 500KHz as a suitable default */
254 plat->frequency = dev_read_u32_default(bus, "spi-max-frequency",
257 if (dev_read_bool(bus, "spi-slave"))
260 dev_info(bus, "max-frequency=%d\n", plat->frequency);
262 return request_gpio_cs(bus);
265 /* Restart the controller, disable all interrupts, clean rx fifo */
266 static void spi_hw_init(struct udevice *bus, struct dw_spi_priv *priv)
268 dw_write(priv, DW_SPI_SSIENR, 0);
269 dw_write(priv, DW_SPI_IMR, 0);
270 dw_write(priv, DW_SPI_SSIENR, 1);
273 * Try to detect the FIFO depth if not set by interface driver,
274 * the depth could be from 2 to 256 from HW spec
276 if (!priv->fifo_len) {
279 for (fifo = 1; fifo < 256; fifo++) {
280 dw_write(priv, DW_SPI_TXFTLR, fifo);
281 if (fifo != dw_read(priv, DW_SPI_TXFTLR))
285 priv->fifo_len = (fifo == 1) ? 0 : fifo;
286 dw_write(priv, DW_SPI_TXFTLR, 0);
288 dev_dbg(bus, "fifo_len=%d\n", priv->fifo_len);
292 * We define dw_spi_get_clk function as 'weak' as some targets
293 * (like SOCFPGA_GEN5 and SOCFPGA_ARRIA10) don't use standard clock API
294 * and implement dw_spi_get_clk their own way in their clock manager.
296 __weak int dw_spi_get_clk(struct udevice *bus, ulong *rate)
298 struct dw_spi_priv *priv = dev_get_priv(bus);
301 ret = clk_get_by_index(bus, 0, &priv->clk);
305 ret = clk_enable(&priv->clk);
306 if (ret && ret != -ENOSYS && ret != -ENOTSUPP)
309 *rate = clk_get_rate(&priv->clk);
313 dev_dbg(bus, "Got clock via device tree: %lu Hz\n", *rate);
318 clk_disable(&priv->clk);
319 clk_free(&priv->clk);
324 static int dw_spi_reset(struct udevice *bus)
327 struct dw_spi_priv *priv = dev_get_priv(bus);
329 ret = reset_get_bulk(bus, &priv->resets);
332 * Return 0 if error due to !CONFIG_DM_RESET and reset
333 * DT property is not present.
335 if (ret == -ENOENT || ret == -ENOTSUPP)
338 dev_warn(bus, "Couldn't find/assert reset device (error %d)\n",
343 ret = reset_deassert_bulk(&priv->resets);
345 reset_release_bulk(&priv->resets);
346 dev_err(bus, "Failed to de-assert reset for SPI (error %d)\n",
354 typedef int (*dw_spi_init_t)(struct udevice *bus, struct dw_spi_priv *priv);
356 static int dw_spi_probe(struct udevice *bus)
358 dw_spi_init_t init = (dw_spi_init_t)dev_get_driver_data(bus);
359 struct dw_spi_plat *plat = dev_get_plat(bus);
360 struct dw_spi_priv *priv = dev_get_priv(bus);
364 priv->regs = plat->regs;
365 priv->freq = plat->frequency;
367 ret = dw_spi_get_clk(bus, &priv->bus_clk_rate);
371 ret = dw_spi_reset(bus);
377 ret = init(bus, priv);
381 version = dw_read(priv, DW_SPI_VERSION);
382 dev_dbg(bus, "ssi_version_id=%c.%c%c%c ssi_max_xfer_size=%u\n",
383 version >> 24, version >> 16, version >> 8, version,
386 /* Currently only bits_per_word == 8 supported */
387 priv->bits_per_word = 8;
389 priv->tmode = 0; /* Tx & Rx */
392 spi_hw_init(bus, priv);
397 /* Return the max entries we can fill into tx fifo */
398 static inline u32 tx_max(struct dw_spi_priv *priv)
400 u32 tx_left, tx_room, rxtx_gap;
402 tx_left = (priv->tx_end - priv->tx) / (priv->bits_per_word >> 3);
403 tx_room = priv->fifo_len - dw_read(priv, DW_SPI_TXFLR);
406 * Another concern is about the tx/rx mismatch, we
407 * thought about using (priv->fifo_len - rxflr - txflr) as
408 * one maximum value for tx, but it doesn't cover the
409 * data which is out of tx/rx fifo and inside the
410 * shift registers. So a control from sw point of
413 rxtx_gap = ((priv->rx_end - priv->rx) - (priv->tx_end - priv->tx)) /
414 (priv->bits_per_word >> 3);
416 return min3(tx_left, tx_room, (u32)(priv->fifo_len - rxtx_gap));
419 /* Return the max entries we should read out of rx fifo */
420 static inline u32 rx_max(struct dw_spi_priv *priv)
422 u32 rx_left = (priv->rx_end - priv->rx) / (priv->bits_per_word >> 3);
424 return min_t(u32, rx_left, dw_read(priv, DW_SPI_RXFLR));
427 static void dw_writer(struct dw_spi_priv *priv)
429 u32 max = tx_max(priv);
430 u32 txw = 0xFFFFFFFF;
433 /* Set the tx word if the transfer's original "tx" is not null */
434 if (priv->tx_end - priv->len) {
435 if (priv->bits_per_word == 8)
436 txw = *(u8 *)(priv->tx);
438 txw = *(u16 *)(priv->tx);
440 dw_write(priv, DW_SPI_DR, txw);
441 log_content("tx=0x%02x\n", txw);
442 priv->tx += priv->bits_per_word >> 3;
446 static void dw_reader(struct dw_spi_priv *priv)
448 u32 max = rx_max(priv);
452 rxw = dw_read(priv, DW_SPI_DR);
453 log_content("rx=0x%02x\n", rxw);
455 /* Care about rx if the transfer's original "rx" is not null */
456 if (priv->rx_end - priv->len) {
457 if (priv->bits_per_word == 8)
458 *(u8 *)(priv->rx) = rxw;
460 *(u16 *)(priv->rx) = rxw;
462 priv->rx += priv->bits_per_word >> 3;
466 static int poll_transfer(struct dw_spi_priv *priv)
471 } while (priv->rx_end > priv->rx);
477 * We define external_cs_manage function as 'weak' as some targets
478 * (like MSCC Ocelot) don't control the external CS pin using a GPIO
479 * controller. These SoCs use specific registers to control by
480 * software the SPI pins (and especially the CS).
482 __weak void external_cs_manage(struct udevice *dev, bool on)
484 #if CONFIG_IS_ENABLED(DM_GPIO) && !defined(CONFIG_SPL_BUILD)
485 struct dw_spi_priv *priv = dev_get_priv(dev->parent);
487 if (!dm_gpio_is_valid(&priv->cs_gpio))
490 dm_gpio_set_value(&priv->cs_gpio, on ? 1 : 0);
494 static int dw_spi_xfer(struct udevice *dev, unsigned int bitlen,
495 const void *dout, void *din, unsigned long flags)
497 struct udevice *bus = dev->parent;
498 struct dw_spi_priv *priv = dev_get_priv(bus);
506 /* spi core configured to do 8 bit transfers */
508 dev_err(dev, "Non byte aligned SPI transfer.\n");
512 /* Start the transaction if necessary. */
513 if (flags & SPI_XFER_BEGIN)
514 external_cs_manage(dev, false);
517 priv->tmode = CTRLR0_TMOD_TR;
519 priv->tmode = CTRLR0_TMOD_RO;
522 * In transmit only mode (CTRL0_TMOD_TO) input FIFO never gets
523 * any data which breaks our logic in poll_transfer() above.
525 priv->tmode = CTRLR0_TMOD_TR;
527 cr0 = priv->update_cr0(priv);
529 priv->len = bitlen >> 3;
531 priv->tx = (void *)tx;
532 priv->tx_end = priv->tx + priv->len;
534 priv->rx_end = priv->rx + priv->len;
536 /* Disable controller before writing control registers */
537 dw_write(priv, DW_SPI_SSIENR, 0);
539 dev_dbg(dev, "cr0=%08x rx=%p tx=%p len=%d [bytes]\n", cr0, rx, tx,
541 /* Reprogram cr0 only if changed */
542 if (dw_read(priv, DW_SPI_CTRLR0) != cr0)
543 dw_write(priv, DW_SPI_CTRLR0, cr0);
546 * Configure the desired SS (slave select 0...3) in the controller
547 * The DW SPI controller will activate and deactivate this CS
548 * automatically. So no cs_activate() etc is needed in this driver.
550 cs = spi_chip_select(dev);
551 dw_write(priv, DW_SPI_SER, 1 << cs);
553 /* Enable controller after writing control registers */
554 dw_write(priv, DW_SPI_SSIENR, 1);
556 /* Start transfer in a polling loop */
557 ret = poll_transfer(priv);
560 * Wait for current transmit operation to complete.
561 * Otherwise if some data still exists in Tx FIFO it can be
562 * silently flushed, i.e. dropped on disabling of the controller,
563 * which happens when writing 0 to DW_SPI_SSIENR which happens
564 * in the beginning of new transfer.
566 if (readl_poll_timeout(priv->regs + DW_SPI_SR, val,
567 (val & SR_TF_EMPT) && !(val & SR_BUSY),
568 RX_TIMEOUT * 1000)) {
572 /* Stop the transaction if necessary */
573 if (flags & SPI_XFER_END)
574 external_cs_manage(dev, true);
580 * This function is necessary for reading SPI flash with the native CS
581 * c.f. https://lkml.org/lkml/2015/12/23/132
583 static int dw_spi_exec_op(struct spi_slave *slave, const struct spi_mem_op *op)
585 bool read = op->data.dir == SPI_MEM_DATA_IN;
587 struct udevice *bus = slave->dev->parent;
588 struct dw_spi_priv *priv = dev_get_priv(bus);
589 u8 op_len = op->cmd.nbytes + op->addr.nbytes + op->dummy.nbytes;
594 priv->tmode = CTRLR0_TMOD_EPROMREAD;
596 priv->tmode = CTRLR0_TMOD_TO;
598 cr0 = priv->update_cr0(priv);
599 dev_dbg(bus, "cr0=%08x buf=%p len=%u [bytes]\n", cr0, op->data.buf.in,
602 dw_write(priv, DW_SPI_SSIENR, 0);
603 dw_write(priv, DW_SPI_CTRLR0, cr0);
605 dw_write(priv, DW_SPI_CTRLR1, op->data.nbytes - 1);
606 dw_write(priv, DW_SPI_SSIENR, 1);
608 /* From spi_mem_exec_op */
610 op_buf[pos++] = op->cmd.opcode;
611 if (op->addr.nbytes) {
612 for (i = 0; i < op->addr.nbytes; i++)
613 op_buf[pos + i] = op->addr.val >>
614 (8 * (op->addr.nbytes - i - 1));
616 pos += op->addr.nbytes;
618 if (op->dummy.nbytes)
619 memset(op_buf + pos, 0xff, op->dummy.nbytes);
621 external_cs_manage(slave->dev, false);
624 priv->tx_end = priv->tx + op_len;
627 while (priv->tx != priv->tx_end)
631 * XXX: The following are tight loops! Enabling debug messages may cause
632 * them to fail because we are not reading/writing the fifo fast enough.
635 priv->rx = op->data.buf.in;
636 priv->rx_end = priv->rx + op->data.nbytes;
638 dw_write(priv, DW_SPI_SER, 1 << spi_chip_select(slave->dev));
639 while (priv->rx != priv->rx_end)
644 priv->tx = op->data.buf.out;
645 priv->tx_end = priv->tx + op->data.nbytes;
647 /* Fill up the write fifo before starting the transfer */
649 dw_write(priv, DW_SPI_SER, 1 << spi_chip_select(slave->dev));
650 while (priv->tx != priv->tx_end)
653 if (readl_poll_timeout(priv->regs + DW_SPI_SR, val,
654 (val & SR_TF_EMPT) && !(val & SR_BUSY),
655 RX_TIMEOUT * 1000)) {
660 dw_write(priv, DW_SPI_SER, 0);
661 external_cs_manage(slave->dev, true);
663 dev_dbg(bus, "%u bytes xfered\n", op->data.nbytes);
667 /* The size of ctrl1 limits data transfers to 64K */
668 static int dw_spi_adjust_op_size(struct spi_slave *slave, struct spi_mem_op *op)
670 op->data.nbytes = min(op->data.nbytes, (unsigned int)SZ_64K);
675 static const struct spi_controller_mem_ops dw_spi_mem_ops = {
676 .exec_op = dw_spi_exec_op,
677 .adjust_op_size = dw_spi_adjust_op_size,
680 static int dw_spi_set_speed(struct udevice *bus, uint speed)
682 struct dw_spi_plat *plat = dev_get_plat(bus);
683 struct dw_spi_priv *priv = dev_get_priv(bus);
686 if (speed > plat->frequency)
687 speed = plat->frequency;
689 /* Disable controller before writing control registers */
690 dw_write(priv, DW_SPI_SSIENR, 0);
692 /* clk_div doesn't support odd number */
693 clk_div = priv->bus_clk_rate / speed;
694 clk_div = (clk_div + 1) & 0xfffe;
695 dw_write(priv, DW_SPI_BAUDR, clk_div);
697 /* Enable controller after writing control registers */
698 dw_write(priv, DW_SPI_SSIENR, 1);
701 dev_dbg(bus, "speed=%d clk_div=%d\n", priv->freq, clk_div);
706 static int dw_spi_set_mode(struct udevice *bus, uint mode)
708 struct dw_spi_priv *priv = dev_get_priv(bus);
711 * Can't set mode yet. Since this depends on if rx, tx, or
712 * rx & tx is requested. So we have to defer this to the
713 * real transfer function.
716 dev_dbg(bus, "mode=%d\n", priv->mode);
721 static int dw_spi_remove(struct udevice *bus)
723 struct dw_spi_priv *priv = dev_get_priv(bus);
726 ret = reset_release_bulk(&priv->resets);
730 #if CONFIG_IS_ENABLED(CLK)
731 ret = clk_disable(&priv->clk);
735 clk_free(&priv->clk);
742 static const struct dm_spi_ops dw_spi_ops = {
744 .mem_ops = &dw_spi_mem_ops,
745 .set_speed = dw_spi_set_speed,
746 .set_mode = dw_spi_set_mode,
748 * cs_info is not needed, since we require all chip selects to be
749 * in the device tree explicitly
753 static const struct udevice_id dw_spi_ids[] = {
754 /* Generic compatible strings */
756 { .compatible = "snps,dw-apb-ssi", .data = (ulong)dw_spi_apb_init },
757 { .compatible = "snps,dw-apb-ssi-3.20a", .data = (ulong)dw_spi_apb_init },
758 { .compatible = "snps,dw-apb-ssi-3.22a", .data = (ulong)dw_spi_apb_init },
759 /* First version with SSI_MAX_XFER_SIZE */
760 { .compatible = "snps,dw-apb-ssi-3.23a", .data = (ulong)dw_spi_apb_init },
761 /* First version with Dual/Quad SPI; unused by this driver */
762 { .compatible = "snps,dw-apb-ssi-4.00a", .data = (ulong)dw_spi_apb_init },
763 { .compatible = "snps,dw-apb-ssi-4.01", .data = (ulong)dw_spi_apb_init },
764 { .compatible = "snps,dwc-ssi-1.01a", .data = (ulong)dw_spi_dwc_init },
766 /* Compatible strings for specific SoCs */
769 * Both the Cyclone V and Arria V share a device tree and have the same
770 * version of this device. This compatible string is used for those
771 * devices, and is not used for sofpgas in general.
773 { .compatible = "altr,socfpga-spi", .data = (ulong)dw_spi_apb_init },
774 { .compatible = "altr,socfpga-arria10-spi", .data = (ulong)dw_spi_apb_init },
775 { .compatible = "canaan,k210-spi", .data = (ulong)dw_spi_apb_k210_init},
776 { .compatible = "canaan,k210-ssi", .data = (ulong)dw_spi_dwc_init },
777 { .compatible = "intel,stratix10-spi", .data = (ulong)dw_spi_apb_init },
778 { .compatible = "intel,agilex-spi", .data = (ulong)dw_spi_apb_init },
779 { .compatible = "mscc,ocelot-spi", .data = (ulong)dw_spi_apb_init },
780 { .compatible = "mscc,jaguar2-spi", .data = (ulong)dw_spi_apb_init },
781 { .compatible = "snps,axs10x-spi", .data = (ulong)dw_spi_apb_init },
782 { .compatible = "snps,hsdk-spi", .data = (ulong)dw_spi_apb_init },
786 U_BOOT_DRIVER(dw_spi) = {
789 .of_match = dw_spi_ids,
791 .of_to_plat = dw_spi_of_to_plat,
792 .plat_auto = sizeof(struct dw_spi_plat),
793 .priv_auto = sizeof(struct dw_spi_priv),
794 .probe = dw_spi_probe,
795 .remove = dw_spi_remove,