blob: b8c0216b39d19a666f1f104d36819ebb1583b748 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +08002/*
3 * (C) Copyright 2000-2003
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 *
6 * Copyright (C) 2004-2009, 2015 Freescale Semiconductor, Inc.
7 * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
8 * Chao Fu (B44548@freescale.com)
9 * Haikun Wang (B53464@freescale.com)
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +080010 */
Simon Glass4af0d7e2017-05-17 17:18:07 -060011
Vladimir Olteane7005b32020-05-04 11:24:26 +030012#include <linux/math64.h>
Simon Glass4af0d7e2017-05-17 17:18:07 -060013#include <common.h>
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +080014#include <dm.h>
15#include <errno.h>
16#include <common.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060017#include <log.h>
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +080018#include <spi.h>
19#include <malloc.h>
20#include <asm/io.h>
21#include <fdtdec.h>
22#ifndef CONFIG_M68K
23#include <asm/arch/clock.h>
24#endif
25#include <fsl_dspi.h>
Simon Glasscd93d622020-05-10 11:40:13 -060026#include <linux/bitops.h>
Simon Glassc05ed002020-05-10 11:40:11 -060027#include <linux/delay.h>
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +080028
Vladimir Olteane7005b32020-05-04 11:24:26 +030029/* linux/include/time.h */
30#define NSEC_PER_SEC 1000000000L
31
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +080032DECLARE_GLOBAL_DATA_PTR;
33
Simon Glass8a8d24b2020-12-03 16:55:23 -070034/* fsl_dspi_plat flags */
Jagan Teki29e6abd2015-10-23 01:37:18 +053035#define DSPI_FLAG_REGMAP_ENDIAN_BIG BIT(0)
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +080036
37/* idle data value */
38#define DSPI_IDLE_VAL 0x0
39
40/* max chipselect signals number */
41#define FSL_DSPI_MAX_CHIPSELECT 6
42
43/* default SCK frequency, unit: HZ */
44#define FSL_DSPI_DEFAULT_SCK_FREQ 10000000
45
46/* tx/rx data wait timeout value, unit: us */
47#define DSPI_TXRX_WAIT_TIMEOUT 1000000
48
49/* CTAR register pre-configure value */
50#define DSPI_CTAR_DEFAULT_VALUE (DSPI_CTAR_TRSZ(7) | \
51 DSPI_CTAR_PCSSCK_1CLK | \
52 DSPI_CTAR_PASC(0) | \
53 DSPI_CTAR_PDT(0) | \
54 DSPI_CTAR_CSSCK(0) | \
55 DSPI_CTAR_ASC(0) | \
56 DSPI_CTAR_DT(0))
57
58/* CTAR register pre-configure mask */
59#define DSPI_CTAR_SET_MODE_MASK (DSPI_CTAR_TRSZ(15) | \
60 DSPI_CTAR_PCSSCK(3) | \
61 DSPI_CTAR_PASC(3) | \
62 DSPI_CTAR_PDT(3) | \
63 DSPI_CTAR_CSSCK(15) | \
64 DSPI_CTAR_ASC(15) | \
65 DSPI_CTAR_DT(15))
66
67/**
Simon Glass8a8d24b2020-12-03 16:55:23 -070068 * struct fsl_dspi_plat - platform data for Freescale DSPI
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +080069 *
70 * @flags: Flags for DSPI DSPI_FLAG_...
71 * @speed_hz: Default SCK frequency
72 * @num_chipselect: Number of DSPI chipselect signals
73 * @regs_addr: Base address of DSPI registers
74 */
Simon Glass8a8d24b2020-12-03 16:55:23 -070075struct fsl_dspi_plat {
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +080076 uint flags;
77 uint speed_hz;
78 uint num_chipselect;
79 fdt_addr_t regs_addr;
80};
81
82/**
83 * struct fsl_dspi_priv - private data for Freescale DSPI
84 *
85 * @flags: Flags for DSPI DSPI_FLAG_...
86 * @mode: SPI mode to use for slave device (see SPI mode flags)
87 * @mcr_val: MCR register configure value
88 * @bus_clk: DSPI input clk frequency
89 * @speed_hz: Default SCK frequency
90 * @charbit: How many bits in every transfer
91 * @num_chipselect: Number of DSPI chipselect signals
92 * @ctar_val: CTAR register configure value of per chipselect slave device
93 * @regs: Point to DSPI register structure for I/O access
94 */
95struct fsl_dspi_priv {
96 uint flags;
97 uint mode;
98 uint mcr_val;
99 uint bus_clk;
100 uint speed_hz;
101 uint charbit;
102 uint num_chipselect;
103 uint ctar_val[FSL_DSPI_MAX_CHIPSELECT];
104 struct dspi *regs;
105};
106
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +0800107__weak void cpu_dspi_port_conf(void)
108{
109}
110
111__weak int cpu_dspi_claim_bus(uint bus, uint cs)
112{
113 return 0;
114}
115
116__weak void cpu_dspi_release_bus(uint bus, uint cs)
117{
118}
119
120static uint dspi_read32(uint flags, uint *addr)
121{
122 return flags & DSPI_FLAG_REGMAP_ENDIAN_BIG ?
123 in_be32(addr) : in_le32(addr);
124}
125
126static void dspi_write32(uint flags, uint *addr, uint val)
127{
128 flags & DSPI_FLAG_REGMAP_ENDIAN_BIG ?
129 out_be32(addr, val) : out_le32(addr, val);
130}
131
132static void dspi_halt(struct fsl_dspi_priv *priv, u8 halt)
133{
134 uint mcr_val;
135
136 mcr_val = dspi_read32(priv->flags, &priv->regs->mcr);
137
138 if (halt)
139 mcr_val |= DSPI_MCR_HALT;
140 else
141 mcr_val &= ~DSPI_MCR_HALT;
142
143 dspi_write32(priv->flags, &priv->regs->mcr, mcr_val);
144}
145
146static void fsl_dspi_init_mcr(struct fsl_dspi_priv *priv, uint cfg_val)
147{
148 /* halt DSPI module */
149 dspi_halt(priv, 1);
150
151 dspi_write32(priv->flags, &priv->regs->mcr, cfg_val);
152
153 /* resume module */
154 dspi_halt(priv, 0);
155
156 priv->mcr_val = cfg_val;
157}
158
159static void fsl_dspi_cfg_cs_active_state(struct fsl_dspi_priv *priv,
160 uint cs, uint state)
161{
162 uint mcr_val;
163
164 dspi_halt(priv, 1);
165
166 mcr_val = dspi_read32(priv->flags, &priv->regs->mcr);
167 if (state & SPI_CS_HIGH)
168 /* CSx inactive state is low */
169 mcr_val &= ~DSPI_MCR_PCSIS(cs);
170 else
171 /* CSx inactive state is high */
172 mcr_val |= DSPI_MCR_PCSIS(cs);
173 dspi_write32(priv->flags, &priv->regs->mcr, mcr_val);
174
175 dspi_halt(priv, 0);
176}
177
178static int fsl_dspi_cfg_ctar_mode(struct fsl_dspi_priv *priv,
179 uint cs, uint mode)
180{
181 uint bus_setup;
182
183 bus_setup = dspi_read32(priv->flags, &priv->regs->ctar[0]);
184
185 bus_setup &= ~DSPI_CTAR_SET_MODE_MASK;
186 bus_setup |= priv->ctar_val[cs];
187 bus_setup &= ~(DSPI_CTAR_CPOL | DSPI_CTAR_CPHA | DSPI_CTAR_LSBFE);
188
189 if (mode & SPI_CPOL)
190 bus_setup |= DSPI_CTAR_CPOL;
191 if (mode & SPI_CPHA)
192 bus_setup |= DSPI_CTAR_CPHA;
193 if (mode & SPI_LSB_FIRST)
194 bus_setup |= DSPI_CTAR_LSBFE;
195
196 dspi_write32(priv->flags, &priv->regs->ctar[0], bus_setup);
197
198 priv->charbit =
199 ((dspi_read32(priv->flags, &priv->regs->ctar[0]) &
200 DSPI_CTAR_TRSZ(15)) == DSPI_CTAR_TRSZ(15)) ? 16 : 8;
201
202 return 0;
203}
204
205static void fsl_dspi_clr_fifo(struct fsl_dspi_priv *priv)
206{
207 uint mcr_val;
208
209 dspi_halt(priv, 1);
210 mcr_val = dspi_read32(priv->flags, &priv->regs->mcr);
211 /* flush RX and TX FIFO */
212 mcr_val |= (DSPI_MCR_CTXF | DSPI_MCR_CRXF);
213 dspi_write32(priv->flags, &priv->regs->mcr, mcr_val);
214 dspi_halt(priv, 0);
215}
216
217static void dspi_tx(struct fsl_dspi_priv *priv, u32 ctrl, u16 data)
218{
219 int timeout = DSPI_TXRX_WAIT_TIMEOUT;
220
221 /* wait for empty entries in TXFIFO or timeout */
222 while (DSPI_SR_TXCTR(dspi_read32(priv->flags, &priv->regs->sr)) >= 4 &&
223 timeout--)
224 udelay(1);
225
226 if (timeout >= 0)
227 dspi_write32(priv->flags, &priv->regs->tfr, (ctrl | data));
228 else
229 debug("dspi_tx: waiting timeout!\n");
230}
231
232static u16 dspi_rx(struct fsl_dspi_priv *priv)
233{
234 int timeout = DSPI_TXRX_WAIT_TIMEOUT;
235
236 /* wait for valid entries in RXFIFO or timeout */
237 while (DSPI_SR_RXCTR(dspi_read32(priv->flags, &priv->regs->sr)) == 0 &&
238 timeout--)
239 udelay(1);
240
241 if (timeout >= 0)
242 return (u16)DSPI_RFR_RXDATA(
243 dspi_read32(priv->flags, &priv->regs->rfr));
244 else {
245 debug("dspi_rx: waiting timeout!\n");
246 return (u16)(~0);
247 }
248}
249
250static int dspi_xfer(struct fsl_dspi_priv *priv, uint cs, unsigned int bitlen,
251 const void *dout, void *din, unsigned long flags)
252{
253 u16 *spi_rd16 = NULL, *spi_wr16 = NULL;
254 u8 *spi_rd = NULL, *spi_wr = NULL;
255 static u32 ctrl;
256 uint len = bitlen >> 3;
257
258 if (priv->charbit == 16) {
259 bitlen >>= 1;
260 spi_wr16 = (u16 *)dout;
261 spi_rd16 = (u16 *)din;
262 } else {
263 spi_wr = (u8 *)dout;
264 spi_rd = (u8 *)din;
265 }
266
267 if ((flags & SPI_XFER_BEGIN) == SPI_XFER_BEGIN)
268 ctrl |= DSPI_TFR_CONT;
269
270 ctrl = ctrl & DSPI_TFR_CONT;
271 ctrl = ctrl | DSPI_TFR_CTAS(0) | DSPI_TFR_PCS(cs);
272
273 if (len > 1) {
274 int tmp_len = len - 1;
275 while (tmp_len--) {
Jared Bents40264c02019-03-22 09:46:52 -0500276 if ((dout != NULL) && (din != NULL)) {
277 if (priv->charbit == 16) {
278 dspi_tx(priv, ctrl, *spi_wr16++);
279 *spi_rd16++ = dspi_rx(priv);
280 }
281 else {
282 dspi_tx(priv, ctrl, *spi_wr++);
283 *spi_rd++ = dspi_rx(priv);
284 }
285 }
286
287 else if (dout != NULL) {
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +0800288 if (priv->charbit == 16)
289 dspi_tx(priv, ctrl, *spi_wr16++);
290 else
291 dspi_tx(priv, ctrl, *spi_wr++);
292 dspi_rx(priv);
293 }
294
Jared Bents40264c02019-03-22 09:46:52 -0500295 else if (din != NULL) {
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +0800296 dspi_tx(priv, ctrl, DSPI_IDLE_VAL);
297 if (priv->charbit == 16)
298 *spi_rd16++ = dspi_rx(priv);
299 else
300 *spi_rd++ = dspi_rx(priv);
301 }
302 }
303
304 len = 1; /* remaining byte */
305 }
306
307 if ((flags & SPI_XFER_END) == SPI_XFER_END)
308 ctrl &= ~DSPI_TFR_CONT;
309
310 if (len) {
Jared Bents40264c02019-03-22 09:46:52 -0500311 if ((dout != NULL) && (din != NULL)) {
312 if (priv->charbit == 16) {
313 dspi_tx(priv, ctrl, *spi_wr16++);
314 *spi_rd16++ = dspi_rx(priv);
315 }
316 else {
317 dspi_tx(priv, ctrl, *spi_wr++);
318 *spi_rd++ = dspi_rx(priv);
319 }
320 }
321
322 else if (dout != NULL) {
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +0800323 if (priv->charbit == 16)
324 dspi_tx(priv, ctrl, *spi_wr16);
325 else
326 dspi_tx(priv, ctrl, *spi_wr);
327 dspi_rx(priv);
328 }
329
Jared Bents40264c02019-03-22 09:46:52 -0500330 else if (din != NULL) {
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +0800331 dspi_tx(priv, ctrl, DSPI_IDLE_VAL);
332 if (priv->charbit == 16)
333 *spi_rd16 = dspi_rx(priv);
334 else
335 *spi_rd = dspi_rx(priv);
336 }
337 } else {
338 /* dummy read */
339 dspi_tx(priv, ctrl, DSPI_IDLE_VAL);
340 dspi_rx(priv);
341 }
342
343 return 0;
344}
345
346/**
347 * Calculate the divide value between input clk frequency and expected SCK frequency
348 * Formula: SCK = (clkrate/pbr) x ((1+dbr)/br)
349 * Dbr: use default value 0
350 *
351 * @pbr: return Baud Rate Prescaler value
352 * @br: return Baud Rate Scaler value
353 * @speed_hz: expected SCK frequency
354 * @clkrate: input clk frequency
355 */
356static int fsl_dspi_hz_to_spi_baud(int *pbr, int *br,
357 int speed_hz, uint clkrate)
358{
359 /* Valid baud rate pre-scaler values */
360 int pbr_tbl[4] = {2, 3, 5, 7};
361 int brs[16] = {2, 4, 6, 8,
362 16, 32, 64, 128,
363 256, 512, 1024, 2048,
364 4096, 8192, 16384, 32768};
365 int temp, i = 0, j = 0;
366
367 temp = clkrate / speed_hz;
368
369 for (i = 0; i < ARRAY_SIZE(pbr_tbl); i++)
370 for (j = 0; j < ARRAY_SIZE(brs); j++) {
371 if (pbr_tbl[i] * brs[j] >= temp) {
372 *pbr = i;
373 *br = j;
374 return 0;
375 }
376 }
377
378 debug("Can not find valid baud rate,speed_hz is %d, ", speed_hz);
379 debug("clkrate is %d, we use the max prescaler value.\n", clkrate);
380
381 *pbr = ARRAY_SIZE(pbr_tbl) - 1;
382 *br = ARRAY_SIZE(brs) - 1;
383 return -EINVAL;
384}
385
Vladimir Olteane7005b32020-05-04 11:24:26 +0300386static void ns_delay_scale(unsigned char *psc, unsigned char *sc, int delay_ns,
387 unsigned long clkrate)
388{
389 int scale_needed, scale, minscale = INT_MAX;
390 int pscale_tbl[4] = {1, 3, 5, 7};
391 u32 remainder;
392 int i, j;
393
394 scale_needed = div_u64_rem((u64)delay_ns * clkrate, NSEC_PER_SEC,
395 &remainder);
396 if (remainder)
397 scale_needed++;
398
399 for (i = 0; i < ARRAY_SIZE(pscale_tbl); i++)
400 for (j = 0; j <= DSPI_CTAR_SCALE_BITS; j++) {
401 scale = pscale_tbl[i] * (2 << j);
402 if (scale >= scale_needed) {
403 if (scale < minscale) {
404 minscale = scale;
405 *psc = i;
406 *sc = j;
407 }
408 break;
409 }
410 }
411
412 if (minscale == INT_MAX) {
413 pr_warn("Cannot find correct scale values for %dns delay at clkrate %ld, using max prescaler value",
414 delay_ns, clkrate);
415 *psc = ARRAY_SIZE(pscale_tbl) - 1;
416 *sc = DSPI_CTAR_SCALE_BITS;
417 }
418}
419
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +0800420static int fsl_dspi_cfg_speed(struct fsl_dspi_priv *priv, uint speed)
421{
422 int ret;
423 uint bus_setup;
424 int best_i, best_j, bus_clk;
425
426 bus_clk = priv->bus_clk;
427
428 debug("DSPI set_speed: expected SCK speed %u, bus_clk %u.\n",
429 speed, bus_clk);
430
431 bus_setup = dspi_read32(priv->flags, &priv->regs->ctar[0]);
432 bus_setup &= ~(DSPI_CTAR_DBR | DSPI_CTAR_PBR(0x3) | DSPI_CTAR_BR(0xf));
433
434 ret = fsl_dspi_hz_to_spi_baud(&best_i, &best_j, speed, bus_clk);
435 if (ret) {
436 speed = priv->speed_hz;
437 debug("DSPI set_speed use default SCK rate %u.\n", speed);
438 fsl_dspi_hz_to_spi_baud(&best_i, &best_j, speed, bus_clk);
439 }
440
441 bus_setup |= (DSPI_CTAR_PBR(best_i) | DSPI_CTAR_BR(best_j));
442 dspi_write32(priv->flags, &priv->regs->ctar[0], bus_setup);
443
444 priv->speed_hz = speed;
445
446 return 0;
447}
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +0800448
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +0800449static int fsl_dspi_child_pre_probe(struct udevice *dev)
450{
Simon Glass8a8d24b2020-12-03 16:55:23 -0700451 struct dm_spi_slave_plat *slave_plat = dev_get_parent_plat(dev);
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +0800452 struct fsl_dspi_priv *priv = dev_get_priv(dev->parent);
Vladimir Olteane7005b32020-05-04 11:24:26 +0300453 u32 cs_sck_delay = 0, sck_cs_delay = 0;
454 unsigned char pcssck = 0, cssck = 0;
455 unsigned char pasc = 0, asc = 0;
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +0800456
457 if (slave_plat->cs >= priv->num_chipselect) {
458 debug("DSPI invalid chipselect number %d(max %d)!\n",
459 slave_plat->cs, priv->num_chipselect - 1);
460 return -EINVAL;
461 }
462
Vladimir Olteane7005b32020-05-04 11:24:26 +0300463 ofnode_read_u32(dev->node, "fsl,spi-cs-sck-delay", &cs_sck_delay);
464 ofnode_read_u32(dev->node, "fsl,spi-sck-cs-delay", &sck_cs_delay);
465
466 /* Set PCS to SCK delay scale values */
467 ns_delay_scale(&pcssck, &cssck, cs_sck_delay, priv->bus_clk);
468
469 /* Set After SCK delay scale values */
470 ns_delay_scale(&pasc, &asc, sck_cs_delay, priv->bus_clk);
471
472 priv->ctar_val[slave_plat->cs] = DSPI_CTAR_DEFAULT_VALUE |
473 DSPI_CTAR_PCSSCK(pcssck) |
474 DSPI_CTAR_PASC(pasc);
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +0800475
476 debug("DSPI pre_probe slave device on CS %u, max_hz %u, mode 0x%x.\n",
477 slave_plat->cs, slave_plat->max_hz, slave_plat->mode);
478
479 return 0;
480}
481
482static int fsl_dspi_probe(struct udevice *bus)
483{
Simon Glass8a8d24b2020-12-03 16:55:23 -0700484 struct fsl_dspi_plat *plat = dev_get_plat(bus);
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +0800485 struct fsl_dspi_priv *priv = dev_get_priv(bus);
486 struct dm_spi_bus *dm_spi_bus;
487 uint mcr_cfg_val;
488
Simon Glass0fd3d912020-12-22 19:30:28 -0700489 dm_spi_bus = dev_get_uclass_priv(bus);
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +0800490
491 /* cpu speical pin muxing configure */
492 cpu_dspi_port_conf();
493
494 /* get input clk frequency */
495 priv->regs = (struct dspi *)plat->regs_addr;
496 priv->flags = plat->flags;
497#ifdef CONFIG_M68K
498 priv->bus_clk = gd->bus_clk;
499#else
500 priv->bus_clk = mxc_get_clock(MXC_DSPI_CLK);
501#endif
502 priv->num_chipselect = plat->num_chipselect;
503 priv->speed_hz = plat->speed_hz;
504 /* frame data length in bits, default 8bits */
505 priv->charbit = 8;
506
507 dm_spi_bus->max_hz = plat->speed_hz;
508
509 /* default: all CS signals inactive state is high */
510 mcr_cfg_val = DSPI_MCR_MSTR | DSPI_MCR_PCSIS_MASK |
511 DSPI_MCR_CRXF | DSPI_MCR_CTXF;
512 fsl_dspi_init_mcr(priv, mcr_cfg_val);
513
Simon Glass8b85dfc2020-12-16 21:20:07 -0700514 debug("%s probe done, bus-num %d.\n", bus->name, dev_seq(bus));
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +0800515
516 return 0;
517}
518
519static int fsl_dspi_claim_bus(struct udevice *dev)
520{
521 uint sr_val;
522 struct fsl_dspi_priv *priv;
523 struct udevice *bus = dev->parent;
Simon Glass8a8d24b2020-12-03 16:55:23 -0700524 struct dm_spi_slave_plat *slave_plat =
Simon Glasscaa4daa2020-12-03 16:55:18 -0700525 dev_get_parent_plat(dev);
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +0800526
527 priv = dev_get_priv(bus);
528
Robert P. J. Dayfc0b5942016-09-07 14:27:59 -0400529 /* processor special preparation work */
Simon Glass8b85dfc2020-12-16 21:20:07 -0700530 cpu_dspi_claim_bus(dev_seq(bus), slave_plat->cs);
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +0800531
532 /* configure transfer mode */
533 fsl_dspi_cfg_ctar_mode(priv, slave_plat->cs, priv->mode);
534
535 /* configure active state of CSX */
536 fsl_dspi_cfg_cs_active_state(priv, slave_plat->cs,
537 priv->mode);
538
539 fsl_dspi_clr_fifo(priv);
540
541 /* check module TX and RX status */
542 sr_val = dspi_read32(priv->flags, &priv->regs->sr);
543 if ((sr_val & DSPI_SR_TXRXS) != DSPI_SR_TXRXS) {
544 debug("DSPI RX/TX not ready!\n");
545 return -EIO;
546 }
547
548 return 0;
549}
550
551static int fsl_dspi_release_bus(struct udevice *dev)
552{
553 struct udevice *bus = dev->parent;
554 struct fsl_dspi_priv *priv = dev_get_priv(bus);
Simon Glass8a8d24b2020-12-03 16:55:23 -0700555 struct dm_spi_slave_plat *slave_plat =
Simon Glasscaa4daa2020-12-03 16:55:18 -0700556 dev_get_parent_plat(dev);
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +0800557
558 /* halt module */
559 dspi_halt(priv, 1);
560
561 /* processor special release work */
Simon Glass8b85dfc2020-12-16 21:20:07 -0700562 cpu_dspi_release_bus(dev_seq(bus), slave_plat->cs);
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +0800563
564 return 0;
565}
566
567/**
568 * This function doesn't do anything except help with debugging
569 */
570static int fsl_dspi_bind(struct udevice *bus)
571{
Simon Glass6d83c742020-12-16 21:20:19 -0700572 debug("%s assigned seq %d.\n", bus->name, dev_seq(bus));
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +0800573 return 0;
574}
575
Simon Glassd1998a92020-12-03 16:55:21 -0700576static int fsl_dspi_of_to_plat(struct udevice *bus)
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +0800577{
578 fdt_addr_t addr;
Simon Glass0fd3d912020-12-22 19:30:28 -0700579 struct fsl_dspi_plat *plat = dev_get_plat(bus);
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +0800580 const void *blob = gd->fdt_blob;
Simon Glasse160f7d2017-01-17 16:52:55 -0700581 int node = dev_of_offset(bus);
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +0800582
583 if (fdtdec_get_bool(blob, node, "big-endian"))
584 plat->flags |= DSPI_FLAG_REGMAP_ENDIAN_BIG;
585
586 plat->num_chipselect =
587 fdtdec_get_int(blob, node, "num-cs", FSL_DSPI_MAX_CHIPSELECT);
588
Masahiro Yamada25484932020-07-17 14:36:48 +0900589 addr = dev_read_addr(bus);
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +0800590 if (addr == FDT_ADDR_T_NONE) {
591 debug("DSPI: Can't get base address or size\n");
592 return -ENOMEM;
593 }
594 plat->regs_addr = addr;
595
596 plat->speed_hz = fdtdec_get_int(blob,
597 node, "spi-max-frequency", FSL_DSPI_DEFAULT_SCK_FREQ);
598
York Sunfdb9f342015-08-03 12:02:05 -0700599 debug("DSPI: regs=%pa, max-frequency=%d, endianess=%s, num-cs=%d\n",
600 &plat->regs_addr, plat->speed_hz,
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +0800601 plat->flags & DSPI_FLAG_REGMAP_ENDIAN_BIG ? "be" : "le",
602 plat->num_chipselect);
603
604 return 0;
605}
606
607static int fsl_dspi_xfer(struct udevice *dev, unsigned int bitlen,
608 const void *dout, void *din, unsigned long flags)
609{
610 struct fsl_dspi_priv *priv;
Simon Glass8a8d24b2020-12-03 16:55:23 -0700611 struct dm_spi_slave_plat *slave_plat = dev_get_parent_plat(dev);
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +0800612 struct udevice *bus;
613
614 bus = dev->parent;
615 priv = dev_get_priv(bus);
616
617 return dspi_xfer(priv, slave_plat->cs, bitlen, dout, din, flags);
618}
619
620static int fsl_dspi_set_speed(struct udevice *bus, uint speed)
621{
622 struct fsl_dspi_priv *priv = dev_get_priv(bus);
623
624 return fsl_dspi_cfg_speed(priv, speed);
625}
626
627static int fsl_dspi_set_mode(struct udevice *bus, uint mode)
628{
629 struct fsl_dspi_priv *priv = dev_get_priv(bus);
630
631 debug("DSPI set_mode: mode 0x%x.\n", mode);
632
633 /*
634 * We store some chipselect special configure value in priv->ctar_val,
635 * and we can't get the correct chipselect number here,
636 * so just store mode value.
637 * Do really configuration when claim_bus.
638 */
639 priv->mode = mode;
640
641 return 0;
642}
643
644static const struct dm_spi_ops fsl_dspi_ops = {
645 .claim_bus = fsl_dspi_claim_bus,
646 .release_bus = fsl_dspi_release_bus,
647 .xfer = fsl_dspi_xfer,
648 .set_speed = fsl_dspi_set_speed,
649 .set_mode = fsl_dspi_set_mode,
650};
651
652static const struct udevice_id fsl_dspi_ids[] = {
653 { .compatible = "fsl,vf610-dspi" },
654 { }
655};
656
657U_BOOT_DRIVER(fsl_dspi) = {
658 .name = "fsl_dspi",
659 .id = UCLASS_SPI,
660 .of_match = fsl_dspi_ids,
661 .ops = &fsl_dspi_ops,
Simon Glassd1998a92020-12-03 16:55:21 -0700662 .of_to_plat = fsl_dspi_of_to_plat,
Simon Glass8a8d24b2020-12-03 16:55:23 -0700663 .plat_auto = sizeof(struct fsl_dspi_plat),
Simon Glass41575d82020-12-03 16:55:17 -0700664 .priv_auto = sizeof(struct fsl_dspi_priv),
Haikun.Wang@freescale.coma8919372015-03-24 22:03:58 +0800665 .probe = fsl_dspi_probe,
666 .child_pre_probe = fsl_dspi_child_pre_probe,
667 .bind = fsl_dspi_bind,
668};