xref: /openbmc/u-boot/drivers/spi/fsl_dspi.c (revision d024236e5a31a2b4b82cbcc98b31b8170fc88d28)
1 /*
2  * (C) Copyright 2000-2003
3  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4  *
5  * Copyright (C) 2004-2009, 2015 Freescale Semiconductor, Inc.
6  * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
7  * Chao Fu (B44548@freescale.com)
8  * Haikun Wang (B53464@freescale.com)
9  *
10  * SPDX-License-Identifier:	GPL-2.0+
11  */
12 
13 #include <common.h>
14 #include <dm.h>
15 #include <errno.h>
16 #include <common.h>
17 #include <spi.h>
18 #include <malloc.h>
19 #include <asm/io.h>
20 #include <fdtdec.h>
21 #ifndef CONFIG_M68K
22 #include <asm/arch/clock.h>
23 #endif
24 #include <fsl_dspi.h>
25 
26 DECLARE_GLOBAL_DATA_PTR;
27 
28 /* fsl_dspi_platdata flags */
29 #define DSPI_FLAG_REGMAP_ENDIAN_BIG	BIT(0)
30 
31 /* idle data value */
32 #define DSPI_IDLE_VAL			0x0
33 
34 /* max chipselect signals number */
35 #define FSL_DSPI_MAX_CHIPSELECT		6
36 
37 /* default SCK frequency, unit: HZ */
38 #define FSL_DSPI_DEFAULT_SCK_FREQ	10000000
39 
40 /* tx/rx data wait timeout value, unit: us */
41 #define DSPI_TXRX_WAIT_TIMEOUT		1000000
42 
43 /* CTAR register pre-configure value */
44 #define DSPI_CTAR_DEFAULT_VALUE		(DSPI_CTAR_TRSZ(7) | \
45 					DSPI_CTAR_PCSSCK_1CLK | \
46 					DSPI_CTAR_PASC(0) | \
47 					DSPI_CTAR_PDT(0) | \
48 					DSPI_CTAR_CSSCK(0) | \
49 					DSPI_CTAR_ASC(0) | \
50 					DSPI_CTAR_DT(0))
51 
52 /* CTAR register pre-configure mask */
53 #define DSPI_CTAR_SET_MODE_MASK		(DSPI_CTAR_TRSZ(15) | \
54 					DSPI_CTAR_PCSSCK(3) | \
55 					DSPI_CTAR_PASC(3) | \
56 					DSPI_CTAR_PDT(3) | \
57 					DSPI_CTAR_CSSCK(15) | \
58 					DSPI_CTAR_ASC(15) | \
59 					DSPI_CTAR_DT(15))
60 
61 /**
62  * struct fsl_dspi_platdata - platform data for Freescale DSPI
63  *
64  * @flags: Flags for DSPI DSPI_FLAG_...
65  * @speed_hz: Default SCK frequency
66  * @num_chipselect: Number of DSPI chipselect signals
67  * @regs_addr: Base address of DSPI registers
68  */
69 struct fsl_dspi_platdata {
70 	uint flags;
71 	uint speed_hz;
72 	uint num_chipselect;
73 	fdt_addr_t regs_addr;
74 };
75 
76 /**
77  * struct fsl_dspi_priv - private data for Freescale DSPI
78  *
79  * @flags: Flags for DSPI DSPI_FLAG_...
80  * @mode: SPI mode to use for slave device (see SPI mode flags)
81  * @mcr_val: MCR register configure value
82  * @bus_clk: DSPI input clk frequency
83  * @speed_hz: Default SCK frequency
84  * @charbit: How many bits in every transfer
85  * @num_chipselect: Number of DSPI chipselect signals
86  * @ctar_val: CTAR register configure value of per chipselect slave device
87  * @regs: Point to DSPI register structure for I/O access
88  */
89 struct fsl_dspi_priv {
90 	uint flags;
91 	uint mode;
92 	uint mcr_val;
93 	uint bus_clk;
94 	uint speed_hz;
95 	uint charbit;
96 	uint num_chipselect;
97 	uint ctar_val[FSL_DSPI_MAX_CHIPSELECT];
98 	struct dspi *regs;
99 };
100 
101 #ifndef CONFIG_DM_SPI
102 struct fsl_dspi {
103 	struct spi_slave slave;
104 	struct fsl_dspi_priv priv;
105 };
106 #endif
107 
108 __weak void cpu_dspi_port_conf(void)
109 {
110 }
111 
112 __weak int cpu_dspi_claim_bus(uint bus, uint cs)
113 {
114 	return 0;
115 }
116 
117 __weak void cpu_dspi_release_bus(uint bus, uint cs)
118 {
119 }
120 
121 static uint dspi_read32(uint flags, uint *addr)
122 {
123 	return flags & DSPI_FLAG_REGMAP_ENDIAN_BIG ?
124 		in_be32(addr) : in_le32(addr);
125 }
126 
127 static void dspi_write32(uint flags, uint *addr, uint val)
128 {
129 	flags & DSPI_FLAG_REGMAP_ENDIAN_BIG ?
130 		out_be32(addr, val) : out_le32(addr, val);
131 }
132 
133 static void dspi_halt(struct fsl_dspi_priv *priv, u8 halt)
134 {
135 	uint mcr_val;
136 
137 	mcr_val = dspi_read32(priv->flags, &priv->regs->mcr);
138 
139 	if (halt)
140 		mcr_val |= DSPI_MCR_HALT;
141 	else
142 		mcr_val &= ~DSPI_MCR_HALT;
143 
144 	dspi_write32(priv->flags, &priv->regs->mcr, mcr_val);
145 }
146 
147 static void fsl_dspi_init_mcr(struct fsl_dspi_priv *priv, uint cfg_val)
148 {
149 	/* halt DSPI module */
150 	dspi_halt(priv, 1);
151 
152 	dspi_write32(priv->flags, &priv->regs->mcr, cfg_val);
153 
154 	/* resume module */
155 	dspi_halt(priv, 0);
156 
157 	priv->mcr_val = cfg_val;
158 }
159 
160 static void fsl_dspi_cfg_cs_active_state(struct fsl_dspi_priv *priv,
161 		uint cs, uint state)
162 {
163 	uint mcr_val;
164 
165 	dspi_halt(priv, 1);
166 
167 	mcr_val = dspi_read32(priv->flags, &priv->regs->mcr);
168 	if (state & SPI_CS_HIGH)
169 		/* CSx inactive state is low */
170 		mcr_val &= ~DSPI_MCR_PCSIS(cs);
171 	else
172 		/* CSx inactive state is high */
173 		mcr_val |= DSPI_MCR_PCSIS(cs);
174 	dspi_write32(priv->flags, &priv->regs->mcr, mcr_val);
175 
176 	dspi_halt(priv, 0);
177 }
178 
179 static int fsl_dspi_cfg_ctar_mode(struct fsl_dspi_priv *priv,
180 		uint cs, uint mode)
181 {
182 	uint bus_setup;
183 
184 	bus_setup = dspi_read32(priv->flags, &priv->regs->ctar[0]);
185 
186 	bus_setup &= ~DSPI_CTAR_SET_MODE_MASK;
187 	bus_setup |= priv->ctar_val[cs];
188 	bus_setup &= ~(DSPI_CTAR_CPOL | DSPI_CTAR_CPHA | DSPI_CTAR_LSBFE);
189 
190 	if (mode & SPI_CPOL)
191 		bus_setup |= DSPI_CTAR_CPOL;
192 	if (mode & SPI_CPHA)
193 		bus_setup |= DSPI_CTAR_CPHA;
194 	if (mode & SPI_LSB_FIRST)
195 		bus_setup |= DSPI_CTAR_LSBFE;
196 
197 	dspi_write32(priv->flags, &priv->regs->ctar[0], bus_setup);
198 
199 	priv->charbit =
200 		((dspi_read32(priv->flags, &priv->regs->ctar[0]) &
201 		  DSPI_CTAR_TRSZ(15)) == DSPI_CTAR_TRSZ(15)) ? 16 : 8;
202 
203 	return 0;
204 }
205 
206 static void fsl_dspi_clr_fifo(struct fsl_dspi_priv *priv)
207 {
208 	uint mcr_val;
209 
210 	dspi_halt(priv, 1);
211 	mcr_val = dspi_read32(priv->flags, &priv->regs->mcr);
212 	/* flush RX and TX FIFO */
213 	mcr_val |= (DSPI_MCR_CTXF | DSPI_MCR_CRXF);
214 	dspi_write32(priv->flags, &priv->regs->mcr, mcr_val);
215 	dspi_halt(priv, 0);
216 }
217 
218 static void dspi_tx(struct fsl_dspi_priv *priv, u32 ctrl, u16 data)
219 {
220 	int timeout = DSPI_TXRX_WAIT_TIMEOUT;
221 
222 	/* wait for empty entries in TXFIFO or timeout */
223 	while (DSPI_SR_TXCTR(dspi_read32(priv->flags, &priv->regs->sr)) >= 4 &&
224 			timeout--)
225 		udelay(1);
226 
227 	if (timeout >= 0)
228 		dspi_write32(priv->flags, &priv->regs->tfr, (ctrl | data));
229 	else
230 		debug("dspi_tx: waiting timeout!\n");
231 }
232 
233 static u16 dspi_rx(struct fsl_dspi_priv *priv)
234 {
235 	int timeout = DSPI_TXRX_WAIT_TIMEOUT;
236 
237 	/* wait for valid entries in RXFIFO or timeout */
238 	while (DSPI_SR_RXCTR(dspi_read32(priv->flags, &priv->regs->sr)) == 0 &&
239 			timeout--)
240 		udelay(1);
241 
242 	if (timeout >= 0)
243 		return (u16)DSPI_RFR_RXDATA(
244 				dspi_read32(priv->flags, &priv->regs->rfr));
245 	else {
246 		debug("dspi_rx: waiting timeout!\n");
247 		return (u16)(~0);
248 	}
249 }
250 
251 static int dspi_xfer(struct fsl_dspi_priv *priv, uint cs, unsigned int bitlen,
252 		const void *dout, void *din, unsigned long flags)
253 {
254 	u16 *spi_rd16 = NULL, *spi_wr16 = NULL;
255 	u8 *spi_rd = NULL, *spi_wr = NULL;
256 	static u32 ctrl;
257 	uint len = bitlen >> 3;
258 
259 	if (priv->charbit == 16) {
260 		bitlen >>= 1;
261 		spi_wr16 = (u16 *)dout;
262 		spi_rd16 = (u16 *)din;
263 	} else {
264 		spi_wr = (u8 *)dout;
265 		spi_rd = (u8 *)din;
266 	}
267 
268 	if ((flags & SPI_XFER_BEGIN) == SPI_XFER_BEGIN)
269 		ctrl |= DSPI_TFR_CONT;
270 
271 	ctrl = ctrl & DSPI_TFR_CONT;
272 	ctrl = ctrl | DSPI_TFR_CTAS(0) | DSPI_TFR_PCS(cs);
273 
274 	if (len > 1) {
275 		int tmp_len = len - 1;
276 		while (tmp_len--) {
277 			if (dout != NULL) {
278 				if (priv->charbit == 16)
279 					dspi_tx(priv, ctrl, *spi_wr16++);
280 				else
281 					dspi_tx(priv, ctrl, *spi_wr++);
282 				dspi_rx(priv);
283 			}
284 
285 			if (din != NULL) {
286 				dspi_tx(priv, ctrl, DSPI_IDLE_VAL);
287 				if (priv->charbit == 16)
288 					*spi_rd16++ = dspi_rx(priv);
289 				else
290 					*spi_rd++ = dspi_rx(priv);
291 			}
292 		}
293 
294 		len = 1;	/* remaining byte */
295 	}
296 
297 	if ((flags & SPI_XFER_END) == SPI_XFER_END)
298 		ctrl &= ~DSPI_TFR_CONT;
299 
300 	if (len) {
301 		if (dout != NULL) {
302 			if (priv->charbit == 16)
303 				dspi_tx(priv, ctrl, *spi_wr16);
304 			else
305 				dspi_tx(priv, ctrl, *spi_wr);
306 			dspi_rx(priv);
307 		}
308 
309 		if (din != NULL) {
310 			dspi_tx(priv, ctrl, DSPI_IDLE_VAL);
311 			if (priv->charbit == 16)
312 				*spi_rd16 = dspi_rx(priv);
313 			else
314 				*spi_rd = dspi_rx(priv);
315 		}
316 	} else {
317 		/* dummy read */
318 		dspi_tx(priv, ctrl, DSPI_IDLE_VAL);
319 		dspi_rx(priv);
320 	}
321 
322 	return 0;
323 }
324 
325 /**
326  * Calculate the divide value between input clk frequency and expected SCK frequency
327  * Formula: SCK = (clkrate/pbr) x ((1+dbr)/br)
328  * Dbr: use default value 0
329  *
330  * @pbr: return Baud Rate Prescaler value
331  * @br: return Baud Rate Scaler value
332  * @speed_hz: expected SCK frequency
333  * @clkrate: input clk frequency
334  */
335 static int fsl_dspi_hz_to_spi_baud(int *pbr, int *br,
336 		int speed_hz, uint clkrate)
337 {
338 	/* Valid baud rate pre-scaler values */
339 	int pbr_tbl[4] = {2, 3, 5, 7};
340 	int brs[16] = {2, 4, 6, 8,
341 		16, 32, 64, 128,
342 		256, 512, 1024, 2048,
343 		4096, 8192, 16384, 32768};
344 	int temp, i = 0, j = 0;
345 
346 	temp = clkrate / speed_hz;
347 
348 	for (i = 0; i < ARRAY_SIZE(pbr_tbl); i++)
349 		for (j = 0; j < ARRAY_SIZE(brs); j++) {
350 			if (pbr_tbl[i] * brs[j] >= temp) {
351 				*pbr = i;
352 				*br = j;
353 				return 0;
354 			}
355 		}
356 
357 	debug("Can not find valid baud rate,speed_hz is %d, ", speed_hz);
358 	debug("clkrate is %d, we use the max prescaler value.\n", clkrate);
359 
360 	*pbr = ARRAY_SIZE(pbr_tbl) - 1;
361 	*br =  ARRAY_SIZE(brs) - 1;
362 	return -EINVAL;
363 }
364 
365 static int fsl_dspi_cfg_speed(struct fsl_dspi_priv *priv, uint speed)
366 {
367 	int ret;
368 	uint bus_setup;
369 	int best_i, best_j, bus_clk;
370 
371 	bus_clk = priv->bus_clk;
372 
373 	debug("DSPI set_speed: expected SCK speed %u, bus_clk %u.\n",
374 	      speed, bus_clk);
375 
376 	bus_setup = dspi_read32(priv->flags, &priv->regs->ctar[0]);
377 	bus_setup &= ~(DSPI_CTAR_DBR | DSPI_CTAR_PBR(0x3) | DSPI_CTAR_BR(0xf));
378 
379 	ret = fsl_dspi_hz_to_spi_baud(&best_i, &best_j, speed, bus_clk);
380 	if (ret) {
381 		speed = priv->speed_hz;
382 		debug("DSPI set_speed use default SCK rate %u.\n", speed);
383 		fsl_dspi_hz_to_spi_baud(&best_i, &best_j, speed, bus_clk);
384 	}
385 
386 	bus_setup |= (DSPI_CTAR_PBR(best_i) | DSPI_CTAR_BR(best_j));
387 	dspi_write32(priv->flags, &priv->regs->ctar[0], bus_setup);
388 
389 	priv->speed_hz = speed;
390 
391 	return 0;
392 }
393 #ifndef CONFIG_DM_SPI
394 void spi_init(void)
395 {
396 	/* Nothing to do */
397 }
398 
399 int spi_cs_is_valid(unsigned int bus, unsigned int cs)
400 {
401 	if (((cs >= 0) && (cs < 8)) && ((bus >= 0) && (bus < 8)))
402 		return 1;
403 	else
404 		return 0;
405 }
406 
407 struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
408 				  unsigned int max_hz, unsigned int mode)
409 {
410 	struct fsl_dspi *dspi;
411 	uint mcr_cfg_val;
412 
413 	dspi = spi_alloc_slave(struct fsl_dspi, bus, cs);
414 	if (!dspi)
415 		return NULL;
416 
417 	cpu_dspi_port_conf();
418 
419 #ifdef CONFIG_SYS_FSL_DSPI_BE
420 	dspi->priv.flags |= DSPI_FLAG_REGMAP_ENDIAN_BIG;
421 #endif
422 
423 	dspi->priv.regs = (struct dspi *)MMAP_DSPI;
424 
425 #ifdef CONFIG_M68K
426 	dspi->priv.bus_clk = gd->bus_clk;
427 #else
428 	dspi->priv.bus_clk = mxc_get_clock(MXC_DSPI_CLK);
429 #endif
430 	dspi->priv.speed_hz = FSL_DSPI_DEFAULT_SCK_FREQ;
431 
432 	/* default: all CS signals inactive state is high */
433 	mcr_cfg_val = DSPI_MCR_MSTR | DSPI_MCR_PCSIS_MASK |
434 		DSPI_MCR_CRXF | DSPI_MCR_CTXF;
435 	fsl_dspi_init_mcr(&dspi->priv, mcr_cfg_val);
436 
437 	for (i = 0; i < FSL_DSPI_MAX_CHIPSELECT; i++)
438 		dspi->priv.ctar_val[i] = DSPI_CTAR_DEFAULT_VALUE;
439 
440 #ifdef CONFIG_SYS_DSPI_CTAR0
441 	if (FSL_DSPI_MAX_CHIPSELECT > 0)
442 		dspi->priv.ctar_val[0] = CONFIG_SYS_DSPI_CTAR0;
443 #endif
444 #ifdef CONFIG_SYS_DSPI_CTAR1
445 	if (FSL_DSPI_MAX_CHIPSELECT > 1)
446 		dspi->priv.ctar_val[1] = CONFIG_SYS_DSPI_CTAR1;
447 #endif
448 #ifdef CONFIG_SYS_DSPI_CTAR2
449 	if (FSL_DSPI_MAX_CHIPSELECT > 2)
450 		dspi->priv.ctar_val[2] = CONFIG_SYS_DSPI_CTAR2;
451 #endif
452 #ifdef CONFIG_SYS_DSPI_CTAR3
453 	if (FSL_DSPI_MAX_CHIPSELECT > 3)
454 		dspi->priv.ctar_val[3] = CONFIG_SYS_DSPI_CTAR3;
455 #endif
456 #ifdef CONFIG_SYS_DSPI_CTAR4
457 	if (FSL_DSPI_MAX_CHIPSELECT > 4)
458 		dspi->priv.ctar_val[4] = CONFIG_SYS_DSPI_CTAR4;
459 #endif
460 #ifdef CONFIG_SYS_DSPI_CTAR5
461 	if (FSL_DSPI_MAX_CHIPSELECT > 5)
462 		dspi->priv.ctar_val[5] = CONFIG_SYS_DSPI_CTAR5;
463 #endif
464 #ifdef CONFIG_SYS_DSPI_CTAR6
465 	if (FSL_DSPI_MAX_CHIPSELECT > 6)
466 		dspi->priv.ctar_val[6] = CONFIG_SYS_DSPI_CTAR6;
467 #endif
468 #ifdef CONFIG_SYS_DSPI_CTAR7
469 	if (FSL_DSPI_MAX_CHIPSELECT > 7)
470 		dspi->priv.ctar_val[7] = CONFIG_SYS_DSPI_CTAR7;
471 #endif
472 
473 	fsl_dspi_cfg_speed(&dspi->priv, max_hz);
474 
475 	/* configure transfer mode */
476 	fsl_dspi_cfg_ctar_mode(&dspi->priv, cs, mode);
477 
478 	/* configure active state of CSX */
479 	fsl_dspi_cfg_cs_active_state(&dspi->priv, cs, mode);
480 
481 	return &dspi->slave;
482 }
483 
484 void spi_free_slave(struct spi_slave *slave)
485 {
486 	free(slave);
487 }
488 
489 int spi_claim_bus(struct spi_slave *slave)
490 {
491 	uint sr_val;
492 	struct fsl_dspi *dspi = (struct fsl_dspi *)slave;
493 
494 	cpu_dspi_claim_bus(slave->bus, slave->cs);
495 
496 	fsl_dspi_clr_fifo(&dspi->priv);
497 
498 	/* check module TX and RX status */
499 	sr_val = dspi_read32(dspi->priv.flags, &dspi->priv.regs->sr);
500 	if ((sr_val & DSPI_SR_TXRXS) != DSPI_SR_TXRXS) {
501 		debug("DSPI RX/TX not ready!\n");
502 		return -EIO;
503 	}
504 
505 	return 0;
506 }
507 
508 void spi_release_bus(struct spi_slave *slave)
509 {
510 	struct fsl_dspi *dspi = (struct fsl_dspi *)slave;
511 
512 	dspi_halt(&dspi->priv, 1);
513 	cpu_dspi_release_bus(slave->bus.slave->cs);
514 }
515 
516 int spi_xfer(struct spi_slave *slave, unsigned int bitlen, const void *dout,
517 	     void *din, unsigned long flags)
518 {
519 	struct fsl_dspi *dspi = (struct fsl_dspi *)slave;
520 	return dspi_xfer(&dspi->priv, slave->cs, bitlen, dout, din, flags);
521 }
522 #else
523 static int fsl_dspi_child_pre_probe(struct udevice *dev)
524 {
525 	struct dm_spi_slave_platdata *slave_plat = dev_get_parent_platdata(dev);
526 	struct fsl_dspi_priv *priv = dev_get_priv(dev->parent);
527 
528 	if (slave_plat->cs >= priv->num_chipselect) {
529 		debug("DSPI invalid chipselect number %d(max %d)!\n",
530 		      slave_plat->cs, priv->num_chipselect - 1);
531 		return -EINVAL;
532 	}
533 
534 	priv->ctar_val[slave_plat->cs] = DSPI_CTAR_DEFAULT_VALUE;
535 
536 	debug("DSPI pre_probe slave device on CS %u, max_hz %u, mode 0x%x.\n",
537 	      slave_plat->cs, slave_plat->max_hz, slave_plat->mode);
538 
539 	return 0;
540 }
541 
542 static int fsl_dspi_probe(struct udevice *bus)
543 {
544 	struct fsl_dspi_platdata *plat = dev_get_platdata(bus);
545 	struct fsl_dspi_priv *priv = dev_get_priv(bus);
546 	struct dm_spi_bus *dm_spi_bus;
547 	uint mcr_cfg_val;
548 
549 	dm_spi_bus = bus->uclass_priv;
550 
551 	/* cpu speical pin muxing configure */
552 	cpu_dspi_port_conf();
553 
554 	/* get input clk frequency */
555 	priv->regs = (struct dspi *)plat->regs_addr;
556 	priv->flags = plat->flags;
557 #ifdef CONFIG_M68K
558 	priv->bus_clk = gd->bus_clk;
559 #else
560 	priv->bus_clk = mxc_get_clock(MXC_DSPI_CLK);
561 #endif
562 	priv->num_chipselect = plat->num_chipselect;
563 	priv->speed_hz = plat->speed_hz;
564 	/* frame data length in bits, default 8bits */
565 	priv->charbit = 8;
566 
567 	dm_spi_bus->max_hz = plat->speed_hz;
568 
569 	/* default: all CS signals inactive state is high */
570 	mcr_cfg_val = DSPI_MCR_MSTR | DSPI_MCR_PCSIS_MASK |
571 		DSPI_MCR_CRXF | DSPI_MCR_CTXF;
572 	fsl_dspi_init_mcr(priv, mcr_cfg_val);
573 
574 	debug("%s probe done, bus-num %d.\n", bus->name, bus->seq);
575 
576 	return 0;
577 }
578 
579 static int fsl_dspi_claim_bus(struct udevice *dev)
580 {
581 	uint sr_val;
582 	struct fsl_dspi_priv *priv;
583 	struct udevice *bus = dev->parent;
584 	struct dm_spi_slave_platdata *slave_plat =
585 		dev_get_parent_platdata(dev);
586 
587 	priv = dev_get_priv(bus);
588 
589 	/* processor special preparation work */
590 	cpu_dspi_claim_bus(bus->seq, slave_plat->cs);
591 
592 	/* configure transfer mode */
593 	fsl_dspi_cfg_ctar_mode(priv, slave_plat->cs, priv->mode);
594 
595 	/* configure active state of CSX */
596 	fsl_dspi_cfg_cs_active_state(priv, slave_plat->cs,
597 				     priv->mode);
598 
599 	fsl_dspi_clr_fifo(priv);
600 
601 	/* check module TX and RX status */
602 	sr_val = dspi_read32(priv->flags, &priv->regs->sr);
603 	if ((sr_val & DSPI_SR_TXRXS) != DSPI_SR_TXRXS) {
604 		debug("DSPI RX/TX not ready!\n");
605 		return -EIO;
606 	}
607 
608 	return 0;
609 }
610 
611 static int fsl_dspi_release_bus(struct udevice *dev)
612 {
613 	struct udevice *bus = dev->parent;
614 	struct fsl_dspi_priv *priv = dev_get_priv(bus);
615 	struct dm_spi_slave_platdata *slave_plat =
616 		dev_get_parent_platdata(dev);
617 
618 	/* halt module */
619 	dspi_halt(priv, 1);
620 
621 	/* processor special release work */
622 	cpu_dspi_release_bus(bus->seq, slave_plat->cs);
623 
624 	return 0;
625 }
626 
627 /**
628  * This function doesn't do anything except help with debugging
629  */
630 static int fsl_dspi_bind(struct udevice *bus)
631 {
632 	debug("%s assigned req_seq %d.\n", bus->name, bus->req_seq);
633 	return 0;
634 }
635 
636 static int fsl_dspi_ofdata_to_platdata(struct udevice *bus)
637 {
638 	fdt_addr_t addr;
639 	struct fsl_dspi_platdata *plat = bus->platdata;
640 	const void *blob = gd->fdt_blob;
641 	int node = dev_of_offset(bus);
642 
643 	if (fdtdec_get_bool(blob, node, "big-endian"))
644 		plat->flags |= DSPI_FLAG_REGMAP_ENDIAN_BIG;
645 
646 	plat->num_chipselect =
647 		fdtdec_get_int(blob, node, "num-cs", FSL_DSPI_MAX_CHIPSELECT);
648 
649 	addr = devfdt_get_addr(bus);
650 	if (addr == FDT_ADDR_T_NONE) {
651 		debug("DSPI: Can't get base address or size\n");
652 		return -ENOMEM;
653 	}
654 	plat->regs_addr = addr;
655 
656 	plat->speed_hz = fdtdec_get_int(blob,
657 			node, "spi-max-frequency", FSL_DSPI_DEFAULT_SCK_FREQ);
658 
659 	debug("DSPI: regs=%pa, max-frequency=%d, endianess=%s, num-cs=%d\n",
660 	      &plat->regs_addr, plat->speed_hz,
661 	      plat->flags & DSPI_FLAG_REGMAP_ENDIAN_BIG ? "be" : "le",
662 	      plat->num_chipselect);
663 
664 	return 0;
665 }
666 
667 static int fsl_dspi_xfer(struct udevice *dev, unsigned int bitlen,
668 		const void *dout, void *din, unsigned long flags)
669 {
670 	struct fsl_dspi_priv *priv;
671 	struct dm_spi_slave_platdata *slave_plat = dev_get_parent_platdata(dev);
672 	struct udevice *bus;
673 
674 	bus = dev->parent;
675 	priv = dev_get_priv(bus);
676 
677 	return dspi_xfer(priv, slave_plat->cs, bitlen, dout, din, flags);
678 }
679 
680 static int fsl_dspi_set_speed(struct udevice *bus, uint speed)
681 {
682 	struct fsl_dspi_priv *priv = dev_get_priv(bus);
683 
684 	return fsl_dspi_cfg_speed(priv, speed);
685 }
686 
687 static int fsl_dspi_set_mode(struct udevice *bus, uint mode)
688 {
689 	struct fsl_dspi_priv *priv = dev_get_priv(bus);
690 
691 	debug("DSPI set_mode: mode 0x%x.\n", mode);
692 
693 	/*
694 	 * We store some chipselect special configure value in priv->ctar_val,
695 	 * and we can't get the correct chipselect number here,
696 	 * so just store mode value.
697 	 * Do really configuration when claim_bus.
698 	 */
699 	priv->mode = mode;
700 
701 	return 0;
702 }
703 
704 static const struct dm_spi_ops fsl_dspi_ops = {
705 	.claim_bus	= fsl_dspi_claim_bus,
706 	.release_bus	= fsl_dspi_release_bus,
707 	.xfer		= fsl_dspi_xfer,
708 	.set_speed	= fsl_dspi_set_speed,
709 	.set_mode	= fsl_dspi_set_mode,
710 };
711 
712 static const struct udevice_id fsl_dspi_ids[] = {
713 	{ .compatible = "fsl,vf610-dspi" },
714 	{ }
715 };
716 
717 U_BOOT_DRIVER(fsl_dspi) = {
718 	.name	= "fsl_dspi",
719 	.id	= UCLASS_SPI,
720 	.of_match = fsl_dspi_ids,
721 	.ops	= &fsl_dspi_ops,
722 	.ofdata_to_platdata = fsl_dspi_ofdata_to_platdata,
723 	.platdata_auto_alloc_size = sizeof(struct fsl_dspi_platdata),
724 	.priv_auto_alloc_size = sizeof(struct fsl_dspi_priv),
725 	.probe	= fsl_dspi_probe,
726 	.child_pre_probe = fsl_dspi_child_pre_probe,
727 	.bind = fsl_dspi_bind,
728 };
729 #endif
730