1 // SPDX-License-Identifier: GPL-2.0+
3 * spi driver for rockchip
5 * (C) Copyright 2015 Google, Inc
7 * (C) Copyright 2008-2013 Rockchip Electronics
8 * Peter, Software Engineering, <superpeter.cai@gmail.com>.
14 #include <dt-structs.h>
17 #include <linux/errno.h>
19 #include <asm/arch/clock.h>
20 #include <asm/arch/periph.h>
21 #include <dm/pinctrl.h>
24 /* Change to 1 to output registers at the start of each transaction */
25 #define DEBUG_RK_SPI 0
27 struct rockchip_spi_platdata {
28 #if CONFIG_IS_ENABLED(OF_PLATDATA)
29 struct dtd_rockchip_rk3288_spi of_plat;
31 s32 frequency; /* Default clock frequency, -1 for none */
33 uint deactivate_delay_us; /* Delay to wait after deactivate */
34 uint activate_delay_us; /* Delay to wait after activate */
37 struct rockchip_spi_priv {
38 struct rockchip_spi *regs;
40 unsigned int max_freq;
42 ulong last_transaction_us; /* Time of last transaction end */
43 u8 bits_per_word; /* max 16 bits per word */
45 unsigned int speed_hz;
46 unsigned int last_speed_hz;
51 #define SPI_FIFO_DEPTH 32
53 static void rkspi_dump_regs(struct rockchip_spi *regs)
55 debug("ctrl0: \t\t0x%08x\n", readl(®s->ctrlr0));
56 debug("ctrl1: \t\t0x%08x\n", readl(®s->ctrlr1));
57 debug("ssienr: \t\t0x%08x\n", readl(®s->enr));
58 debug("ser: \t\t0x%08x\n", readl(®s->ser));
59 debug("baudr: \t\t0x%08x\n", readl(®s->baudr));
60 debug("txftlr: \t\t0x%08x\n", readl(®s->txftlr));
61 debug("rxftlr: \t\t0x%08x\n", readl(®s->rxftlr));
62 debug("txflr: \t\t0x%08x\n", readl(®s->txflr));
63 debug("rxflr: \t\t0x%08x\n", readl(®s->rxflr));
64 debug("sr: \t\t0x%08x\n", readl(®s->sr));
65 debug("imr: \t\t0x%08x\n", readl(®s->imr));
66 debug("isr: \t\t0x%08x\n", readl(®s->isr));
67 debug("dmacr: \t\t0x%08x\n", readl(®s->dmacr));
68 debug("dmatdlr: \t0x%08x\n", readl(®s->dmatdlr));
69 debug("dmardlr: \t0x%08x\n", readl(®s->dmardlr));
72 static void rkspi_enable_chip(struct rockchip_spi *regs, bool enable)
74 writel(enable ? 1 : 0, ®s->enr);
77 static void rkspi_set_clk(struct rockchip_spi_priv *priv, uint speed)
80 * We should try not to exceed the speed requested by the caller:
81 * when selecting a divider, we need to make sure we round up.
83 uint clk_div = DIV_ROUND_UP(priv->input_rate, speed);
85 /* The baudrate register (BAUDR) is defined as a 32bit register where
86 * the upper 16bit are reserved and having 'Fsclk_out' in the lower
87 * 16bits with 'Fsclk_out' defined as follows:
89 * Fsclk_out = Fspi_clk/ SCKDV
90 * Where SCKDV is any even value between 2 and 65534.
92 if (clk_div > 0xfffe) {
94 debug("%s: can't divide down to %d Hz (actual will be %d Hz)\n",
95 __func__, speed, priv->input_rate / clk_div);
98 /* Round up to the next even 16bit number */
99 clk_div = (clk_div + 1) & 0xfffe;
101 debug("spi speed %u, div %u\n", speed, clk_div);
103 clrsetbits_le32(&priv->regs->baudr, 0xffff, clk_div);
104 priv->last_speed_hz = speed;
107 static int rkspi_wait_till_not_busy(struct rockchip_spi *regs)
111 start = get_timer(0);
112 while (readl(®s->sr) & SR_BUSY) {
113 if (get_timer(start) > ROCKCHIP_SPI_TIMEOUT_MS) {
114 debug("RK SPI: Status keeps busy for 1000us after a read/write!\n");
122 static void spi_cs_activate(struct udevice *dev, uint cs)
124 struct udevice *bus = dev->parent;
125 struct rockchip_spi_platdata *plat = bus->platdata;
126 struct rockchip_spi_priv *priv = dev_get_priv(bus);
127 struct rockchip_spi *regs = priv->regs;
129 /* If it's too soon to do another transaction, wait */
130 if (plat->deactivate_delay_us && priv->last_transaction_us) {
131 ulong delay_us; /* The delay completed so far */
132 delay_us = timer_get_us() - priv->last_transaction_us;
133 if (delay_us < plat->deactivate_delay_us)
134 udelay(plat->deactivate_delay_us - delay_us);
137 debug("activate cs%u\n", cs);
138 writel(1 << cs, ®s->ser);
139 if (plat->activate_delay_us)
140 udelay(plat->activate_delay_us);
143 static void spi_cs_deactivate(struct udevice *dev, uint cs)
145 struct udevice *bus = dev->parent;
146 struct rockchip_spi_platdata *plat = bus->platdata;
147 struct rockchip_spi_priv *priv = dev_get_priv(bus);
148 struct rockchip_spi *regs = priv->regs;
150 debug("deactivate cs%u\n", cs);
151 writel(0, ®s->ser);
153 /* Remember time of this transaction so we can honour the bus delay */
154 if (plat->deactivate_delay_us)
155 priv->last_transaction_us = timer_get_us();
158 #if CONFIG_IS_ENABLED(OF_PLATDATA)
159 static int conv_of_platdata(struct udevice *dev)
161 struct rockchip_spi_platdata *plat = dev->platdata;
162 struct dtd_rockchip_rk3288_spi *dtplat = &plat->of_plat;
163 struct rockchip_spi_priv *priv = dev_get_priv(dev);
166 plat->base = dtplat->reg[0];
167 plat->frequency = 20000000;
168 ret = clk_get_by_index_platdata(dev, 0, dtplat->clocks, &priv->clk);
177 static int rockchip_spi_ofdata_to_platdata(struct udevice *bus)
179 #if !CONFIG_IS_ENABLED(OF_PLATDATA)
180 struct rockchip_spi_platdata *plat = dev_get_platdata(bus);
181 struct rockchip_spi_priv *priv = dev_get_priv(bus);
184 plat->base = dev_read_addr(bus);
186 ret = clk_get_by_index(bus, 0, &priv->clk);
188 debug("%s: Could not get clock for %s: %d\n", __func__,
194 dev_read_u32_default(bus, "spi-max-frequency", 50000000);
195 plat->deactivate_delay_us =
196 dev_read_u32_default(bus, "spi-deactivate-delay", 0);
197 plat->activate_delay_us =
198 dev_read_u32_default(bus, "spi-activate-delay", 0);
200 debug("%s: base=%x, max-frequency=%d, deactivate_delay=%d\n",
201 __func__, (uint)plat->base, plat->frequency,
202 plat->deactivate_delay_us);
208 static int rockchip_spi_calc_modclk(ulong max_freq)
211 * While this is not strictly correct for the RK3368, as the
212 * GPLL will be 576MHz, things will still work, as the
213 * clk_set_rate(...) implementation in our clock-driver will
214 * chose the next closest rate not exceeding what we request
215 * based on the output of this function.
219 const unsigned long gpll_hz = 594000000UL;
222 * We need to find an input clock that provides at least twice
223 * the maximum frequency and can be generated from the assumed
224 * speed of GPLL (594MHz) using an integer divider.
226 * To give us more achievable bitrates at higher speeds (these
227 * are generated by dividing by an even 16-bit integer from
228 * this frequency), we try to have an input frequency of at
229 * least 4x our max_freq.
232 div = DIV_ROUND_UP(gpll_hz, max_freq * 4);
233 return gpll_hz / div;
236 static int rockchip_spi_probe(struct udevice *bus)
238 struct rockchip_spi_platdata *plat = dev_get_platdata(bus);
239 struct rockchip_spi_priv *priv = dev_get_priv(bus);
242 debug("%s: probe\n", __func__);
243 #if CONFIG_IS_ENABLED(OF_PLATDATA)
244 ret = conv_of_platdata(bus);
248 priv->regs = (struct rockchip_spi *)plat->base;
250 priv->last_transaction_us = timer_get_us();
251 priv->max_freq = plat->frequency;
253 /* Clamp the value from the DTS against any hardware limits */
254 if (priv->max_freq > ROCKCHIP_SPI_MAX_RATE)
255 priv->max_freq = ROCKCHIP_SPI_MAX_RATE;
257 /* Find a module-input clock that fits with the max_freq setting */
258 ret = clk_set_rate(&priv->clk,
259 rockchip_spi_calc_modclk(priv->max_freq));
261 debug("%s: Failed to set clock: %d\n", __func__, ret);
264 priv->input_rate = ret;
265 debug("%s: rate = %u\n", __func__, priv->input_rate);
266 priv->bits_per_word = 8;
267 priv->tmode = TMOD_TR; /* Tx & Rx */
272 static int rockchip_spi_claim_bus(struct udevice *dev)
274 struct udevice *bus = dev->parent;
275 struct rockchip_spi_priv *priv = dev_get_priv(bus);
276 struct rockchip_spi *regs = priv->regs;
280 /* Disable the SPI hardware */
281 rkspi_enable_chip(regs, 0);
283 switch (priv->bits_per_word) {
287 spi_tf = HALF_WORD_OFF;
292 spi_tf = HALF_WORD_ON;
295 debug("%s: unsupported bits: %dbits\n", __func__,
296 priv->bits_per_word);
297 return -EPROTONOSUPPORT;
300 if (priv->speed_hz != priv->last_speed_hz)
301 rkspi_set_clk(priv, priv->speed_hz);
304 ctrlr0 = OMOD_MASTER << OMOD_SHIFT;
306 /* Data Frame Size */
307 ctrlr0 |= spi_dfs << DFS_SHIFT;
309 /* set SPI mode 0..3 */
310 if (priv->mode & SPI_CPOL)
311 ctrlr0 |= SCOL_HIGH << SCOL_SHIFT;
312 if (priv->mode & SPI_CPHA)
313 ctrlr0 |= SCPH_TOGSTA << SCPH_SHIFT;
315 /* Chip Select Mode */
316 ctrlr0 |= CSM_KEEP << CSM_SHIFT;
318 /* SSN to Sclk_out delay */
319 ctrlr0 |= SSN_DELAY_ONE << SSN_DELAY_SHIFT;
321 /* Serial Endian Mode */
322 ctrlr0 |= SEM_LITTLE << SEM_SHIFT;
325 ctrlr0 |= FBM_MSB << FBM_SHIFT;
327 /* Byte and Halfword Transform */
328 ctrlr0 |= spi_tf << HALF_WORD_TX_SHIFT;
330 /* Rxd Sample Delay */
331 ctrlr0 |= 0 << RXDSD_SHIFT;
334 ctrlr0 |= FRF_SPI << FRF_SHIFT;
337 ctrlr0 |= (priv->tmode & TMOD_MASK) << TMOD_SHIFT;
339 writel(ctrlr0, ®s->ctrlr0);
344 static int rockchip_spi_release_bus(struct udevice *dev)
346 struct udevice *bus = dev->parent;
347 struct rockchip_spi_priv *priv = dev_get_priv(bus);
349 rkspi_enable_chip(priv->regs, false);
354 static int rockchip_spi_xfer(struct udevice *dev, unsigned int bitlen,
355 const void *dout, void *din, unsigned long flags)
357 struct udevice *bus = dev->parent;
358 struct rockchip_spi_priv *priv = dev_get_priv(bus);
359 struct rockchip_spi *regs = priv->regs;
360 struct dm_spi_slave_platdata *slave_plat = dev_get_parent_platdata(dev);
361 int len = bitlen >> 3;
362 const u8 *out = dout;
367 debug("%s: dout=%p, din=%p, len=%x, flags=%lx\n", __func__, dout, din,
370 rkspi_dump_regs(regs);
372 /* Assert CS before transfer */
373 if (flags & SPI_XFER_BEGIN)
374 spi_cs_activate(dev, slave_plat->cs);
377 int todo = min(len, 0xffff);
379 rkspi_enable_chip(regs, false);
380 writel(todo - 1, ®s->ctrlr1);
381 rkspi_enable_chip(regs, true);
385 while (toread || towrite) {
386 u32 status = readl(®s->sr);
388 if (towrite && !(status & SR_TF_FULL)) {
389 writel(out ? *out++ : 0, regs->txdr);
392 if (toread && !(status & SR_RF_EMPT)) {
393 u32 byte = readl(regs->rxdr);
400 ret = rkspi_wait_till_not_busy(regs);
406 /* Deassert CS after transfer */
407 if (flags & SPI_XFER_END)
408 spi_cs_deactivate(dev, slave_plat->cs);
410 rkspi_enable_chip(regs, false);
415 static int rockchip_spi_set_speed(struct udevice *bus, uint speed)
417 struct rockchip_spi_priv *priv = dev_get_priv(bus);
419 /* Clamp to the maximum frequency specified in the DTS */
420 if (speed > priv->max_freq)
421 speed = priv->max_freq;
423 priv->speed_hz = speed;
428 static int rockchip_spi_set_mode(struct udevice *bus, uint mode)
430 struct rockchip_spi_priv *priv = dev_get_priv(bus);
437 static const struct dm_spi_ops rockchip_spi_ops = {
438 .claim_bus = rockchip_spi_claim_bus,
439 .release_bus = rockchip_spi_release_bus,
440 .xfer = rockchip_spi_xfer,
441 .set_speed = rockchip_spi_set_speed,
442 .set_mode = rockchip_spi_set_mode,
444 * cs_info is not needed, since we require all chip selects to be
445 * in the device tree explicitly
449 static const struct udevice_id rockchip_spi_ids[] = {
450 { .compatible = "rockchip,rk3288-spi" },
451 { .compatible = "rockchip,rk3368-spi" },
452 { .compatible = "rockchip,rk3399-spi" },
456 U_BOOT_DRIVER(rockchip_spi) = {
457 #if CONFIG_IS_ENABLED(OF_PLATDATA)
458 .name = "rockchip_rk3288_spi",
460 .name = "rockchip_spi",
463 .of_match = rockchip_spi_ids,
464 .ops = &rockchip_spi_ops,
465 .ofdata_to_platdata = rockchip_spi_ofdata_to_platdata,
466 .platdata_auto_alloc_size = sizeof(struct rockchip_spi_platdata),
467 .priv_auto_alloc_size = sizeof(struct rockchip_spi_priv),
468 .probe = rockchip_spi_probe,