blob: ef43ef507c9a4e6859c8c1ffd9797eff8b54027f [file] [log] [blame]
David Brownell9904f222006-01-08 13:34:26 -08001/*
Grant Likelyca632f52011-06-06 01:16:30 -06002 * polling/bitbanging SPI master controller driver utilities
David Brownell9904f222006-01-08 13:34:26 -08003 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
David Brownell9904f222006-01-08 13:34:26 -080013 */
14
David Brownell9904f222006-01-08 13:34:26 -080015#include <linux/spinlock.h>
16#include <linux/workqueue.h>
17#include <linux/interrupt.h>
Paul Gortmakerd7614de2011-07-03 15:44:29 -040018#include <linux/module.h>
David Brownell9904f222006-01-08 13:34:26 -080019#include <linux/delay.h>
20#include <linux/errno.h>
21#include <linux/platform_device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
David Brownell9904f222006-01-08 13:34:26 -080023
24#include <linux/spi/spi.h>
25#include <linux/spi/spi_bitbang.h>
26
27
28/*----------------------------------------------------------------------*/
29
30/*
31 * FIRST PART (OPTIONAL): word-at-a-time spi_transfer support.
32 * Use this for GPIO or shift-register level hardware APIs.
33 *
34 * spi_bitbang_cs is in spi_device->controller_state, which is unavailable
35 * to glue code. These bitbang setup() and cleanup() routines are always
36 * used, though maybe they're called from controller-aware code.
37 *
Uwe Kleine-König03ddcbc2013-08-07 21:22:20 +020038 * chipselect() and friends may use spi_device->controller_data and
David Brownell9904f222006-01-08 13:34:26 -080039 * controller registers as appropriate.
40 *
41 *
42 * NOTE: SPI controller pins can often be used as GPIO pins instead,
43 * which means you could use a bitbang driver either to get hardware
44 * working quickly, or testing for differences that aren't speed related.
45 */
46
47struct spi_bitbang_cs {
48 unsigned nsecs; /* (clock cycle time)/2 */
49 u32 (*txrx_word)(struct spi_device *spi, unsigned nsecs,
50 u32 word, u8 bits);
51 unsigned (*txrx_bufs)(struct spi_device *,
52 u32 (*txrx_word)(
53 struct spi_device *spi,
54 unsigned nsecs,
55 u32 word, u8 bits),
56 unsigned, struct spi_transfer *);
57};
58
59static unsigned bitbang_txrx_8(
60 struct spi_device *spi,
61 u32 (*txrx_word)(struct spi_device *spi,
62 unsigned nsecs,
63 u32 word, u8 bits),
64 unsigned ns,
65 struct spi_transfer *t
66) {
Laxman Dewangan766ed702012-12-18 14:25:43 +053067 unsigned bits = t->bits_per_word;
David Brownell9904f222006-01-08 13:34:26 -080068 unsigned count = t->len;
69 const u8 *tx = t->tx_buf;
70 u8 *rx = t->rx_buf;
71
72 while (likely(count > 0)) {
73 u8 word = 0;
74
75 if (tx)
76 word = *tx++;
77 word = txrx_word(spi, ns, word, bits);
78 if (rx)
79 *rx++ = word;
80 count -= 1;
81 }
82 return t->len - count;
83}
84
85static unsigned bitbang_txrx_16(
86 struct spi_device *spi,
87 u32 (*txrx_word)(struct spi_device *spi,
88 unsigned nsecs,
89 u32 word, u8 bits),
90 unsigned ns,
91 struct spi_transfer *t
92) {
Laxman Dewangan766ed702012-12-18 14:25:43 +053093 unsigned bits = t->bits_per_word;
David Brownell9904f222006-01-08 13:34:26 -080094 unsigned count = t->len;
95 const u16 *tx = t->tx_buf;
96 u16 *rx = t->rx_buf;
97
98 while (likely(count > 1)) {
99 u16 word = 0;
100
101 if (tx)
102 word = *tx++;
103 word = txrx_word(spi, ns, word, bits);
104 if (rx)
105 *rx++ = word;
106 count -= 2;
107 }
108 return t->len - count;
109}
110
111static unsigned bitbang_txrx_32(
112 struct spi_device *spi,
113 u32 (*txrx_word)(struct spi_device *spi,
114 unsigned nsecs,
115 u32 word, u8 bits),
116 unsigned ns,
117 struct spi_transfer *t
118) {
Laxman Dewangan766ed702012-12-18 14:25:43 +0530119 unsigned bits = t->bits_per_word;
David Brownell9904f222006-01-08 13:34:26 -0800120 unsigned count = t->len;
121 const u32 *tx = t->tx_buf;
122 u32 *rx = t->rx_buf;
123
124 while (likely(count > 3)) {
125 u32 word = 0;
126
127 if (tx)
128 word = *tx++;
129 word = txrx_word(spi, ns, word, bits);
130 if (rx)
131 *rx++ = word;
132 count -= 4;
133 }
134 return t->len - count;
135}
136
Kumar Galaff9f4772006-04-02 16:06:35 -0500137int spi_bitbang_setup_transfer(struct spi_device *spi, struct spi_transfer *t)
Imre Deak4cff33f2006-02-17 10:02:18 -0800138{
139 struct spi_bitbang_cs *cs = spi->controller_state;
140 u8 bits_per_word;
141 u32 hz;
142
143 if (t) {
144 bits_per_word = t->bits_per_word;
145 hz = t->speed_hz;
146 } else {
147 bits_per_word = 0;
148 hz = 0;
149 }
150
151 /* spi_transfer level calls that work per-word */
152 if (!bits_per_word)
153 bits_per_word = spi->bits_per_word;
154 if (bits_per_word <= 8)
155 cs->txrx_bufs = bitbang_txrx_8;
156 else if (bits_per_word <= 16)
157 cs->txrx_bufs = bitbang_txrx_16;
158 else if (bits_per_word <= 32)
159 cs->txrx_bufs = bitbang_txrx_32;
160 else
161 return -EINVAL;
162
163 /* nsecs = (clock period)/2 */
164 if (!hz)
165 hz = spi->max_speed_hz;
David Brownell1e316d72006-04-06 22:25:56 -0700166 if (hz) {
167 cs->nsecs = (1000000000/2) / hz;
168 if (cs->nsecs > (MAX_UDELAY_MS * 1000 * 1000))
169 return -EINVAL;
170 }
Imre Deak4cff33f2006-02-17 10:02:18 -0800171
172 return 0;
173}
Kumar Galaff9f4772006-04-02 16:06:35 -0500174EXPORT_SYMBOL_GPL(spi_bitbang_setup_transfer);
Imre Deak4cff33f2006-02-17 10:02:18 -0800175
David Brownell9904f222006-01-08 13:34:26 -0800176/**
177 * spi_bitbang_setup - default setup for per-word I/O loops
178 */
179int spi_bitbang_setup(struct spi_device *spi)
180{
181 struct spi_bitbang_cs *cs = spi->controller_state;
182 struct spi_bitbang *bitbang;
183
David Brownellccf77cc2006-04-03 15:46:22 -0700184 bitbang = spi_master_get_devdata(spi->master);
185
David Brownell9904f222006-01-08 13:34:26 -0800186 if (!cs) {
Jingoo Hancff93c52013-10-14 10:33:38 +0900187 cs = kzalloc(sizeof(*cs), GFP_KERNEL);
David Brownell9904f222006-01-08 13:34:26 -0800188 if (!cs)
189 return -ENOMEM;
190 spi->controller_state = cs;
191 }
David Brownell9904f222006-01-08 13:34:26 -0800192
David Brownell9904f222006-01-08 13:34:26 -0800193 /* per-word shift register access, in hardware or bitbanging */
194 cs->txrx_word = bitbang->txrx_word[spi->mode & (SPI_CPOL|SPI_CPHA)];
195 if (!cs->txrx_word)
196 return -EINVAL;
197
Pelle Nilsson7d0ec8b2015-04-14 15:40:17 +0200198 if (bitbang->setup_transfer) {
199 int retval = bitbang->setup_transfer(spi, NULL);
200 if (retval < 0)
201 return retval;
202 }
David Brownell9904f222006-01-08 13:34:26 -0800203
David Brownell7d077192009-06-17 16:26:03 -0700204 dev_dbg(&spi->dev, "%s, %u nsec/bit\n", __func__, 2 * cs->nsecs);
David Brownell9904f222006-01-08 13:34:26 -0800205
206 /* NOTE we _need_ to call chipselect() early, ideally with adapter
207 * setup, unless the hardware defaults cooperate to avoid confusion
208 * between normal (active low) and inverted chipselects.
209 */
210
211 /* deselect chip (low or high) */
Nicolas Boichatc15f6ed2015-08-17 11:52:54 +0800212 mutex_lock(&bitbang->lock);
David Brownell9904f222006-01-08 13:34:26 -0800213 if (!bitbang->busy) {
Vitaly Wool8275c642006-01-08 13:34:28 -0800214 bitbang->chipselect(spi, BITBANG_CS_INACTIVE);
David Brownell9904f222006-01-08 13:34:26 -0800215 ndelay(cs->nsecs);
216 }
Nicolas Boichatc15f6ed2015-08-17 11:52:54 +0800217 mutex_unlock(&bitbang->lock);
David Brownell9904f222006-01-08 13:34:26 -0800218
219 return 0;
220}
221EXPORT_SYMBOL_GPL(spi_bitbang_setup);
222
223/**
224 * spi_bitbang_cleanup - default cleanup for per-word I/O loops
225 */
Hans-Peter Nilsson0ffa0282007-02-12 00:52:45 -0800226void spi_bitbang_cleanup(struct spi_device *spi)
David Brownell9904f222006-01-08 13:34:26 -0800227{
228 kfree(spi->controller_state);
229}
230EXPORT_SYMBOL_GPL(spi_bitbang_cleanup);
231
232static int spi_bitbang_bufs(struct spi_device *spi, struct spi_transfer *t)
233{
234 struct spi_bitbang_cs *cs = spi->controller_state;
235 unsigned nsecs = cs->nsecs;
236
237 return cs->txrx_bufs(spi, cs->txrx_word, nsecs, t);
238}
239
240/*----------------------------------------------------------------------*/
241
242/*
243 * SECOND PART ... simple transfer queue runner.
244 *
245 * This costs a task context per controller, running the queue by
246 * performing each transfer in sequence. Smarter hardware can queue
247 * several DMA transfers at once, and process several controller queues
248 * in parallel; this driver doesn't match such hardware very well.
249 *
250 * Drivers can provide word-at-a-time i/o primitives, or provide
251 * transfer-at-a-time ones to leverage dma or fifo hardware.
252 */
Mark Brown20251722013-07-05 20:07:27 +0100253
254static int spi_bitbang_prepare_hardware(struct spi_master *spi)
255{
Jingoo Hancff93c52013-10-14 10:33:38 +0900256 struct spi_bitbang *bitbang;
Mark Brown20251722013-07-05 20:07:27 +0100257
258 bitbang = spi_master_get_devdata(spi);
259
Nicolas Boichatc15f6ed2015-08-17 11:52:54 +0800260 mutex_lock(&bitbang->lock);
Mark Brown20251722013-07-05 20:07:27 +0100261 bitbang->busy = 1;
Nicolas Boichatc15f6ed2015-08-17 11:52:54 +0800262 mutex_unlock(&bitbang->lock);
Mark Brown20251722013-07-05 20:07:27 +0100263
264 return 0;
265}
266
Fabio Estevamd60990d52013-07-17 15:49:54 -0300267static int spi_bitbang_transfer_one(struct spi_master *master,
Mark Brown91b30852013-07-05 12:06:44 +0100268 struct spi_message *m)
269{
Jingoo Hancff93c52013-10-14 10:33:38 +0900270 struct spi_bitbang *bitbang;
Mark Brown91b30852013-07-05 12:06:44 +0100271 unsigned nsecs;
272 struct spi_transfer *t = NULL;
Mark Brown91b30852013-07-05 12:06:44 +0100273 unsigned cs_change;
274 int status;
275 int do_setup = -1;
Fabio Estevamd60990d52013-07-17 15:49:54 -0300276 struct spi_device *spi = m->spi;
Mark Brown91b30852013-07-05 12:06:44 +0100277
Fabio Estevamd60990d52013-07-17 15:49:54 -0300278 bitbang = spi_master_get_devdata(master);
Mark Brown91b30852013-07-05 12:06:44 +0100279
280 /* FIXME this is made-up ... the correct value is known to
281 * word-at-a-time bitbang code, and presumably chipselect()
282 * should enforce these requirements too?
283 */
284 nsecs = 100;
285
Mark Brown91b30852013-07-05 12:06:44 +0100286 cs_change = 1;
287 status = 0;
288
Jingoo Hancff93c52013-10-14 10:33:38 +0900289 list_for_each_entry(t, &m->transfers, transfer_list) {
Mark Brown91b30852013-07-05 12:06:44 +0100290
291 /* override speed or wordsize? */
292 if (t->speed_hz || t->bits_per_word)
293 do_setup = 1;
294
295 /* init (-1) or override (1) transfer params */
296 if (do_setup != 0) {
Pelle Nilsson7d0ec8b2015-04-14 15:40:17 +0200297 if (bitbang->setup_transfer) {
298 status = bitbang->setup_transfer(spi, t);
299 if (status < 0)
300 break;
301 }
Mark Brown91b30852013-07-05 12:06:44 +0100302 if (do_setup == -1)
303 do_setup = 0;
304 }
305
306 /* set up default clock polarity, and activate chip;
307 * this implicitly updates clock and spi modes as
308 * previously recorded for this device via setup().
309 * (and also deselects any other chip that might be
310 * selected ...)
311 */
312 if (cs_change) {
313 bitbang->chipselect(spi, BITBANG_CS_ACTIVE);
314 ndelay(nsecs);
315 }
316 cs_change = t->cs_change;
317 if (!t->tx_buf && !t->rx_buf && t->len) {
318 status = -EINVAL;
319 break;
320 }
321
322 /* transfer data. the lower level code handles any
323 * new dma mappings it needs. our caller always gave
324 * us dma-safe buffers.
325 */
326 if (t->len) {
327 /* REVISIT dma API still needs a designated
328 * DMA_ADDR_INVALID; ~0 might be better.
329 */
330 if (!m->is_dma_mapped)
331 t->rx_dma = t->tx_dma = 0;
332 status = bitbang->txrx_bufs(spi, t);
333 }
334 if (status > 0)
335 m->actual_length += status;
336 if (status != t->len) {
337 /* always report some kind of error */
338 if (status >= 0)
339 status = -EREMOTEIO;
340 break;
341 }
342 status = 0;
343
344 /* protocol tweaks before next transfer */
345 if (t->delay_usecs)
346 udelay(t->delay_usecs);
347
Jingoo Hancff93c52013-10-14 10:33:38 +0900348 if (cs_change &&
349 !list_is_last(&t->transfer_list, &m->transfers)) {
Mark Brown91b30852013-07-05 12:06:44 +0100350 /* sometimes a short mid-message deselect of the chip
351 * may be needed to terminate a mode or command
352 */
353 ndelay(nsecs);
354 bitbang->chipselect(spi, BITBANG_CS_INACTIVE);
355 ndelay(nsecs);
356 }
357 }
358
359 m->status = status;
Mark Brown91b30852013-07-05 12:06:44 +0100360
361 /* normally deactivate chipselect ... unless no error and
362 * cs_change has hinted that the next message will probably
363 * be for this chip too.
364 */
365 if (!(status == 0 && cs_change)) {
366 ndelay(nsecs);
367 bitbang->chipselect(spi, BITBANG_CS_INACTIVE);
368 ndelay(nsecs);
369 }
370
Fabio Estevamd60990d52013-07-17 15:49:54 -0300371 spi_finalize_current_message(master);
Mark Brown20251722013-07-05 20:07:27 +0100372
Mark Brown91b30852013-07-05 12:06:44 +0100373 return status;
374}
375
Mark Brown20251722013-07-05 20:07:27 +0100376static int spi_bitbang_unprepare_hardware(struct spi_master *spi)
David Brownell9904f222006-01-08 13:34:26 -0800377{
Jingoo Hancff93c52013-10-14 10:33:38 +0900378 struct spi_bitbang *bitbang;
Mark Brown20251722013-07-05 20:07:27 +0100379
380 bitbang = spi_master_get_devdata(spi);
David Brownell9904f222006-01-08 13:34:26 -0800381
Nicolas Boichatc15f6ed2015-08-17 11:52:54 +0800382 mutex_lock(&bitbang->lock);
David Brownell9904f222006-01-08 13:34:26 -0800383 bitbang->busy = 0;
Nicolas Boichatc15f6ed2015-08-17 11:52:54 +0800384 mutex_unlock(&bitbang->lock);
David Brownell9904f222006-01-08 13:34:26 -0800385
Mark Brown20251722013-07-05 20:07:27 +0100386 return 0;
David Brownell9904f222006-01-08 13:34:26 -0800387}
David Brownell9904f222006-01-08 13:34:26 -0800388
389/*----------------------------------------------------------------------*/
390
391/**
392 * spi_bitbang_start - start up a polled/bitbanging SPI master driver
393 * @bitbang: driver handle
394 *
395 * Caller should have zero-initialized all parts of the structure, and then
396 * provided callbacks for chip selection and I/O loops. If the master has
397 * a transfer method, its final step should call spi_bitbang_transfer; or,
398 * that's the default if the transfer routine is not initialized. It should
399 * also set up the bus number and number of chipselects.
400 *
401 * For i/o loops, provide callbacks either per-word (for bitbanging, or for
402 * hardware that basically exposes a shift register) or per-spi_transfer
403 * (which takes better advantage of hardware like fifos or DMA engines).
404 *
Hans-Peter Nilsson7f8c7612007-02-12 00:52:44 -0800405 * Drivers using per-word I/O loops should use (or call) spi_bitbang_setup,
406 * spi_bitbang_cleanup and spi_bitbang_setup_transfer to handle those spi
407 * master methods. Those methods are the defaults if the bitbang->txrx_bufs
408 * routine isn't initialized.
David Brownell9904f222006-01-08 13:34:26 -0800409 *
410 * This routine registers the spi_master, which will process requests in a
411 * dedicated task, keeping IRQs unblocked most of the time. To stop
412 * processing those requests, call spi_bitbang_stop().
Axel Lin702a4872013-09-10 15:43:41 +0800413 *
414 * On success, this routine will take a reference to master. The caller is
415 * responsible for calling spi_bitbang_stop() to decrement the reference and
416 * spi_master_put() as counterpart of spi_alloc_master() to prevent a memory
417 * leak.
David Brownell9904f222006-01-08 13:34:26 -0800418 */
419int spi_bitbang_start(struct spi_bitbang *bitbang)
420{
Guennadi Liakhovetski7a5d8ca2013-01-10 13:13:56 +0100421 struct spi_master *master = bitbang->master;
Axel Lin702a4872013-09-10 15:43:41 +0800422 int ret;
David Brownell9904f222006-01-08 13:34:26 -0800423
Guennadi Liakhovetski7a5d8ca2013-01-10 13:13:56 +0100424 if (!master || !bitbang->chipselect)
David Brownell9904f222006-01-08 13:34:26 -0800425 return -EINVAL;
426
Nicolas Boichatc15f6ed2015-08-17 11:52:54 +0800427 mutex_init(&bitbang->lock);
David Brownell9904f222006-01-08 13:34:26 -0800428
Guennadi Liakhovetski7a5d8ca2013-01-10 13:13:56 +0100429 if (!master->mode_bits)
430 master->mode_bits = SPI_CPOL | SPI_CPHA | bitbang->flags;
David Brownelle7db06b2009-06-17 16:26:04 -0700431
Mark Brown20251722013-07-05 20:07:27 +0100432 if (master->transfer || master->transfer_one_message)
433 return -EINVAL;
434
435 master->prepare_transfer_hardware = spi_bitbang_prepare_hardware;
436 master->unprepare_transfer_hardware = spi_bitbang_unprepare_hardware;
437 master->transfer_one_message = spi_bitbang_transfer_one;
438
David Brownell9904f222006-01-08 13:34:26 -0800439 if (!bitbang->txrx_bufs) {
440 bitbang->use_dma = 0;
441 bitbang->txrx_bufs = spi_bitbang_bufs;
Guennadi Liakhovetski7a5d8ca2013-01-10 13:13:56 +0100442 if (!master->setup) {
Kumar Galaff9f4772006-04-02 16:06:35 -0500443 if (!bitbang->setup_transfer)
444 bitbang->setup_transfer =
445 spi_bitbang_setup_transfer;
Guennadi Liakhovetski7a5d8ca2013-01-10 13:13:56 +0100446 master->setup = spi_bitbang_setup;
447 master->cleanup = spi_bitbang_cleanup;
David Brownell9904f222006-01-08 13:34:26 -0800448 }
Uwe Kleine-König52ade732013-08-08 16:09:49 +0200449 }
David Brownell9904f222006-01-08 13:34:26 -0800450
451 /* driver may get busy before register() returns, especially
452 * if someone registered boardinfo for devices
453 */
Axel Lin702a4872013-09-10 15:43:41 +0800454 ret = spi_register_master(spi_master_get(master));
455 if (ret)
456 spi_master_put(master);
457
458 return 0;
David Brownell9904f222006-01-08 13:34:26 -0800459}
460EXPORT_SYMBOL_GPL(spi_bitbang_start);
461
462/**
463 * spi_bitbang_stop - stops the task providing spi communication
464 */
Axel Lind9721ae2014-03-29 18:50:12 +0800465void spi_bitbang_stop(struct spi_bitbang *bitbang)
David Brownell9904f222006-01-08 13:34:26 -0800466{
Chris Lesiaka836f582007-03-16 13:38:13 -0800467 spi_unregister_master(bitbang->master);
David Brownell9904f222006-01-08 13:34:26 -0800468}
469EXPORT_SYMBOL_GPL(spi_bitbang_stop);
470
471MODULE_LICENSE("GPL");
472