2 * spi driver for rockchip
4 * (C) Copyright 2015 Google, Inc
6 * (C) Copyright 2008-2013 Rockchip Electronics
7 * Peter, Software Engineering, <superpeter.cai@gmail.com>.
9 * SPDX-License-Identifier: GPL-2.0+
15 #include <dt-structs.h>
18 #include <linux/errno.h>
20 #include <asm/arch/clock.h>
21 #include <asm/arch/periph.h>
22 #include <dm/pinctrl.h>
25 DECLARE_GLOBAL_DATA_PTR;
27 /* Change to 1 to output registers at the start of each transaction */
28 #define DEBUG_RK_SPI 0
30 struct rockchip_spi_platdata {
31 #if CONFIG_IS_ENABLED(OF_PLATDATA)
32 struct dtd_rockchip_rk3288_spi of_plat;
34 s32 frequency; /* Default clock frequency, -1 for none */
36 uint deactivate_delay_us; /* Delay to wait after deactivate */
37 uint activate_delay_us; /* Delay to wait after activate */
40 struct rockchip_spi_priv {
41 struct rockchip_spi *regs;
43 unsigned int max_freq;
45 ulong last_transaction_us; /* Time of last transaction end */
46 u8 bits_per_word; /* max 16 bits per word */
48 unsigned int speed_hz;
49 unsigned int last_speed_hz;
54 #define SPI_FIFO_DEPTH 32
56 static void rkspi_dump_regs(struct rockchip_spi *regs)
58 debug("ctrl0: \t\t0x%08x\n", readl(®s->ctrlr0));
59 debug("ctrl1: \t\t0x%08x\n", readl(®s->ctrlr1));
60 debug("ssienr: \t\t0x%08x\n", readl(®s->enr));
61 debug("ser: \t\t0x%08x\n", readl(®s->ser));
62 debug("baudr: \t\t0x%08x\n", readl(®s->baudr));
63 debug("txftlr: \t\t0x%08x\n", readl(®s->txftlr));
64 debug("rxftlr: \t\t0x%08x\n", readl(®s->rxftlr));
65 debug("txflr: \t\t0x%08x\n", readl(®s->txflr));
66 debug("rxflr: \t\t0x%08x\n", readl(®s->rxflr));
67 debug("sr: \t\t0x%08x\n", readl(®s->sr));
68 debug("imr: \t\t0x%08x\n", readl(®s->imr));
69 debug("isr: \t\t0x%08x\n", readl(®s->isr));
70 debug("dmacr: \t\t0x%08x\n", readl(®s->dmacr));
71 debug("dmatdlr: \t0x%08x\n", readl(®s->dmatdlr));
72 debug("dmardlr: \t0x%08x\n", readl(®s->dmardlr));
75 static void rkspi_enable_chip(struct rockchip_spi *regs, bool enable)
77 writel(enable ? 1 : 0, ®s->enr);
80 static void rkspi_set_clk(struct rockchip_spi_priv *priv, uint speed)
83 * We should try not to exceed the speed requested by the caller:
84 * when selecting a divider, we need to make sure we round up.
86 uint clk_div = DIV_ROUND_UP(priv->input_rate, speed);
88 /* The baudrate register (BAUDR) is defined as a 32bit register where
89 * the upper 16bit are reserved and having 'Fsclk_out' in the lower
90 * 16bits with 'Fsclk_out' defined as follows:
92 * Fsclk_out = Fspi_clk/ SCKDV
93 * Where SCKDV is any even value between 2 and 65534.
95 if (clk_div > 0xfffe) {
97 debug("%s: can't divide down to %d hz (actual will be %d hz)\n",
98 __func__, speed, priv->input_rate / clk_div);
101 /* Round up to the next even 16bit number */
102 clk_div = (clk_div + 1) & 0xfffe;
104 debug("spi speed %u, div %u\n", speed, clk_div);
106 clrsetbits_le32(&priv->regs->baudr, 0xffff, clk_div);
107 priv->last_speed_hz = speed;
110 static int rkspi_wait_till_not_busy(struct rockchip_spi *regs)
114 start = get_timer(0);
115 while (readl(®s->sr) & SR_BUSY) {
116 if (get_timer(start) > ROCKCHIP_SPI_TIMEOUT_MS) {
117 debug("RK SPI: Status keeps busy for 1000us after a read/write!\n");
125 static void spi_cs_activate(struct udevice *dev, uint cs)
127 struct udevice *bus = dev->parent;
128 struct rockchip_spi_platdata *plat = bus->platdata;
129 struct rockchip_spi_priv *priv = dev_get_priv(bus);
130 struct rockchip_spi *regs = priv->regs;
132 /* If it's too soon to do another transaction, wait */
133 if (plat->deactivate_delay_us && priv->last_transaction_us) {
134 ulong delay_us; /* The delay completed so far */
135 delay_us = timer_get_us() - priv->last_transaction_us;
136 if (delay_us < plat->deactivate_delay_us)
137 udelay(plat->deactivate_delay_us - delay_us);
140 debug("activate cs%u\n", cs);
141 writel(1 << cs, ®s->ser);
142 if (plat->activate_delay_us)
143 udelay(plat->activate_delay_us);
146 static void spi_cs_deactivate(struct udevice *dev, uint cs)
148 struct udevice *bus = dev->parent;
149 struct rockchip_spi_platdata *plat = bus->platdata;
150 struct rockchip_spi_priv *priv = dev_get_priv(bus);
151 struct rockchip_spi *regs = priv->regs;
153 debug("deactivate cs%u\n", cs);
154 writel(0, ®s->ser);
156 /* Remember time of this transaction so we can honour the bus delay */
157 if (plat->deactivate_delay_us)
158 priv->last_transaction_us = timer_get_us();
161 #if CONFIG_IS_ENABLED(OF_PLATDATA)
162 static int conv_of_platdata(struct udevice *dev)
164 struct rockchip_spi_platdata *plat = dev->platdata;
165 struct dtd_rockchip_rk3288_spi *dtplat = &plat->of_plat;
166 struct rockchip_spi_priv *priv = dev_get_priv(dev);
169 plat->base = dtplat->reg[0];
170 plat->frequency = 20000000;
171 ret = clk_get_by_index_platdata(dev, 0, dtplat->clocks, &priv->clk);
180 static int rockchip_spi_ofdata_to_platdata(struct udevice *bus)
182 #if !CONFIG_IS_ENABLED(OF_PLATDATA)
183 struct rockchip_spi_platdata *plat = dev_get_platdata(bus);
184 struct rockchip_spi_priv *priv = dev_get_priv(bus);
185 const void *blob = gd->fdt_blob;
186 int node = dev_of_offset(bus);
189 plat->base = dev_get_addr(bus);
191 ret = clk_get_by_index(bus, 0, &priv->clk);
193 debug("%s: Could not get clock for %s: %d\n", __func__,
198 plat->frequency = fdtdec_get_int(blob, node, "spi-max-frequency",
200 plat->deactivate_delay_us = fdtdec_get_int(blob, node,
201 "spi-deactivate-delay", 0);
202 plat->activate_delay_us = fdtdec_get_int(blob, node,
203 "spi-activate-delay", 0);
204 debug("%s: base=%x, max-frequency=%d, deactivate_delay=%d\n",
205 __func__, (uint)plat->base, plat->frequency,
206 plat->deactivate_delay_us);
212 static int rockchip_spi_calc_modclk(ulong max_freq)
215 const unsigned long gpll_hz = 594000000UL;
218 * We need to find an input clock that provides at least twice
219 * the maximum frequency and can be generated from the assumed
220 * speed of GPLL (594MHz) using an integer divider.
222 * To give us more achievable bitrates at higher speeds (these
223 * are generated by dividing by an even 16-bit integer from
224 * this frequency), we try to have an input frequency of at
225 * least 4x our max_freq.
228 div = DIV_ROUND_UP(gpll_hz, max_freq * 4);
229 return gpll_hz / div;
232 static int rockchip_spi_probe(struct udevice *bus)
234 struct rockchip_spi_platdata *plat = dev_get_platdata(bus);
235 struct rockchip_spi_priv *priv = dev_get_priv(bus);
238 debug("%s: probe\n", __func__);
239 #if CONFIG_IS_ENABLED(OF_PLATDATA)
240 ret = conv_of_platdata(bus);
244 priv->regs = (struct rockchip_spi *)plat->base;
246 priv->last_transaction_us = timer_get_us();
247 priv->max_freq = plat->frequency;
249 /* Clamp the value from the DTS against any hardware limits */
250 if (priv->max_freq > ROCKCHIP_SPI_MAX_RATE)
251 priv->max_freq = ROCKCHIP_SPI_MAX_RATE;
253 /* Find a module-input clock that fits with the max_freq setting */
254 ret = clk_set_rate(&priv->clk,
255 rockchip_spi_calc_modclk(priv->max_freq));
257 debug("%s: Failed to set clock: %d\n", __func__, ret);
260 priv->input_rate = ret;
261 debug("%s: rate = %u\n", __func__, priv->input_rate);
262 priv->bits_per_word = 8;
263 priv->tmode = TMOD_TR; /* Tx & Rx */
268 static int rockchip_spi_claim_bus(struct udevice *dev)
270 struct udevice *bus = dev->parent;
271 struct rockchip_spi_priv *priv = dev_get_priv(bus);
272 struct rockchip_spi *regs = priv->regs;
276 /* Disable the SPI hardware */
277 rkspi_enable_chip(regs, 0);
279 switch (priv->bits_per_word) {
283 spi_tf = HALF_WORD_OFF;
288 spi_tf = HALF_WORD_ON;
291 debug("%s: unsupported bits: %dbits\n", __func__,
292 priv->bits_per_word);
293 return -EPROTONOSUPPORT;
296 if (priv->speed_hz != priv->last_speed_hz)
297 rkspi_set_clk(priv, priv->speed_hz);
300 ctrlr0 = OMOD_MASTER << OMOD_SHIFT;
302 /* Data Frame Size */
303 ctrlr0 |= spi_dfs << DFS_SHIFT;
305 /* set SPI mode 0..3 */
306 if (priv->mode & SPI_CPOL)
307 ctrlr0 |= SCOL_HIGH << SCOL_SHIFT;
308 if (priv->mode & SPI_CPHA)
309 ctrlr0 |= SCPH_TOGSTA << SCPH_SHIFT;
311 /* Chip Select Mode */
312 ctrlr0 |= CSM_KEEP << CSM_SHIFT;
314 /* SSN to Sclk_out delay */
315 ctrlr0 |= SSN_DELAY_ONE << SSN_DELAY_SHIFT;
317 /* Serial Endian Mode */
318 ctrlr0 |= SEM_LITTLE << SEM_SHIFT;
321 ctrlr0 |= FBM_MSB << FBM_SHIFT;
323 /* Byte and Halfword Transform */
324 ctrlr0 |= spi_tf << HALF_WORD_TX_SHIFT;
326 /* Rxd Sample Delay */
327 ctrlr0 |= 0 << RXDSD_SHIFT;
330 ctrlr0 |= FRF_SPI << FRF_SHIFT;
333 ctrlr0 |= (priv->tmode & TMOD_MASK) << TMOD_SHIFT;
335 writel(ctrlr0, ®s->ctrlr0);
340 static int rockchip_spi_release_bus(struct udevice *dev)
342 struct udevice *bus = dev->parent;
343 struct rockchip_spi_priv *priv = dev_get_priv(bus);
345 rkspi_enable_chip(priv->regs, false);
350 static int rockchip_spi_xfer(struct udevice *dev, unsigned int bitlen,
351 const void *dout, void *din, unsigned long flags)
353 struct udevice *bus = dev->parent;
354 struct rockchip_spi_priv *priv = dev_get_priv(bus);
355 struct rockchip_spi *regs = priv->regs;
356 struct dm_spi_slave_platdata *slave_plat = dev_get_parent_platdata(dev);
357 int len = bitlen >> 3;
358 const u8 *out = dout;
363 debug("%s: dout=%p, din=%p, len=%x, flags=%lx\n", __func__, dout, din,
366 rkspi_dump_regs(regs);
368 /* Assert CS before transfer */
369 if (flags & SPI_XFER_BEGIN)
370 spi_cs_activate(dev, slave_plat->cs);
373 int todo = min(len, 0xffff);
375 rkspi_enable_chip(regs, false);
376 writel(todo - 1, ®s->ctrlr1);
377 rkspi_enable_chip(regs, true);
381 while (toread || towrite) {
382 u32 status = readl(®s->sr);
384 if (towrite && !(status & SR_TF_FULL)) {
385 writel(out ? *out++ : 0, regs->txdr);
388 if (toread && !(status & SR_RF_EMPT)) {
389 u32 byte = readl(regs->rxdr);
396 ret = rkspi_wait_till_not_busy(regs);
402 /* Deassert CS after transfer */
403 if (flags & SPI_XFER_END)
404 spi_cs_deactivate(dev, slave_plat->cs);
406 rkspi_enable_chip(regs, false);
411 static int rockchip_spi_set_speed(struct udevice *bus, uint speed)
413 struct rockchip_spi_priv *priv = dev_get_priv(bus);
415 /* Clamp to the maximum frequency specified in the DTS */
416 if (speed > priv->max_freq)
417 speed = priv->max_freq;
419 priv->speed_hz = speed;
424 static int rockchip_spi_set_mode(struct udevice *bus, uint mode)
426 struct rockchip_spi_priv *priv = dev_get_priv(bus);
433 static const struct dm_spi_ops rockchip_spi_ops = {
434 .claim_bus = rockchip_spi_claim_bus,
435 .release_bus = rockchip_spi_release_bus,
436 .xfer = rockchip_spi_xfer,
437 .set_speed = rockchip_spi_set_speed,
438 .set_mode = rockchip_spi_set_mode,
440 * cs_info is not needed, since we require all chip selects to be
441 * in the device tree explicitly
445 static const struct udevice_id rockchip_spi_ids[] = {
446 { .compatible = "rockchip,rk3288-spi" },
447 { .compatible = "rockchip,rk3399-spi" },
451 U_BOOT_DRIVER(rockchip_spi) = {
452 #if CONFIG_IS_ENABLED(OF_PLATDATA)
453 .name = "rockchip_rk3288_spi",
455 .name = "rockchip_spi",
458 .of_match = rockchip_spi_ids,
459 .ops = &rockchip_spi_ops,
460 .ofdata_to_platdata = rockchip_spi_ofdata_to_platdata,
461 .platdata_auto_alloc_size = sizeof(struct rockchip_spi_platdata),
462 .priv_auto_alloc_size = sizeof(struct rockchip_spi_priv),
463 .probe = rockchip_spi_probe,