1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2009 Texas Instruments Incorporated - http://www.ti.com/
5 * Driver for SPI controller on DaVinci. Based on atmel_spi.c
8 * Copyright (C) 2007 Atmel Corporation
15 #include <asm/arch/hardware.h>
17 #include <dm/platform_data/spi_davinci.h>
20 #define SPIGCR0_SPIENA_MASK 0x1
21 #define SPIGCR0_SPIRST_MASK 0x0
24 #define SPIGCR1_CLKMOD_MASK BIT(1)
25 #define SPIGCR1_MASTER_MASK BIT(0)
26 #define SPIGCR1_SPIENA_MASK BIT(24)
29 #define SPIPC0_DIFUN_MASK BIT(11) /* SIMO */
30 #define SPIPC0_DOFUN_MASK BIT(10) /* SOMI */
31 #define SPIPC0_CLKFUN_MASK BIT(9) /* CLK */
32 #define SPIPC0_EN0FUN_MASK BIT(0)
35 #define SPIFMT_SHIFTDIR_SHIFT 20
36 #define SPIFMT_POLARITY_SHIFT 17
37 #define SPIFMT_PHASE_SHIFT 16
38 #define SPIFMT_PRESCALE_SHIFT 8
41 #define SPIDAT1_CSHOLD_SHIFT 28
42 #define SPIDAT1_CSNR_SHIFT 16
45 #define SPI_C2TDELAY_SHIFT 24
46 #define SPI_T2CDELAY_SHIFT 16
49 #define SPIBUF_RXEMPTY_MASK BIT(31)
50 #define SPIBUF_TXFULL_MASK BIT(29)
53 #define SPIDEF_CSDEF0_MASK BIT(0)
57 #define SPI0_BASE CONFIG_SYS_SPI_BASE
59 * Define default SPI0_NUM_CS as 1 for existing platforms that uses this
60 * driver. Platform can configure number of CS using CONFIG_SYS_SPI0_NUM_CS
61 * if more than one CS is supported and by defining CONFIG_SYS_SPI0.
63 #ifndef CONFIG_SYS_SPI0
66 #define SPI0_NUM_CS CONFIG_SYS_SPI0_NUM_CS
70 * define CONFIG_SYS_SPI1 when platform has spi-1 device (bus #1) and
71 * CONFIG_SYS_SPI1_NUM_CS defines number of CS on this bus
73 #ifdef CONFIG_SYS_SPI1
75 #define SPI1_NUM_CS CONFIG_SYS_SPI1_NUM_CS
76 #define SPI1_BASE CONFIG_SYS_SPI1_BASE
80 * define CONFIG_SYS_SPI2 when platform has spi-2 device (bus #2) and
81 * CONFIG_SYS_SPI2_NUM_CS defines number of CS on this bus
83 #ifdef CONFIG_SYS_SPI2
85 #define SPI2_NUM_CS CONFIG_SYS_SPI2_NUM_CS
86 #define SPI2_BASE CONFIG_SYS_SPI2_BASE
90 DECLARE_GLOBAL_DATA_PTR;
92 /* davinci spi register set */
93 struct davinci_spi_regs {
94 dv_reg gcr0; /* 0x00 */
95 dv_reg gcr1; /* 0x04 */
96 dv_reg int0; /* 0x08 */
97 dv_reg lvl; /* 0x0c */
98 dv_reg flg; /* 0x10 */
99 dv_reg pc0; /* 0x14 */
100 dv_reg pc1; /* 0x18 */
101 dv_reg pc2; /* 0x1c */
102 dv_reg pc3; /* 0x20 */
103 dv_reg pc4; /* 0x24 */
104 dv_reg pc5; /* 0x28 */
106 dv_reg dat0; /* 0x38 */
107 dv_reg dat1; /* 0x3c */
108 dv_reg buf; /* 0x40 */
109 dv_reg emu; /* 0x44 */
110 dv_reg delay; /* 0x48 */
111 dv_reg def; /* 0x4c */
112 dv_reg fmt0; /* 0x50 */
113 dv_reg fmt1; /* 0x54 */
114 dv_reg fmt2; /* 0x58 */
115 dv_reg fmt3; /* 0x5c */
116 dv_reg intvec0; /* 0x60 */
117 dv_reg intvec1; /* 0x64 */
120 /* davinci spi slave */
121 struct davinci_spi_slave {
122 #ifndef CONFIG_DM_SPI
123 struct spi_slave slave;
125 struct davinci_spi_regs *regs;
126 unsigned int freq; /* current SPI bus frequency */
127 unsigned int mode; /* current SPI mode used */
128 u8 num_cs; /* total no. of CS available */
129 u8 cur_cs; /* CS of current slave */
130 bool half_duplex; /* true, if master is half-duplex only */
134 * This functions needs to act like a macro to avoid pipeline reloads in the
135 * loops below. Use always_inline. This gains us about 160KiB/s and the bloat
136 * appears to be zero bytes (da830).
138 __attribute__((always_inline))
139 static inline u32 davinci_spi_xfer_data(struct davinci_spi_slave *ds, u32 data)
144 writel(data, &ds->regs->dat1);
146 /* wait for the data to clock in/out */
147 while ((buf_reg_val = readl(&ds->regs->buf)) & SPIBUF_RXEMPTY_MASK)
153 static int davinci_spi_read(struct davinci_spi_slave *ds, unsigned int len,
154 u8 *rxp, unsigned long flags)
156 unsigned int data1_reg_val;
158 /* enable CS hold, CS[n] and clear the data bits */
159 data1_reg_val = ((1 << SPIDAT1_CSHOLD_SHIFT) |
160 (ds->cur_cs << SPIDAT1_CSNR_SHIFT));
162 /* wait till TXFULL is deasserted */
163 while (readl(&ds->regs->buf) & SPIBUF_TXFULL_MASK)
166 /* preload the TX buffer to avoid clock starvation */
167 writel(data1_reg_val, &ds->regs->dat1);
169 /* keep reading 1 byte until only 1 byte left */
171 *rxp++ = davinci_spi_xfer_data(ds, data1_reg_val);
173 /* clear CS hold when we reach the end */
174 if (flags & SPI_XFER_END)
175 data1_reg_val &= ~(1 << SPIDAT1_CSHOLD_SHIFT);
177 /* read the last byte */
178 *rxp = davinci_spi_xfer_data(ds, data1_reg_val);
183 static int davinci_spi_write(struct davinci_spi_slave *ds, unsigned int len,
184 const u8 *txp, unsigned long flags)
186 unsigned int data1_reg_val;
188 /* enable CS hold and clear the data bits */
189 data1_reg_val = ((1 << SPIDAT1_CSHOLD_SHIFT) |
190 (ds->cur_cs << SPIDAT1_CSNR_SHIFT));
192 /* wait till TXFULL is deasserted */
193 while (readl(&ds->regs->buf) & SPIBUF_TXFULL_MASK)
196 /* preload the TX buffer to avoid clock starvation */
198 writel(data1_reg_val | *txp++, &ds->regs->dat1);
202 /* keep writing 1 byte until only 1 byte left */
204 davinci_spi_xfer_data(ds, data1_reg_val | *txp++);
206 /* clear CS hold when we reach the end */
207 if (flags & SPI_XFER_END)
208 data1_reg_val &= ~(1 << SPIDAT1_CSHOLD_SHIFT);
210 /* write the last byte */
211 davinci_spi_xfer_data(ds, data1_reg_val | *txp);
216 static int davinci_spi_read_write(struct davinci_spi_slave *ds, unsigned
217 int len, u8 *rxp, const u8 *txp,
220 unsigned int data1_reg_val;
222 /* enable CS hold and clear the data bits */
223 data1_reg_val = ((1 << SPIDAT1_CSHOLD_SHIFT) |
224 (ds->cur_cs << SPIDAT1_CSNR_SHIFT));
226 /* wait till TXFULL is deasserted */
227 while (readl(&ds->regs->buf) & SPIBUF_TXFULL_MASK)
230 /* keep reading and writing 1 byte until only 1 byte left */
232 *rxp++ = davinci_spi_xfer_data(ds, data1_reg_val | *txp++);
234 /* clear CS hold when we reach the end */
235 if (flags & SPI_XFER_END)
236 data1_reg_val &= ~(1 << SPIDAT1_CSHOLD_SHIFT);
238 /* read and write the last byte */
239 *rxp = davinci_spi_xfer_data(ds, data1_reg_val | *txp);
245 static int __davinci_spi_claim_bus(struct davinci_spi_slave *ds, int cs)
247 unsigned int mode = 0, scalar;
249 /* Enable the SPI hardware */
250 writel(SPIGCR0_SPIRST_MASK, &ds->regs->gcr0);
252 writel(SPIGCR0_SPIENA_MASK, &ds->regs->gcr0);
254 /* Set master mode, powered up and not activated */
255 writel(SPIGCR1_MASTER_MASK | SPIGCR1_CLKMOD_MASK, &ds->regs->gcr1);
257 /* CS, CLK, SIMO and SOMI are functional pins */
258 writel(((1 << cs) | SPIPC0_CLKFUN_MASK |
259 SPIPC0_DOFUN_MASK | SPIPC0_DIFUN_MASK), &ds->regs->pc0);
262 scalar = ((CONFIG_SYS_SPI_CLK / ds->freq) - 1) & 0xFF;
265 * Use following format:
266 * character length = 8,
267 * MSB shifted out first
269 if (ds->mode & SPI_CPOL)
271 if (!(ds->mode & SPI_CPHA))
273 writel(8 | (scalar << SPIFMT_PRESCALE_SHIFT) |
274 (mode << SPIFMT_PHASE_SHIFT), &ds->regs->fmt0);
277 * Including a minor delay. No science here. Should be good even with
280 writel((50 << SPI_C2TDELAY_SHIFT) |
281 (50 << SPI_T2CDELAY_SHIFT), &ds->regs->delay);
283 /* default chip select register */
284 writel(SPIDEF_CSDEF0_MASK, &ds->regs->def);
287 writel(0, &ds->regs->int0);
288 writel(0, &ds->regs->lvl);
291 writel((readl(&ds->regs->gcr1) | SPIGCR1_SPIENA_MASK), &ds->regs->gcr1);
296 static int __davinci_spi_release_bus(struct davinci_spi_slave *ds)
298 /* Disable the SPI hardware */
299 writel(SPIGCR0_SPIRST_MASK, &ds->regs->gcr0);
304 static int __davinci_spi_xfer(struct davinci_spi_slave *ds,
305 unsigned int bitlen, const void *dout, void *din,
311 /* Finish any previously submitted transfers */
315 * It's not clear how non-8-bit-aligned transfers are supposed to be
316 * represented as a stream of bytes...this is a limitation of
317 * the current SPI interface - here we terminate on receiving such a
321 /* Errors always terminate an ongoing transfer */
322 flags |= SPI_XFER_END;
329 return davinci_spi_read(ds, len, din, flags);
331 return davinci_spi_write(ds, len, dout, flags);
332 if (!ds->half_duplex)
333 return davinci_spi_read_write(ds, len, din, dout, flags);
335 printf("SPI full duplex not supported\n");
336 flags |= SPI_XFER_END;
339 if (flags & SPI_XFER_END) {
341 davinci_spi_write(ds, 1, &dummy, flags);
346 #ifndef CONFIG_DM_SPI
348 static inline struct davinci_spi_slave *to_davinci_spi(struct spi_slave *slave)
350 return container_of(slave, struct davinci_spi_slave, slave);
353 int spi_cs_is_valid(unsigned int bus, unsigned int cs)
359 if (cs < SPI0_NUM_CS)
362 #ifdef CONFIG_SYS_SPI1
364 if (cs < SPI1_NUM_CS)
368 #ifdef CONFIG_SYS_SPI2
370 if (cs < SPI2_NUM_CS)
375 /* Invalid bus number. Do nothing */
381 void spi_cs_activate(struct spi_slave *slave)
386 void spi_cs_deactivate(struct spi_slave *slave)
391 struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
392 unsigned int max_hz, unsigned int mode)
394 struct davinci_spi_slave *ds;
396 if (!spi_cs_is_valid(bus, cs))
399 ds = spi_alloc_slave(struct davinci_spi_slave, bus, cs);
405 ds->regs = (struct davinci_spi_regs *)SPI0_BASE;
407 #ifdef CONFIG_SYS_SPI1
409 ds->regs = (struct davinci_spi_regs *)SPI1_BASE;
412 #ifdef CONFIG_SYS_SPI2
414 ds->regs = (struct davinci_spi_regs *)SPI2_BASE;
417 default: /* Invalid bus number */
427 void spi_free_slave(struct spi_slave *slave)
429 struct davinci_spi_slave *ds = to_davinci_spi(slave);
434 int spi_xfer(struct spi_slave *slave, unsigned int bitlen,
435 const void *dout, void *din, unsigned long flags)
437 struct davinci_spi_slave *ds = to_davinci_spi(slave);
439 ds->cur_cs = slave->cs;
441 return __davinci_spi_xfer(ds, bitlen, dout, din, flags);
444 int spi_claim_bus(struct spi_slave *slave)
446 struct davinci_spi_slave *ds = to_davinci_spi(slave);
448 #ifdef CONFIG_SPI_HALF_DUPLEX
449 ds->half_duplex = true;
451 ds->half_duplex = false;
453 return __davinci_spi_claim_bus(ds, ds->slave.cs);
456 void spi_release_bus(struct spi_slave *slave)
458 struct davinci_spi_slave *ds = to_davinci_spi(slave);
460 __davinci_spi_release_bus(ds);
464 static int davinci_spi_set_speed(struct udevice *bus, uint max_hz)
466 struct davinci_spi_slave *ds = dev_get_priv(bus);
468 debug("%s speed %u\n", __func__, max_hz);
469 if (max_hz > CONFIG_SYS_SPI_CLK / 2)
477 static int davinci_spi_set_mode(struct udevice *bus, uint mode)
479 struct davinci_spi_slave *ds = dev_get_priv(bus);
481 debug("%s mode %u\n", __func__, mode);
487 static int davinci_spi_claim_bus(struct udevice *dev)
489 struct dm_spi_slave_platdata *slave_plat =
490 dev_get_parent_platdata(dev);
491 struct udevice *bus = dev->parent;
492 struct davinci_spi_slave *ds = dev_get_priv(bus);
494 if (slave_plat->cs >= ds->num_cs) {
495 printf("Invalid SPI chipselect\n");
498 ds->half_duplex = slave_plat->mode & SPI_PREAMBLE;
500 return __davinci_spi_claim_bus(ds, slave_plat->cs);
503 static int davinci_spi_release_bus(struct udevice *dev)
505 struct davinci_spi_slave *ds = dev_get_priv(dev->parent);
507 return __davinci_spi_release_bus(ds);
510 static int davinci_spi_xfer(struct udevice *dev, unsigned int bitlen,
511 const void *dout, void *din,
514 struct dm_spi_slave_platdata *slave =
515 dev_get_parent_platdata(dev);
516 struct udevice *bus = dev->parent;
517 struct davinci_spi_slave *ds = dev_get_priv(bus);
519 if (slave->cs >= ds->num_cs) {
520 printf("Invalid SPI chipselect\n");
523 ds->cur_cs = slave->cs;
525 return __davinci_spi_xfer(ds, bitlen, dout, din, flags);
528 static const struct dm_spi_ops davinci_spi_ops = {
529 .claim_bus = davinci_spi_claim_bus,
530 .release_bus = davinci_spi_release_bus,
531 .xfer = davinci_spi_xfer,
532 .set_speed = davinci_spi_set_speed,
533 .set_mode = davinci_spi_set_mode,
536 static int davinci_spi_probe(struct udevice *bus)
538 struct davinci_spi_slave *ds = dev_get_priv(bus);
539 struct davinci_spi_platdata *plat = bus->platdata;
540 ds->regs = plat->regs;
541 ds->num_cs = plat->num_cs;
546 #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
547 static int davinci_ofdata_to_platadata(struct udevice *bus)
549 struct davinci_spi_platdata *plat = bus->platdata;
552 addr = devfdt_get_addr(bus);
553 if (addr == FDT_ADDR_T_NONE)
556 plat->regs = (struct davinci_spi_regs *)addr;
557 plat->num_cs = fdtdec_get_int(gd->fdt_blob, dev_of_offset(bus), "num-cs", 4);
562 static const struct udevice_id davinci_spi_ids[] = {
563 { .compatible = "ti,keystone-spi" },
564 { .compatible = "ti,dm6441-spi" },
565 { .compatible = "ti,da830-spi" },
570 U_BOOT_DRIVER(davinci_spi) = {
571 .name = "davinci_spi",
573 #if CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)
574 .of_match = davinci_spi_ids,
575 .ofdata_to_platdata = davinci_ofdata_to_platadata,
576 .platdata_auto_alloc_size = sizeof(struct davinci_spi_platdata),
578 .probe = davinci_spi_probe,
579 .ops = &davinci_spi_ops,
580 .priv_auto_alloc_size = sizeof(struct davinci_spi_slave),