blob: 05768eef721277e310ab33532d684e682e4a1c7b [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stephan Linzfc77d512012-07-29 00:25:35 +02002/*
3 * Xilinx SPI driver
4 *
Jagan Teki48a0dbd2015-06-27 00:51:27 +05305 * Supports 8 bit SPI transfers only, with or w/o FIFO
Stephan Linzfc77d512012-07-29 00:25:35 +02006 *
Jagan Teki48a0dbd2015-06-27 00:51:27 +05307 * Based on bfin_spi.c, by way of altera_spi.c
Jagan Tekifdc2b3d2015-06-29 13:15:18 +05308 * Copyright (c) 2015 Jagan Teki <jteki@openedev.com>
Stephan Linzfc77d512012-07-29 00:25:35 +02009 * Copyright (c) 2012 Stephan Linz <linz@li-pro.net>
Jagan Teki48a0dbd2015-06-27 00:51:27 +053010 * Copyright (c) 2010 Graeme Smecher <graeme.smecher@mail.mcgill.ca>
11 * Copyright (c) 2010 Thomas Chou <thomas@wytron.com.tw>
12 * Copyright (c) 2005-2008 Analog Devices Inc.
Stephan Linzfc77d512012-07-29 00:25:35 +020013 */
Jagan Teki48a0dbd2015-06-27 00:51:27 +053014
Stephan Linzfc77d512012-07-29 00:25:35 +020015#include <config.h>
16#include <common.h>
Jagan Tekifdc2b3d2015-06-29 13:15:18 +053017#include <dm.h>
18#include <errno.h>
Simon Glass0f2af882020-05-10 11:40:05 -060019#include <log.h>
Stephan Linzfc77d512012-07-29 00:25:35 +020020#include <malloc.h>
21#include <spi.h>
Jagan Teki41fcbba2015-06-27 00:51:37 +053022#include <asm/io.h>
Vipul Kumar90098ba2018-06-30 08:15:18 +053023#include <wait_bit.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060024#include <linux/bitops.h>
Stephan Linzfc77d512012-07-29 00:25:35 +020025
Jagan Teki23e281d2015-06-27 00:51:26 +053026/*
Jagan Teki48a0dbd2015-06-27 00:51:27 +053027 * [0]: http://www.xilinx.com/support/documentation
Jagan Teki23e281d2015-06-27 00:51:26 +053028 *
Jagan Teki48a0dbd2015-06-27 00:51:27 +053029 * Xilinx SPI Register Definitions
Jagan Teki23e281d2015-06-27 00:51:26 +053030 * [1]: [0]/ip_documentation/xps_spi.pdf
31 * page 8, Register Descriptions
32 * [2]: [0]/ip_documentation/axi_spi_ds742.pdf
33 * page 7, Register Overview Table
34 */
Jagan Teki23e281d2015-06-27 00:51:26 +053035
36/* SPI Control Register (spicr), [1] p9, [2] p8 */
Jagan Tekif0a01412015-10-23 01:39:31 +053037#define SPICR_LSB_FIRST BIT(9)
38#define SPICR_MASTER_INHIBIT BIT(8)
39#define SPICR_MANUAL_SS BIT(7)
40#define SPICR_RXFIFO_RESEST BIT(6)
41#define SPICR_TXFIFO_RESEST BIT(5)
42#define SPICR_CPHA BIT(4)
43#define SPICR_CPOL BIT(3)
44#define SPICR_MASTER_MODE BIT(2)
45#define SPICR_SPE BIT(1)
46#define SPICR_LOOP BIT(0)
Jagan Teki23e281d2015-06-27 00:51:26 +053047
48/* SPI Status Register (spisr), [1] p11, [2] p10 */
Jagan Tekif0a01412015-10-23 01:39:31 +053049#define SPISR_SLAVE_MODE_SELECT BIT(5)
50#define SPISR_MODF BIT(4)
51#define SPISR_TX_FULL BIT(3)
52#define SPISR_TX_EMPTY BIT(2)
53#define SPISR_RX_FULL BIT(1)
54#define SPISR_RX_EMPTY BIT(0)
Jagan Teki23e281d2015-06-27 00:51:26 +053055
56/* SPI Data Transmit Register (spidtr), [1] p12, [2] p12 */
Jagan Tekia2888d02015-10-23 01:03:44 +053057#define SPIDTR_8BIT_MASK GENMASK(7, 0)
58#define SPIDTR_16BIT_MASK GENMASK(15, 0)
59#define SPIDTR_32BIT_MASK GENMASK(31, 0)
Jagan Teki23e281d2015-06-27 00:51:26 +053060
61/* SPI Data Receive Register (spidrr), [1] p12, [2] p12 */
Jagan Tekia2888d02015-10-23 01:03:44 +053062#define SPIDRR_8BIT_MASK GENMASK(7, 0)
63#define SPIDRR_16BIT_MASK GENMASK(15, 0)
64#define SPIDRR_32BIT_MASK GENMASK(31, 0)
Jagan Teki23e281d2015-06-27 00:51:26 +053065
66/* SPI Slave Select Register (spissr), [1] p13, [2] p13 */
67#define SPISSR_MASK(cs) (1 << (cs))
68#define SPISSR_ACT(cs) ~SPISSR_MASK(cs)
69#define SPISSR_OFF ~0UL
70
Jagan Teki23e281d2015-06-27 00:51:26 +053071/* SPI Software Reset Register (ssr) */
72#define SPISSR_RESET_VALUE 0x0a
73
Jagan Teki48a0dbd2015-06-27 00:51:27 +053074#define XILSPI_MAX_XFER_BITS 8
75#define XILSPI_SPICR_DFLT_ON (SPICR_MANUAL_SS | SPICR_MASTER_MODE | \
76 SPICR_SPE)
77#define XILSPI_SPICR_DFLT_OFF (SPICR_MASTER_INHIBIT | SPICR_MANUAL_SS)
78
79#ifndef CONFIG_XILINX_SPI_IDLE_VAL
Jagan Tekia2888d02015-10-23 01:03:44 +053080#define CONFIG_XILINX_SPI_IDLE_VAL GENMASK(7, 0)
Jagan Teki48a0dbd2015-06-27 00:51:27 +053081#endif
82
Vipul Kumar90098ba2018-06-30 08:15:18 +053083#define XILINX_SPISR_TIMEOUT 10000 /* in milliseconds */
84
Jagan Teki48a0dbd2015-06-27 00:51:27 +053085/* xilinx spi register set */
Jagan Tekifdc2b3d2015-06-29 13:15:18 +053086struct xilinx_spi_regs {
Jagan Teki48a0dbd2015-06-27 00:51:27 +053087 u32 __space0__[7];
88 u32 dgier; /* Device Global Interrupt Enable Register (DGIER) */
89 u32 ipisr; /* IP Interrupt Status Register (IPISR) */
90 u32 __space1__;
91 u32 ipier; /* IP Interrupt Enable Register (IPIER) */
92 u32 __space2__[5];
93 u32 srr; /* Softare Reset Register (SRR) */
94 u32 __space3__[7];
95 u32 spicr; /* SPI Control Register (SPICR) */
96 u32 spisr; /* SPI Status Register (SPISR) */
97 u32 spidtr; /* SPI Data Transmit Register (SPIDTR) */
98 u32 spidrr; /* SPI Data Receive Register (SPIDRR) */
99 u32 spissr; /* SPI Slave Select Register (SPISSR) */
100 u32 spitfor; /* SPI Transmit FIFO Occupancy Register (SPITFOR) */
101 u32 spirfor; /* SPI Receive FIFO Occupancy Register (SPIRFOR) */
102};
103
Jagan Tekifdc2b3d2015-06-29 13:15:18 +0530104/* xilinx spi priv */
105struct xilinx_spi_priv {
106 struct xilinx_spi_regs *regs;
Jagan Teki23e281d2015-06-27 00:51:26 +0530107 unsigned int freq;
108 unsigned int mode;
Vipul Kumar90098ba2018-06-30 08:15:18 +0530109 unsigned int fifo_depth;
Vipul Kumarc7e2aae2018-06-30 08:15:19 +0530110 u8 startup;
Jagan Teki23e281d2015-06-27 00:51:26 +0530111};
112
Jagan Tekifdc2b3d2015-06-29 13:15:18 +0530113static int xilinx_spi_probe(struct udevice *bus)
Stephan Linzfc77d512012-07-29 00:25:35 +0200114{
Jagan Tekifdc2b3d2015-06-29 13:15:18 +0530115 struct xilinx_spi_priv *priv = dev_get_priv(bus);
116 struct xilinx_spi_regs *regs = priv->regs;
Stephan Linzfc77d512012-07-29 00:25:35 +0200117
Vipul Kumar646b4602018-06-30 08:15:20 +0530118 priv->regs = (struct xilinx_spi_regs *)dev_read_addr(bus);
Stephan Linzfc77d512012-07-29 00:25:35 +0200119
Vipul Kumar646b4602018-06-30 08:15:20 +0530120 priv->fifo_depth = dev_read_u32_default(bus, "fifo-size", 0);
Vipul Kumar90098ba2018-06-30 08:15:18 +0530121
Jagan Tekifdc2b3d2015-06-29 13:15:18 +0530122 writel(SPISSR_RESET_VALUE, &regs->srr);
Stephan Linzfc77d512012-07-29 00:25:35 +0200123
Jagan Tekifdc2b3d2015-06-29 13:15:18 +0530124 return 0;
Stephan Linzfc77d512012-07-29 00:25:35 +0200125}
126
Jagan Tekifdc2b3d2015-06-29 13:15:18 +0530127static void spi_cs_activate(struct udevice *dev, uint cs)
Stephan Linzfc77d512012-07-29 00:25:35 +0200128{
Jagan Tekifdc2b3d2015-06-29 13:15:18 +0530129 struct udevice *bus = dev_get_parent(dev);
130 struct xilinx_spi_priv *priv = dev_get_priv(bus);
131 struct xilinx_spi_regs *regs = priv->regs;
Stephan Linzfc77d512012-07-29 00:25:35 +0200132
Jagan Tekifdc2b3d2015-06-29 13:15:18 +0530133 writel(SPISSR_ACT(cs), &regs->spissr);
Stephan Linzfc77d512012-07-29 00:25:35 +0200134}
135
Jagan Tekifdc2b3d2015-06-29 13:15:18 +0530136static void spi_cs_deactivate(struct udevice *dev)
Stephan Linzfc77d512012-07-29 00:25:35 +0200137{
Jagan Tekifdc2b3d2015-06-29 13:15:18 +0530138 struct udevice *bus = dev_get_parent(dev);
139 struct xilinx_spi_priv *priv = dev_get_priv(bus);
140 struct xilinx_spi_regs *regs = priv->regs;
Stephan Linzfc77d512012-07-29 00:25:35 +0200141
Jagan Tekifdc2b3d2015-06-29 13:15:18 +0530142 writel(SPISSR_OFF, &regs->spissr);
Stephan Linzfc77d512012-07-29 00:25:35 +0200143}
144
Jagan Tekifdc2b3d2015-06-29 13:15:18 +0530145static int xilinx_spi_claim_bus(struct udevice *dev)
Stephan Linzfc77d512012-07-29 00:25:35 +0200146{
Jagan Tekifdc2b3d2015-06-29 13:15:18 +0530147 struct udevice *bus = dev_get_parent(dev);
148 struct xilinx_spi_priv *priv = dev_get_priv(bus);
149 struct xilinx_spi_regs *regs = priv->regs;
Stephan Linzfc77d512012-07-29 00:25:35 +0200150
Jagan Tekifdc2b3d2015-06-29 13:15:18 +0530151 writel(SPISSR_OFF, &regs->spissr);
152 writel(XILSPI_SPICR_DFLT_ON, &regs->spicr);
Stephan Linzfc77d512012-07-29 00:25:35 +0200153
Stephan Linzfc77d512012-07-29 00:25:35 +0200154 return 0;
155}
156
Jagan Tekifdc2b3d2015-06-29 13:15:18 +0530157static int xilinx_spi_release_bus(struct udevice *dev)
Stephan Linzfc77d512012-07-29 00:25:35 +0200158{
Jagan Tekifdc2b3d2015-06-29 13:15:18 +0530159 struct udevice *bus = dev_get_parent(dev);
160 struct xilinx_spi_priv *priv = dev_get_priv(bus);
161 struct xilinx_spi_regs *regs = priv->regs;
Stephan Linzfc77d512012-07-29 00:25:35 +0200162
Jagan Tekifdc2b3d2015-06-29 13:15:18 +0530163 writel(SPISSR_OFF, &regs->spissr);
164 writel(XILSPI_SPICR_DFLT_OFF, &regs->spicr);
165
166 return 0;
Stephan Linzfc77d512012-07-29 00:25:35 +0200167}
168
Vipul Kumar90098ba2018-06-30 08:15:18 +0530169static u32 xilinx_spi_fill_txfifo(struct udevice *bus, const u8 *txp,
170 u32 txbytes)
171{
172 struct xilinx_spi_priv *priv = dev_get_priv(bus);
173 struct xilinx_spi_regs *regs = priv->regs;
174 unsigned char d;
175 u32 i = 0;
176
177 while (txbytes && !(readl(&regs->spisr) & SPISR_TX_FULL) &&
178 i < priv->fifo_depth) {
179 d = txp ? *txp++ : CONFIG_XILINX_SPI_IDLE_VAL;
180 debug("spi_xfer: tx:%x ", d);
181 /* write out and wait for processing (receive data) */
182 writel(d & SPIDTR_8BIT_MASK, &regs->spidtr);
183 txbytes--;
184 i++;
185 }
186
187 return i;
188}
189
190static u32 xilinx_spi_read_rxfifo(struct udevice *bus, u8 *rxp, u32 rxbytes)
191{
192 struct xilinx_spi_priv *priv = dev_get_priv(bus);
193 struct xilinx_spi_regs *regs = priv->regs;
194 unsigned char d;
195 unsigned int i = 0;
196
197 while (rxbytes && !(readl(&regs->spisr) & SPISR_RX_EMPTY)) {
198 d = readl(&regs->spidrr) & SPIDRR_8BIT_MASK;
199 if (rxp)
200 *rxp++ = d;
201 debug("spi_xfer: rx:%x\n", d);
202 rxbytes--;
203 i++;
204 }
205 debug("Rx_done\n");
206
207 return i;
208}
209
Vipul Kumarc7e2aae2018-06-30 08:15:19 +0530210static void xilinx_spi_startup_block(struct udevice *dev, unsigned int bytes,
211 const void *dout, void *din)
212{
213 struct udevice *bus = dev_get_parent(dev);
214 struct xilinx_spi_priv *priv = dev_get_priv(bus);
215 struct xilinx_spi_regs *regs = priv->regs;
216 struct dm_spi_slave_platdata *slave_plat = dev_get_parent_platdata(dev);
217 const unsigned char *txp = dout;
218 unsigned char *rxp = din;
219 u32 reg, count;
220 u32 txbytes = bytes;
221 u32 rxbytes = bytes;
222
223 /*
224 * This loop runs two times. First time to send the command.
225 * Second time to transfer data. After transferring data,
226 * it sets txp to the initial value for the normal operation.
227 */
228 for ( ; priv->startup < 2; priv->startup++) {
229 count = xilinx_spi_fill_txfifo(bus, txp, txbytes);
230 reg = readl(&regs->spicr) & ~SPICR_MASTER_INHIBIT;
231 writel(reg, &regs->spicr);
232 count = xilinx_spi_read_rxfifo(bus, rxp, rxbytes);
233 txp = din;
234
235 if (priv->startup) {
236 spi_cs_deactivate(dev);
237 spi_cs_activate(dev, slave_plat->cs);
238 txp = dout;
239 }
240 }
241}
242
Jagan Tekifdc2b3d2015-06-29 13:15:18 +0530243static int xilinx_spi_xfer(struct udevice *dev, unsigned int bitlen,
244 const void *dout, void *din, unsigned long flags)
Stephan Linzfc77d512012-07-29 00:25:35 +0200245{
Jagan Tekifdc2b3d2015-06-29 13:15:18 +0530246 struct udevice *bus = dev_get_parent(dev);
247 struct xilinx_spi_priv *priv = dev_get_priv(bus);
248 struct xilinx_spi_regs *regs = priv->regs;
249 struct dm_spi_slave_platdata *slave_plat = dev_get_parent_platdata(dev);
Stephan Linzfc77d512012-07-29 00:25:35 +0200250 /* assume spi core configured to do 8 bit transfers */
251 unsigned int bytes = bitlen / XILSPI_MAX_XFER_BITS;
252 const unsigned char *txp = dout;
253 unsigned char *rxp = din;
Vipul Kumar90098ba2018-06-30 08:15:18 +0530254 u32 txbytes = bytes;
255 u32 rxbytes = bytes;
256 u32 reg, count, timeout;
257 int ret;
Stephan Linzfc77d512012-07-29 00:25:35 +0200258
Jagan Teki48a0dbd2015-06-27 00:51:27 +0530259 debug("spi_xfer: bus:%i cs:%i bitlen:%i bytes:%i flags:%lx\n",
Jagan Tekifdc2b3d2015-06-29 13:15:18 +0530260 bus->seq, slave_plat->cs, bitlen, bytes, flags);
Jagan Teki48a0dbd2015-06-27 00:51:27 +0530261
Stephan Linzfc77d512012-07-29 00:25:35 +0200262 if (bitlen == 0)
263 goto done;
264
265 if (bitlen % XILSPI_MAX_XFER_BITS) {
Jagan Teki48a0dbd2015-06-27 00:51:27 +0530266 printf("XILSPI warning: Not a multiple of %d bits\n",
267 XILSPI_MAX_XFER_BITS);
Stephan Linzfc77d512012-07-29 00:25:35 +0200268 flags |= SPI_XFER_END;
269 goto done;
270 }
271
Stephan Linzfc77d512012-07-29 00:25:35 +0200272 if (flags & SPI_XFER_BEGIN)
Jagan Tekifdc2b3d2015-06-29 13:15:18 +0530273 spi_cs_activate(dev, slave_plat->cs);
Stephan Linzfc77d512012-07-29 00:25:35 +0200274
Vipul Kumarc7e2aae2018-06-30 08:15:19 +0530275 /*
276 * This is the work around for the startup block issue in
277 * the spi controller. SPI clock is passing through STARTUP
278 * block to FLASH. STARTUP block don't provide clock as soon
279 * as QSPI provides command. So first command fails.
280 */
281 xilinx_spi_startup_block(dev, bytes, dout, din);
Stephan Linzfc77d512012-07-29 00:25:35 +0200282
Vipul Kumar90098ba2018-06-30 08:15:18 +0530283 while (txbytes && rxbytes) {
284 count = xilinx_spi_fill_txfifo(bus, txp, txbytes);
285 reg = readl(&regs->spicr) & ~SPICR_MASTER_INHIBIT;
286 writel(reg, &regs->spicr);
287 txbytes -= count;
288 if (txp)
289 txp += count;
Stephan Linzfc77d512012-07-29 00:25:35 +0200290
Vipul Kumar90098ba2018-06-30 08:15:18 +0530291 ret = wait_for_bit_le32(&regs->spisr, SPISR_TX_EMPTY, true,
292 XILINX_SPISR_TIMEOUT, false);
293 if (ret < 0) {
Jagan Teki48a0dbd2015-06-27 00:51:27 +0530294 printf("XILSPI error: Xfer timeout\n");
Vipul Kumar90098ba2018-06-30 08:15:18 +0530295 return ret;
Stephan Linzfc77d512012-07-29 00:25:35 +0200296 }
297
Vipul Kumar90098ba2018-06-30 08:15:18 +0530298 debug("txbytes:0x%x,txp:0x%p\n", txbytes, txp);
299 count = xilinx_spi_read_rxfifo(bus, rxp, rxbytes);
300 rxbytes -= count;
Stephan Linzfc77d512012-07-29 00:25:35 +0200301 if (rxp)
Vipul Kumar90098ba2018-06-30 08:15:18 +0530302 rxp += count;
303 debug("rxbytes:0x%x rxp:0x%p\n", rxbytes, rxp);
Stephan Linzfc77d512012-07-29 00:25:35 +0200304 }
305
306 done:
307 if (flags & SPI_XFER_END)
Jagan Tekifdc2b3d2015-06-29 13:15:18 +0530308 spi_cs_deactivate(dev);
Stephan Linzfc77d512012-07-29 00:25:35 +0200309
310 return 0;
311}
Jagan Tekifdc2b3d2015-06-29 13:15:18 +0530312
313static int xilinx_spi_set_speed(struct udevice *bus, uint speed)
314{
315 struct xilinx_spi_priv *priv = dev_get_priv(bus);
316
317 priv->freq = speed;
318
Jagan Teki0dc543f2015-09-08 01:26:29 +0530319 debug("xilinx_spi_set_speed: regs=%p, speed=%d\n", priv->regs,
Jagan Tekifdc2b3d2015-06-29 13:15:18 +0530320 priv->freq);
321
322 return 0;
323}
324
325static int xilinx_spi_set_mode(struct udevice *bus, uint mode)
326{
327 struct xilinx_spi_priv *priv = dev_get_priv(bus);
328 struct xilinx_spi_regs *regs = priv->regs;
329 uint32_t spicr;
330
331 spicr = readl(&regs->spicr);
Jagan Teki0dc543f2015-09-08 01:26:29 +0530332 if (mode & SPI_LSB_FIRST)
Jagan Tekifdc2b3d2015-06-29 13:15:18 +0530333 spicr |= SPICR_LSB_FIRST;
Jagan Teki0dc543f2015-09-08 01:26:29 +0530334 if (mode & SPI_CPHA)
Jagan Tekifdc2b3d2015-06-29 13:15:18 +0530335 spicr |= SPICR_CPHA;
Jagan Teki0dc543f2015-09-08 01:26:29 +0530336 if (mode & SPI_CPOL)
Jagan Tekifdc2b3d2015-06-29 13:15:18 +0530337 spicr |= SPICR_CPOL;
Jagan Teki0dc543f2015-09-08 01:26:29 +0530338 if (mode & SPI_LOOP)
Jagan Tekifdc2b3d2015-06-29 13:15:18 +0530339 spicr |= SPICR_LOOP;
340
341 writel(spicr, &regs->spicr);
342 priv->mode = mode;
343
344 debug("xilinx_spi_set_mode: regs=%p, mode=%d\n", priv->regs,
345 priv->mode);
346
347 return 0;
348}
349
350static const struct dm_spi_ops xilinx_spi_ops = {
351 .claim_bus = xilinx_spi_claim_bus,
352 .release_bus = xilinx_spi_release_bus,
353 .xfer = xilinx_spi_xfer,
354 .set_speed = xilinx_spi_set_speed,
355 .set_mode = xilinx_spi_set_mode,
356};
357
358static const struct udevice_id xilinx_spi_ids[] = {
Michal Simek7465f312015-12-11 12:41:14 +0100359 { .compatible = "xlnx,xps-spi-2.00.a" },
360 { .compatible = "xlnx,xps-spi-2.00.b" },
Jagan Tekifdc2b3d2015-06-29 13:15:18 +0530361 { }
362};
363
364U_BOOT_DRIVER(xilinx_spi) = {
365 .name = "xilinx_spi",
366 .id = UCLASS_SPI,
367 .of_match = xilinx_spi_ids,
368 .ops = &xilinx_spi_ops,
369 .priv_auto_alloc_size = sizeof(struct xilinx_spi_priv),
370 .probe = xilinx_spi_probe,
371};