blob: 742121140dee4f25496ddbc23e224fc292bdb6f1 [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>
Sean Anderson58875792020-10-16 18:57:51 -04006 * Copyright (C) 2020 Sean Anderson <seanga2@gmail.com>
Stefan Roese5bef6fd2014-11-07 13:50:31 +01007 *
Stefan Roesea72f8022014-11-16 12:47:01 +01008 * Very loosely based on the Linux driver:
9 * drivers/spi/spi-dw.c, which is:
Stefan Roese5bef6fd2014-11-07 13:50:31 +010010 * Copyright (c) 2009, Intel Corporation.
Stefan Roese5bef6fd2014-11-07 13:50:31 +010011 */
12
Sean Anderson1b3dd492020-10-16 18:57:44 -040013#define LOG_CATEGORY UCLASS_SPI
Stefan Roese5bef6fd2014-11-07 13:50:31 +010014#include <common.h>
Eugeniy Paltsev58c125b2017-12-28 15:09:03 +030015#include <clk.h>
Stefan Roese5bef6fd2014-11-07 13:50:31 +010016#include <dm.h>
Simon Glass336d4612020-02-03 07:36:16 -070017#include <dm/device_compat.h>
Sean Andersonfec7bf02020-10-16 18:57:53 -040018#include <errno.h>
19#include <fdtdec.h>
20#include <log.h>
21#include <malloc.h>
22#include <reset.h>
23#include <spi.h>
24#include <spi-mem.h>
25#include <asm/io.h>
26#include <asm-generic/gpio.h>
Sean Anderson58875792020-10-16 18:57:51 -040027#include <linux/bitfield.h>
Simon Glasscd93d622020-05-10 11:40:13 -060028#include <linux/bitops.h>
Stefan Roese5bef6fd2014-11-07 13:50:31 +010029#include <linux/compat.h>
Eugeniy Paltsevc6b4f032018-03-22 13:50:43 +030030#include <linux/iopoll.h>
Sean Andersonfec7bf02020-10-16 18:57:53 -040031#include <linux/sizes.h>
Stefan Roese5bef6fd2014-11-07 13:50:31 +010032
Stefan Roese5bef6fd2014-11-07 13:50:31 +010033/* Register offsets */
Sean Anderson30040342020-10-16 18:57:47 -040034#define DW_SPI_CTRLR0 0x00
35#define DW_SPI_CTRLR1 0x04
Stefan Roese5bef6fd2014-11-07 13:50:31 +010036#define DW_SPI_SSIENR 0x08
37#define DW_SPI_MWCR 0x0c
38#define DW_SPI_SER 0x10
39#define DW_SPI_BAUDR 0x14
Sean Anderson30040342020-10-16 18:57:47 -040040#define DW_SPI_TXFTLR 0x18
41#define DW_SPI_RXFTLR 0x1c
Stefan Roese5bef6fd2014-11-07 13:50:31 +010042#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
59
60/* Bit fields in CTRLR0 */
Sean Anderson58875792020-10-16 18:57:51 -040061/*
62 * Only present when SSI_MAX_XFER_SIZE=16. This is the default, and the only
63 * option before version 3.23a.
64 */
65#define CTRLR0_DFS_MASK GENMASK(3, 0)
Stefan Roese5bef6fd2014-11-07 13:50:31 +010066
Sean Anderson58875792020-10-16 18:57:51 -040067#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
Stefan Roese5bef6fd2014-11-07 13:50:31 +010072
Sean Anderson58875792020-10-16 18:57:51 -040073#define CTRLR0_MODE_MASK GENMASK(7, 6)
74#define CTRLR0_MODE_SCPH 0x1
75#define CTRLR0_MODE_SCPOL 0x2
Stefan Roese5bef6fd2014-11-07 13:50:31 +010076
Sean Anderson58875792020-10-16 18:57:51 -040077#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 */
Stefan Roese5bef6fd2014-11-07 13:50:31 +010082
Sean Anderson58875792020-10-16 18:57:51 -040083#define CTRLR0_SLVOE_OFFSET 10
84#define CTRLR0_SRL_OFFSET 11
85#define CTRLR0_CFS_MASK GENMASK(15, 12)
86
87/* Only present when SSI_MAX_XFER_SIZE=32 */
88#define CTRLR0_DFS_32_MASK GENMASK(20, 16)
89
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
95
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)
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100103
104/* Bit fields in SR, 7 bits */
Jagan Teki95e77d92015-10-23 01:01:36 +0530105#define SR_MASK GENMASK(6, 0) /* cover 7 bits */
Jagan Teki431a9f02015-10-23 01:36:23 +0530106#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)
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100113
Stefan Roesea72f8022014-11-16 12:47:01 +0100114#define RX_TIMEOUT 1000 /* timeout in ms */
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100115
Simon Glass8a8d24b2020-12-03 16:55:23 -0700116struct dw_spi_plat {
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100117 s32 frequency; /* Default clock frequency, -1 for none */
118 void __iomem *regs;
119};
120
121struct dw_spi_priv {
Eugeniy Paltsev58c125b2017-12-28 15:09:03 +0300122 struct clk clk;
Sean Andersonddd34502020-10-16 18:57:49 -0400123 struct reset_ctl_bulk resets;
Eugeniy Paltsevbcdcb3e2018-03-22 13:50:46 +0300124 struct gpio_desc cs_gpio; /* External chip-select gpio */
125
Sean Anderson58875792020-10-16 18:57:51 -0400126 u32 (*update_cr0)(struct dw_spi_priv *priv);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100127
Sean Andersonddd34502020-10-16 18:57:49 -0400128 void __iomem *regs;
129 unsigned long bus_clk_rate;
130 unsigned int freq; /* Default frequency */
131 unsigned int mode;
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100132
Sean Andersonddd34502020-10-16 18:57:49 -0400133 const void *tx;
134 const void *tx_end;
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100135 void *rx;
136 void *rx_end;
Sean Andersonddd34502020-10-16 18:57:49 -0400137 u32 fifo_len; /* depth of the FIFO buffer */
Sean Anderson58875792020-10-16 18:57:51 -0400138 u32 max_xfer; /* Maximum transfer size (in bits) */
Ley Foon Tan6ac59092018-09-07 14:25:29 +0800139
Sean Andersonddd34502020-10-16 18:57:49 -0400140 int bits_per_word;
141 int len;
142 u8 cs; /* chip select pin */
143 u8 tmode; /* TR/TO/RO/EEPROM */
144 u8 type; /* SPI/SSP/MicroWire */
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100145};
146
Eugeniy Paltsev4b5f6c52018-03-22 13:50:47 +0300147static inline u32 dw_read(struct dw_spi_priv *priv, u32 offset)
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100148{
149 return __raw_readl(priv->regs + offset);
150}
151
Eugeniy Paltsev4b5f6c52018-03-22 13:50:47 +0300152static inline void dw_write(struct dw_spi_priv *priv, u32 offset, u32 val)
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100153{
154 __raw_writel(val, priv->regs + offset);
155}
156
Sean Anderson58875792020-10-16 18:57:51 -0400157static u32 dw_spi_dw16_update_cr0(struct dw_spi_priv *priv)
158{
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);
163}
164
165static u32 dw_spi_dw32_update_cr0(struct dw_spi_priv *priv)
166{
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);
171}
172
173static u32 dw_spi_dwc_update_cr0(struct dw_spi_priv *priv)
174{
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);
179}
180
181static int dw_spi_apb_init(struct udevice *bus, struct dw_spi_priv *priv)
182{
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))) {
187 priv->max_xfer = 16;
188 priv->update_cr0 = dw_spi_dw16_update_cr0;
189 } else {
190 priv->max_xfer = 32;
191 priv->update_cr0 = dw_spi_dw32_update_cr0;
192 }
193
194 return 0;
195}
196
197static int dw_spi_dwc_init(struct udevice *bus, struct dw_spi_priv *priv)
198{
199 priv->max_xfer = 32;
200 priv->update_cr0 = dw_spi_dwc_update_cr0;
201 return 0;
202}
203
Eugeniy Paltsevbcdcb3e2018-03-22 13:50:46 +0300204static int request_gpio_cs(struct udevice *bus)
205{
Simon Glassbcee8d62019-12-06 21:41:35 -0700206#if CONFIG_IS_ENABLED(DM_GPIO) && !defined(CONFIG_SPL_BUILD)
Eugeniy Paltsevbcdcb3e2018-03-22 13:50:46 +0300207 struct dw_spi_priv *priv = dev_get_priv(bus);
208 int ret;
209
210 /* External chip select gpio line is optional */
Sean Anderson13fc44e2020-10-16 18:57:45 -0400211 ret = gpio_request_by_name(bus, "cs-gpios", 0, &priv->cs_gpio,
212 GPIOD_IS_OUT | GPIOD_IS_OUT_ACTIVE);
Eugeniy Paltsevbcdcb3e2018-03-22 13:50:46 +0300213 if (ret == -ENOENT)
214 return 0;
215
216 if (ret < 0) {
Sean Anderson1b3dd492020-10-16 18:57:44 -0400217 dev_err(bus, "Couldn't request gpio! (error %d)\n", ret);
Eugeniy Paltsevbcdcb3e2018-03-22 13:50:46 +0300218 return ret;
219 }
220
221 if (dm_gpio_is_valid(&priv->cs_gpio)) {
222 dm_gpio_set_dir_flags(&priv->cs_gpio,
223 GPIOD_IS_OUT | GPIOD_IS_OUT_ACTIVE);
224 }
225
Sean Anderson1b3dd492020-10-16 18:57:44 -0400226 dev_dbg(bus, "Using external gpio for CS management\n");
Eugeniy Paltsevbcdcb3e2018-03-22 13:50:46 +0300227#endif
228 return 0;
229}
230
Simon Glassd1998a92020-12-03 16:55:21 -0700231static int dw_spi_of_to_plat(struct udevice *bus)
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100232{
Simon Glass0fd3d912020-12-22 19:30:28 -0700233 struct dw_spi_plat *plat = dev_get_plat(bus);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100234
Masahiro Yamada8613c8d2020-07-17 14:36:46 +0900235 plat->regs = dev_read_addr_ptr(bus);
Sean Andersonc785f432020-10-16 18:57:46 -0400236 if (!plat->regs)
237 return -EINVAL;
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100238
239 /* Use 500KHz as a suitable default */
Simon Goldschmidt27c3e072019-05-09 22:11:57 +0200240 plat->frequency = dev_read_u32_default(bus, "spi-max-frequency",
241 500000);
Sean Anderson58875792020-10-16 18:57:51 -0400242
243 if (dev_read_bool(bus, "spi-slave"))
244 return -EINVAL;
245
Sean Anderson1b3dd492020-10-16 18:57:44 -0400246 dev_info(bus, "max-frequency=%d\n", plat->frequency);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100247
Eugeniy Paltsevbcdcb3e2018-03-22 13:50:46 +0300248 return request_gpio_cs(bus);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100249}
250
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100251/* Restart the controller, disable all interrupts, clean rx fifo */
Sean Anderson1b3dd492020-10-16 18:57:44 -0400252static void spi_hw_init(struct udevice *bus, struct dw_spi_priv *priv)
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100253{
Sean Anderson934beab2020-10-16 18:57:48 -0400254 dw_write(priv, DW_SPI_SSIENR, 0);
Eugeniy Paltsev4b5f6c52018-03-22 13:50:47 +0300255 dw_write(priv, DW_SPI_IMR, 0xff);
Sean Anderson934beab2020-10-16 18:57:48 -0400256 dw_write(priv, DW_SPI_SSIENR, 1);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100257
258 /*
259 * Try to detect the FIFO depth if not set by interface driver,
260 * the depth could be from 2 to 256 from HW spec
261 */
262 if (!priv->fifo_len) {
263 u32 fifo;
264
Axel Lin52091ad2015-02-26 10:45:22 +0800265 for (fifo = 1; fifo < 256; fifo++) {
Sean Anderson30040342020-10-16 18:57:47 -0400266 dw_write(priv, DW_SPI_TXFTLR, fifo);
267 if (fifo != dw_read(priv, DW_SPI_TXFTLR))
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100268 break;
269 }
270
Axel Lin52091ad2015-02-26 10:45:22 +0800271 priv->fifo_len = (fifo == 1) ? 0 : fifo;
Sean Anderson30040342020-10-16 18:57:47 -0400272 dw_write(priv, DW_SPI_TXFTLR, 0);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100273 }
Sean Anderson1b3dd492020-10-16 18:57:44 -0400274 dev_dbg(bus, "fifo_len=%d\n", priv->fifo_len);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100275}
276
Eugeniy Paltsev58c125b2017-12-28 15:09:03 +0300277/*
278 * We define dw_spi_get_clk function as 'weak' as some targets
279 * (like SOCFPGA_GEN5 and SOCFPGA_ARRIA10) don't use standard clock API
280 * and implement dw_spi_get_clk their own way in their clock manager.
281 */
282__weak int dw_spi_get_clk(struct udevice *bus, ulong *rate)
283{
284 struct dw_spi_priv *priv = dev_get_priv(bus);
285 int ret;
286
287 ret = clk_get_by_index(bus, 0, &priv->clk);
288 if (ret)
289 return ret;
290
291 ret = clk_enable(&priv->clk);
292 if (ret && ret != -ENOSYS && ret != -ENOTSUPP)
293 return ret;
294
295 *rate = clk_get_rate(&priv->clk);
296 if (!*rate)
297 goto err_rate;
298
Sean Anderson1b3dd492020-10-16 18:57:44 -0400299 dev_dbg(bus, "Got clock via device tree: %lu Hz\n", *rate);
Eugeniy Paltsev58c125b2017-12-28 15:09:03 +0300300
301 return 0;
302
303err_rate:
304 clk_disable(&priv->clk);
305 clk_free(&priv->clk);
306
307 return -EINVAL;
308}
309
Ley Foon Tan6ac59092018-09-07 14:25:29 +0800310static int dw_spi_reset(struct udevice *bus)
311{
312 int ret;
313 struct dw_spi_priv *priv = dev_get_priv(bus);
314
315 ret = reset_get_bulk(bus, &priv->resets);
316 if (ret) {
317 /*
318 * Return 0 if error due to !CONFIG_DM_RESET and reset
319 * DT property is not present.
320 */
321 if (ret == -ENOENT || ret == -ENOTSUPP)
322 return 0;
323
Sean Anderson1b3dd492020-10-16 18:57:44 -0400324 dev_warn(bus, "Couldn't find/assert reset device (error %d)\n",
325 ret);
Ley Foon Tan6ac59092018-09-07 14:25:29 +0800326 return ret;
327 }
328
329 ret = reset_deassert_bulk(&priv->resets);
330 if (ret) {
331 reset_release_bulk(&priv->resets);
Sean Anderson1b3dd492020-10-16 18:57:44 -0400332 dev_err(bus, "Failed to de-assert reset for SPI (error %d)\n",
333 ret);
Ley Foon Tan6ac59092018-09-07 14:25:29 +0800334 return ret;
335 }
336
337 return 0;
338}
339
Sean Anderson58875792020-10-16 18:57:51 -0400340typedef int (*dw_spi_init_t)(struct udevice *bus, struct dw_spi_priv *priv);
341
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100342static int dw_spi_probe(struct udevice *bus)
343{
Sean Anderson58875792020-10-16 18:57:51 -0400344 dw_spi_init_t init = (dw_spi_init_t)dev_get_driver_data(bus);
Simon Glass8a8d24b2020-12-03 16:55:23 -0700345 struct dw_spi_plat *plat = dev_get_plat(bus);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100346 struct dw_spi_priv *priv = dev_get_priv(bus);
Eugeniy Paltsev58c125b2017-12-28 15:09:03 +0300347 int ret;
Sean Anderson58875792020-10-16 18:57:51 -0400348 u32 version;
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100349
350 priv->regs = plat->regs;
351 priv->freq = plat->frequency;
352
Eugeniy Paltsev58c125b2017-12-28 15:09:03 +0300353 ret = dw_spi_get_clk(bus, &priv->bus_clk_rate);
354 if (ret)
355 return ret;
356
Ley Foon Tan6ac59092018-09-07 14:25:29 +0800357 ret = dw_spi_reset(bus);
358 if (ret)
359 return ret;
360
Sean Anderson58875792020-10-16 18:57:51 -0400361 if (!init)
362 return -EINVAL;
363 ret = init(bus, priv);
364 if (ret)
365 return ret;
366
367 version = dw_read(priv, DW_SPI_VERSION);
368 dev_dbg(bus, "ssi_version_id=%c.%c%c%c ssi_max_xfer_size=%u\n",
369 version >> 24, version >> 16, version >> 8, version,
370 priv->max_xfer);
371
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100372 /* Currently only bits_per_word == 8 supported */
373 priv->bits_per_word = 8;
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100374
375 priv->tmode = 0; /* Tx & Rx */
376
377 /* Basic HW init */
Sean Anderson1b3dd492020-10-16 18:57:44 -0400378 spi_hw_init(bus, priv);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100379
380 return 0;
381}
382
383/* Return the max entries we can fill into tx fifo */
384static inline u32 tx_max(struct dw_spi_priv *priv)
385{
386 u32 tx_left, tx_room, rxtx_gap;
387
Stefan Roesea72f8022014-11-16 12:47:01 +0100388 tx_left = (priv->tx_end - priv->tx) / (priv->bits_per_word >> 3);
Eugeniy Paltsev4b5f6c52018-03-22 13:50:47 +0300389 tx_room = priv->fifo_len - dw_read(priv, DW_SPI_TXFLR);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100390
391 /*
392 * Another concern is about the tx/rx mismatch, we
Stefan Roesea72f8022014-11-16 12:47:01 +0100393 * thought about using (priv->fifo_len - rxflr - txflr) as
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100394 * one maximum value for tx, but it doesn't cover the
395 * data which is out of tx/rx fifo and inside the
396 * shift registers. So a control from sw point of
397 * view is taken.
398 */
399 rxtx_gap = ((priv->rx_end - priv->rx) - (priv->tx_end - priv->tx)) /
Stefan Roesea72f8022014-11-16 12:47:01 +0100400 (priv->bits_per_word >> 3);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100401
402 return min3(tx_left, tx_room, (u32)(priv->fifo_len - rxtx_gap));
403}
404
405/* Return the max entries we should read out of rx fifo */
406static inline u32 rx_max(struct dw_spi_priv *priv)
407{
Stefan Roesea72f8022014-11-16 12:47:01 +0100408 u32 rx_left = (priv->rx_end - priv->rx) / (priv->bits_per_word >> 3);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100409
Eugeniy Paltsev4b5f6c52018-03-22 13:50:47 +0300410 return min_t(u32, rx_left, dw_read(priv, DW_SPI_RXFLR));
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100411}
412
413static void dw_writer(struct dw_spi_priv *priv)
414{
415 u32 max = tx_max(priv);
Sean Anderson58875792020-10-16 18:57:51 -0400416 u32 txw = 0xFFFFFFFF;
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100417
418 while (max--) {
419 /* Set the tx word if the transfer's original "tx" is not null */
420 if (priv->tx_end - priv->len) {
Stefan Roesea72f8022014-11-16 12:47:01 +0100421 if (priv->bits_per_word == 8)
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100422 txw = *(u8 *)(priv->tx);
423 else
424 txw = *(u16 *)(priv->tx);
425 }
Eugeniy Paltsev4b5f6c52018-03-22 13:50:47 +0300426 dw_write(priv, DW_SPI_DR, txw);
Sean Anderson1b3dd492020-10-16 18:57:44 -0400427 log_content("tx=0x%02x\n", txw);
Stefan Roesea72f8022014-11-16 12:47:01 +0100428 priv->tx += priv->bits_per_word >> 3;
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100429 }
430}
431
Eugeniy Paltsevd3d8aae2018-03-22 13:50:45 +0300432static void dw_reader(struct dw_spi_priv *priv)
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100433{
Eugeniy Paltsevd3d8aae2018-03-22 13:50:45 +0300434 u32 max = rx_max(priv);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100435 u16 rxw;
436
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100437 while (max--) {
Eugeniy Paltsev4b5f6c52018-03-22 13:50:47 +0300438 rxw = dw_read(priv, DW_SPI_DR);
Sean Anderson1b3dd492020-10-16 18:57:44 -0400439 log_content("rx=0x%02x\n", rxw);
Stefan Roesea72f8022014-11-16 12:47:01 +0100440
Eugeniy Paltsevd3d8aae2018-03-22 13:50:45 +0300441 /* Care about rx if the transfer's original "rx" is not null */
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100442 if (priv->rx_end - priv->len) {
Stefan Roesea72f8022014-11-16 12:47:01 +0100443 if (priv->bits_per_word == 8)
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100444 *(u8 *)(priv->rx) = rxw;
445 else
446 *(u16 *)(priv->rx) = rxw;
447 }
Stefan Roesea72f8022014-11-16 12:47:01 +0100448 priv->rx += priv->bits_per_word >> 3;
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100449 }
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100450}
451
452static int poll_transfer(struct dw_spi_priv *priv)
453{
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100454 do {
455 dw_writer(priv);
Eugeniy Paltsevd3d8aae2018-03-22 13:50:45 +0300456 dw_reader(priv);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100457 } while (priv->rx_end > priv->rx);
458
459 return 0;
460}
461
Gregory CLEMENTbea91b02018-10-09 14:14:07 +0200462/*
463 * We define external_cs_manage function as 'weak' as some targets
464 * (like MSCC Ocelot) don't control the external CS pin using a GPIO
465 * controller. These SoCs use specific registers to control by
466 * software the SPI pins (and especially the CS).
467 */
468__weak void external_cs_manage(struct udevice *dev, bool on)
Eugeniy Paltsevbcdcb3e2018-03-22 13:50:46 +0300469{
Simon Glassbcee8d62019-12-06 21:41:35 -0700470#if CONFIG_IS_ENABLED(DM_GPIO) && !defined(CONFIG_SPL_BUILD)
Eugeniy Paltsevbcdcb3e2018-03-22 13:50:46 +0300471 struct dw_spi_priv *priv = dev_get_priv(dev->parent);
472
473 if (!dm_gpio_is_valid(&priv->cs_gpio))
474 return;
475
476 dm_gpio_set_value(&priv->cs_gpio, on ? 1 : 0);
477#endif
478}
479
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100480static int dw_spi_xfer(struct udevice *dev, unsigned int bitlen,
481 const void *dout, void *din, unsigned long flags)
482{
483 struct udevice *bus = dev->parent;
484 struct dw_spi_priv *priv = dev_get_priv(bus);
485 const u8 *tx = dout;
486 u8 *rx = din;
487 int ret = 0;
488 u32 cr0 = 0;
Eugeniy Paltsevc6b4f032018-03-22 13:50:43 +0300489 u32 val;
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100490 u32 cs;
491
492 /* spi core configured to do 8 bit transfers */
493 if (bitlen % 8) {
Sean Anderson1b3dd492020-10-16 18:57:44 -0400494 dev_err(dev, "Non byte aligned SPI transfer.\n");
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100495 return -1;
496 }
497
Eugeniy Paltsevbcdcb3e2018-03-22 13:50:46 +0300498 /* Start the transaction if necessary. */
499 if (flags & SPI_XFER_BEGIN)
500 external_cs_manage(dev, false);
501
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100502 if (rx && tx)
Sean Anderson58875792020-10-16 18:57:51 -0400503 priv->tmode = CTRLR0_TMOD_TR;
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100504 else if (rx)
Sean Anderson58875792020-10-16 18:57:51 -0400505 priv->tmode = CTRLR0_TMOD_RO;
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100506 else
Eugeniy Paltsevfc282c72018-03-22 13:50:44 +0300507 /*
Sean Anderson58875792020-10-16 18:57:51 -0400508 * In transmit only mode (CTRL0_TMOD_TO) input FIFO never gets
Eugeniy Paltsevfc282c72018-03-22 13:50:44 +0300509 * any data which breaks our logic in poll_transfer() above.
510 */
Sean Anderson58875792020-10-16 18:57:51 -0400511 priv->tmode = CTRLR0_TMOD_TR;
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100512
Sean Anderson58875792020-10-16 18:57:51 -0400513 cr0 = priv->update_cr0(priv);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100514
Stefan Roesea72f8022014-11-16 12:47:01 +0100515 priv->len = bitlen >> 3;
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100516
517 priv->tx = (void *)tx;
518 priv->tx_end = priv->tx + priv->len;
519 priv->rx = rx;
520 priv->rx_end = priv->rx + priv->len;
521
522 /* Disable controller before writing control registers */
Sean Anderson934beab2020-10-16 18:57:48 -0400523 dw_write(priv, DW_SPI_SSIENR, 0);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100524
Sean Anderson1b3dd492020-10-16 18:57:44 -0400525 dev_dbg(dev, "cr0=%08x rx=%p tx=%p len=%d [bytes]\n", cr0, rx, tx,
526 priv->len);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100527 /* Reprogram cr0 only if changed */
Sean Anderson30040342020-10-16 18:57:47 -0400528 if (dw_read(priv, DW_SPI_CTRLR0) != cr0)
529 dw_write(priv, DW_SPI_CTRLR0, cr0);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100530
531 /*
532 * Configure the desired SS (slave select 0...3) in the controller
533 * The DW SPI controller will activate and deactivate this CS
534 * automatically. So no cs_activate() etc is needed in this driver.
535 */
536 cs = spi_chip_select(dev);
Eugeniy Paltsev4b5f6c52018-03-22 13:50:47 +0300537 dw_write(priv, DW_SPI_SER, 1 << cs);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100538
539 /* Enable controller after writing control registers */
Sean Anderson934beab2020-10-16 18:57:48 -0400540 dw_write(priv, DW_SPI_SSIENR, 1);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100541
542 /* Start transfer in a polling loop */
543 ret = poll_transfer(priv);
544
Eugeniy Paltsevc6b4f032018-03-22 13:50:43 +0300545 /*
546 * Wait for current transmit operation to complete.
547 * Otherwise if some data still exists in Tx FIFO it can be
548 * silently flushed, i.e. dropped on disabling of the controller,
549 * which happens when writing 0 to DW_SPI_SSIENR which happens
550 * in the beginning of new transfer.
551 */
552 if (readl_poll_timeout(priv->regs + DW_SPI_SR, val,
Eugeniy Paltsev9b14ac52018-04-19 17:47:41 +0300553 (val & SR_TF_EMPT) && !(val & SR_BUSY),
Eugeniy Paltsevc6b4f032018-03-22 13:50:43 +0300554 RX_TIMEOUT * 1000)) {
555 ret = -ETIMEDOUT;
556 }
557
Eugeniy Paltsevbcdcb3e2018-03-22 13:50:46 +0300558 /* Stop the transaction if necessary */
559 if (flags & SPI_XFER_END)
560 external_cs_manage(dev, true);
561
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100562 return ret;
563}
564
Sean Andersonfec7bf02020-10-16 18:57:53 -0400565/*
566 * This function is necessary for reading SPI flash with the native CS
567 * c.f. https://lkml.org/lkml/2015/12/23/132
568 */
569static int dw_spi_exec_op(struct spi_slave *slave, const struct spi_mem_op *op)
570{
571 bool read = op->data.dir == SPI_MEM_DATA_IN;
572 int pos, i, ret = 0;
573 struct udevice *bus = slave->dev->parent;
574 struct dw_spi_priv *priv = dev_get_priv(bus);
575 u8 op_len = sizeof(op->cmd.opcode) + op->addr.nbytes + op->dummy.nbytes;
576 u8 op_buf[op_len];
577 u32 cr0;
578
579 if (read)
580 priv->tmode = CTRLR0_TMOD_EPROMREAD;
581 else
582 priv->tmode = CTRLR0_TMOD_TO;
583
584 cr0 = priv->update_cr0(priv);
585 dev_dbg(bus, "cr0=%08x buf=%p len=%u [bytes]\n", cr0, op->data.buf.in,
586 op->data.nbytes);
587
588 dw_write(priv, DW_SPI_SSIENR, 0);
589 dw_write(priv, DW_SPI_CTRLR0, cr0);
590 if (read)
591 dw_write(priv, DW_SPI_CTRLR1, op->data.nbytes - 1);
592 dw_write(priv, DW_SPI_SSIENR, 1);
593
594 /* From spi_mem_exec_op */
595 pos = 0;
596 op_buf[pos++] = op->cmd.opcode;
597 if (op->addr.nbytes) {
598 for (i = 0; i < op->addr.nbytes; i++)
599 op_buf[pos + i] = op->addr.val >>
600 (8 * (op->addr.nbytes - i - 1));
601
602 pos += op->addr.nbytes;
603 }
604 if (op->dummy.nbytes)
605 memset(op_buf + pos, 0xff, op->dummy.nbytes);
606
607 external_cs_manage(slave->dev, false);
608
609 priv->tx = &op_buf;
610 priv->tx_end = priv->tx + op_len;
611 priv->rx = NULL;
612 priv->rx_end = NULL;
613 while (priv->tx != priv->tx_end)
614 dw_writer(priv);
615
616 /*
617 * XXX: The following are tight loops! Enabling debug messages may cause
618 * them to fail because we are not reading/writing the fifo fast enough.
619 */
620 if (read) {
621 priv->rx = op->data.buf.in;
622 priv->rx_end = priv->rx + op->data.nbytes;
623
624 dw_write(priv, DW_SPI_SER, 1 << spi_chip_select(slave->dev));
625 while (priv->rx != priv->rx_end)
626 dw_reader(priv);
627 } else {
628 u32 val;
629
630 priv->tx = op->data.buf.out;
631 priv->tx_end = priv->tx + op->data.nbytes;
632
633 /* Fill up the write fifo before starting the transfer */
634 dw_writer(priv);
635 dw_write(priv, DW_SPI_SER, 1 << spi_chip_select(slave->dev));
636 while (priv->tx != priv->tx_end)
637 dw_writer(priv);
638
639 if (readl_poll_timeout(priv->regs + DW_SPI_SR, val,
640 (val & SR_TF_EMPT) && !(val & SR_BUSY),
641 RX_TIMEOUT * 1000)) {
642 ret = -ETIMEDOUT;
643 }
644 }
645
646 dw_write(priv, DW_SPI_SER, 0);
647 external_cs_manage(slave->dev, true);
648
649 dev_dbg(bus, "%u bytes xfered\n", op->data.nbytes);
650 return ret;
651}
652
653/* The size of ctrl1 limits data transfers to 64K */
654static int dw_spi_adjust_op_size(struct spi_slave *slave, struct spi_mem_op *op)
655{
656 op->data.nbytes = min(op->data.nbytes, (unsigned int)SZ_64K);
657
658 return 0;
659}
660
661static const struct spi_controller_mem_ops dw_spi_mem_ops = {
662 .exec_op = dw_spi_exec_op,
663 .adjust_op_size = dw_spi_adjust_op_size,
664};
665
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100666static int dw_spi_set_speed(struct udevice *bus, uint speed)
667{
Simon Glass0fd3d912020-12-22 19:30:28 -0700668 struct dw_spi_plat *plat = dev_get_plat(bus);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100669 struct dw_spi_priv *priv = dev_get_priv(bus);
670 u16 clk_div;
671
672 if (speed > plat->frequency)
673 speed = plat->frequency;
674
675 /* Disable controller before writing control registers */
Sean Anderson934beab2020-10-16 18:57:48 -0400676 dw_write(priv, DW_SPI_SSIENR, 0);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100677
678 /* clk_div doesn't support odd number */
Eugeniy Paltsev58c125b2017-12-28 15:09:03 +0300679 clk_div = priv->bus_clk_rate / speed;
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100680 clk_div = (clk_div + 1) & 0xfffe;
Eugeniy Paltsev4b5f6c52018-03-22 13:50:47 +0300681 dw_write(priv, DW_SPI_BAUDR, clk_div);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100682
683 /* Enable controller after writing control registers */
Sean Anderson934beab2020-10-16 18:57:48 -0400684 dw_write(priv, DW_SPI_SSIENR, 1);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100685
686 priv->freq = speed;
Sean Anderson1b3dd492020-10-16 18:57:44 -0400687 dev_dbg(bus, "speed=%d clk_div=%d\n", priv->freq, clk_div);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100688
689 return 0;
690}
691
692static int dw_spi_set_mode(struct udevice *bus, uint mode)
693{
694 struct dw_spi_priv *priv = dev_get_priv(bus);
695
696 /*
697 * Can't set mode yet. Since this depends on if rx, tx, or
698 * rx & tx is requested. So we have to defer this to the
699 * real transfer function.
700 */
701 priv->mode = mode;
Sean Anderson1b3dd492020-10-16 18:57:44 -0400702 dev_dbg(bus, "mode=%d\n", priv->mode);
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100703
704 return 0;
705}
706
Ley Foon Tan6ac59092018-09-07 14:25:29 +0800707static int dw_spi_remove(struct udevice *bus)
708{
709 struct dw_spi_priv *priv = dev_get_priv(bus);
Ley Foon Tane7e05fc2018-09-19 16:27:19 +0800710 int ret;
Ley Foon Tan6ac59092018-09-07 14:25:29 +0800711
Ley Foon Tane7e05fc2018-09-19 16:27:19 +0800712 ret = reset_release_bulk(&priv->resets);
713 if (ret)
714 return ret;
715
716#if CONFIG_IS_ENABLED(CLK)
717 ret = clk_disable(&priv->clk);
718 if (ret)
719 return ret;
720
721 ret = clk_free(&priv->clk);
722 if (ret)
723 return ret;
724#endif
725 return 0;
Ley Foon Tan6ac59092018-09-07 14:25:29 +0800726}
727
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100728static const struct dm_spi_ops dw_spi_ops = {
729 .xfer = dw_spi_xfer,
Sean Andersonfec7bf02020-10-16 18:57:53 -0400730 .mem_ops = &dw_spi_mem_ops,
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100731 .set_speed = dw_spi_set_speed,
732 .set_mode = dw_spi_set_mode,
733 /*
734 * cs_info is not needed, since we require all chip selects to be
735 * in the device tree explicitly
736 */
737};
738
739static const struct udevice_id dw_spi_ids[] = {
Sean Anderson58875792020-10-16 18:57:51 -0400740 /* Generic compatible strings */
741
742 { .compatible = "snps,dw-apb-ssi", .data = (ulong)dw_spi_apb_init },
743 { .compatible = "snps,dw-apb-ssi-3.20a", .data = (ulong)dw_spi_apb_init },
744 { .compatible = "snps,dw-apb-ssi-3.22a", .data = (ulong)dw_spi_apb_init },
745 /* First version with SSI_MAX_XFER_SIZE */
746 { .compatible = "snps,dw-apb-ssi-3.23a", .data = (ulong)dw_spi_apb_init },
747 /* First version with Dual/Quad SPI; unused by this driver */
748 { .compatible = "snps,dw-apb-ssi-4.00a", .data = (ulong)dw_spi_apb_init },
749 { .compatible = "snps,dw-apb-ssi-4.01", .data = (ulong)dw_spi_apb_init },
750 { .compatible = "snps,dwc-ssi-1.01a", .data = (ulong)dw_spi_dwc_init },
751
752 /* Compatible strings for specific SoCs */
753
754 /*
755 * Both the Cyclone V and Arria V share a device tree and have the same
756 * version of this device. This compatible string is used for those
757 * devices, and is not used for sofpgas in general.
758 */
759 { .compatible = "altr,socfpga-spi", .data = (ulong)dw_spi_apb_init },
760 { .compatible = "altr,socfpga-arria10-spi", .data = (ulong)dw_spi_apb_init },
761 { .compatible = "canaan,kendryte-k210-spi", .data = (ulong)dw_spi_apb_init },
762 { .compatible = "canaan,kendryte-k210-ssi", .data = (ulong)dw_spi_dwc_init },
763 { .compatible = "intel,stratix10-spi", .data = (ulong)dw_spi_apb_init },
764 { .compatible = "intel,agilex-spi", .data = (ulong)dw_spi_apb_init },
765 { .compatible = "mscc,ocelot-spi", .data = (ulong)dw_spi_apb_init },
766 { .compatible = "mscc,jaguar2-spi", .data = (ulong)dw_spi_apb_init },
767 { .compatible = "snps,axs10x-spi", .data = (ulong)dw_spi_apb_init },
768 { .compatible = "snps,hsdk-spi", .data = (ulong)dw_spi_apb_init },
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100769 { }
770};
771
772U_BOOT_DRIVER(dw_spi) = {
773 .name = "dw_spi",
774 .id = UCLASS_SPI,
775 .of_match = dw_spi_ids,
776 .ops = &dw_spi_ops,
Simon Glassd1998a92020-12-03 16:55:21 -0700777 .of_to_plat = dw_spi_of_to_plat,
Simon Glass8a8d24b2020-12-03 16:55:23 -0700778 .plat_auto = sizeof(struct dw_spi_plat),
Simon Glass41575d82020-12-03 16:55:17 -0700779 .priv_auto = sizeof(struct dw_spi_priv),
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100780 .probe = dw_spi_probe,
Ley Foon Tan6ac59092018-09-07 14:25:29 +0800781 .remove = dw_spi_remove,
Stefan Roese5bef6fd2014-11-07 13:50:31 +0100782};