1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2016 Jagan Teki <jteki@openedev.com>
4 * Christophe Ricard <christophe.ricard@gmail.com>
6 * Copyright (C) 2010 Dirk Behme <dirk.behme@googlemail.com>
8 * Driver for McSPI controller on OMAP3. Based on davinci_spi.c
9 * Copyright (C) 2009 Texas Instruments Incorporated - http://www.ti.com/
11 * Copyright (C) 2007 Atmel Corporation
13 * Parts taken from linux/drivers/spi/omap2_mcspi.c
14 * Copyright (C) 2005, 2006 Nokia Corporation
16 * Modified by Ruslan Araslanov <ruslan.araslanov@vitecmm.com>
25 DECLARE_GLOBAL_DATA_PTR;
27 #if defined(CONFIG_AM33XX) || defined(CONFIG_AM43XX)
28 #define OMAP3_MCSPI1_BASE 0x48030100
29 #define OMAP3_MCSPI2_BASE 0x481A0100
31 #define OMAP3_MCSPI1_BASE 0x48098000
32 #define OMAP3_MCSPI2_BASE 0x4809A000
33 #define OMAP3_MCSPI3_BASE 0x480B8000
34 #define OMAP3_MCSPI4_BASE 0x480BA000
37 #define OMAP4_MCSPI_REG_OFFSET 0x100
39 struct omap2_mcspi_platform_config {
40 unsigned int regs_offset;
43 /* per-register bitmasks */
44 #define OMAP3_MCSPI_SYSCONFIG_SMARTIDLE (2 << 3)
45 #define OMAP3_MCSPI_SYSCONFIG_ENAWAKEUP BIT(2)
46 #define OMAP3_MCSPI_SYSCONFIG_AUTOIDLE BIT(0)
47 #define OMAP3_MCSPI_SYSCONFIG_SOFTRESET BIT(1)
49 #define OMAP3_MCSPI_SYSSTATUS_RESETDONE BIT(0)
51 #define OMAP3_MCSPI_MODULCTRL_SINGLE BIT(0)
52 #define OMAP3_MCSPI_MODULCTRL_MS BIT(2)
53 #define OMAP3_MCSPI_MODULCTRL_STEST BIT(3)
55 #define OMAP3_MCSPI_CHCONF_PHA BIT(0)
56 #define OMAP3_MCSPI_CHCONF_POL BIT(1)
57 #define OMAP3_MCSPI_CHCONF_CLKD_MASK GENMASK(5, 2)
58 #define OMAP3_MCSPI_CHCONF_EPOL BIT(6)
59 #define OMAP3_MCSPI_CHCONF_WL_MASK GENMASK(11, 7)
60 #define OMAP3_MCSPI_CHCONF_TRM_RX_ONLY BIT(12)
61 #define OMAP3_MCSPI_CHCONF_TRM_TX_ONLY BIT(13)
62 #define OMAP3_MCSPI_CHCONF_TRM_MASK GENMASK(13, 12)
63 #define OMAP3_MCSPI_CHCONF_DMAW BIT(14)
64 #define OMAP3_MCSPI_CHCONF_DMAR BIT(15)
65 #define OMAP3_MCSPI_CHCONF_DPE0 BIT(16)
66 #define OMAP3_MCSPI_CHCONF_DPE1 BIT(17)
67 #define OMAP3_MCSPI_CHCONF_IS BIT(18)
68 #define OMAP3_MCSPI_CHCONF_TURBO BIT(19)
69 #define OMAP3_MCSPI_CHCONF_FORCE BIT(20)
71 #define OMAP3_MCSPI_CHSTAT_RXS BIT(0)
72 #define OMAP3_MCSPI_CHSTAT_TXS BIT(1)
73 #define OMAP3_MCSPI_CHSTAT_EOT BIT(2)
75 #define OMAP3_MCSPI_CHCTRL_EN BIT(0)
76 #define OMAP3_MCSPI_CHCTRL_DIS (0 << 0)
78 #define OMAP3_MCSPI_WAKEUPENABLE_WKEN BIT(0)
79 #define MCSPI_PINDIR_D0_IN_D1_OUT 0
80 #define MCSPI_PINDIR_D0_OUT_D1_IN 1
82 #define OMAP3_MCSPI_MAX_FREQ 48000000
83 #define SPI_WAIT_TIMEOUT 10
85 /* OMAP3 McSPI registers */
86 struct mcspi_channel {
87 unsigned int chconf; /* 0x2C, 0x40, 0x54, 0x68 */
88 unsigned int chstat; /* 0x30, 0x44, 0x58, 0x6C */
89 unsigned int chctrl; /* 0x34, 0x48, 0x5C, 0x70 */
90 unsigned int tx; /* 0x38, 0x4C, 0x60, 0x74 */
91 unsigned int rx; /* 0x3C, 0x50, 0x64, 0x78 */
95 unsigned char res1[0x10];
96 unsigned int sysconfig; /* 0x10 */
97 unsigned int sysstatus; /* 0x14 */
98 unsigned int irqstatus; /* 0x18 */
99 unsigned int irqenable; /* 0x1C */
100 unsigned int wakeupenable; /* 0x20 */
101 unsigned int syst; /* 0x24 */
102 unsigned int modulctrl; /* 0x28 */
103 struct mcspi_channel channel[4];
104 /* channel0: 0x2C - 0x3C, bus 0 & 1 & 2 & 3 */
105 /* channel1: 0x40 - 0x50, bus 0 & 1 */
106 /* channel2: 0x54 - 0x64, bus 0 & 1 */
107 /* channel3: 0x68 - 0x78, bus 0 */
110 struct omap3_spi_priv {
111 #ifndef CONFIG_DM_SPI
112 struct spi_slave slave;
118 unsigned int wordlen;
119 unsigned int pin_dir:1;
122 static void omap3_spi_write_chconf(struct omap3_spi_priv *priv, int val)
124 writel(val, &priv->regs->channel[priv->cs].chconf);
125 /* Flash post writes to make immediate effect */
126 readl(&priv->regs->channel[priv->cs].chconf);
129 static void omap3_spi_set_enable(struct omap3_spi_priv *priv, int enable)
131 writel(enable, &priv->regs->channel[priv->cs].chctrl);
132 /* Flash post writes to make immediate effect */
133 readl(&priv->regs->channel[priv->cs].chctrl);
136 static int omap3_spi_write(struct omap3_spi_priv *priv, unsigned int len,
137 const void *txp, unsigned long flags)
142 chconf = readl(&priv->regs->channel[priv->cs].chconf);
144 /* Enable the channel */
145 omap3_spi_set_enable(priv, OMAP3_MCSPI_CHCTRL_EN);
147 chconf &= ~(OMAP3_MCSPI_CHCONF_TRM_MASK | OMAP3_MCSPI_CHCONF_WL_MASK);
148 chconf |= (priv->wordlen - 1) << 7;
149 chconf |= OMAP3_MCSPI_CHCONF_TRM_TX_ONLY;
150 chconf |= OMAP3_MCSPI_CHCONF_FORCE;
151 omap3_spi_write_chconf(priv, chconf);
153 for (i = 0; i < len; i++) {
154 /* wait till TX register is empty (TXS == 1) */
155 start = get_timer(0);
156 while (!(readl(&priv->regs->channel[priv->cs].chstat) &
157 OMAP3_MCSPI_CHSTAT_TXS)) {
158 if (get_timer(start) > SPI_WAIT_TIMEOUT) {
159 printf("SPI TXS timed out, status=0x%08x\n",
160 readl(&priv->regs->channel[priv->cs].chstat));
165 unsigned int *tx = &priv->regs->channel[priv->cs].tx;
166 if (priv->wordlen > 16)
167 writel(((u32 *)txp)[i], tx);
168 else if (priv->wordlen > 8)
169 writel(((u16 *)txp)[i], tx);
171 writel(((u8 *)txp)[i], tx);
174 /* wait to finish of transfer */
175 while ((readl(&priv->regs->channel[priv->cs].chstat) &
176 (OMAP3_MCSPI_CHSTAT_EOT | OMAP3_MCSPI_CHSTAT_TXS)) !=
177 (OMAP3_MCSPI_CHSTAT_EOT | OMAP3_MCSPI_CHSTAT_TXS))
180 /* Disable the channel otherwise the next immediate RX will get affected */
181 omap3_spi_set_enable(priv, OMAP3_MCSPI_CHCTRL_DIS);
183 if (flags & SPI_XFER_END) {
185 chconf &= ~OMAP3_MCSPI_CHCONF_FORCE;
186 omap3_spi_write_chconf(priv, chconf);
191 static int omap3_spi_read(struct omap3_spi_priv *priv, unsigned int len,
192 void *rxp, unsigned long flags)
197 chconf = readl(&priv->regs->channel[priv->cs].chconf);
199 /* Enable the channel */
200 omap3_spi_set_enable(priv, OMAP3_MCSPI_CHCTRL_EN);
202 chconf &= ~(OMAP3_MCSPI_CHCONF_TRM_MASK | OMAP3_MCSPI_CHCONF_WL_MASK);
203 chconf |= (priv->wordlen - 1) << 7;
204 chconf |= OMAP3_MCSPI_CHCONF_TRM_RX_ONLY;
205 chconf |= OMAP3_MCSPI_CHCONF_FORCE;
206 omap3_spi_write_chconf(priv, chconf);
208 writel(0, &priv->regs->channel[priv->cs].tx);
210 for (i = 0; i < len; i++) {
211 start = get_timer(0);
212 /* Wait till RX register contains data (RXS == 1) */
213 while (!(readl(&priv->regs->channel[priv->cs].chstat) &
214 OMAP3_MCSPI_CHSTAT_RXS)) {
215 if (get_timer(start) > SPI_WAIT_TIMEOUT) {
216 printf("SPI RXS timed out, status=0x%08x\n",
217 readl(&priv->regs->channel[priv->cs].chstat));
222 /* Disable the channel to prevent furher receiving */
224 omap3_spi_set_enable(priv, OMAP3_MCSPI_CHCTRL_DIS);
227 unsigned int *rx = &priv->regs->channel[priv->cs].rx;
228 if (priv->wordlen > 16)
229 ((u32 *)rxp)[i] = readl(rx);
230 else if (priv->wordlen > 8)
231 ((u16 *)rxp)[i] = (u16)readl(rx);
233 ((u8 *)rxp)[i] = (u8)readl(rx);
236 if (flags & SPI_XFER_END) {
237 chconf &= ~OMAP3_MCSPI_CHCONF_FORCE;
238 omap3_spi_write_chconf(priv, chconf);
244 /*McSPI Transmit Receive Mode*/
245 static int omap3_spi_txrx(struct omap3_spi_priv *priv, unsigned int len,
246 const void *txp, void *rxp, unsigned long flags)
251 chconf = readl(&priv->regs->channel[priv->cs].chconf);
253 /*Enable SPI channel*/
254 omap3_spi_set_enable(priv, OMAP3_MCSPI_CHCTRL_EN);
256 /*set TRANSMIT-RECEIVE Mode*/
257 chconf &= ~(OMAP3_MCSPI_CHCONF_TRM_MASK | OMAP3_MCSPI_CHCONF_WL_MASK);
258 chconf |= (priv->wordlen - 1) << 7;
259 chconf |= OMAP3_MCSPI_CHCONF_FORCE;
260 omap3_spi_write_chconf(priv, chconf);
262 /*Shift in and out 1 byte at time*/
263 for (i=0; i < len; i++){
264 /* Write: wait for TX empty (TXS == 1)*/
265 start = get_timer(0);
266 while (!(readl(&priv->regs->channel[priv->cs].chstat) &
267 OMAP3_MCSPI_CHSTAT_TXS)) {
268 if (get_timer(start) > SPI_WAIT_TIMEOUT) {
269 printf("SPI TXS timed out, status=0x%08x\n",
270 readl(&priv->regs->channel[priv->cs].chstat));
275 unsigned int *tx = &priv->regs->channel[priv->cs].tx;
276 if (priv->wordlen > 16)
277 writel(((u32 *)txp)[i], tx);
278 else if (priv->wordlen > 8)
279 writel(((u16 *)txp)[i], tx);
281 writel(((u8 *)txp)[i], tx);
283 /*Read: wait for RX containing data (RXS == 1)*/
284 start = get_timer(0);
285 while (!(readl(&priv->regs->channel[priv->cs].chstat) &
286 OMAP3_MCSPI_CHSTAT_RXS)) {
287 if (get_timer(start) > SPI_WAIT_TIMEOUT) {
288 printf("SPI RXS timed out, status=0x%08x\n",
289 readl(&priv->regs->channel[priv->cs].chstat));
294 unsigned int *rx = &priv->regs->channel[priv->cs].rx;
295 if (priv->wordlen > 16)
296 ((u32 *)rxp)[i] = readl(rx);
297 else if (priv->wordlen > 8)
298 ((u16 *)rxp)[i] = (u16)readl(rx);
300 ((u8 *)rxp)[i] = (u8)readl(rx);
302 /* Disable the channel */
303 omap3_spi_set_enable(priv, OMAP3_MCSPI_CHCTRL_DIS);
305 /*if transfer must be terminated disable the channel*/
306 if (flags & SPI_XFER_END) {
307 chconf &= ~OMAP3_MCSPI_CHCONF_FORCE;
308 omap3_spi_write_chconf(priv, chconf);
314 static int _spi_xfer(struct omap3_spi_priv *priv, unsigned int bitlen,
315 const void *dout, void *din, unsigned long flags)
320 if (priv->wordlen < 4 || priv->wordlen > 32) {
321 printf("omap3_spi: invalid wordlen %d\n", priv->wordlen);
325 if (bitlen % priv->wordlen)
328 len = bitlen / priv->wordlen;
330 if (bitlen == 0) { /* only change CS */
331 int chconf = readl(&priv->regs->channel[priv->cs].chconf);
333 if (flags & SPI_XFER_BEGIN) {
334 omap3_spi_set_enable(priv, OMAP3_MCSPI_CHCTRL_EN);
335 chconf |= OMAP3_MCSPI_CHCONF_FORCE;
336 omap3_spi_write_chconf(priv, chconf);
338 if (flags & SPI_XFER_END) {
339 chconf &= ~OMAP3_MCSPI_CHCONF_FORCE;
340 omap3_spi_write_chconf(priv, chconf);
341 omap3_spi_set_enable(priv, OMAP3_MCSPI_CHCTRL_DIS);
345 if (dout != NULL && din != NULL)
346 ret = omap3_spi_txrx(priv, len, dout, din, flags);
347 else if (dout != NULL)
348 ret = omap3_spi_write(priv, len, dout, flags);
349 else if (din != NULL)
350 ret = omap3_spi_read(priv, len, din, flags);
355 static void _omap3_spi_set_speed(struct omap3_spi_priv *priv)
357 uint32_t confr, div = 0;
359 confr = readl(&priv->regs->channel[priv->cs].chconf);
361 /* Calculate clock divisor. Valid range: 0x0 - 0xC ( /1 - /4096 ) */
363 while (div <= 0xC && (OMAP3_MCSPI_MAX_FREQ / (1 << div))
370 /* set clock divisor */
371 confr &= ~OMAP3_MCSPI_CHCONF_CLKD_MASK;
374 omap3_spi_write_chconf(priv, confr);
377 static void _omap3_spi_set_mode(struct omap3_spi_priv *priv)
381 confr = readl(&priv->regs->channel[priv->cs].chconf);
383 /* standard 4-wire master mode: SCK, MOSI/out, MISO/in, nCS
384 * REVISIT: this controller could support SPI_3WIRE mode.
386 if (priv->pin_dir == MCSPI_PINDIR_D0_IN_D1_OUT) {
387 confr &= ~(OMAP3_MCSPI_CHCONF_IS|OMAP3_MCSPI_CHCONF_DPE1);
388 confr |= OMAP3_MCSPI_CHCONF_DPE0;
390 confr &= ~OMAP3_MCSPI_CHCONF_DPE0;
391 confr |= OMAP3_MCSPI_CHCONF_IS|OMAP3_MCSPI_CHCONF_DPE1;
394 /* set SPI mode 0..3 */
395 confr &= ~(OMAP3_MCSPI_CHCONF_POL | OMAP3_MCSPI_CHCONF_PHA);
396 if (priv->mode & SPI_CPHA)
397 confr |= OMAP3_MCSPI_CHCONF_PHA;
398 if (priv->mode & SPI_CPOL)
399 confr |= OMAP3_MCSPI_CHCONF_POL;
401 /* set chipselect polarity; manage with FORCE */
402 if (!(priv->mode & SPI_CS_HIGH))
403 confr |= OMAP3_MCSPI_CHCONF_EPOL; /* active-low; normal */
405 confr &= ~OMAP3_MCSPI_CHCONF_EPOL;
407 /* Transmit & receive mode */
408 confr &= ~OMAP3_MCSPI_CHCONF_TRM_MASK;
410 omap3_spi_write_chconf(priv, confr);
413 static void _omap3_spi_set_wordlen(struct omap3_spi_priv *priv)
417 /* McSPI individual channel configuration */
418 confr = readl(&priv->regs->channel[priv->wordlen].chconf);
421 confr &= ~OMAP3_MCSPI_CHCONF_WL_MASK;
422 confr |= (priv->wordlen - 1) << 7;
424 omap3_spi_write_chconf(priv, confr);
427 static void spi_reset(struct mcspi *regs)
431 writel(OMAP3_MCSPI_SYSCONFIG_SOFTRESET, ®s->sysconfig);
433 tmp = readl(®s->sysstatus);
434 } while (!(tmp & OMAP3_MCSPI_SYSSTATUS_RESETDONE));
436 writel(OMAP3_MCSPI_SYSCONFIG_AUTOIDLE |
437 OMAP3_MCSPI_SYSCONFIG_ENAWAKEUP |
438 OMAP3_MCSPI_SYSCONFIG_SMARTIDLE, ®s->sysconfig);
440 writel(OMAP3_MCSPI_WAKEUPENABLE_WKEN, ®s->wakeupenable);
443 static void _omap3_spi_claim_bus(struct omap3_spi_priv *priv)
447 * setup when switching from (reset default) slave mode
448 * to single-channel master mode
450 conf = readl(&priv->regs->modulctrl);
451 conf &= ~(OMAP3_MCSPI_MODULCTRL_STEST | OMAP3_MCSPI_MODULCTRL_MS);
452 conf |= OMAP3_MCSPI_MODULCTRL_SINGLE;
454 writel(conf, &priv->regs->modulctrl);
457 #ifndef CONFIG_DM_SPI
459 static inline struct omap3_spi_priv *to_omap3_spi(struct spi_slave *slave)
461 return container_of(slave, struct omap3_spi_priv, slave);
469 void spi_free_slave(struct spi_slave *slave)
471 struct omap3_spi_priv *priv = to_omap3_spi(slave);
476 int spi_claim_bus(struct spi_slave *slave)
478 struct omap3_spi_priv *priv = to_omap3_spi(slave);
480 spi_reset(priv->regs);
482 _omap3_spi_claim_bus(priv);
483 _omap3_spi_set_wordlen(priv);
484 _omap3_spi_set_mode(priv);
485 _omap3_spi_set_speed(priv);
490 void spi_release_bus(struct spi_slave *slave)
492 struct omap3_spi_priv *priv = to_omap3_spi(slave);
494 writel(OMAP3_MCSPI_MODULCTRL_MS, &priv->regs->modulctrl);
497 struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
498 unsigned int max_hz, unsigned int mode)
500 struct omap3_spi_priv *priv;
504 * OMAP3 McSPI (MultiChannel SPI) has 4 busses (modules)
505 * with different number of chip selects (CS, channels):
506 * McSPI1 has 4 CS (bus 0, cs 0 - 3)
507 * McSPI2 has 2 CS (bus 1, cs 0 - 1)
508 * McSPI3 has 2 CS (bus 2, cs 0 - 1)
509 * McSPI4 has 1 CS (bus 3, cs 0)
514 regs = (struct mcspi *)OMAP3_MCSPI1_BASE;
516 #ifdef OMAP3_MCSPI2_BASE
518 regs = (struct mcspi *)OMAP3_MCSPI2_BASE;
521 #ifdef OMAP3_MCSPI3_BASE
523 regs = (struct mcspi *)OMAP3_MCSPI3_BASE;
526 #ifdef OMAP3_MCSPI4_BASE
528 regs = (struct mcspi *)OMAP3_MCSPI4_BASE;
532 printf("SPI error: unsupported bus %i. Supported busses 0 - 3\n", bus);
536 if (((bus == 0) && (cs > 3)) ||
537 ((bus == 1) && (cs > 1)) ||
538 ((bus == 2) && (cs > 1)) ||
539 ((bus == 3) && (cs > 0))) {
540 printf("SPI error: unsupported chip select %i on bus %i\n", cs, bus);
544 if (max_hz > OMAP3_MCSPI_MAX_FREQ) {
545 printf("SPI error: unsupported frequency %i Hz. Max frequency is 48 MHz\n",
550 if (mode > SPI_MODE_3) {
551 printf("SPI error: unsupported SPI mode %i\n", mode);
555 priv = spi_alloc_slave(struct omap3_spi_priv, bus, cs);
557 printf("SPI error: malloc of SPI structure failed\n");
565 priv->wordlen = priv->slave.wordlen;
567 /* Please migrate to DM_SPI support for this feature. */
568 priv->pin_dir = MCSPI_PINDIR_D0_OUT_D1_IN;
574 int spi_xfer(struct spi_slave *slave, unsigned int bitlen,
575 const void *dout, void *din, unsigned long flags)
577 struct omap3_spi_priv *priv = to_omap3_spi(slave);
579 return _spi_xfer(priv, bitlen, dout, din, flags);
584 static int omap3_spi_claim_bus(struct udevice *dev)
586 struct udevice *bus = dev->parent;
587 struct omap3_spi_priv *priv = dev_get_priv(bus);
588 struct dm_spi_slave_platdata *slave_plat = dev_get_parent_platdata(dev);
590 priv->cs = slave_plat->cs;
591 priv->freq = slave_plat->max_hz;
593 _omap3_spi_claim_bus(priv);
598 static int omap3_spi_release_bus(struct udevice *dev)
600 struct udevice *bus = dev->parent;
601 struct omap3_spi_priv *priv = dev_get_priv(bus);
603 writel(OMAP3_MCSPI_MODULCTRL_MS, &priv->regs->modulctrl);
608 static int omap3_spi_set_wordlen(struct udevice *dev, unsigned int wordlen)
610 struct udevice *bus = dev->parent;
611 struct omap3_spi_priv *priv = dev_get_priv(bus);
612 struct dm_spi_slave_platdata *slave_plat = dev_get_parent_platdata(dev);
614 priv->cs = slave_plat->cs;
615 priv->wordlen = wordlen;
616 _omap3_spi_set_wordlen(priv);
621 static int omap3_spi_probe(struct udevice *dev)
623 struct omap3_spi_priv *priv = dev_get_priv(dev);
624 const void *blob = gd->fdt_blob;
625 int node = dev_of_offset(dev);
627 struct omap2_mcspi_platform_config* data =
628 (struct omap2_mcspi_platform_config*)dev_get_driver_data(dev);
630 priv->regs = (struct mcspi *)(devfdt_get_addr(dev) + data->regs_offset);
631 if (fdtdec_get_bool(blob, node, "ti,pindir-d0-out-d1-in"))
632 priv->pin_dir = MCSPI_PINDIR_D0_OUT_D1_IN;
634 priv->pin_dir = MCSPI_PINDIR_D0_IN_D1_OUT;
635 priv->wordlen = SPI_DEFAULT_WORDLEN;
637 spi_reset(priv->regs);
642 static int omap3_spi_xfer(struct udevice *dev, unsigned int bitlen,
643 const void *dout, void *din, unsigned long flags)
645 struct udevice *bus = dev->parent;
646 struct omap3_spi_priv *priv = dev_get_priv(bus);
648 return _spi_xfer(priv, bitlen, dout, din, flags);
651 static int omap3_spi_set_speed(struct udevice *dev, unsigned int speed)
654 struct omap3_spi_priv *priv = dev_get_priv(dev);
657 _omap3_spi_set_speed(priv);
662 static int omap3_spi_set_mode(struct udevice *dev, uint mode)
664 struct omap3_spi_priv *priv = dev_get_priv(dev);
668 _omap3_spi_set_mode(priv);
673 static const struct dm_spi_ops omap3_spi_ops = {
674 .claim_bus = omap3_spi_claim_bus,
675 .release_bus = omap3_spi_release_bus,
676 .set_wordlen = omap3_spi_set_wordlen,
677 .xfer = omap3_spi_xfer,
678 .set_speed = omap3_spi_set_speed,
679 .set_mode = omap3_spi_set_mode,
681 * cs_info is not needed, since we require all chip selects to be
682 * in the device tree explicitly
686 static struct omap2_mcspi_platform_config omap2_pdata = {
690 static struct omap2_mcspi_platform_config omap4_pdata = {
691 .regs_offset = OMAP4_MCSPI_REG_OFFSET,
694 static const struct udevice_id omap3_spi_ids[] = {
695 { .compatible = "ti,omap2-mcspi", .data = (ulong)&omap2_pdata },
696 { .compatible = "ti,omap4-mcspi", .data = (ulong)&omap4_pdata },
700 U_BOOT_DRIVER(omap3_spi) = {
703 .of_match = omap3_spi_ids,
704 .probe = omap3_spi_probe,
705 .ops = &omap3_spi_ops,
706 .priv_auto_alloc_size = sizeof(struct omap3_spi_priv),