]> Git Repo - u-boot.git/blame - drivers/spi/rk_spi.c
serial: msm-geni: correct oversampling value based on QUP hardware revision
[u-boot.git] / drivers / spi / rk_spi.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
1b2fd5bf
SG
2/*
3 * spi driver for rockchip
4 *
8aa6c921
PT
5 * (C) 2019 Theobroma Systems Design und Consulting GmbH
6 *
1b2fd5bf
SG
7 * (C) Copyright 2015 Google, Inc
8 *
9 * (C) Copyright 2008-2013 Rockchip Electronics
10 * Peter, Software Engineering, <[email protected]>.
1b2fd5bf
SG
11 */
12
13#include <common.h>
14#include <clk.h>
15#include <dm.h>
6e019c4f 16#include <dt-structs.h>
1b2fd5bf 17#include <errno.h>
f7ae49fc 18#include <log.h>
1b2fd5bf 19#include <spi.h>
1045315d 20#include <time.h>
c05ed00a 21#include <linux/delay.h>
1221ce45 22#include <linux/errno.h>
1b2fd5bf 23#include <asm/io.h>
15f09a1a
KY
24#include <asm/arch-rockchip/clock.h>
25#include <asm/arch-rockchip/periph.h>
1b2fd5bf
SG
26#include <dm/pinctrl.h>
27#include "rk_spi.h"
28
1b2fd5bf
SG
29/* Change to 1 to output registers at the start of each transaction */
30#define DEBUG_RK_SPI 0
31
dbbdc81c
JT
32/*
33 * ctrlr1 is 16-bits, so we should support lengths of 0xffff + 1. However,
34 * the controller seems to hang when given 0x10000, so stick with this for now.
35 */
36#define ROCKCHIP_SPI_MAX_TRANLEN 0xffff
37
51a644a1
PT
38struct rockchip_spi_params {
39 /* RXFIFO overruns and TXFIFO underruns stop the master clock */
40 bool master_manages_fifo;
41};
42
8a8d24bd 43struct rockchip_spi_plat {
6e019c4f
SG
44#if CONFIG_IS_ENABLED(OF_PLATDATA)
45 struct dtd_rockchip_rk3288_spi of_plat;
46#endif
1b2fd5bf
SG
47 s32 frequency; /* Default clock frequency, -1 for none */
48 fdt_addr_t base;
49 uint deactivate_delay_us; /* Delay to wait after deactivate */
183a3a0f 50 uint activate_delay_us; /* Delay to wait after activate */
1b2fd5bf
SG
51};
52
53struct rockchip_spi_priv {
54 struct rockchip_spi *regs;
135aa950 55 struct clk clk;
1b2fd5bf
SG
56 unsigned int max_freq;
57 unsigned int mode;
1b2fd5bf 58 ulong last_transaction_us; /* Time of last transaction end */
1b2fd5bf 59 unsigned int speed_hz;
28a943c1 60 unsigned int last_speed_hz;
1b2fd5bf
SG
61 uint input_rate;
62};
63
64#define SPI_FIFO_DEPTH 32
65
66static void rkspi_dump_regs(struct rockchip_spi *regs)
67{
68 debug("ctrl0: \t\t0x%08x\n", readl(&regs->ctrlr0));
69 debug("ctrl1: \t\t0x%08x\n", readl(&regs->ctrlr1));
70 debug("ssienr: \t\t0x%08x\n", readl(&regs->enr));
71 debug("ser: \t\t0x%08x\n", readl(&regs->ser));
72 debug("baudr: \t\t0x%08x\n", readl(&regs->baudr));
73 debug("txftlr: \t\t0x%08x\n", readl(&regs->txftlr));
74 debug("rxftlr: \t\t0x%08x\n", readl(&regs->rxftlr));
75 debug("txflr: \t\t0x%08x\n", readl(&regs->txflr));
76 debug("rxflr: \t\t0x%08x\n", readl(&regs->rxflr));
77 debug("sr: \t\t0x%08x\n", readl(&regs->sr));
78 debug("imr: \t\t0x%08x\n", readl(&regs->imr));
79 debug("isr: \t\t0x%08x\n", readl(&regs->isr));
80 debug("dmacr: \t\t0x%08x\n", readl(&regs->dmacr));
81 debug("dmatdlr: \t0x%08x\n", readl(&regs->dmatdlr));
82 debug("dmardlr: \t0x%08x\n", readl(&regs->dmardlr));
83}
84
85static void rkspi_enable_chip(struct rockchip_spi *regs, bool enable)
86{
87 writel(enable ? 1 : 0, &regs->enr);
88}
89
90static void rkspi_set_clk(struct rockchip_spi_priv *priv, uint speed)
91{
9fc354e2
PT
92 /*
93 * We should try not to exceed the speed requested by the caller:
94 * when selecting a divider, we need to make sure we round up.
95 */
96 uint clk_div = DIV_ROUND_UP(priv->input_rate, speed);
97
98 /* The baudrate register (BAUDR) is defined as a 32bit register where
99 * the upper 16bit are reserved and having 'Fsclk_out' in the lower
100 * 16bits with 'Fsclk_out' defined as follows:
101 *
102 * Fsclk_out = Fspi_clk/ SCKDV
103 * Where SCKDV is any even value between 2 and 65534.
104 */
105 if (clk_div > 0xfffe) {
106 clk_div = 0xfffe;
11f12c17 107 debug("%s: can't divide down to %d Hz (actual will be %d Hz)\n",
9fc354e2
PT
108 __func__, speed, priv->input_rate / clk_div);
109 }
110
111 /* Round up to the next even 16bit number */
112 clk_div = (clk_div + 1) & 0xfffe;
1b2fd5bf 113
1b2fd5bf
SG
114 debug("spi speed %u, div %u\n", speed, clk_div);
115
9fc354e2 116 clrsetbits_le32(&priv->regs->baudr, 0xffff, clk_div);
28a943c1 117 priv->last_speed_hz = speed;
1b2fd5bf
SG
118}
119
120static int rkspi_wait_till_not_busy(struct rockchip_spi *regs)
121{
122 unsigned long start;
123
124 start = get_timer(0);
125 while (readl(&regs->sr) & SR_BUSY) {
126 if (get_timer(start) > ROCKCHIP_SPI_TIMEOUT_MS) {
127 debug("RK SPI: Status keeps busy for 1000us after a read/write!\n");
128 return -ETIMEDOUT;
129 }
130 }
131
132 return 0;
133}
134
183a3a0f 135static void spi_cs_activate(struct udevice *dev, uint cs)
1b2fd5bf 136{
183a3a0f 137 struct udevice *bus = dev->parent;
0fd3d911 138 struct rockchip_spi_plat *plat = dev_get_plat(bus);
183a3a0f
SG
139 struct rockchip_spi_priv *priv = dev_get_priv(bus);
140 struct rockchip_spi *regs = priv->regs;
141
b4252474
SG
142 /* If it's too soon to do another transaction, wait */
143 if (plat->deactivate_delay_us && priv->last_transaction_us) {
144 ulong delay_us; /* The delay completed so far */
145 delay_us = timer_get_us() - priv->last_transaction_us;
f92cf0ad
PT
146 if (delay_us < plat->deactivate_delay_us) {
147 ulong additional_delay_us =
148 plat->deactivate_delay_us - delay_us;
149 debug("%s: delaying by %ld us\n",
150 __func__, additional_delay_us);
151 udelay(additional_delay_us);
152 }
b4252474
SG
153 }
154
1b2fd5bf
SG
155 debug("activate cs%u\n", cs);
156 writel(1 << cs, &regs->ser);
183a3a0f
SG
157 if (plat->activate_delay_us)
158 udelay(plat->activate_delay_us);
1b2fd5bf
SG
159}
160
183a3a0f 161static void spi_cs_deactivate(struct udevice *dev, uint cs)
1b2fd5bf 162{
183a3a0f 163 struct udevice *bus = dev->parent;
0fd3d911 164 struct rockchip_spi_plat *plat = dev_get_plat(bus);
183a3a0f
SG
165 struct rockchip_spi_priv *priv = dev_get_priv(bus);
166 struct rockchip_spi *regs = priv->regs;
167
1b2fd5bf
SG
168 debug("deactivate cs%u\n", cs);
169 writel(0, &regs->ser);
183a3a0f
SG
170
171 /* Remember time of this transaction so we can honour the bus delay */
172 if (plat->deactivate_delay_us)
173 priv->last_transaction_us = timer_get_us();
1b2fd5bf
SG
174}
175
6e019c4f 176#if CONFIG_IS_ENABLED(OF_PLATDATA)
8a8d24bd 177static int conv_of_plat(struct udevice *dev)
6e019c4f 178{
0fd3d911 179 struct rockchip_spi_plat *plat = dev_get_plat(dev);
6e019c4f
SG
180 struct dtd_rockchip_rk3288_spi *dtplat = &plat->of_plat;
181 struct rockchip_spi_priv *priv = dev_get_priv(dev);
182 int ret;
183
184 plat->base = dtplat->reg[0];
185 plat->frequency = 20000000;
f0ab8f9f 186 ret = clk_get_by_phandle(dev, dtplat->clocks, &priv->clk);
6e019c4f
SG
187 if (ret < 0)
188 return ret;
6e019c4f
SG
189
190 return 0;
191}
192#endif
193
d1998a9f 194static int rockchip_spi_of_to_plat(struct udevice *bus)
1b2fd5bf 195{
8a8d24bd 196 struct rockchip_spi_plat *plat = dev_get_plat(bus);
71037d1c 197 struct rockchip_spi_priv *priv = dev_get_priv(bus);
1b2fd5bf
SG
198 int ret;
199
dcfc42b1
SG
200 if (CONFIG_IS_ENABLED(OF_REAL)) {
201 plat->base = dev_read_addr(bus);
1b2fd5bf 202
dcfc42b1
SG
203 ret = clk_get_by_index(bus, 0, &priv->clk);
204 if (ret < 0) {
205 debug("%s: Could not get clock for %s: %d\n", __func__,
206 bus->name, ret);
207 return ret;
208 }
1b2fd5bf 209
dcfc42b1
SG
210 plat->frequency = dev_read_u32_default(bus, "spi-max-frequency",
211 50000000);
212 plat->deactivate_delay_us =
213 dev_read_u32_default(bus, "spi-deactivate-delay", 0);
214 plat->activate_delay_us =
215 dev_read_u32_default(bus, "spi-activate-delay", 0);
6c65577c 216
dcfc42b1
SG
217 debug("%s: base=%x, max-frequency=%d, deactivate_delay=%d\n",
218 __func__, (uint)plat->base, plat->frequency,
219 plat->deactivate_delay_us);
220 }
1b2fd5bf
SG
221
222 return 0;
223}
224
bd376714
PT
225static int rockchip_spi_calc_modclk(ulong max_freq)
226{
d16120a6
PT
227 /*
228 * While this is not strictly correct for the RK3368, as the
229 * GPLL will be 576MHz, things will still work, as the
230 * clk_set_rate(...) implementation in our clock-driver will
231 * chose the next closest rate not exceeding what we request
232 * based on the output of this function.
233 */
234
bd376714
PT
235 unsigned div;
236 const unsigned long gpll_hz = 594000000UL;
237
238 /*
239 * We need to find an input clock that provides at least twice
240 * the maximum frequency and can be generated from the assumed
241 * speed of GPLL (594MHz) using an integer divider.
242 *
243 * To give us more achievable bitrates at higher speeds (these
244 * are generated by dividing by an even 16-bit integer from
245 * this frequency), we try to have an input frequency of at
246 * least 4x our max_freq.
247 */
248
249 div = DIV_ROUND_UP(gpll_hz, max_freq * 4);
250 return gpll_hz / div;
251}
252
1b2fd5bf
SG
253static int rockchip_spi_probe(struct udevice *bus)
254{
8a8d24bd 255 struct rockchip_spi_plat *plat = dev_get_plat(bus);
1b2fd5bf
SG
256 struct rockchip_spi_priv *priv = dev_get_priv(bus);
257 int ret;
258
259 debug("%s: probe\n", __func__);
6e019c4f 260#if CONFIG_IS_ENABLED(OF_PLATDATA)
8a8d24bd 261 ret = conv_of_plat(bus);
6e019c4f
SG
262 if (ret)
263 return ret;
264#endif
1b2fd5bf
SG
265 priv->regs = (struct rockchip_spi *)plat->base;
266
267 priv->last_transaction_us = timer_get_us();
268 priv->max_freq = plat->frequency;
1b2fd5bf 269
bd376714
PT
270 /* Clamp the value from the DTS against any hardware limits */
271 if (priv->max_freq > ROCKCHIP_SPI_MAX_RATE)
272 priv->max_freq = ROCKCHIP_SPI_MAX_RATE;
273
274 /* Find a module-input clock that fits with the max_freq setting */
275 ret = clk_set_rate(&priv->clk,
276 rockchip_spi_calc_modclk(priv->max_freq));
1b2fd5bf
SG
277 if (ret < 0) {
278 debug("%s: Failed to set clock: %d\n", __func__, ret);
279 return ret;
280 }
281 priv->input_rate = ret;
282 debug("%s: rate = %u\n", __func__, priv->input_rate);
1b2fd5bf
SG
283
284 return 0;
285}
286
287static int rockchip_spi_claim_bus(struct udevice *dev)
288{
289 struct udevice *bus = dev->parent;
1b2fd5bf
SG
290 struct rockchip_spi_priv *priv = dev_get_priv(bus);
291 struct rockchip_spi *regs = priv->regs;
1b2fd5bf 292 uint ctrlr0;
1b2fd5bf
SG
293
294 /* Disable the SPI hardware */
b6101e90 295 rkspi_enable_chip(regs, false);
1b2fd5bf 296
28a943c1
SG
297 if (priv->speed_hz != priv->last_speed_hz)
298 rkspi_set_clk(priv, priv->speed_hz);
1b2fd5bf
SG
299
300 /* Operation Mode */
301 ctrlr0 = OMOD_MASTER << OMOD_SHIFT;
302
303 /* Data Frame Size */
0e661b6d 304 ctrlr0 |= DFS_8BIT << DFS_SHIFT;
1b2fd5bf
SG
305
306 /* set SPI mode 0..3 */
307 if (priv->mode & SPI_CPOL)
308 ctrlr0 |= SCOL_HIGH << SCOL_SHIFT;
309 if (priv->mode & SPI_CPHA)
310 ctrlr0 |= SCPH_TOGSTA << SCPH_SHIFT;
311
312 /* Chip Select Mode */
313 ctrlr0 |= CSM_KEEP << CSM_SHIFT;
314
315 /* SSN to Sclk_out delay */
316 ctrlr0 |= SSN_DELAY_ONE << SSN_DELAY_SHIFT;
317
318 /* Serial Endian Mode */
319 ctrlr0 |= SEM_LITTLE << SEM_SHIFT;
320
321 /* First Bit Mode */
322 ctrlr0 |= FBM_MSB << FBM_SHIFT;
323
324 /* Byte and Halfword Transform */
0e661b6d 325 ctrlr0 |= HALF_WORD_OFF << HALF_WORD_TX_SHIFT;
1b2fd5bf
SG
326
327 /* Rxd Sample Delay */
328 ctrlr0 |= 0 << RXDSD_SHIFT;
329
330 /* Frame Format */
331 ctrlr0 |= FRF_SPI << FRF_SHIFT;
332
333 /* Tx and Rx mode */
0e661b6d 334 ctrlr0 |= TMOD_TR << TMOD_SHIFT;
1b2fd5bf
SG
335
336 writel(ctrlr0, &regs->ctrlr0);
1b2fd5bf
SG
337
338 return 0;
339}
340
341static int rockchip_spi_release_bus(struct udevice *dev)
342{
e15af8e2
SG
343 struct udevice *bus = dev->parent;
344 struct rockchip_spi_priv *priv = dev_get_priv(bus);
345
346 rkspi_enable_chip(priv->regs, false);
347
1b2fd5bf
SG
348 return 0;
349}
350
8aa6c921
PT
351static inline int rockchip_spi_16bit_reader(struct udevice *dev,
352 u8 **din, int *len)
353{
354 struct udevice *bus = dev->parent;
355 const struct rockchip_spi_params * const data =
356 (void *)dev_get_driver_data(bus);
357 struct rockchip_spi_priv *priv = dev_get_priv(bus);
358 struct rockchip_spi *regs = priv->regs;
359 const u32 saved_ctrlr0 = readl(&regs->ctrlr0);
360#if defined(DEBUG)
361 u32 statistics_rxlevels[33] = { };
362#endif
363 u32 frames = *len / 2;
2236149e 364 u8 *in = (u8 *)(*din);
8aa6c921
PT
365 u32 max_chunk_size = SPI_FIFO_DEPTH;
366
367 if (!frames)
368 return 0;
369
51a644a1
PT
370 /*
371 * If we know that the hardware will manage RXFIFO overruns
372 * (i.e. stop the SPI clock until there's space in the FIFO),
373 * we the allow largest possible chunk size that can be
374 * represented in CTRLR1.
375 */
376 if (data && data->master_manages_fifo)
dbbdc81c 377 max_chunk_size = ROCKCHIP_SPI_MAX_TRANLEN;
51a644a1 378
8aa6c921
PT
379 // rockchip_spi_configure(dev, mode, size)
380 rkspi_enable_chip(regs, false);
381 clrsetbits_le32(&regs->ctrlr0,
382 TMOD_MASK << TMOD_SHIFT,
383 TMOD_RO << TMOD_SHIFT);
384 /* 16bit data frame size */
385 clrsetbits_le32(&regs->ctrlr0, DFS_MASK, DFS_16BIT);
386
387 /* Update caller's context */
388 const u32 bytes_to_process = 2 * frames;
389 *din += bytes_to_process;
390 *len -= bytes_to_process;
391
392 /* Process our frames */
393 while (frames) {
394 u32 chunk_size = min(frames, max_chunk_size);
395
396 frames -= chunk_size;
397
398 writew(chunk_size - 1, &regs->ctrlr1);
399 rkspi_enable_chip(regs, true);
400
401 do {
402 u32 rx_level = readw(&regs->rxflr);
403#if defined(DEBUG)
404 statistics_rxlevels[rx_level]++;
405#endif
406 chunk_size -= rx_level;
2236149e
PT
407 while (rx_level--) {
408 u16 val = readw(regs->rxdr);
409 *in++ = val & 0xff;
410 *in++ = val >> 8;
411 }
8aa6c921
PT
412 } while (chunk_size);
413
414 rkspi_enable_chip(regs, false);
415 }
416
417#if defined(DEBUG)
418 debug("%s: observed rx_level during processing:\n", __func__);
419 for (int i = 0; i <= 32; ++i)
420 if (statistics_rxlevels[i])
421 debug("\t%2d: %d\n", i, statistics_rxlevels[i]);
422#endif
423 /* Restore the original transfer setup and return error-free. */
424 writel(saved_ctrlr0, &regs->ctrlr0);
425 return 0;
426}
427
1b2fd5bf
SG
428static int rockchip_spi_xfer(struct udevice *dev, unsigned int bitlen,
429 const void *dout, void *din, unsigned long flags)
430{
431 struct udevice *bus = dev->parent;
432 struct rockchip_spi_priv *priv = dev_get_priv(bus);
433 struct rockchip_spi *regs = priv->regs;
8a8d24bd 434 struct dm_spi_slave_plat *slave_plat = dev_get_parent_plat(dev);
1b2fd5bf
SG
435 int len = bitlen >> 3;
436 const u8 *out = dout;
437 u8 *in = din;
438 int toread, towrite;
8aa6c921 439 int ret = 0;
1b2fd5bf
SG
440
441 debug("%s: dout=%p, din=%p, len=%x, flags=%lx\n", __func__, dout, din,
442 len, flags);
443 if (DEBUG_RK_SPI)
444 rkspi_dump_regs(regs);
445
446 /* Assert CS before transfer */
447 if (flags & SPI_XFER_BEGIN)
183a3a0f 448 spi_cs_activate(dev, slave_plat->cs);
1b2fd5bf 449
8aa6c921
PT
450 /*
451 * To ensure fast loading of firmware images (e.g. full U-Boot
452 * stage, ATF, Linux kernel) from SPI flash, we optimise the
453 * case of read-only transfers by using the full 16bits of each
454 * FIFO element.
455 */
456 if (!out)
457 ret = rockchip_spi_16bit_reader(dev, &in, &len);
458
459 /* This is the original 8bit reader/writer code */
1b2fd5bf 460 while (len > 0) {
dbbdc81c 461 int todo = min(len, ROCKCHIP_SPI_MAX_TRANLEN);
1b2fd5bf 462
e15af8e2 463 rkspi_enable_chip(regs, false);
1b2fd5bf
SG
464 writel(todo - 1, &regs->ctrlr1);
465 rkspi_enable_chip(regs, true);
466
467 toread = todo;
468 towrite = todo;
469 while (toread || towrite) {
470 u32 status = readl(&regs->sr);
471
472 if (towrite && !(status & SR_TF_FULL)) {
473 writel(out ? *out++ : 0, regs->txdr);
474 towrite--;
475 }
476 if (toread && !(status & SR_RF_EMPT)) {
477 u32 byte = readl(regs->rxdr);
478
479 if (in)
480 *in++ = byte;
481 toread--;
482 }
483 }
7e0e5c55
PT
484
485 /*
486 * In case that there's a transmit-component, we need to wait
487 * until the control goes idle before we can disable the SPI
d466f620 488 * control logic (as this will implicitly flush the FIFOs).
7e0e5c55
PT
489 */
490 if (out) {
491 ret = rkspi_wait_till_not_busy(regs);
492 if (ret)
493 break;
494 }
495
1b2fd5bf
SG
496 len -= todo;
497 }
498
499 /* Deassert CS after transfer */
500 if (flags & SPI_XFER_END)
183a3a0f 501 spi_cs_deactivate(dev, slave_plat->cs);
1b2fd5bf
SG
502
503 rkspi_enable_chip(regs, false);
504
505 return ret;
506}
507
508static int rockchip_spi_set_speed(struct udevice *bus, uint speed)
509{
510 struct rockchip_spi_priv *priv = dev_get_priv(bus);
511
bd376714 512 /* Clamp to the maximum frequency specified in the DTS */
1b2fd5bf
SG
513 if (speed > priv->max_freq)
514 speed = priv->max_freq;
bd376714 515
1b2fd5bf
SG
516 priv->speed_hz = speed;
517
518 return 0;
519}
520
521static int rockchip_spi_set_mode(struct udevice *bus, uint mode)
522{
523 struct rockchip_spi_priv *priv = dev_get_priv(bus);
524
525 priv->mode = mode;
526
527 return 0;
528}
529
530static const struct dm_spi_ops rockchip_spi_ops = {
531 .claim_bus = rockchip_spi_claim_bus,
532 .release_bus = rockchip_spi_release_bus,
533 .xfer = rockchip_spi_xfer,
534 .set_speed = rockchip_spi_set_speed,
535 .set_mode = rockchip_spi_set_mode,
536 /*
537 * cs_info is not needed, since we require all chip selects to be
538 * in the device tree explicitly
539 */
540};
541
51a644a1
PT
542const struct rockchip_spi_params rk3399_spi_params = {
543 .master_manages_fifo = true,
544};
545
1b2fd5bf 546static const struct udevice_id rockchip_spi_ids[] = {
e93d2f4e 547 { .compatible = "rockchip,rk3066-spi" },
1b2fd5bf 548 { .compatible = "rockchip,rk3288-spi" },
e93d2f4e 549 { .compatible = "rockchip,rk3328-spi" },
51a644a1
PT
550 { .compatible = "rockchip,rk3368-spi",
551 .data = (ulong)&rk3399_spi_params },
552 { .compatible = "rockchip,rk3399-spi",
553 .data = (ulong)&rk3399_spi_params },
1b2fd5bf
SG
554 { }
555};
556
e3e2470f 557U_BOOT_DRIVER(rockchip_rk3288_spi) = {
6e019c4f 558 .name = "rockchip_rk3288_spi",
1b2fd5bf
SG
559 .id = UCLASS_SPI,
560 .of_match = rockchip_spi_ids,
561 .ops = &rockchip_spi_ops,
d1998a9f 562 .of_to_plat = rockchip_spi_of_to_plat,
8a8d24bd 563 .plat_auto = sizeof(struct rockchip_spi_plat),
41575d8e 564 .priv_auto = sizeof(struct rockchip_spi_priv),
1b2fd5bf
SG
565 .probe = rockchip_spi_probe,
566};
addf358b 567
bdf8fd76 568DM_DRIVER_ALIAS(rockchip_rk3288_spi, rockchip_rk3368_spi)
This page took 0.354419 seconds and 4 git commands to generate.