blob: 0ebd2cf3cbee2531a4e35f4fac8c475c3849b3b9 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Stefan Roese5bef6fd2014-11-07 13:50:31 +01002/*
3 * Designware master SPI core controller driver
4 *
5 * Copyright (C) 2014 Stefan Roese <sr@denx.de>
6 *
Stefan Roesea72f8022014-11-16 12:47:01 +01007 * Very loosely based on the Linux driver:
8 * drivers/spi/spi-dw.c, which is:
Stefan Roese5bef6fd2014-11-07 13:50:31 +01009 * Copyright (c) 2009, Intel Corporation.
Stefan Roese5bef6fd2014-11-07 13:50:31 +010010 */
11
Sean Anderson1b3dd492020-10-16 18:57:44 -040012#define LOG_CATEGORY UCLASS_SPI
Stefan Roese5bef6fd2014-11-07 13:50:31 +010013#include <common.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060014#include <log.h>
Horatiu.Vultur@microchip.com1b77de42019-02-25 10:59:54 +000015#include <asm-generic/gpio.h>
Eugeniy Paltsev58c125b2017-12-28 15:09:03 +030016#include <clk.h>
Stefan Roese5bef6fd2014-11-07 13:50:31 +010017#include <dm.h>
18#include <errno.h>
19#include <malloc.h>
20#include <spi.h>
21#include <fdtdec.h>
Ley Foon Tan6ac59092018-09-07 14:25:29 +080022#include <reset.h>
Simon Glass336d4612020-02-03 07:36:16 -070023#include <dm/device_compat.h>
Simon Glasscd93d622020-05-10 11:40:13 -060024#include <linux/bitops.h>
Stefan Roese5bef6fd2014-11-07 13:50:31 +010025#include <linux/compat.h>
Eugeniy Paltsevc6b4f032018-03-22 13:50:43 +030026#include <linux/iopoll.h>
Stefan Roese5bef6fd2014-11-07 13:50:31 +010027#include <asm/io.h>
28
Stefan Roese5bef6fd2014-11-07 13:50:31 +010029/* Register offsets */
Sean Anderson30040342020-10-16 18:57:47 -040030#define DW_SPI_CTRLR0 0x00
31#define DW_SPI_CTRLR1 0x04
Stefan Roese5bef6fd2014-11-07 13:50:31 +010032#define DW_SPI_SSIENR 0x08
33#define DW_SPI_MWCR 0x0c
34#define DW_SPI_SER 0x10
35#define DW_SPI_BAUDR 0x14
Sean Anderson30040342020-10-16 18:57:47 -040036#define DW_SPI_TXFTLR 0x18
37#define DW_SPI_RXFTLR 0x1c
Stefan Roese5bef6fd2014-11-07 13:50:31 +010038#define DW_SPI_TXFLR 0x20
39#define DW_SPI_RXFLR 0x24
40#define DW_SPI_SR 0x28
41#define DW_SPI_IMR 0x2c
42#define DW_SPI_ISR 0x30
43#define DW_SPI_RISR 0x34
44#define DW_SPI_TXOICR 0x38
45#define DW_SPI_RXOICR 0x3c
46#define DW_SPI_RXUICR 0x40
47#define DW_SPI_MSTICR 0x44
48#define DW_SPI_ICR 0x48
49#define DW_SPI_DMACR 0x4c
50#define DW_SPI_DMATDLR 0x50
51#define DW_SPI_DMARDLR 0x54
52#define DW_SPI_IDR 0x58
53#define DW_SPI_VERSION 0x5c
54#define DW_SPI_DR 0x60
55
56/* Bit fields in CTRLR0 */
57#define SPI_DFS_OFFSET 0
58
59#define SPI_FRF_OFFSET 4
60#define SPI_FRF_SPI 0x0
61#define SPI_FRF_SSP 0x1
62#define SPI_FRF_MICROWIRE 0x2
63#define SPI_FRF_RESV 0x3
64
65#define SPI_MODE_OFFSET 6
66#define SPI_SCPH_OFFSET 6
67#define SPI_SCOL_OFFSET 7
68
69#define SPI_TMOD_OFFSET 8
70#define SPI_TMOD_MASK (0x3 << SPI_TMOD_OFFSET)
71#define SPI_TMOD_TR 0x0 /* xmit & recv */
72#define SPI_TMOD_TO 0x1 /* xmit only */
73#define SPI_TMOD_RO 0x2 /* recv only */
74#define SPI_TMOD_EPROMREAD 0x3 /* eeprom read mode */
75
76#define SPI_SLVOE_OFFSET 10
77#define SPI_SRL_OFFSET 11
78#define SPI_CFS_OFFSET 12
79
80/* Bit fields in SR, 7 bits */
Jagan Teki95e77d92015-10-23 01:01:36 +053081#define SR_MASK GENMASK(6, 0) /* cover 7 bits */
Jagan Teki431a9f02015-10-23 01:36:23 +053082#define SR_BUSY BIT(0)
83#define SR_TF_NOT_FULL BIT(1)
84#define SR_TF_EMPT BIT(2)
85#define SR_RF_NOT_EMPT BIT(3)
86#define SR_RF_FULL BIT(4)
87#define SR_TX_ERR BIT(5)
88#define SR_DCOL BIT(6)
Stefan Roese5bef6fd2014-11-07 13:50:31 +010089
Stefan Roesea72f8022014-11-16 12:47:01 +010090#define RX_TIMEOUT 1000 /* timeout in ms */
Stefan Roese5bef6fd2014-11-07 13:50:31 +010091
92struct dw_spi_platdata {
93 s32 frequency; /* Default clock frequency, -1 for none */
94 void __iomem *regs;
95};
96
97struct dw_spi_priv {
Eugeniy Paltsev58c125b2017-12-28 15:09:03 +030098 struct clk clk;
Sean Andersonddd34502020-10-16 18:57:49 -040099 struct reset_ctl_bulk resets;
Eugeniy Paltsevbcdcb3e2018-03-22 13:50:46 +0300100 struct gpio_desc cs_gpio; /* External chip-select gpio */
101
Sean Andersonddd34502020-10-16 18:57:49 -0400102 void __iomem *regs;
103 unsigned long bus_clk_rate;
104 unsigned int freq; /* Default frequency */
105 unsigned int mode;
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100106
Sean Andersonddd34502020-10-16 18:57:49 -0400107 const void *tx;
108 const void *tx_end;
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100109 void *rx;
110 void *rx_end;
Sean Andersonddd34502020-10-16 18:57:49 -0400111 u32 fifo_len; /* depth of the FIFO buffer */
Ley Foon Tan6ac59092018-09-07 14:25:29 +0800112
Sean Andersonddd34502020-10-16 18:57:49 -0400113 int bits_per_word;
114 int len;
115 u8 cs; /* chip select pin */
116 u8 tmode; /* TR/TO/RO/EEPROM */
117 u8 type; /* SPI/SSP/MicroWire */
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100118};
119
Eugeniy Paltsev4b5f6c52018-03-22 13:50:47 +0300120static inline u32 dw_read(struct dw_spi_priv *priv, u32 offset)
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100121{
122 return __raw_readl(priv->regs + offset);
123}
124
Eugeniy Paltsev4b5f6c52018-03-22 13:50:47 +0300125static inline void dw_write(struct dw_spi_priv *priv, u32 offset, u32 val)
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100126{
127 __raw_writel(val, priv->regs + offset);
128}
129
Eugeniy Paltsevbcdcb3e2018-03-22 13:50:46 +0300130static int request_gpio_cs(struct udevice *bus)
131{
Simon Glassbcee8d62019-12-06 21:41:35 -0700132#if CONFIG_IS_ENABLED(DM_GPIO) && !defined(CONFIG_SPL_BUILD)
Eugeniy Paltsevbcdcb3e2018-03-22 13:50:46 +0300133 struct dw_spi_priv *priv = dev_get_priv(bus);
134 int ret;
135
136 /* External chip select gpio line is optional */
Sean Anderson13fc44e2020-10-16 18:57:45 -0400137 ret = gpio_request_by_name(bus, "cs-gpios", 0, &priv->cs_gpio,
138 GPIOD_IS_OUT | GPIOD_IS_OUT_ACTIVE);
Eugeniy Paltsevbcdcb3e2018-03-22 13:50:46 +0300139 if (ret == -ENOENT)
140 return 0;
141
142 if (ret < 0) {
Sean Anderson1b3dd492020-10-16 18:57:44 -0400143 dev_err(bus, "Couldn't request gpio! (error %d)\n", ret);
Eugeniy Paltsevbcdcb3e2018-03-22 13:50:46 +0300144 return ret;
145 }
146
147 if (dm_gpio_is_valid(&priv->cs_gpio)) {
148 dm_gpio_set_dir_flags(&priv->cs_gpio,
149 GPIOD_IS_OUT | GPIOD_IS_OUT_ACTIVE);
150 }
151
Sean Anderson1b3dd492020-10-16 18:57:44 -0400152 dev_dbg(bus, "Using external gpio for CS management\n");
Eugeniy Paltsevbcdcb3e2018-03-22 13:50:46 +0300153#endif
154 return 0;
155}
156
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100157static int dw_spi_ofdata_to_platdata(struct udevice *bus)
158{
159 struct dw_spi_platdata *plat = bus->platdata;
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100160
Masahiro Yamada8613c8d2020-07-17 14:36:46 +0900161 plat->regs = dev_read_addr_ptr(bus);
Sean Andersonc785f432020-10-16 18:57:46 -0400162 if (!plat->regs)
163 return -EINVAL;
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100164
165 /* Use 500KHz as a suitable default */
Simon Goldschmidt27c3e072019-05-09 22:11:57 +0200166 plat->frequency = dev_read_u32_default(bus, "spi-max-frequency",
167 500000);
Sean Anderson1b3dd492020-10-16 18:57:44 -0400168 dev_info(bus, "max-frequency=%d\n", plat->frequency);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100169
Eugeniy Paltsevbcdcb3e2018-03-22 13:50:46 +0300170 return request_gpio_cs(bus);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100171}
172
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100173/* Restart the controller, disable all interrupts, clean rx fifo */
Sean Anderson1b3dd492020-10-16 18:57:44 -0400174static void spi_hw_init(struct udevice *bus, struct dw_spi_priv *priv)
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100175{
Sean Anderson934beab2020-10-16 18:57:48 -0400176 dw_write(priv, DW_SPI_SSIENR, 0);
Eugeniy Paltsev4b5f6c52018-03-22 13:50:47 +0300177 dw_write(priv, DW_SPI_IMR, 0xff);
Sean Anderson934beab2020-10-16 18:57:48 -0400178 dw_write(priv, DW_SPI_SSIENR, 1);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100179
180 /*
181 * Try to detect the FIFO depth if not set by interface driver,
182 * the depth could be from 2 to 256 from HW spec
183 */
184 if (!priv->fifo_len) {
185 u32 fifo;
186
Axel Lin52091ad2015-02-26 10:45:22 +0800187 for (fifo = 1; fifo < 256; fifo++) {
Sean Anderson30040342020-10-16 18:57:47 -0400188 dw_write(priv, DW_SPI_TXFTLR, fifo);
189 if (fifo != dw_read(priv, DW_SPI_TXFTLR))
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100190 break;
191 }
192
Axel Lin52091ad2015-02-26 10:45:22 +0800193 priv->fifo_len = (fifo == 1) ? 0 : fifo;
Sean Anderson30040342020-10-16 18:57:47 -0400194 dw_write(priv, DW_SPI_TXFTLR, 0);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100195 }
Sean Anderson1b3dd492020-10-16 18:57:44 -0400196 dev_dbg(bus, "fifo_len=%d\n", priv->fifo_len);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100197}
198
Eugeniy Paltsev58c125b2017-12-28 15:09:03 +0300199/*
200 * We define dw_spi_get_clk function as 'weak' as some targets
201 * (like SOCFPGA_GEN5 and SOCFPGA_ARRIA10) don't use standard clock API
202 * and implement dw_spi_get_clk their own way in their clock manager.
203 */
204__weak int dw_spi_get_clk(struct udevice *bus, ulong *rate)
205{
206 struct dw_spi_priv *priv = dev_get_priv(bus);
207 int ret;
208
209 ret = clk_get_by_index(bus, 0, &priv->clk);
210 if (ret)
211 return ret;
212
213 ret = clk_enable(&priv->clk);
214 if (ret && ret != -ENOSYS && ret != -ENOTSUPP)
215 return ret;
216
217 *rate = clk_get_rate(&priv->clk);
218 if (!*rate)
219 goto err_rate;
220
Sean Anderson1b3dd492020-10-16 18:57:44 -0400221 dev_dbg(bus, "Got clock via device tree: %lu Hz\n", *rate);
Eugeniy Paltsev58c125b2017-12-28 15:09:03 +0300222
223 return 0;
224
225err_rate:
226 clk_disable(&priv->clk);
227 clk_free(&priv->clk);
228
229 return -EINVAL;
230}
231
Ley Foon Tan6ac59092018-09-07 14:25:29 +0800232static int dw_spi_reset(struct udevice *bus)
233{
234 int ret;
235 struct dw_spi_priv *priv = dev_get_priv(bus);
236
237 ret = reset_get_bulk(bus, &priv->resets);
238 if (ret) {
239 /*
240 * Return 0 if error due to !CONFIG_DM_RESET and reset
241 * DT property is not present.
242 */
243 if (ret == -ENOENT || ret == -ENOTSUPP)
244 return 0;
245
Sean Anderson1b3dd492020-10-16 18:57:44 -0400246 dev_warn(bus, "Couldn't find/assert reset device (error %d)\n",
247 ret);
Ley Foon Tan6ac59092018-09-07 14:25:29 +0800248 return ret;
249 }
250
251 ret = reset_deassert_bulk(&priv->resets);
252 if (ret) {
253 reset_release_bulk(&priv->resets);
Sean Anderson1b3dd492020-10-16 18:57:44 -0400254 dev_err(bus, "Failed to de-assert reset for SPI (error %d)\n",
255 ret);
Ley Foon Tan6ac59092018-09-07 14:25:29 +0800256 return ret;
257 }
258
259 return 0;
260}
261
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100262static int dw_spi_probe(struct udevice *bus)
263{
264 struct dw_spi_platdata *plat = dev_get_platdata(bus);
265 struct dw_spi_priv *priv = dev_get_priv(bus);
Eugeniy Paltsev58c125b2017-12-28 15:09:03 +0300266 int ret;
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100267
268 priv->regs = plat->regs;
269 priv->freq = plat->frequency;
270
Eugeniy Paltsev58c125b2017-12-28 15:09:03 +0300271 ret = dw_spi_get_clk(bus, &priv->bus_clk_rate);
272 if (ret)
273 return ret;
274
Ley Foon Tan6ac59092018-09-07 14:25:29 +0800275 ret = dw_spi_reset(bus);
276 if (ret)
277 return ret;
278
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100279 /* Currently only bits_per_word == 8 supported */
280 priv->bits_per_word = 8;
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100281
282 priv->tmode = 0; /* Tx & Rx */
283
284 /* Basic HW init */
Sean Anderson1b3dd492020-10-16 18:57:44 -0400285 spi_hw_init(bus, priv);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100286
287 return 0;
288}
289
290/* Return the max entries we can fill into tx fifo */
291static inline u32 tx_max(struct dw_spi_priv *priv)
292{
293 u32 tx_left, tx_room, rxtx_gap;
294
Stefan Roesea72f8022014-11-16 12:47:01 +0100295 tx_left = (priv->tx_end - priv->tx) / (priv->bits_per_word >> 3);
Eugeniy Paltsev4b5f6c52018-03-22 13:50:47 +0300296 tx_room = priv->fifo_len - dw_read(priv, DW_SPI_TXFLR);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100297
298 /*
299 * Another concern is about the tx/rx mismatch, we
Stefan Roesea72f8022014-11-16 12:47:01 +0100300 * thought about using (priv->fifo_len - rxflr - txflr) as
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100301 * one maximum value for tx, but it doesn't cover the
302 * data which is out of tx/rx fifo and inside the
303 * shift registers. So a control from sw point of
304 * view is taken.
305 */
306 rxtx_gap = ((priv->rx_end - priv->rx) - (priv->tx_end - priv->tx)) /
Stefan Roesea72f8022014-11-16 12:47:01 +0100307 (priv->bits_per_word >> 3);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100308
309 return min3(tx_left, tx_room, (u32)(priv->fifo_len - rxtx_gap));
310}
311
312/* Return the max entries we should read out of rx fifo */
313static inline u32 rx_max(struct dw_spi_priv *priv)
314{
Stefan Roesea72f8022014-11-16 12:47:01 +0100315 u32 rx_left = (priv->rx_end - priv->rx) / (priv->bits_per_word >> 3);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100316
Eugeniy Paltsev4b5f6c52018-03-22 13:50:47 +0300317 return min_t(u32, rx_left, dw_read(priv, DW_SPI_RXFLR));
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100318}
319
320static void dw_writer(struct dw_spi_priv *priv)
321{
322 u32 max = tx_max(priv);
Sean Andersoncaf11072020-10-16 18:57:43 -0400323 u16 txw = 0xFFFF;
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100324
325 while (max--) {
326 /* Set the tx word if the transfer's original "tx" is not null */
327 if (priv->tx_end - priv->len) {
Stefan Roesea72f8022014-11-16 12:47:01 +0100328 if (priv->bits_per_word == 8)
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100329 txw = *(u8 *)(priv->tx);
330 else
331 txw = *(u16 *)(priv->tx);
332 }
Eugeniy Paltsev4b5f6c52018-03-22 13:50:47 +0300333 dw_write(priv, DW_SPI_DR, txw);
Sean Anderson1b3dd492020-10-16 18:57:44 -0400334 log_content("tx=0x%02x\n", txw);
Stefan Roesea72f8022014-11-16 12:47:01 +0100335 priv->tx += priv->bits_per_word >> 3;
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100336 }
337}
338
Eugeniy Paltsevd3d8aae2018-03-22 13:50:45 +0300339static void dw_reader(struct dw_spi_priv *priv)
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100340{
Eugeniy Paltsevd3d8aae2018-03-22 13:50:45 +0300341 u32 max = rx_max(priv);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100342 u16 rxw;
343
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100344 while (max--) {
Eugeniy Paltsev4b5f6c52018-03-22 13:50:47 +0300345 rxw = dw_read(priv, DW_SPI_DR);
Sean Anderson1b3dd492020-10-16 18:57:44 -0400346 log_content("rx=0x%02x\n", rxw);
Stefan Roesea72f8022014-11-16 12:47:01 +0100347
Eugeniy Paltsevd3d8aae2018-03-22 13:50:45 +0300348 /* Care about rx if the transfer's original "rx" is not null */
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100349 if (priv->rx_end - priv->len) {
Stefan Roesea72f8022014-11-16 12:47:01 +0100350 if (priv->bits_per_word == 8)
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100351 *(u8 *)(priv->rx) = rxw;
352 else
353 *(u16 *)(priv->rx) = rxw;
354 }
Stefan Roesea72f8022014-11-16 12:47:01 +0100355 priv->rx += priv->bits_per_word >> 3;
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100356 }
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100357}
358
359static int poll_transfer(struct dw_spi_priv *priv)
360{
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100361 do {
362 dw_writer(priv);
Eugeniy Paltsevd3d8aae2018-03-22 13:50:45 +0300363 dw_reader(priv);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100364 } while (priv->rx_end > priv->rx);
365
366 return 0;
367}
368
Gregory CLEMENTbea91b02018-10-09 14:14:07 +0200369/*
370 * We define external_cs_manage function as 'weak' as some targets
371 * (like MSCC Ocelot) don't control the external CS pin using a GPIO
372 * controller. These SoCs use specific registers to control by
373 * software the SPI pins (and especially the CS).
374 */
375__weak void external_cs_manage(struct udevice *dev, bool on)
Eugeniy Paltsevbcdcb3e2018-03-22 13:50:46 +0300376{
Simon Glassbcee8d62019-12-06 21:41:35 -0700377#if CONFIG_IS_ENABLED(DM_GPIO) && !defined(CONFIG_SPL_BUILD)
Eugeniy Paltsevbcdcb3e2018-03-22 13:50:46 +0300378 struct dw_spi_priv *priv = dev_get_priv(dev->parent);
379
380 if (!dm_gpio_is_valid(&priv->cs_gpio))
381 return;
382
383 dm_gpio_set_value(&priv->cs_gpio, on ? 1 : 0);
384#endif
385}
386
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100387static int dw_spi_xfer(struct udevice *dev, unsigned int bitlen,
388 const void *dout, void *din, unsigned long flags)
389{
390 struct udevice *bus = dev->parent;
391 struct dw_spi_priv *priv = dev_get_priv(bus);
392 const u8 *tx = dout;
393 u8 *rx = din;
394 int ret = 0;
395 u32 cr0 = 0;
Eugeniy Paltsevc6b4f032018-03-22 13:50:43 +0300396 u32 val;
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100397 u32 cs;
398
399 /* spi core configured to do 8 bit transfers */
400 if (bitlen % 8) {
Sean Anderson1b3dd492020-10-16 18:57:44 -0400401 dev_err(dev, "Non byte aligned SPI transfer.\n");
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100402 return -1;
403 }
404
Eugeniy Paltsevbcdcb3e2018-03-22 13:50:46 +0300405 /* Start the transaction if necessary. */
406 if (flags & SPI_XFER_BEGIN)
407 external_cs_manage(dev, false);
408
Stefan Roesea72f8022014-11-16 12:47:01 +0100409 cr0 = (priv->bits_per_word - 1) | (priv->type << SPI_FRF_OFFSET) |
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100410 (priv->mode << SPI_MODE_OFFSET) |
411 (priv->tmode << SPI_TMOD_OFFSET);
412
413 if (rx && tx)
414 priv->tmode = SPI_TMOD_TR;
415 else if (rx)
416 priv->tmode = SPI_TMOD_RO;
417 else
Eugeniy Paltsevfc282c72018-03-22 13:50:44 +0300418 /*
419 * In transmit only mode (SPI_TMOD_TO) input FIFO never gets
420 * any data which breaks our logic in poll_transfer() above.
421 */
422 priv->tmode = SPI_TMOD_TR;
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100423
424 cr0 &= ~SPI_TMOD_MASK;
425 cr0 |= (priv->tmode << SPI_TMOD_OFFSET);
426
Stefan Roesea72f8022014-11-16 12:47:01 +0100427 priv->len = bitlen >> 3;
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100428
429 priv->tx = (void *)tx;
430 priv->tx_end = priv->tx + priv->len;
431 priv->rx = rx;
432 priv->rx_end = priv->rx + priv->len;
433
434 /* Disable controller before writing control registers */
Sean Anderson934beab2020-10-16 18:57:48 -0400435 dw_write(priv, DW_SPI_SSIENR, 0);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100436
Sean Anderson1b3dd492020-10-16 18:57:44 -0400437 dev_dbg(dev, "cr0=%08x rx=%p tx=%p len=%d [bytes]\n", cr0, rx, tx,
438 priv->len);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100439 /* Reprogram cr0 only if changed */
Sean Anderson30040342020-10-16 18:57:47 -0400440 if (dw_read(priv, DW_SPI_CTRLR0) != cr0)
441 dw_write(priv, DW_SPI_CTRLR0, cr0);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100442
443 /*
444 * Configure the desired SS (slave select 0...3) in the controller
445 * The DW SPI controller will activate and deactivate this CS
446 * automatically. So no cs_activate() etc is needed in this driver.
447 */
448 cs = spi_chip_select(dev);
Eugeniy Paltsev4b5f6c52018-03-22 13:50:47 +0300449 dw_write(priv, DW_SPI_SER, 1 << cs);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100450
451 /* Enable controller after writing control registers */
Sean Anderson934beab2020-10-16 18:57:48 -0400452 dw_write(priv, DW_SPI_SSIENR, 1);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100453
454 /* Start transfer in a polling loop */
455 ret = poll_transfer(priv);
456
Eugeniy Paltsevc6b4f032018-03-22 13:50:43 +0300457 /*
458 * Wait for current transmit operation to complete.
459 * Otherwise if some data still exists in Tx FIFO it can be
460 * silently flushed, i.e. dropped on disabling of the controller,
461 * which happens when writing 0 to DW_SPI_SSIENR which happens
462 * in the beginning of new transfer.
463 */
464 if (readl_poll_timeout(priv->regs + DW_SPI_SR, val,
Eugeniy Paltsev9b14ac52018-04-19 17:47:41 +0300465 (val & SR_TF_EMPT) && !(val & SR_BUSY),
Eugeniy Paltsevc6b4f032018-03-22 13:50:43 +0300466 RX_TIMEOUT * 1000)) {
467 ret = -ETIMEDOUT;
468 }
469
Eugeniy Paltsevbcdcb3e2018-03-22 13:50:46 +0300470 /* Stop the transaction if necessary */
471 if (flags & SPI_XFER_END)
472 external_cs_manage(dev, true);
473
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100474 return ret;
475}
476
477static int dw_spi_set_speed(struct udevice *bus, uint speed)
478{
479 struct dw_spi_platdata *plat = bus->platdata;
480 struct dw_spi_priv *priv = dev_get_priv(bus);
481 u16 clk_div;
482
483 if (speed > plat->frequency)
484 speed = plat->frequency;
485
486 /* Disable controller before writing control registers */
Sean Anderson934beab2020-10-16 18:57:48 -0400487 dw_write(priv, DW_SPI_SSIENR, 0);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100488
489 /* clk_div doesn't support odd number */
Eugeniy Paltsev58c125b2017-12-28 15:09:03 +0300490 clk_div = priv->bus_clk_rate / speed;
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100491 clk_div = (clk_div + 1) & 0xfffe;
Eugeniy Paltsev4b5f6c52018-03-22 13:50:47 +0300492 dw_write(priv, DW_SPI_BAUDR, clk_div);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100493
494 /* Enable controller after writing control registers */
Sean Anderson934beab2020-10-16 18:57:48 -0400495 dw_write(priv, DW_SPI_SSIENR, 1);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100496
497 priv->freq = speed;
Sean Anderson1b3dd492020-10-16 18:57:44 -0400498 dev_dbg(bus, "speed=%d clk_div=%d\n", priv->freq, clk_div);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100499
500 return 0;
501}
502
503static int dw_spi_set_mode(struct udevice *bus, uint mode)
504{
505 struct dw_spi_priv *priv = dev_get_priv(bus);
506
507 /*
508 * Can't set mode yet. Since this depends on if rx, tx, or
509 * rx & tx is requested. So we have to defer this to the
510 * real transfer function.
511 */
512 priv->mode = mode;
Sean Anderson1b3dd492020-10-16 18:57:44 -0400513 dev_dbg(bus, "mode=%d\n", priv->mode);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100514
515 return 0;
516}
517
Ley Foon Tan6ac59092018-09-07 14:25:29 +0800518static int dw_spi_remove(struct udevice *bus)
519{
520 struct dw_spi_priv *priv = dev_get_priv(bus);
Ley Foon Tane7e05fc2018-09-19 16:27:19 +0800521 int ret;
Ley Foon Tan6ac59092018-09-07 14:25:29 +0800522
Ley Foon Tane7e05fc2018-09-19 16:27:19 +0800523 ret = reset_release_bulk(&priv->resets);
524 if (ret)
525 return ret;
526
527#if CONFIG_IS_ENABLED(CLK)
528 ret = clk_disable(&priv->clk);
529 if (ret)
530 return ret;
531
532 ret = clk_free(&priv->clk);
533 if (ret)
534 return ret;
535#endif
536 return 0;
Ley Foon Tan6ac59092018-09-07 14:25:29 +0800537}
538
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100539static const struct dm_spi_ops dw_spi_ops = {
540 .xfer = dw_spi_xfer,
541 .set_speed = dw_spi_set_speed,
542 .set_mode = dw_spi_set_mode,
543 /*
544 * cs_info is not needed, since we require all chip selects to be
545 * in the device tree explicitly
546 */
547};
548
549static const struct udevice_id dw_spi_ids[] = {
Marek Vasut74114862014-12-31 20:14:55 +0100550 { .compatible = "snps,dw-apb-ssi" },
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100551 { }
552};
553
554U_BOOT_DRIVER(dw_spi) = {
555 .name = "dw_spi",
556 .id = UCLASS_SPI,
557 .of_match = dw_spi_ids,
558 .ops = &dw_spi_ops,
559 .ofdata_to_platdata = dw_spi_ofdata_to_platdata,
560 .platdata_auto_alloc_size = sizeof(struct dw_spi_platdata),
561 .priv_auto_alloc_size = sizeof(struct dw_spi_priv),
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100562 .probe = dw_spi_probe,
Ley Foon Tan6ac59092018-09-07 14:25:29 +0800563 .remove = dw_spi_remove,
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100564};