blob: 85f9e85fd4b92ff6af8d48bf8bb1d452ac68256e [file] [log] [blame]
Dirk Behme53736ba2010-12-11 11:01:00 -05001/*
2 * Copyright (C) 2010 Dirk Behme <dirk.behme@googlemail.com>
3 *
4 * Driver for McSPI controller on OMAP3. Based on davinci_spi.c
5 * Copyright (C) 2009 Texas Instruments Incorporated - http://www.ti.com/
6 *
7 * Copyright (C) 2007 Atmel Corporation
8 *
9 * Parts taken from linux/drivers/spi/omap2_mcspi.c
10 * Copyright (C) 2005, 2006 Nokia Corporation
11 *
12 * Modified by Ruslan Araslanov <ruslan.araslanov@vitecmm.com>
13 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020014 * SPDX-License-Identifier: GPL-2.0+
Dirk Behme53736ba2010-12-11 11:01:00 -050015 */
16
17#include <common.h>
18#include <spi.h>
19#include <malloc.h>
20#include <asm/io.h>
21#include "omap3_spi.h"
22
David Dueck611c9ba2015-04-01 14:20:24 +020023#define SPI_WAIT_TIMEOUT 10
Dirk Behme53736ba2010-12-11 11:01:00 -050024
25static void spi_reset(struct omap3_spi_slave *ds)
26{
27 unsigned int tmp;
28
29 writel(OMAP3_MCSPI_SYSCONFIG_SOFTRESET, &ds->regs->sysconfig);
30 do {
31 tmp = readl(&ds->regs->sysstatus);
32 } while (!(tmp & OMAP3_MCSPI_SYSSTATUS_RESETDONE));
33
34 writel(OMAP3_MCSPI_SYSCONFIG_AUTOIDLE |
35 OMAP3_MCSPI_SYSCONFIG_ENAWAKEUP |
36 OMAP3_MCSPI_SYSCONFIG_SMARTIDLE,
37 &ds->regs->sysconfig);
38
39 writel(OMAP3_MCSPI_WAKEUPENABLE_WKEN, &ds->regs->wakeupenable);
40}
41
ajoycc1182b2012-11-17 21:10:15 +000042static void omap3_spi_write_chconf(struct omap3_spi_slave *ds, int val)
43{
44 writel(val, &ds->regs->channel[ds->slave.cs].chconf);
45 /* Flash post writes to make immediate effect */
46 readl(&ds->regs->channel[ds->slave.cs].chconf);
47}
48
49static void omap3_spi_set_enable(struct omap3_spi_slave *ds, int enable)
50{
51 writel(enable, &ds->regs->channel[ds->slave.cs].chctrl);
Wolfgang Denk93e14592013-10-04 17:43:24 +020052 /* Flash post writes to make immediate effect */
ajoycc1182b2012-11-17 21:10:15 +000053 readl(&ds->regs->channel[ds->slave.cs].chctrl);
54}
55
Dirk Behme53736ba2010-12-11 11:01:00 -050056void spi_init()
57{
58 /* do nothing */
59}
60
61struct spi_slave *spi_setup_slave(unsigned int bus, unsigned int cs,
62 unsigned int max_hz, unsigned int mode)
63{
64 struct omap3_spi_slave *ds;
Simon Glassd3504fe2013-03-18 19:23:40 +000065 struct mcspi *regs;
Dirk Behme53736ba2010-12-11 11:01:00 -050066
67 /*
68 * OMAP3 McSPI (MultiChannel SPI) has 4 busses (modules)
69 * with different number of chip selects (CS, channels):
70 * McSPI1 has 4 CS (bus 0, cs 0 - 3)
71 * McSPI2 has 2 CS (bus 1, cs 0 - 1)
72 * McSPI3 has 2 CS (bus 2, cs 0 - 1)
73 * McSPI4 has 1 CS (bus 3, cs 0)
74 */
75
76 switch (bus) {
77 case 0:
Simon Glassd3504fe2013-03-18 19:23:40 +000078 regs = (struct mcspi *)OMAP3_MCSPI1_BASE;
Dirk Behme53736ba2010-12-11 11:01:00 -050079 break;
Tom Rini4c0620b2012-08-08 14:29:51 -070080#ifdef OMAP3_MCSPI2_BASE
Dirk Behme53736ba2010-12-11 11:01:00 -050081 case 1:
Simon Glassd3504fe2013-03-18 19:23:40 +000082 regs = (struct mcspi *)OMAP3_MCSPI2_BASE;
Dirk Behme53736ba2010-12-11 11:01:00 -050083 break;
Tom Rini4c0620b2012-08-08 14:29:51 -070084#endif
Wolfgang Denk3765b3e2013-10-07 13:07:26 +020085#ifdef OMAP3_MCSPI3_BASE
Dirk Behme53736ba2010-12-11 11:01:00 -050086 case 2:
Simon Glassd3504fe2013-03-18 19:23:40 +000087 regs = (struct mcspi *)OMAP3_MCSPI3_BASE;
Dirk Behme53736ba2010-12-11 11:01:00 -050088 break;
Tom Rini4c0620b2012-08-08 14:29:51 -070089#endif
90#ifdef OMAP3_MCSPI4_BASE
Dirk Behme53736ba2010-12-11 11:01:00 -050091 case 3:
Simon Glassd3504fe2013-03-18 19:23:40 +000092 regs = (struct mcspi *)OMAP3_MCSPI4_BASE;
Dirk Behme53736ba2010-12-11 11:01:00 -050093 break;
Tom Rini4c0620b2012-08-08 14:29:51 -070094#endif
Dirk Behme53736ba2010-12-11 11:01:00 -050095 default:
96 printf("SPI error: unsupported bus %i. \
97 Supported busses 0 - 3\n", bus);
98 return NULL;
99 }
Dirk Behme53736ba2010-12-11 11:01:00 -0500100
101 if (((bus == 0) && (cs > 3)) ||
102 ((bus == 1) && (cs > 1)) ||
103 ((bus == 2) && (cs > 1)) ||
104 ((bus == 3) && (cs > 0))) {
105 printf("SPI error: unsupported chip select %i \
106 on bus %i\n", cs, bus);
107 return NULL;
108 }
Dirk Behme53736ba2010-12-11 11:01:00 -0500109
110 if (max_hz > OMAP3_MCSPI_MAX_FREQ) {
111 printf("SPI error: unsupported frequency %i Hz. \
112 Max frequency is 48 Mhz\n", max_hz);
113 return NULL;
114 }
Dirk Behme53736ba2010-12-11 11:01:00 -0500115
116 if (mode > SPI_MODE_3) {
117 printf("SPI error: unsupported SPI mode %i\n", mode);
118 return NULL;
119 }
Simon Glassd3504fe2013-03-18 19:23:40 +0000120
121 ds = spi_alloc_slave(struct omap3_spi_slave, bus, cs);
122 if (!ds) {
123 printf("SPI error: malloc of SPI structure failed\n");
124 return NULL;
125 }
126
127 ds->regs = regs;
128 ds->freq = max_hz;
Dirk Behme53736ba2010-12-11 11:01:00 -0500129 ds->mode = mode;
130
131 return &ds->slave;
132}
133
134void spi_free_slave(struct spi_slave *slave)
135{
136 struct omap3_spi_slave *ds = to_omap3_spi(slave);
137
138 free(ds);
139}
140
141int spi_claim_bus(struct spi_slave *slave)
142{
143 struct omap3_spi_slave *ds = to_omap3_spi(slave);
144 unsigned int conf, div = 0;
145
146 /* McSPI global module configuration */
147
148 /*
149 * setup when switching from (reset default) slave mode
150 * to single-channel master mode
151 */
152 spi_reset(ds);
153 conf = readl(&ds->regs->modulctrl);
154 conf &= ~(OMAP3_MCSPI_MODULCTRL_STEST | OMAP3_MCSPI_MODULCTRL_MS);
155 conf |= OMAP3_MCSPI_MODULCTRL_SINGLE;
156 writel(conf, &ds->regs->modulctrl);
157
158 /* McSPI individual channel configuration */
159
160 /* Calculate clock divisor. Valid range: 0x0 - 0xC ( /1 - /4096 ) */
161 if (ds->freq) {
162 while (div <= 0xC && (OMAP3_MCSPI_MAX_FREQ / (1 << div))
163 > ds->freq)
164 div++;
165 } else
166 div = 0xC;
167
168 conf = readl(&ds->regs->channel[ds->slave.cs].chconf);
169
170 /* standard 4-wire master mode: SCK, MOSI/out, MISO/in, nCS
171 * REVISIT: this controller could support SPI_3WIRE mode.
172 */
Peter Korsgaard22cbeed2012-10-17 09:20:46 +0000173#ifdef CONFIG_OMAP3_SPI_D0_D1_SWAPPED
Tom Rinia4a99ff2012-08-08 14:35:55 -0700174 /*
Peter Korsgaard22cbeed2012-10-17 09:20:46 +0000175 * Some boards have D0 wired as MOSI / D1 as MISO instead of
176 * The normal D0 as MISO / D1 as MOSI.
Tom Rinia4a99ff2012-08-08 14:35:55 -0700177 */
Peter Korsgaard22cbeed2012-10-17 09:20:46 +0000178 conf &= ~OMAP3_MCSPI_CHCONF_DPE0;
179 conf |= OMAP3_MCSPI_CHCONF_IS|OMAP3_MCSPI_CHCONF_DPE1;
Tom Rinia4a99ff2012-08-08 14:35:55 -0700180#else
Dirk Behme53736ba2010-12-11 11:01:00 -0500181 conf &= ~(OMAP3_MCSPI_CHCONF_IS|OMAP3_MCSPI_CHCONF_DPE1);
182 conf |= OMAP3_MCSPI_CHCONF_DPE0;
Tom Rinia4a99ff2012-08-08 14:35:55 -0700183#endif
Dirk Behme53736ba2010-12-11 11:01:00 -0500184
185 /* wordlength */
186 conf &= ~OMAP3_MCSPI_CHCONF_WL_MASK;
Nikita Kiryanov5753d092013-10-16 17:23:25 +0300187 conf |= (ds->slave.wordlen - 1) << 7;
Dirk Behme53736ba2010-12-11 11:01:00 -0500188
189 /* set chipselect polarity; manage with FORCE */
190 if (!(ds->mode & SPI_CS_HIGH))
191 conf |= OMAP3_MCSPI_CHCONF_EPOL; /* active-low; normal */
192 else
193 conf &= ~OMAP3_MCSPI_CHCONF_EPOL;
194
195 /* set clock divisor */
196 conf &= ~OMAP3_MCSPI_CHCONF_CLKD_MASK;
197 conf |= div << 2;
198
199 /* set SPI mode 0..3 */
200 if (ds->mode & SPI_CPOL)
201 conf |= OMAP3_MCSPI_CHCONF_POL;
202 else
203 conf &= ~OMAP3_MCSPI_CHCONF_POL;
204 if (ds->mode & SPI_CPHA)
205 conf |= OMAP3_MCSPI_CHCONF_PHA;
206 else
207 conf &= ~OMAP3_MCSPI_CHCONF_PHA;
208
209 /* Transmit & receive mode */
210 conf &= ~OMAP3_MCSPI_CHCONF_TRM_MASK;
211
ajoycc1182b2012-11-17 21:10:15 +0000212 omap3_spi_write_chconf(ds,conf);
Dirk Behme53736ba2010-12-11 11:01:00 -0500213
214 return 0;
215}
216
217void spi_release_bus(struct spi_slave *slave)
218{
219 struct omap3_spi_slave *ds = to_omap3_spi(slave);
220
221 /* Reset the SPI hardware */
222 spi_reset(ds);
223}
224
Nikita Kiryanov5753d092013-10-16 17:23:25 +0300225int omap3_spi_write(struct spi_slave *slave, unsigned int len, const void *txp,
Dirk Behme53736ba2010-12-11 11:01:00 -0500226 unsigned long flags)
227{
228 struct omap3_spi_slave *ds = to_omap3_spi(slave);
229 int i;
David Dueck611c9ba2015-04-01 14:20:24 +0200230 ulong start;
Dirk Behme53736ba2010-12-11 11:01:00 -0500231 int chconf = readl(&ds->regs->channel[ds->slave.cs].chconf);
232
ajoycc1182b2012-11-17 21:10:15 +0000233 /* Enable the channel */
234 omap3_spi_set_enable(ds,OMAP3_MCSPI_CHCTRL_EN);
Dirk Behme53736ba2010-12-11 11:01:00 -0500235
Nikita Kiryanov5753d092013-10-16 17:23:25 +0300236 chconf &= ~(OMAP3_MCSPI_CHCONF_TRM_MASK | OMAP3_MCSPI_CHCONF_WL_MASK);
237 chconf |= (ds->slave.wordlen - 1) << 7;
Dirk Behme53736ba2010-12-11 11:01:00 -0500238 chconf |= OMAP3_MCSPI_CHCONF_TRM_TX_ONLY;
239 chconf |= OMAP3_MCSPI_CHCONF_FORCE;
ajoycc1182b2012-11-17 21:10:15 +0000240 omap3_spi_write_chconf(ds,chconf);
Dirk Behme53736ba2010-12-11 11:01:00 -0500241
242 for (i = 0; i < len; i++) {
243 /* wait till TX register is empty (TXS == 1) */
David Dueck611c9ba2015-04-01 14:20:24 +0200244 start = get_timer(0);
Dirk Behme53736ba2010-12-11 11:01:00 -0500245 while (!(readl(&ds->regs->channel[ds->slave.cs].chstat) &
246 OMAP3_MCSPI_CHSTAT_TXS)) {
David Dueck611c9ba2015-04-01 14:20:24 +0200247 if (get_timer(start) > SPI_WAIT_TIMEOUT) {
Dirk Behme53736ba2010-12-11 11:01:00 -0500248 printf("SPI TXS timed out, status=0x%08x\n",
249 readl(&ds->regs->channel[ds->slave.cs].chstat));
250 return -1;
251 }
252 }
253 /* Write the data */
Nikita Kiryanov5753d092013-10-16 17:23:25 +0300254 unsigned int *tx = &ds->regs->channel[ds->slave.cs].tx;
255 if (ds->slave.wordlen > 16)
256 writel(((u32 *)txp)[i], tx);
257 else if (ds->slave.wordlen > 8)
258 writel(((u16 *)txp)[i], tx);
259 else
260 writel(((u8 *)txp)[i], tx);
Dirk Behme53736ba2010-12-11 11:01:00 -0500261 }
262
Wolfgang Denk93e14592013-10-04 17:43:24 +0200263 /* wait to finish of transfer */
Vasili Galkace6889a2014-03-09 15:56:52 +0200264 while ((readl(&ds->regs->channel[ds->slave.cs].chstat) &
265 (OMAP3_MCSPI_CHSTAT_EOT | OMAP3_MCSPI_CHSTAT_TXS)) !=
266 (OMAP3_MCSPI_CHSTAT_EOT | OMAP3_MCSPI_CHSTAT_TXS));
ajoycc1182b2012-11-17 21:10:15 +0000267
268 /* Disable the channel otherwise the next immediate RX will get affected */
269 omap3_spi_set_enable(ds,OMAP3_MCSPI_CHCTRL_DIS);
270
Dirk Behme53736ba2010-12-11 11:01:00 -0500271 if (flags & SPI_XFER_END) {
Dirk Behme53736ba2010-12-11 11:01:00 -0500272
273 chconf &= ~OMAP3_MCSPI_CHCONF_FORCE;
ajoycc1182b2012-11-17 21:10:15 +0000274 omap3_spi_write_chconf(ds,chconf);
Dirk Behme53736ba2010-12-11 11:01:00 -0500275 }
276 return 0;
277}
278
Nikita Kiryanov5753d092013-10-16 17:23:25 +0300279int omap3_spi_read(struct spi_slave *slave, unsigned int len, void *rxp,
Dirk Behme53736ba2010-12-11 11:01:00 -0500280 unsigned long flags)
281{
282 struct omap3_spi_slave *ds = to_omap3_spi(slave);
283 int i;
David Dueck611c9ba2015-04-01 14:20:24 +0200284 ulong start;
Dirk Behme53736ba2010-12-11 11:01:00 -0500285 int chconf = readl(&ds->regs->channel[ds->slave.cs].chconf);
286
ajoycc1182b2012-11-17 21:10:15 +0000287 /* Enable the channel */
288 omap3_spi_set_enable(ds,OMAP3_MCSPI_CHCTRL_EN);
Dirk Behme53736ba2010-12-11 11:01:00 -0500289
Nikita Kiryanov5753d092013-10-16 17:23:25 +0300290 chconf &= ~(OMAP3_MCSPI_CHCONF_TRM_MASK | OMAP3_MCSPI_CHCONF_WL_MASK);
291 chconf |= (ds->slave.wordlen - 1) << 7;
Dirk Behme53736ba2010-12-11 11:01:00 -0500292 chconf |= OMAP3_MCSPI_CHCONF_TRM_RX_ONLY;
293 chconf |= OMAP3_MCSPI_CHCONF_FORCE;
ajoycc1182b2012-11-17 21:10:15 +0000294 omap3_spi_write_chconf(ds,chconf);
Dirk Behme53736ba2010-12-11 11:01:00 -0500295
296 writel(0, &ds->regs->channel[ds->slave.cs].tx);
297
298 for (i = 0; i < len; i++) {
David Dueck611c9ba2015-04-01 14:20:24 +0200299 start = get_timer(0);
Dirk Behme53736ba2010-12-11 11:01:00 -0500300 /* Wait till RX register contains data (RXS == 1) */
301 while (!(readl(&ds->regs->channel[ds->slave.cs].chstat) &
302 OMAP3_MCSPI_CHSTAT_RXS)) {
David Dueck611c9ba2015-04-01 14:20:24 +0200303 if (get_timer(start) > SPI_WAIT_TIMEOUT) {
Dirk Behme53736ba2010-12-11 11:01:00 -0500304 printf("SPI RXS timed out, status=0x%08x\n",
305 readl(&ds->regs->channel[ds->slave.cs].chstat));
306 return -1;
307 }
308 }
ajoycc1182b2012-11-17 21:10:15 +0000309
310 /* Disable the channel to prevent furher receiving */
311 if(i == (len - 1))
312 omap3_spi_set_enable(ds,OMAP3_MCSPI_CHCTRL_DIS);
313
Dirk Behme53736ba2010-12-11 11:01:00 -0500314 /* Read the data */
Nikita Kiryanov5753d092013-10-16 17:23:25 +0300315 unsigned int *rx = &ds->regs->channel[ds->slave.cs].rx;
316 if (ds->slave.wordlen > 16)
317 ((u32 *)rxp)[i] = readl(rx);
318 else if (ds->slave.wordlen > 8)
319 ((u16 *)rxp)[i] = (u16)readl(rx);
320 else
321 ((u8 *)rxp)[i] = (u8)readl(rx);
Dirk Behme53736ba2010-12-11 11:01:00 -0500322 }
323
324 if (flags & SPI_XFER_END) {
325 chconf &= ~OMAP3_MCSPI_CHCONF_FORCE;
ajoycc1182b2012-11-17 21:10:15 +0000326 omap3_spi_write_chconf(ds,chconf);
Dirk Behme53736ba2010-12-11 11:01:00 -0500327 }
328
329 return 0;
330}
331
jacopo mondi08b5ab02011-03-02 05:13:22 +0000332/*McSPI Transmit Receive Mode*/
Nikita Kiryanov5753d092013-10-16 17:23:25 +0300333int omap3_spi_txrx(struct spi_slave *slave, unsigned int len,
334 const void *txp, void *rxp, unsigned long flags)
jacopo mondi08b5ab02011-03-02 05:13:22 +0000335{
336 struct omap3_spi_slave *ds = to_omap3_spi(slave);
David Dueck611c9ba2015-04-01 14:20:24 +0200337 ulong start;
jacopo mondi08b5ab02011-03-02 05:13:22 +0000338 int chconf = readl(&ds->regs->channel[ds->slave.cs].chconf);
339 int irqstatus = readl(&ds->regs->irqstatus);
340 int i=0;
341
342 /*Enable SPI channel*/
ajoycc1182b2012-11-17 21:10:15 +0000343 omap3_spi_set_enable(ds,OMAP3_MCSPI_CHCTRL_EN);
jacopo mondi08b5ab02011-03-02 05:13:22 +0000344
345 /*set TRANSMIT-RECEIVE Mode*/
Nikita Kiryanov5753d092013-10-16 17:23:25 +0300346 chconf &= ~(OMAP3_MCSPI_CHCONF_TRM_MASK | OMAP3_MCSPI_CHCONF_WL_MASK);
347 chconf |= (ds->slave.wordlen - 1) << 7;
jacopo mondi08b5ab02011-03-02 05:13:22 +0000348 chconf |= OMAP3_MCSPI_CHCONF_FORCE;
ajoycc1182b2012-11-17 21:10:15 +0000349 omap3_spi_write_chconf(ds,chconf);
jacopo mondi08b5ab02011-03-02 05:13:22 +0000350
351 /*Shift in and out 1 byte at time*/
352 for (i=0; i < len; i++){
353 /* Write: wait for TX empty (TXS == 1)*/
354 irqstatus |= (1<< (4*(ds->slave.bus)));
David Dueck611c9ba2015-04-01 14:20:24 +0200355 start = get_timer(0);
jacopo mondi08b5ab02011-03-02 05:13:22 +0000356 while (!(readl(&ds->regs->channel[ds->slave.cs].chstat) &
357 OMAP3_MCSPI_CHSTAT_TXS)) {
David Dueck611c9ba2015-04-01 14:20:24 +0200358 if (get_timer(start) > SPI_WAIT_TIMEOUT) {
jacopo mondi08b5ab02011-03-02 05:13:22 +0000359 printf("SPI TXS timed out, status=0x%08x\n",
360 readl(&ds->regs->channel[ds->slave.cs].chstat));
361 return -1;
362 }
363 }
364 /* Write the data */
Nikita Kiryanov5753d092013-10-16 17:23:25 +0300365 unsigned int *tx = &ds->regs->channel[ds->slave.cs].tx;
366 if (ds->slave.wordlen > 16)
367 writel(((u32 *)txp)[i], tx);
368 else if (ds->slave.wordlen > 8)
369 writel(((u16 *)txp)[i], tx);
370 else
371 writel(((u8 *)txp)[i], tx);
jacopo mondi08b5ab02011-03-02 05:13:22 +0000372
373 /*Read: wait for RX containing data (RXS == 1)*/
David Dueck611c9ba2015-04-01 14:20:24 +0200374 start = get_timer(0);
jacopo mondi08b5ab02011-03-02 05:13:22 +0000375 while (!(readl(&ds->regs->channel[ds->slave.cs].chstat) &
376 OMAP3_MCSPI_CHSTAT_RXS)) {
David Dueck611c9ba2015-04-01 14:20:24 +0200377 if (get_timer(start) > SPI_WAIT_TIMEOUT) {
jacopo mondi08b5ab02011-03-02 05:13:22 +0000378 printf("SPI RXS timed out, status=0x%08x\n",
379 readl(&ds->regs->channel[ds->slave.cs].chstat));
380 return -1;
381 }
382 }
383 /* Read the data */
Nikita Kiryanov5753d092013-10-16 17:23:25 +0300384 unsigned int *rx = &ds->regs->channel[ds->slave.cs].rx;
385 if (ds->slave.wordlen > 16)
386 ((u32 *)rxp)[i] = readl(rx);
387 else if (ds->slave.wordlen > 8)
388 ((u16 *)rxp)[i] = (u16)readl(rx);
389 else
390 ((u8 *)rxp)[i] = (u8)readl(rx);
jacopo mondi08b5ab02011-03-02 05:13:22 +0000391 }
ajoycc1182b2012-11-17 21:10:15 +0000392 /* Disable the channel */
Wolfgang Denk93e14592013-10-04 17:43:24 +0200393 omap3_spi_set_enable(ds,OMAP3_MCSPI_CHCTRL_DIS);
jacopo mondi08b5ab02011-03-02 05:13:22 +0000394
395 /*if transfer must be terminated disable the channel*/
396 if (flags & SPI_XFER_END) {
397 chconf &= ~OMAP3_MCSPI_CHCONF_FORCE;
ajoycc1182b2012-11-17 21:10:15 +0000398 omap3_spi_write_chconf(ds,chconf);
jacopo mondi08b5ab02011-03-02 05:13:22 +0000399 }
400
401 return 0;
402}
403
Dirk Behme53736ba2010-12-11 11:01:00 -0500404int spi_xfer(struct spi_slave *slave, unsigned int bitlen,
405 const void *dout, void *din, unsigned long flags)
406{
407 struct omap3_spi_slave *ds = to_omap3_spi(slave);
408 unsigned int len;
Dirk Behme53736ba2010-12-11 11:01:00 -0500409 int ret = -1;
410
Nikita Kiryanov5753d092013-10-16 17:23:25 +0300411 if (ds->slave.wordlen < 4 || ds->slave.wordlen > 32) {
412 printf("omap3_spi: invalid wordlen %d\n", ds->slave.wordlen);
413 return -1;
414 }
415
416 if (bitlen % ds->slave.wordlen)
Dirk Behme53736ba2010-12-11 11:01:00 -0500417 return -1;
418
Nikita Kiryanov5753d092013-10-16 17:23:25 +0300419 len = bitlen / ds->slave.wordlen;
Dirk Behme53736ba2010-12-11 11:01:00 -0500420
421 if (bitlen == 0) { /* only change CS */
422 int chconf = readl(&ds->regs->channel[ds->slave.cs].chconf);
423
424 if (flags & SPI_XFER_BEGIN) {
ajoycc1182b2012-11-17 21:10:15 +0000425 omap3_spi_set_enable(ds,OMAP3_MCSPI_CHCTRL_EN);
Dirk Behme53736ba2010-12-11 11:01:00 -0500426 chconf |= OMAP3_MCSPI_CHCONF_FORCE;
ajoycc1182b2012-11-17 21:10:15 +0000427 omap3_spi_write_chconf(ds,chconf);
Dirk Behme53736ba2010-12-11 11:01:00 -0500428 }
429 if (flags & SPI_XFER_END) {
430 chconf &= ~OMAP3_MCSPI_CHCONF_FORCE;
ajoycc1182b2012-11-17 21:10:15 +0000431 omap3_spi_write_chconf(ds,chconf);
432 omap3_spi_set_enable(ds,OMAP3_MCSPI_CHCTRL_DIS);
Dirk Behme53736ba2010-12-11 11:01:00 -0500433 }
434 ret = 0;
435 } else {
jacopo mondi08b5ab02011-03-02 05:13:22 +0000436 if (dout != NULL && din != NULL)
Nikita Kiryanov5753d092013-10-16 17:23:25 +0300437 ret = omap3_spi_txrx(slave, len, dout, din, flags);
jacopo mondi08b5ab02011-03-02 05:13:22 +0000438 else if (dout != NULL)
Nikita Kiryanov5753d092013-10-16 17:23:25 +0300439 ret = omap3_spi_write(slave, len, dout, flags);
jacopo mondi08b5ab02011-03-02 05:13:22 +0000440 else if (din != NULL)
Nikita Kiryanov5753d092013-10-16 17:23:25 +0300441 ret = omap3_spi_read(slave, len, din, flags);
Dirk Behme53736ba2010-12-11 11:01:00 -0500442 }
443 return ret;
444}
445
446int spi_cs_is_valid(unsigned int bus, unsigned int cs)
447{
448 return 1;
449}
450
451void spi_cs_activate(struct spi_slave *slave)
452{
453}
454
455void spi_cs_deactivate(struct spi_slave *slave)
456{
457}