]> git.ipfire.org Git - people/ms/u-boot.git/blame - drivers/spi/tegra114_spi.c
spi: tegra: Use BIT macro
[people/ms/u-boot.git] / drivers / spi / tegra114_spi.c
CommitLineData
77c42e80
AM
1/*
2 * NVIDIA Tegra SPI controller (T114 and later)
3 *
4 * Copyright (c) 2010-2013 NVIDIA Corporation
5 *
6 * See file CREDITS for list of people who contributed to this
7 * project.
8 *
9 * This software is licensed under the terms of the GNU General Public
10 * License version 2, as published by the Free Software Foundation, and
11 * may be copied, distributed, and modified under those terms.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24#include <common.h>
fda6fac3 25#include <dm.h>
77c42e80 26#include <asm/io.h>
77c42e80
AM
27#include <asm/arch/clock.h>
28#include <asm/arch-tegra/clk_rst.h>
77c42e80
AM
29#include <spi.h>
30#include <fdtdec.h>
fda6fac3 31#include "tegra_spi.h"
77c42e80
AM
32
33DECLARE_GLOBAL_DATA_PTR;
34
35/* COMMAND1 */
f692248f
JT
36#define SPI_CMD1_GO BIT(31)
37#define SPI_CMD1_M_S BIT(30)
77c42e80
AM
38#define SPI_CMD1_MODE_MASK 0x3
39#define SPI_CMD1_MODE_SHIFT 28
40#define SPI_CMD1_CS_SEL_MASK 0x3
41#define SPI_CMD1_CS_SEL_SHIFT 26
f692248f
JT
42#define SPI_CMD1_CS_POL_INACTIVE3 BIT(25)
43#define SPI_CMD1_CS_POL_INACTIVE2 BIT(24)
44#define SPI_CMD1_CS_POL_INACTIVE1 BIT(23)
45#define SPI_CMD1_CS_POL_INACTIVE0 BIT(22)
46#define SPI_CMD1_CS_SW_HW BIT(21)
47#define SPI_CMD1_CS_SW_VAL BIT(20)
77c42e80
AM
48#define SPI_CMD1_IDLE_SDA_MASK 0x3
49#define SPI_CMD1_IDLE_SDA_SHIFT 18
f692248f
JT
50#define SPI_CMD1_BIDIR BIT(17)
51#define SPI_CMD1_LSBI_FE BIT(16)
52#define SPI_CMD1_LSBY_FE BIT(15)
53#define SPI_CMD1_BOTH_EN_BIT BIT(14)
54#define SPI_CMD1_BOTH_EN_BYTE BIT(13)
55#define SPI_CMD1_RX_EN BIT(12)
56#define SPI_CMD1_TX_EN BIT(11)
57#define SPI_CMD1_PACKED BIT(5)
77c42e80
AM
58#define SPI_CMD1_BIT_LEN_MASK 0x1F
59#define SPI_CMD1_BIT_LEN_SHIFT 0
60
61/* COMMAND2 */
f692248f 62#define SPI_CMD2_TX_CLK_TAP_DELAY BIT(6)
77c42e80 63#define SPI_CMD2_TX_CLK_TAP_DELAY_MASK (0x3F << 6)
f692248f 64#define SPI_CMD2_RX_CLK_TAP_DELAY BIT(0)
77c42e80
AM
65#define SPI_CMD2_RX_CLK_TAP_DELAY_MASK (0x3F << 0)
66
67/* TRANSFER STATUS */
f692248f 68#define SPI_XFER_STS_RDY BIT(30)
77c42e80
AM
69
70/* FIFO STATUS */
f692248f
JT
71#define SPI_FIFO_STS_CS_INACTIVE BIT(31)
72#define SPI_FIFO_STS_FRAME_END BIT(30)
73#define SPI_FIFO_STS_RX_FIFO_FLUSH BIT(15)
74#define SPI_FIFO_STS_TX_FIFO_FLUSH BIT(14)
75#define SPI_FIFO_STS_ERR BIT(8)
76#define SPI_FIFO_STS_TX_FIFO_OVF BIT(7)
77#define SPI_FIFO_STS_TX_FIFO_UNR BIT(6)
78#define SPI_FIFO_STS_RX_FIFO_OVF BIT(5)
79#define SPI_FIFO_STS_RX_FIFO_UNR BIT(4)
80#define SPI_FIFO_STS_TX_FIFO_FULL BIT(3)
81#define SPI_FIFO_STS_TX_FIFO_EMPTY BIT(2)
82#define SPI_FIFO_STS_RX_FIFO_FULL BIT(1)
83#define SPI_FIFO_STS_RX_FIFO_EMPTY BIT(0)
77c42e80
AM
84
85#define SPI_TIMEOUT 1000
86#define TEGRA_SPI_MAX_FREQ 52000000
87
88struct spi_regs {
89 u32 command1; /* 000:SPI_COMMAND1 register */
90 u32 command2; /* 004:SPI_COMMAND2 register */
91 u32 timing1; /* 008:SPI_CS_TIM1 register */
92 u32 timing2; /* 00c:SPI_CS_TIM2 register */
93 u32 xfer_status;/* 010:SPI_TRANS_STATUS register */
94 u32 fifo_status;/* 014:SPI_FIFO_STATUS register */
95 u32 tx_data; /* 018:SPI_TX_DATA register */
96 u32 rx_data; /* 01c:SPI_RX_DATA register */
97 u32 dma_ctl; /* 020:SPI_DMA_CTL register */
98 u32 dma_blk; /* 024:SPI_DMA_BLK register */
99 u32 rsvd[56]; /* 028-107 reserved */
100 u32 tx_fifo; /* 108:SPI_FIFO1 register */
101 u32 rsvd2[31]; /* 10c-187 reserved */
102 u32 rx_fifo; /* 188:SPI_FIFO2 register */
103 u32 spare_ctl; /* 18c:SPI_SPARE_CTRL register */
104};
105
fda6fac3 106struct tegra114_spi_priv {
77c42e80
AM
107 struct spi_regs *regs;
108 unsigned int freq;
109 unsigned int mode;
110 int periph_id;
111 int valid;
fda6fac3 112 int last_transaction_us;
77c42e80
AM
113};
114
fda6fac3 115static int tegra114_spi_ofdata_to_platdata(struct udevice *bus)
77c42e80 116{
fda6fac3
SG
117 struct tegra_spi_platdata *plat = bus->platdata;
118 const void *blob = gd->fdt_blob;
119 int node = bus->of_offset;
77c42e80 120
4e9838c1 121 plat->base = dev_get_addr(bus);
fda6fac3 122 plat->periph_id = clock_decode_periph_id(blob, node);
77c42e80 123
fda6fac3
SG
124 if (plat->periph_id == PERIPH_ID_NONE) {
125 debug("%s: could not decode periph id %d\n", __func__,
126 plat->periph_id);
127 return -FDT_ERR_NOTFOUND;
77c42e80
AM
128 }
129
fda6fac3
SG
130 /* Use 500KHz as a suitable default */
131 plat->frequency = fdtdec_get_int(blob, node, "spi-max-frequency",
132 500000);
133 plat->deactivate_delay_us = fdtdec_get_int(blob, node,
134 "spi-deactivate-delay", 0);
135 debug("%s: base=%#08lx, periph_id=%d, max-frequency=%d, deactivate_delay=%d\n",
136 __func__, plat->base, plat->periph_id, plat->frequency,
137 plat->deactivate_delay_us);
77c42e80 138
fda6fac3 139 return 0;
77c42e80
AM
140}
141
fda6fac3 142static int tegra114_spi_probe(struct udevice *bus)
77c42e80 143{
fda6fac3
SG
144 struct tegra_spi_platdata *plat = dev_get_platdata(bus);
145 struct tegra114_spi_priv *priv = dev_get_priv(bus);
635c2515 146 struct spi_regs *regs;
20edd1ac 147 ulong rate;
77c42e80 148
fda6fac3 149 priv->regs = (struct spi_regs *)plat->base;
635c2515 150 regs = priv->regs;
77c42e80 151
fda6fac3
SG
152 priv->last_transaction_us = timer_get_us();
153 priv->freq = plat->frequency;
154 priv->periph_id = plat->periph_id;
77c42e80 155
20edd1ac
SG
156 /*
157 * Change SPI clock to correct frequency, PLLP_OUT0 source, falling
158 * back to the oscillator if that is too fast.
159 */
160 rate = clock_start_periph_pll(priv->periph_id, CLOCK_ID_PERIPH,
161 priv->freq);
162 if (rate > priv->freq + 100000) {
163 rate = clock_start_periph_pll(priv->periph_id, CLOCK_ID_OSC,
164 priv->freq);
165 if (rate != priv->freq) {
166 printf("Warning: SPI '%s' requested clock %u, actual clock %lu\n",
167 bus->name, priv->freq, rate);
168 }
169 }
77c42e80
AM
170
171 /* Clear stale status here */
172 setbits_le32(&regs->fifo_status,
173 SPI_FIFO_STS_ERR |
174 SPI_FIFO_STS_TX_FIFO_OVF |
175 SPI_FIFO_STS_TX_FIFO_UNR |
176 SPI_FIFO_STS_RX_FIFO_OVF |
177 SPI_FIFO_STS_RX_FIFO_UNR |
178 SPI_FIFO_STS_TX_FIFO_FULL |
179 SPI_FIFO_STS_TX_FIFO_EMPTY |
180 SPI_FIFO_STS_RX_FIFO_FULL |
181 SPI_FIFO_STS_RX_FIFO_EMPTY);
182 debug("%s: FIFO STATUS = %08x\n", __func__, readl(&regs->fifo_status));
183
635c2515
SG
184 setbits_le32(&priv->regs->command1, SPI_CMD1_M_S | SPI_CMD1_CS_SW_HW |
185 (priv->mode << SPI_CMD1_MODE_SHIFT) | SPI_CMD1_CS_SW_VAL);
77c42e80
AM
186 debug("%s: COMMAND1 = %08x\n", __func__, readl(&regs->command1));
187
188 return 0;
189}
190
fda6fac3
SG
191/**
192 * Activate the CS by driving it LOW
193 *
194 * @param slave Pointer to spi_slave to which controller has to
195 * communicate with
196 */
197static void spi_cs_activate(struct udevice *dev)
77c42e80 198{
fda6fac3
SG
199 struct udevice *bus = dev->parent;
200 struct tegra_spi_platdata *pdata = dev_get_platdata(bus);
201 struct tegra114_spi_priv *priv = dev_get_priv(bus);
202
203 /* If it's too soon to do another transaction, wait */
204 if (pdata->deactivate_delay_us &&
205 priv->last_transaction_us) {
206 ulong delay_us; /* The delay completed so far */
207 delay_us = timer_get_us() - priv->last_transaction_us;
208 if (delay_us < pdata->deactivate_delay_us)
209 udelay(pdata->deactivate_delay_us - delay_us);
210 }
77c42e80 211
fda6fac3 212 clrbits_le32(&priv->regs->command1, SPI_CMD1_CS_SW_VAL);
77c42e80
AM
213}
214
fda6fac3
SG
215/**
216 * Deactivate the CS by driving it HIGH
217 *
218 * @param slave Pointer to spi_slave to which controller has to
219 * communicate with
220 */
221static void spi_cs_deactivate(struct udevice *dev)
77c42e80 222{
fda6fac3
SG
223 struct udevice *bus = dev->parent;
224 struct tegra_spi_platdata *pdata = dev_get_platdata(bus);
225 struct tegra114_spi_priv *priv = dev_get_priv(bus);
226
227 setbits_le32(&priv->regs->command1, SPI_CMD1_CS_SW_VAL);
77c42e80 228
fda6fac3
SG
229 /* Remember time of this transaction so we can honour the bus delay */
230 if (pdata->deactivate_delay_us)
231 priv->last_transaction_us = timer_get_us();
232
233 debug("Deactivate CS, bus '%s'\n", bus->name);
77c42e80
AM
234}
235
fda6fac3
SG
236static int tegra114_spi_xfer(struct udevice *dev, unsigned int bitlen,
237 const void *data_out, void *data_in,
238 unsigned long flags)
77c42e80 239{
fda6fac3
SG
240 struct udevice *bus = dev->parent;
241 struct tegra114_spi_priv *priv = dev_get_priv(bus);
242 struct spi_regs *regs = priv->regs;
77c42e80
AM
243 u32 reg, tmpdout, tmpdin = 0;
244 const u8 *dout = data_out;
245 u8 *din = data_in;
246 int num_bytes;
247 int ret;
248
249 debug("%s: slave %u:%u dout %p din %p bitlen %u\n",
fda6fac3 250 __func__, bus->seq, spi_chip_select(dev), dout, din, bitlen);
77c42e80
AM
251 if (bitlen % 8)
252 return -1;
253 num_bytes = bitlen / 8;
254
255 ret = 0;
256
635c2515
SG
257 if (flags & SPI_XFER_BEGIN)
258 spi_cs_activate(dev);
259
77c42e80
AM
260 /* clear all error status bits */
261 reg = readl(&regs->fifo_status);
262 writel(reg, &regs->fifo_status);
263
77c42e80
AM
264 clrsetbits_le32(&regs->command1, SPI_CMD1_CS_SW_VAL,
265 SPI_CMD1_RX_EN | SPI_CMD1_TX_EN | SPI_CMD1_LSBY_FE |
fda6fac3 266 (spi_chip_select(dev) << SPI_CMD1_CS_SEL_SHIFT));
77c42e80
AM
267
268 /* set xfer size to 1 block (32 bits) */
269 writel(0, &regs->dma_blk);
270
77c42e80
AM
271 /* handle data in 32-bit chunks */
272 while (num_bytes > 0) {
273 int bytes;
77c42e80
AM
274 int tm, i;
275
276 tmpdout = 0;
277 bytes = (num_bytes > 4) ? 4 : num_bytes;
278
279 if (dout != NULL) {
280 for (i = 0; i < bytes; ++i)
281 tmpdout = (tmpdout << 8) | dout[i];
282 dout += bytes;
283 }
284
285 num_bytes -= bytes;
286
60acde43
YL
287 /* clear ready bit */
288 setbits_le32(&regs->xfer_status, SPI_XFER_STS_RDY);
289
77c42e80
AM
290 clrsetbits_le32(&regs->command1,
291 SPI_CMD1_BIT_LEN_MASK << SPI_CMD1_BIT_LEN_SHIFT,
292 (bytes * 8 - 1) << SPI_CMD1_BIT_LEN_SHIFT);
293 writel(tmpdout, &regs->tx_fifo);
294 setbits_le32(&regs->command1, SPI_CMD1_GO);
295
296 /*
297 * Wait for SPI transmit FIFO to empty, or to time out.
298 * The RX FIFO status will be read and cleared last
299 */
60acde43 300 for (tm = 0; tm < SPI_TIMEOUT; ++tm) {
77c42e80
AM
301 u32 fifo_status, xfer_status;
302
77c42e80
AM
303 xfer_status = readl(&regs->xfer_status);
304 if (!(xfer_status & SPI_XFER_STS_RDY))
305 continue;
306
60acde43 307 fifo_status = readl(&regs->fifo_status);
77c42e80
AM
308 if (fifo_status & SPI_FIFO_STS_ERR) {
309 debug("%s: got a fifo error: ", __func__);
310 if (fifo_status & SPI_FIFO_STS_TX_FIFO_OVF)
311 debug("tx FIFO overflow ");
312 if (fifo_status & SPI_FIFO_STS_TX_FIFO_UNR)
313 debug("tx FIFO underrun ");
314 if (fifo_status & SPI_FIFO_STS_RX_FIFO_OVF)
315 debug("rx FIFO overflow ");
316 if (fifo_status & SPI_FIFO_STS_RX_FIFO_UNR)
317 debug("rx FIFO underrun ");
318 if (fifo_status & SPI_FIFO_STS_TX_FIFO_FULL)
319 debug("tx FIFO full ");
320 if (fifo_status & SPI_FIFO_STS_TX_FIFO_EMPTY)
321 debug("tx FIFO empty ");
322 if (fifo_status & SPI_FIFO_STS_RX_FIFO_FULL)
323 debug("rx FIFO full ");
324 if (fifo_status & SPI_FIFO_STS_RX_FIFO_EMPTY)
325 debug("rx FIFO empty ");
326 debug("\n");
327 break;
328 }
329
330 if (!(fifo_status & SPI_FIFO_STS_RX_FIFO_EMPTY)) {
331 tmpdin = readl(&regs->rx_fifo);
77c42e80
AM
332
333 /* swap bytes read in */
334 if (din != NULL) {
335 for (i = bytes - 1; i >= 0; --i) {
336 din[i] = tmpdin & 0xff;
337 tmpdin >>= 8;
338 }
339 din += bytes;
340 }
60acde43
YL
341
342 /* We can exit when we've had both RX and TX */
343 break;
77c42e80
AM
344 }
345 }
346
347 if (tm >= SPI_TIMEOUT)
348 ret = tm;
349
350 /* clear ACK RDY, etc. bits */
351 writel(readl(&regs->fifo_status), &regs->fifo_status);
352 }
353
354 if (flags & SPI_XFER_END)
fda6fac3 355 spi_cs_deactivate(dev);
77c42e80
AM
356
357 debug("%s: transfer ended. Value=%08x, fifo_status = %08x\n",
358 __func__, tmpdin, readl(&regs->fifo_status));
359
360 if (ret) {
361 printf("%s: timeout during SPI transfer, tm %d\n",
362 __func__, ret);
363 return -1;
364 }
365
fda6fac3
SG
366 return ret;
367}
368
369static int tegra114_spi_set_speed(struct udevice *bus, uint speed)
370{
371 struct tegra_spi_platdata *plat = bus->platdata;
372 struct tegra114_spi_priv *priv = dev_get_priv(bus);
373
374 if (speed > plat->frequency)
375 speed = plat->frequency;
376 priv->freq = speed;
377 debug("%s: regs=%p, speed=%d\n", __func__, priv->regs, priv->freq);
378
77c42e80
AM
379 return 0;
380}
fda6fac3
SG
381
382static int tegra114_spi_set_mode(struct udevice *bus, uint mode)
383{
384 struct tegra114_spi_priv *priv = dev_get_priv(bus);
385
386 priv->mode = mode;
387 debug("%s: regs=%p, mode=%d\n", __func__, priv->regs, priv->mode);
388
389 return 0;
390}
391
392static const struct dm_spi_ops tegra114_spi_ops = {
fda6fac3
SG
393 .xfer = tegra114_spi_xfer,
394 .set_speed = tegra114_spi_set_speed,
395 .set_mode = tegra114_spi_set_mode,
396 /*
397 * cs_info is not needed, since we require all chip selects to be
398 * in the device tree explicitly
399 */
400};
401
402static const struct udevice_id tegra114_spi_ids[] = {
403 { .compatible = "nvidia,tegra114-spi" },
404 { }
405};
406
407U_BOOT_DRIVER(tegra114_spi) = {
408 .name = "tegra114_spi",
409 .id = UCLASS_SPI,
410 .of_match = tegra114_spi_ids,
411 .ops = &tegra114_spi_ops,
412 .ofdata_to_platdata = tegra114_spi_ofdata_to_platdata,
413 .platdata_auto_alloc_size = sizeof(struct tegra_spi_platdata),
414 .priv_auto_alloc_size = sizeof(struct tegra114_spi_priv),
fda6fac3
SG
415 .probe = tegra114_spi_probe,
416};