2 * Designware master SPI core controller driver
4 * Copyright (C) 2014 Stefan Roese <sr@denx.de>
6 * Very loosely based on the Linux driver:
7 * drivers/spi/spi-dw.c, which is:
8 * Copyright (c) 2009, Intel Corporation.
10 * SPDX-License-Identifier: GPL-2.0
13 #include <asm-generic/gpio.h>
21 #include <linux/compat.h>
22 #include <linux/iopoll.h>
25 DECLARE_GLOBAL_DATA_PTR;
27 /* Register offsets */
28 #define DW_SPI_CTRL0 0x00
29 #define DW_SPI_CTRL1 0x04
30 #define DW_SPI_SSIENR 0x08
31 #define DW_SPI_MWCR 0x0c
32 #define DW_SPI_SER 0x10
33 #define DW_SPI_BAUDR 0x14
34 #define DW_SPI_TXFLTR 0x18
35 #define DW_SPI_RXFLTR 0x1c
36 #define DW_SPI_TXFLR 0x20
37 #define DW_SPI_RXFLR 0x24
38 #define DW_SPI_SR 0x28
39 #define DW_SPI_IMR 0x2c
40 #define DW_SPI_ISR 0x30
41 #define DW_SPI_RISR 0x34
42 #define DW_SPI_TXOICR 0x38
43 #define DW_SPI_RXOICR 0x3c
44 #define DW_SPI_RXUICR 0x40
45 #define DW_SPI_MSTICR 0x44
46 #define DW_SPI_ICR 0x48
47 #define DW_SPI_DMACR 0x4c
48 #define DW_SPI_DMATDLR 0x50
49 #define DW_SPI_DMARDLR 0x54
50 #define DW_SPI_IDR 0x58
51 #define DW_SPI_VERSION 0x5c
52 #define DW_SPI_DR 0x60
54 /* Bit fields in CTRLR0 */
55 #define SPI_DFS_OFFSET 0
57 #define SPI_FRF_OFFSET 4
58 #define SPI_FRF_SPI 0x0
59 #define SPI_FRF_SSP 0x1
60 #define SPI_FRF_MICROWIRE 0x2
61 #define SPI_FRF_RESV 0x3
63 #define SPI_MODE_OFFSET 6
64 #define SPI_SCPH_OFFSET 6
65 #define SPI_SCOL_OFFSET 7
67 #define SPI_TMOD_OFFSET 8
68 #define SPI_TMOD_MASK (0x3 << SPI_TMOD_OFFSET)
69 #define SPI_TMOD_TR 0x0 /* xmit & recv */
70 #define SPI_TMOD_TO 0x1 /* xmit only */
71 #define SPI_TMOD_RO 0x2 /* recv only */
72 #define SPI_TMOD_EPROMREAD 0x3 /* eeprom read mode */
74 #define SPI_SLVOE_OFFSET 10
75 #define SPI_SRL_OFFSET 11
76 #define SPI_CFS_OFFSET 12
78 /* Bit fields in SR, 7 bits */
79 #define SR_MASK GENMASK(6, 0) /* cover 7 bits */
80 #define SR_BUSY BIT(0)
81 #define SR_TF_NOT_FULL BIT(1)
82 #define SR_TF_EMPT BIT(2)
83 #define SR_RF_NOT_EMPT BIT(3)
84 #define SR_RF_FULL BIT(4)
85 #define SR_TX_ERR BIT(5)
86 #define SR_DCOL BIT(6)
88 #define RX_TIMEOUT 1000 /* timeout in ms */
90 struct dw_spi_platdata {
91 s32 frequency; /* Default clock frequency, -1 for none */
97 unsigned int freq; /* Default frequency */
100 unsigned long bus_clk_rate;
102 struct gpio_desc cs_gpio; /* External chip-select gpio */
105 u8 cs; /* chip select pin */
106 u8 tmode; /* TR/TO/RO/EEPROM */
107 u8 type; /* SPI/SSP/MicroWire */
110 u32 fifo_len; /* depth of the FIFO buffer */
117 static inline u32 dw_read(struct dw_spi_priv *priv, u32 offset)
119 return __raw_readl(priv->regs + offset);
122 static inline void dw_write(struct dw_spi_priv *priv, u32 offset, u32 val)
124 __raw_writel(val, priv->regs + offset);
127 static int request_gpio_cs(struct udevice *bus)
129 #if defined(CONFIG_DM_GPIO) && !defined(CONFIG_SPL_BUILD)
130 struct dw_spi_priv *priv = dev_get_priv(bus);
133 /* External chip select gpio line is optional */
134 ret = gpio_request_by_name(bus, "cs-gpio", 0, &priv->cs_gpio, 0);
139 printf("Error: %d: Can't get %s gpio!\n", ret, bus->name);
143 if (dm_gpio_is_valid(&priv->cs_gpio)) {
144 dm_gpio_set_dir_flags(&priv->cs_gpio,
145 GPIOD_IS_OUT | GPIOD_IS_OUT_ACTIVE);
148 debug("%s: used external gpio for CS management\n", __func__);
153 static int dw_spi_ofdata_to_platdata(struct udevice *bus)
155 struct dw_spi_platdata *plat = bus->platdata;
156 const void *blob = gd->fdt_blob;
157 int node = dev_of_offset(bus);
159 plat->regs = (struct dw_spi *)devfdt_get_addr(bus);
161 /* Use 500KHz as a suitable default */
162 plat->frequency = fdtdec_get_int(blob, node, "spi-max-frequency",
164 debug("%s: regs=%p max-frequency=%d\n", __func__, plat->regs,
167 return request_gpio_cs(bus);
170 static inline void spi_enable_chip(struct dw_spi_priv *priv, int enable)
172 dw_write(priv, DW_SPI_SSIENR, (enable ? 1 : 0));
175 /* Restart the controller, disable all interrupts, clean rx fifo */
176 static void spi_hw_init(struct dw_spi_priv *priv)
178 spi_enable_chip(priv, 0);
179 dw_write(priv, DW_SPI_IMR, 0xff);
180 spi_enable_chip(priv, 1);
183 * Try to detect the FIFO depth if not set by interface driver,
184 * the depth could be from 2 to 256 from HW spec
186 if (!priv->fifo_len) {
189 for (fifo = 1; fifo < 256; fifo++) {
190 dw_write(priv, DW_SPI_TXFLTR, fifo);
191 if (fifo != dw_read(priv, DW_SPI_TXFLTR))
195 priv->fifo_len = (fifo == 1) ? 0 : fifo;
196 dw_write(priv, DW_SPI_TXFLTR, 0);
198 debug("%s: fifo_len=%d\n", __func__, priv->fifo_len);
202 * We define dw_spi_get_clk function as 'weak' as some targets
203 * (like SOCFPGA_GEN5 and SOCFPGA_ARRIA10) don't use standard clock API
204 * and implement dw_spi_get_clk their own way in their clock manager.
206 __weak int dw_spi_get_clk(struct udevice *bus, ulong *rate)
208 struct dw_spi_priv *priv = dev_get_priv(bus);
211 ret = clk_get_by_index(bus, 0, &priv->clk);
215 ret = clk_enable(&priv->clk);
216 if (ret && ret != -ENOSYS && ret != -ENOTSUPP)
219 *rate = clk_get_rate(&priv->clk);
223 debug("%s: get spi controller clk via device tree: %lu Hz\n",
229 clk_disable(&priv->clk);
230 clk_free(&priv->clk);
235 static int dw_spi_probe(struct udevice *bus)
237 struct dw_spi_platdata *plat = dev_get_platdata(bus);
238 struct dw_spi_priv *priv = dev_get_priv(bus);
241 priv->regs = plat->regs;
242 priv->freq = plat->frequency;
244 ret = dw_spi_get_clk(bus, &priv->bus_clk_rate);
248 /* Currently only bits_per_word == 8 supported */
249 priv->bits_per_word = 8;
251 priv->tmode = 0; /* Tx & Rx */
259 /* Return the max entries we can fill into tx fifo */
260 static inline u32 tx_max(struct dw_spi_priv *priv)
262 u32 tx_left, tx_room, rxtx_gap;
264 tx_left = (priv->tx_end - priv->tx) / (priv->bits_per_word >> 3);
265 tx_room = priv->fifo_len - dw_read(priv, DW_SPI_TXFLR);
268 * Another concern is about the tx/rx mismatch, we
269 * thought about using (priv->fifo_len - rxflr - txflr) as
270 * one maximum value for tx, but it doesn't cover the
271 * data which is out of tx/rx fifo and inside the
272 * shift registers. So a control from sw point of
275 rxtx_gap = ((priv->rx_end - priv->rx) - (priv->tx_end - priv->tx)) /
276 (priv->bits_per_word >> 3);
278 return min3(tx_left, tx_room, (u32)(priv->fifo_len - rxtx_gap));
281 /* Return the max entries we should read out of rx fifo */
282 static inline u32 rx_max(struct dw_spi_priv *priv)
284 u32 rx_left = (priv->rx_end - priv->rx) / (priv->bits_per_word >> 3);
286 return min_t(u32, rx_left, dw_read(priv, DW_SPI_RXFLR));
289 static void dw_writer(struct dw_spi_priv *priv)
291 u32 max = tx_max(priv);
295 /* Set the tx word if the transfer's original "tx" is not null */
296 if (priv->tx_end - priv->len) {
297 if (priv->bits_per_word == 8)
298 txw = *(u8 *)(priv->tx);
300 txw = *(u16 *)(priv->tx);
302 dw_write(priv, DW_SPI_DR, txw);
303 debug("%s: tx=0x%02x\n", __func__, txw);
304 priv->tx += priv->bits_per_word >> 3;
308 static void dw_reader(struct dw_spi_priv *priv)
310 u32 max = rx_max(priv);
314 rxw = dw_read(priv, DW_SPI_DR);
315 debug("%s: rx=0x%02x\n", __func__, rxw);
317 /* Care about rx if the transfer's original "rx" is not null */
318 if (priv->rx_end - priv->len) {
319 if (priv->bits_per_word == 8)
320 *(u8 *)(priv->rx) = rxw;
322 *(u16 *)(priv->rx) = rxw;
324 priv->rx += priv->bits_per_word >> 3;
328 static int poll_transfer(struct dw_spi_priv *priv)
333 } while (priv->rx_end > priv->rx);
338 static void external_cs_manage(struct udevice *dev, bool on)
340 #if defined(CONFIG_DM_GPIO) && !defined(CONFIG_SPL_BUILD)
341 struct dw_spi_priv *priv = dev_get_priv(dev->parent);
343 if (!dm_gpio_is_valid(&priv->cs_gpio))
346 dm_gpio_set_value(&priv->cs_gpio, on ? 1 : 0);
350 static int dw_spi_xfer(struct udevice *dev, unsigned int bitlen,
351 const void *dout, void *din, unsigned long flags)
353 struct udevice *bus = dev->parent;
354 struct dw_spi_priv *priv = dev_get_priv(bus);
362 /* spi core configured to do 8 bit transfers */
364 debug("Non byte aligned SPI transfer.\n");
368 /* Start the transaction if necessary. */
369 if (flags & SPI_XFER_BEGIN)
370 external_cs_manage(dev, false);
372 cr0 = (priv->bits_per_word - 1) | (priv->type << SPI_FRF_OFFSET) |
373 (priv->mode << SPI_MODE_OFFSET) |
374 (priv->tmode << SPI_TMOD_OFFSET);
377 priv->tmode = SPI_TMOD_TR;
379 priv->tmode = SPI_TMOD_RO;
382 * In transmit only mode (SPI_TMOD_TO) input FIFO never gets
383 * any data which breaks our logic in poll_transfer() above.
385 priv->tmode = SPI_TMOD_TR;
387 cr0 &= ~SPI_TMOD_MASK;
388 cr0 |= (priv->tmode << SPI_TMOD_OFFSET);
390 priv->len = bitlen >> 3;
391 debug("%s: rx=%p tx=%p len=%d [bytes]\n", __func__, rx, tx, priv->len);
393 priv->tx = (void *)tx;
394 priv->tx_end = priv->tx + priv->len;
396 priv->rx_end = priv->rx + priv->len;
398 /* Disable controller before writing control registers */
399 spi_enable_chip(priv, 0);
401 debug("%s: cr0=%08x\n", __func__, cr0);
402 /* Reprogram cr0 only if changed */
403 if (dw_read(priv, DW_SPI_CTRL0) != cr0)
404 dw_write(priv, DW_SPI_CTRL0, cr0);
407 * Configure the desired SS (slave select 0...3) in the controller
408 * The DW SPI controller will activate and deactivate this CS
409 * automatically. So no cs_activate() etc is needed in this driver.
411 cs = spi_chip_select(dev);
412 dw_write(priv, DW_SPI_SER, 1 << cs);
414 /* Enable controller after writing control registers */
415 spi_enable_chip(priv, 1);
417 /* Start transfer in a polling loop */
418 ret = poll_transfer(priv);
421 * Wait for current transmit operation to complete.
422 * Otherwise if some data still exists in Tx FIFO it can be
423 * silently flushed, i.e. dropped on disabling of the controller,
424 * which happens when writing 0 to DW_SPI_SSIENR which happens
425 * in the beginning of new transfer.
427 if (readl_poll_timeout(priv->regs + DW_SPI_SR, val,
428 !(val & SR_TF_EMPT) || (val & SR_BUSY),
429 RX_TIMEOUT * 1000)) {
433 /* Stop the transaction if necessary */
434 if (flags & SPI_XFER_END)
435 external_cs_manage(dev, true);
440 static int dw_spi_set_speed(struct udevice *bus, uint speed)
442 struct dw_spi_platdata *plat = bus->platdata;
443 struct dw_spi_priv *priv = dev_get_priv(bus);
446 if (speed > plat->frequency)
447 speed = plat->frequency;
449 /* Disable controller before writing control registers */
450 spi_enable_chip(priv, 0);
452 /* clk_div doesn't support odd number */
453 clk_div = priv->bus_clk_rate / speed;
454 clk_div = (clk_div + 1) & 0xfffe;
455 dw_write(priv, DW_SPI_BAUDR, clk_div);
457 /* Enable controller after writing control registers */
458 spi_enable_chip(priv, 1);
461 debug("%s: regs=%p speed=%d clk_div=%d\n", __func__, priv->regs,
462 priv->freq, clk_div);
467 static int dw_spi_set_mode(struct udevice *bus, uint mode)
469 struct dw_spi_priv *priv = dev_get_priv(bus);
472 * Can't set mode yet. Since this depends on if rx, tx, or
473 * rx & tx is requested. So we have to defer this to the
474 * real transfer function.
477 debug("%s: regs=%p, mode=%d\n", __func__, priv->regs, priv->mode);
482 static const struct dm_spi_ops dw_spi_ops = {
484 .set_speed = dw_spi_set_speed,
485 .set_mode = dw_spi_set_mode,
487 * cs_info is not needed, since we require all chip selects to be
488 * in the device tree explicitly
492 static const struct udevice_id dw_spi_ids[] = {
493 { .compatible = "snps,dw-apb-ssi" },
497 U_BOOT_DRIVER(dw_spi) = {
500 .of_match = dw_spi_ids,
502 .ofdata_to_platdata = dw_spi_ofdata_to_platdata,
503 .platdata_auto_alloc_size = sizeof(struct dw_spi_platdata),
504 .priv_auto_alloc_size = sizeof(struct dw_spi_priv),
505 .probe = dw_spi_probe,