blob: 3679cf06a00662b50e38779b9e621a38afbae6d9 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0
Allen Martinb19f5742013-01-29 13:51:28 +00002/*
3 * NVIDIA Tegra SPI-SLINK controller
4 *
5 * Copyright (c) 2010-2013 NVIDIA Corporation
Allen Martinb19f5742013-01-29 13:51:28 +00006 */
7
8#include <common.h>
Simon Glassfda6fac2014-10-13 23:42:13 -06009#include <dm.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060010#include <log.h>
Simon Glass10453152019-11-14 12:57:30 -070011#include <time.h>
Allen Martinb19f5742013-01-29 13:51:28 +000012#include <asm/io.h>
Allen Martinb19f5742013-01-29 13:51:28 +000013#include <asm/arch/clock.h>
14#include <asm/arch-tegra/clk_rst.h>
Allen Martinb19f5742013-01-29 13:51:28 +000015#include <spi.h>
16#include <fdtdec.h>
Simon Glasscd93d622020-05-10 11:40:13 -060017#include <linux/bitops.h>
Simon Glassc05ed002020-05-10 11:40:11 -060018#include <linux/delay.h>
Simon Glassfda6fac2014-10-13 23:42:13 -060019#include "tegra_spi.h"
Allen Martinb19f5742013-01-29 13:51:28 +000020
21DECLARE_GLOBAL_DATA_PTR;
22
Allen Martin7a49ba62013-03-16 18:58:05 +000023/* COMMAND */
Jagan Tekif6922482015-10-23 01:39:06 +053024#define SLINK_CMD_ENB BIT(31)
25#define SLINK_CMD_GO BIT(30)
26#define SLINK_CMD_M_S BIT(28)
Mirza Krak5cb1b7b2015-09-08 10:30:49 +020027#define SLINK_CMD_IDLE_SCLK_DRIVE_LOW (0 << 24)
Jagan Tekif6922482015-10-23 01:39:06 +053028#define SLINK_CMD_IDLE_SCLK_DRIVE_HIGH BIT(24)
Mirza Krak5cb1b7b2015-09-08 10:30:49 +020029#define SLINK_CMD_IDLE_SCLK_PULL_LOW (2 << 24)
30#define SLINK_CMD_IDLE_SCLK_PULL_HIGH (3 << 24)
31#define SLINK_CMD_IDLE_SCLK_MASK (3 << 24)
Jagan Tekif6922482015-10-23 01:39:06 +053032#define SLINK_CMD_CK_SDA BIT(21)
33#define SLINK_CMD_CS_POL BIT(13)
34#define SLINK_CMD_CS_VAL BIT(12)
35#define SLINK_CMD_CS_SOFT BIT(11)
36#define SLINK_CMD_BIT_LENGTH BIT(4)
Jagan Teki76538ec2015-10-23 01:03:10 +053037#define SLINK_CMD_BIT_LENGTH_MASK GENMASK(4, 0)
Allen Martin7a49ba62013-03-16 18:58:05 +000038/* COMMAND2 */
Jagan Tekif6922482015-10-23 01:39:06 +053039#define SLINK_CMD2_TXEN BIT(30)
40#define SLINK_CMD2_RXEN BIT(31)
41#define SLINK_CMD2_SS_EN BIT(18)
Allen Martin7a49ba62013-03-16 18:58:05 +000042#define SLINK_CMD2_SS_EN_SHIFT 18
Jagan Teki76538ec2015-10-23 01:03:10 +053043#define SLINK_CMD2_SS_EN_MASK GENMASK(19, 18)
Jagan Tekif6922482015-10-23 01:39:06 +053044#define SLINK_CMD2_CS_ACTIVE_BETWEEN BIT(17)
Allen Martin7a49ba62013-03-16 18:58:05 +000045/* STATUS */
Jagan Tekif6922482015-10-23 01:39:06 +053046#define SLINK_STAT_BSY BIT(31)
47#define SLINK_STAT_RDY BIT(30)
48#define SLINK_STAT_ERR BIT(29)
49#define SLINK_STAT_RXF_FLUSH BIT(27)
50#define SLINK_STAT_TXF_FLUSH BIT(26)
51#define SLINK_STAT_RXF_OVF BIT(25)
52#define SLINK_STAT_TXF_UNR BIT(24)
53#define SLINK_STAT_RXF_EMPTY BIT(23)
54#define SLINK_STAT_RXF_FULL BIT(22)
55#define SLINK_STAT_TXF_EMPTY BIT(21)
56#define SLINK_STAT_TXF_FULL BIT(20)
57#define SLINK_STAT_TXF_OVF BIT(19)
58#define SLINK_STAT_RXF_UNR BIT(18)
59#define SLINK_STAT_CUR_BLKCNT BIT(15)
Allen Martin7a49ba62013-03-16 18:58:05 +000060/* STATUS2 */
Jagan Tekif6922482015-10-23 01:39:06 +053061#define SLINK_STAT2_RXF_FULL_CNT BIT(16)
62#define SLINK_STAT2_TXF_FULL_CNT BIT(0)
Allen Martin7a49ba62013-03-16 18:58:05 +000063
64#define SPI_TIMEOUT 1000
65#define TEGRA_SPI_MAX_FREQ 52000000
66
67struct spi_regs {
68 u32 command; /* SLINK_COMMAND_0 register */
69 u32 command2; /* SLINK_COMMAND2_0 reg */
70 u32 status; /* SLINK_STATUS_0 register */
71 u32 reserved; /* Reserved offset 0C */
72 u32 mas_data; /* SLINK_MAS_DATA_0 reg */
73 u32 slav_data; /* SLINK_SLAVE_DATA_0 reg */
74 u32 dma_ctl; /* SLINK_DMA_CTL_0 register */
75 u32 status2; /* SLINK_STATUS2_0 reg */
76 u32 rsvd[56]; /* 0x20 to 0xFF reserved */
77 u32 tx_fifo; /* SLINK_TX_FIFO_0 reg off 100h */
78 u32 rsvd2[31]; /* 0x104 to 0x17F reserved */
79 u32 rx_fifo; /* SLINK_RX_FIFO_0 reg off 180h */
80};
81
Simon Glassfda6fac2014-10-13 23:42:13 -060082struct tegra30_spi_priv {
Allen Martin7a49ba62013-03-16 18:58:05 +000083 struct spi_regs *regs;
Allen Martinb19f5742013-01-29 13:51:28 +000084 unsigned int freq;
85 unsigned int mode;
86 int periph_id;
87 int valid;
Simon Glassfda6fac2014-10-13 23:42:13 -060088 int last_transaction_us;
Allen Martinb19f5742013-01-29 13:51:28 +000089};
90
91struct tegra_spi_slave {
92 struct spi_slave slave;
Simon Glassfda6fac2014-10-13 23:42:13 -060093 struct tegra30_spi_priv *ctrl;
Allen Martinb19f5742013-01-29 13:51:28 +000094};
95
Simon Glassfda6fac2014-10-13 23:42:13 -060096static int tegra30_spi_ofdata_to_platdata(struct udevice *bus)
Allen Martinb19f5742013-01-29 13:51:28 +000097{
Simon Glassfda6fac2014-10-13 23:42:13 -060098 struct tegra_spi_platdata *plat = bus->platdata;
99 const void *blob = gd->fdt_blob;
Simon Glasse160f7d2017-01-17 16:52:55 -0700100 int node = dev_of_offset(bus);
Simon Glassfda6fac2014-10-13 23:42:13 -0600101
Simon Glassa821c4a2017-05-17 17:18:05 -0600102 plat->base = devfdt_get_addr(bus);
Simon Glass000f15f2017-07-25 08:30:00 -0600103 plat->periph_id = clock_decode_periph_id(bus);
Simon Glassfda6fac2014-10-13 23:42:13 -0600104
105 if (plat->periph_id == PERIPH_ID_NONE) {
106 debug("%s: could not decode periph id %d\n", __func__,
107 plat->periph_id);
108 return -FDT_ERR_NOTFOUND;
109 }
110
111 /* Use 500KHz as a suitable default */
112 plat->frequency = fdtdec_get_int(blob, node, "spi-max-frequency",
113 500000);
114 plat->deactivate_delay_us = fdtdec_get_int(blob, node,
115 "spi-deactivate-delay", 0);
116 debug("%s: base=%#08lx, periph_id=%d, max-frequency=%d, deactivate_delay=%d\n",
117 __func__, plat->base, plat->periph_id, plat->frequency,
118 plat->deactivate_delay_us);
119
120 return 0;
Allen Martinb19f5742013-01-29 13:51:28 +0000121}
122
Simon Glassfda6fac2014-10-13 23:42:13 -0600123static int tegra30_spi_probe(struct udevice *bus)
Allen Martinb19f5742013-01-29 13:51:28 +0000124{
Simon Glassfda6fac2014-10-13 23:42:13 -0600125 struct tegra_spi_platdata *plat = dev_get_platdata(bus);
126 struct tegra30_spi_priv *priv = dev_get_priv(bus);
127
128 priv->regs = (struct spi_regs *)plat->base;
129
130 priv->last_transaction_us = timer_get_us();
131 priv->freq = plat->frequency;
132 priv->periph_id = plat->periph_id;
133
Stephen Warren4832c7f2016-08-18 10:53:33 -0600134 /* Change SPI clock to correct frequency, PLLP_OUT0 source */
135 clock_start_periph_pll(priv->periph_id, CLOCK_ID_PERIPH,
136 priv->freq);
137
Simon Glassfda6fac2014-10-13 23:42:13 -0600138 return 0;
Allen Martinb19f5742013-01-29 13:51:28 +0000139}
140
Simon Glass9694b722015-04-19 09:05:40 -0600141static int tegra30_spi_claim_bus(struct udevice *dev)
Allen Martinb19f5742013-01-29 13:51:28 +0000142{
Simon Glass9694b722015-04-19 09:05:40 -0600143 struct udevice *bus = dev->parent;
Simon Glassfda6fac2014-10-13 23:42:13 -0600144 struct tegra30_spi_priv *priv = dev_get_priv(bus);
145 struct spi_regs *regs = priv->regs;
Allen Martinb19f5742013-01-29 13:51:28 +0000146 u32 reg;
147
148 /* Change SPI clock to correct frequency, PLLP_OUT0 source */
Simon Glassfda6fac2014-10-13 23:42:13 -0600149 clock_start_periph_pll(priv->periph_id, CLOCK_ID_PERIPH,
150 priv->freq);
Allen Martinb19f5742013-01-29 13:51:28 +0000151
152 /* Clear stale status here */
153 reg = SLINK_STAT_RDY | SLINK_STAT_RXF_FLUSH | SLINK_STAT_TXF_FLUSH | \
154 SLINK_STAT_RXF_UNR | SLINK_STAT_TXF_OVF;
155 writel(reg, &regs->status);
156 debug("%s: STATUS = %08x\n", __func__, readl(&regs->status));
157
158 /* Set master mode and sw controlled CS */
159 reg = readl(&regs->command);
160 reg |= SLINK_CMD_M_S | SLINK_CMD_CS_SOFT;
161 writel(reg, &regs->command);
162 debug("%s: COMMAND = %08x\n", __func__, readl(&regs->command));
163
164 return 0;
165}
166
Simon Glassfda6fac2014-10-13 23:42:13 -0600167static void spi_cs_activate(struct udevice *dev)
Allen Martinb19f5742013-01-29 13:51:28 +0000168{
Simon Glassfda6fac2014-10-13 23:42:13 -0600169 struct udevice *bus = dev->parent;
170 struct tegra_spi_platdata *pdata = dev_get_platdata(bus);
171 struct tegra30_spi_priv *priv = dev_get_priv(bus);
172
173 /* If it's too soon to do another transaction, wait */
174 if (pdata->deactivate_delay_us &&
175 priv->last_transaction_us) {
176 ulong delay_us; /* The delay completed so far */
177 delay_us = timer_get_us() - priv->last_transaction_us;
178 if (delay_us < pdata->deactivate_delay_us)
179 udelay(pdata->deactivate_delay_us - delay_us);
180 }
Allen Martinb19f5742013-01-29 13:51:28 +0000181
182 /* CS is negated on Tegra, so drive a 1 to get a 0 */
Simon Glassfda6fac2014-10-13 23:42:13 -0600183 setbits_le32(&priv->regs->command, SLINK_CMD_CS_VAL);
Allen Martinb19f5742013-01-29 13:51:28 +0000184}
185
Simon Glassfda6fac2014-10-13 23:42:13 -0600186static void spi_cs_deactivate(struct udevice *dev)
Allen Martinb19f5742013-01-29 13:51:28 +0000187{
Simon Glassfda6fac2014-10-13 23:42:13 -0600188 struct udevice *bus = dev->parent;
189 struct tegra_spi_platdata *pdata = dev_get_platdata(bus);
190 struct tegra30_spi_priv *priv = dev_get_priv(bus);
Allen Martinb19f5742013-01-29 13:51:28 +0000191
192 /* CS is negated on Tegra, so drive a 0 to get a 1 */
Simon Glassfda6fac2014-10-13 23:42:13 -0600193 clrbits_le32(&priv->regs->command, SLINK_CMD_CS_VAL);
194
195 /* Remember time of this transaction so we can honour the bus delay */
196 if (pdata->deactivate_delay_us)
197 priv->last_transaction_us = timer_get_us();
Allen Martinb19f5742013-01-29 13:51:28 +0000198}
199
Simon Glassfda6fac2014-10-13 23:42:13 -0600200static int tegra30_spi_xfer(struct udevice *dev, unsigned int bitlen,
201 const void *data_out, void *data_in,
202 unsigned long flags)
Allen Martinb19f5742013-01-29 13:51:28 +0000203{
Simon Glassfda6fac2014-10-13 23:42:13 -0600204 struct udevice *bus = dev->parent;
205 struct tegra30_spi_priv *priv = dev_get_priv(bus);
206 struct spi_regs *regs = priv->regs;
Allen Martinb19f5742013-01-29 13:51:28 +0000207 u32 reg, tmpdout, tmpdin = 0;
208 const u8 *dout = data_out;
209 u8 *din = data_in;
210 int num_bytes;
211 int ret;
212
213 debug("%s: slave %u:%u dout %p din %p bitlen %u\n",
Simon Glassfda6fac2014-10-13 23:42:13 -0600214 __func__, bus->seq, spi_chip_select(dev), dout, din, bitlen);
Allen Martinb19f5742013-01-29 13:51:28 +0000215 if (bitlen % 8)
216 return -1;
217 num_bytes = bitlen / 8;
218
219 ret = 0;
220
221 reg = readl(&regs->status);
222 writel(reg, &regs->status); /* Clear all SPI events via R/W */
223 debug("%s entry: STATUS = %08x\n", __func__, reg);
224
225 reg = readl(&regs->status2);
226 writel(reg, &regs->status2); /* Clear all STATUS2 events via R/W */
227 debug("%s entry: STATUS2 = %08x\n", __func__, reg);
228
229 debug("%s entry: COMMAND = %08x\n", __func__, readl(&regs->command));
230
231 clrsetbits_le32(&regs->command2, SLINK_CMD2_SS_EN_MASK,
232 SLINK_CMD2_TXEN | SLINK_CMD2_RXEN |
Simon Glassfda6fac2014-10-13 23:42:13 -0600233 (spi_chip_select(dev) << SLINK_CMD2_SS_EN_SHIFT));
Allen Martinb19f5742013-01-29 13:51:28 +0000234 debug("%s entry: COMMAND2 = %08x\n", __func__, readl(&regs->command2));
235
236 if (flags & SPI_XFER_BEGIN)
Simon Glassfda6fac2014-10-13 23:42:13 -0600237 spi_cs_activate(dev);
Allen Martinb19f5742013-01-29 13:51:28 +0000238
239 /* handle data in 32-bit chunks */
240 while (num_bytes > 0) {
241 int bytes;
242 int is_read = 0;
243 int tm, i;
244
245 tmpdout = 0;
246 bytes = (num_bytes > 4) ? 4 : num_bytes;
247
248 if (dout != NULL) {
249 for (i = 0; i < bytes; ++i)
250 tmpdout = (tmpdout << 8) | dout[i];
251 dout += bytes;
252 }
253
254 num_bytes -= bytes;
255
256 clrsetbits_le32(&regs->command, SLINK_CMD_BIT_LENGTH_MASK,
257 bytes * 8 - 1);
258 writel(tmpdout, &regs->tx_fifo);
259 setbits_le32(&regs->command, SLINK_CMD_GO);
260
261 /*
262 * Wait for SPI transmit FIFO to empty, or to time out.
263 * The RX FIFO status will be read and cleared last
264 */
265 for (tm = 0, is_read = 0; tm < SPI_TIMEOUT; ++tm) {
266 u32 status;
267
268 status = readl(&regs->status);
269
270 /* We can exit when we've had both RX and TX activity */
271 if (is_read && (status & SLINK_STAT_TXF_EMPTY))
272 break;
273
274 if ((status & (SLINK_STAT_BSY | SLINK_STAT_RDY)) !=
275 SLINK_STAT_RDY)
276 tm++;
277
278 else if (!(status & SLINK_STAT_RXF_EMPTY)) {
279 tmpdin = readl(&regs->rx_fifo);
280 is_read = 1;
281
282 /* swap bytes read in */
283 if (din != NULL) {
284 for (i = bytes - 1; i >= 0; --i) {
285 din[i] = tmpdin & 0xff;
286 tmpdin >>= 8;
287 }
288 din += bytes;
289 }
290 }
291 }
292
293 if (tm >= SPI_TIMEOUT)
294 ret = tm;
295
296 /* clear ACK RDY, etc. bits */
297 writel(readl(&regs->status), &regs->status);
298 }
299
300 if (flags & SPI_XFER_END)
Simon Glassfda6fac2014-10-13 23:42:13 -0600301 spi_cs_deactivate(dev);
Allen Martinb19f5742013-01-29 13:51:28 +0000302
303 debug("%s: transfer ended. Value=%08x, status = %08x\n",
304 __func__, tmpdin, readl(&regs->status));
305
306 if (ret) {
307 printf("%s: timeout during SPI transfer, tm %d\n",
308 __func__, ret);
309 return -1;
310 }
311
312 return 0;
313}
Simon Glassfda6fac2014-10-13 23:42:13 -0600314
315static int tegra30_spi_set_speed(struct udevice *bus, uint speed)
316{
317 struct tegra_spi_platdata *plat = bus->platdata;
318 struct tegra30_spi_priv *priv = dev_get_priv(bus);
319
320 if (speed > plat->frequency)
321 speed = plat->frequency;
322 priv->freq = speed;
323 debug("%s: regs=%p, speed=%d\n", __func__, priv->regs, priv->freq);
324
325 return 0;
326}
327
328static int tegra30_spi_set_mode(struct udevice *bus, uint mode)
329{
330 struct tegra30_spi_priv *priv = dev_get_priv(bus);
Mirza Krak5cb1b7b2015-09-08 10:30:49 +0200331 struct spi_regs *regs = priv->regs;
332 u32 reg;
333
334 reg = readl(&regs->command);
335
336 /* Set CPOL and CPHA */
337 reg &= ~(SLINK_CMD_IDLE_SCLK_MASK | SLINK_CMD_CK_SDA);
338 if (mode & SPI_CPHA)
339 reg |= SLINK_CMD_CK_SDA;
340
341 if (mode & SPI_CPOL)
342 reg |= SLINK_CMD_IDLE_SCLK_DRIVE_HIGH;
343 else
344 reg |= SLINK_CMD_IDLE_SCLK_DRIVE_LOW;
345
346 writel(reg, &regs->command);
Simon Glassfda6fac2014-10-13 23:42:13 -0600347
348 priv->mode = mode;
349 debug("%s: regs=%p, mode=%d\n", __func__, priv->regs, priv->mode);
350
351 return 0;
352}
353
354static const struct dm_spi_ops tegra30_spi_ops = {
355 .claim_bus = tegra30_spi_claim_bus,
356 .xfer = tegra30_spi_xfer,
357 .set_speed = tegra30_spi_set_speed,
358 .set_mode = tegra30_spi_set_mode,
359 /*
360 * cs_info is not needed, since we require all chip selects to be
361 * in the device tree explicitly
362 */
363};
364
365static const struct udevice_id tegra30_spi_ids[] = {
366 { .compatible = "nvidia,tegra20-slink" },
367 { }
368};
369
370U_BOOT_DRIVER(tegra30_spi) = {
371 .name = "tegra20_slink",
372 .id = UCLASS_SPI,
373 .of_match = tegra30_spi_ids,
374 .ops = &tegra30_spi_ops,
375 .ofdata_to_platdata = tegra30_spi_ofdata_to_platdata,
376 .platdata_auto_alloc_size = sizeof(struct tegra_spi_platdata),
377 .priv_auto_alloc_size = sizeof(struct tegra30_spi_priv),
Simon Glassfda6fac2014-10-13 23:42:13 -0600378 .probe = tegra30_spi_probe,
379};