David Brownell | 9904f22 | 2006-01-08 13:34:26 -0800 | [diff] [blame] | 1 | #ifndef __SPI_BITBANG_H |
| 2 | #define __SPI_BITBANG_H |
| 3 | |
Fernando Luis Vazquez Cao | effdb94 | 2008-10-29 14:01:21 -0700 | [diff] [blame] | 4 | #include <linux/workqueue.h> |
| 5 | |
David Brownell | 9904f22 | 2006-01-08 13:34:26 -0800 | [diff] [blame] | 6 | struct spi_bitbang { |
| 7 | struct workqueue_struct *workqueue; |
| 8 | struct work_struct work; |
| 9 | |
| 10 | spinlock_t lock; |
| 11 | struct list_head queue; |
| 12 | u8 busy; |
David Brownell | 9904f22 | 2006-01-08 13:34:26 -0800 | [diff] [blame] | 13 | u8 use_dma; |
David Brownell | dccd573 | 2007-07-17 04:04:02 -0700 | [diff] [blame] | 14 | u8 flags; /* extra spi->mode support */ |
David Brownell | 9904f22 | 2006-01-08 13:34:26 -0800 | [diff] [blame] | 15 | |
| 16 | struct spi_master *master; |
| 17 | |
Imre Deak | 4cff33f | 2006-02-17 10:02:18 -0800 | [diff] [blame] | 18 | /* setup_transfer() changes clock and/or wordsize to match settings |
| 19 | * for this transfer; zeroes restore defaults from spi_device. |
| 20 | */ |
| 21 | int (*setup_transfer)(struct spi_device *spi, |
| 22 | struct spi_transfer *t); |
| 23 | |
David Brownell | 9904f22 | 2006-01-08 13:34:26 -0800 | [diff] [blame] | 24 | void (*chipselect)(struct spi_device *spi, int is_on); |
Vitaly Wool | 8275c64 | 2006-01-08 13:34:28 -0800 | [diff] [blame] | 25 | #define BITBANG_CS_ACTIVE 1 /* normally nCS, active low */ |
| 26 | #define BITBANG_CS_INACTIVE 0 |
David Brownell | 9904f22 | 2006-01-08 13:34:26 -0800 | [diff] [blame] | 27 | |
Vitaly Wool | 8275c64 | 2006-01-08 13:34:28 -0800 | [diff] [blame] | 28 | /* txrx_bufs() may handle dma mapping for transfers that don't |
| 29 | * already have one (transfer.{tx,rx}_dma is zero), or use PIO |
| 30 | */ |
David Brownell | 9904f22 | 2006-01-08 13:34:26 -0800 | [diff] [blame] | 31 | int (*txrx_bufs)(struct spi_device *spi, struct spi_transfer *t); |
Vitaly Wool | 8275c64 | 2006-01-08 13:34:28 -0800 | [diff] [blame] | 32 | |
| 33 | /* txrx_word[SPI_MODE_*]() just looks like a shift register */ |
David Brownell | 9904f22 | 2006-01-08 13:34:26 -0800 | [diff] [blame] | 34 | u32 (*txrx_word[4])(struct spi_device *spi, |
| 35 | unsigned nsecs, |
| 36 | u32 word, u8 bits); |
| 37 | }; |
| 38 | |
| 39 | /* you can call these default bitbang->master methods from your custom |
| 40 | * methods, if you like. |
| 41 | */ |
| 42 | extern int spi_bitbang_setup(struct spi_device *spi); |
Hans-Peter Nilsson | 0ffa028 | 2007-02-12 00:52:45 -0800 | [diff] [blame] | 43 | extern void spi_bitbang_cleanup(struct spi_device *spi); |
David Brownell | 9904f22 | 2006-01-08 13:34:26 -0800 | [diff] [blame] | 44 | extern int spi_bitbang_transfer(struct spi_device *spi, struct spi_message *m); |
Kumar Gala | ff9f477 | 2006-04-02 16:06:35 -0500 | [diff] [blame] | 45 | extern int spi_bitbang_setup_transfer(struct spi_device *spi, |
| 46 | struct spi_transfer *t); |
David Brownell | 9904f22 | 2006-01-08 13:34:26 -0800 | [diff] [blame] | 47 | |
| 48 | /* start or stop queue processing */ |
| 49 | extern int spi_bitbang_start(struct spi_bitbang *spi); |
| 50 | extern int spi_bitbang_stop(struct spi_bitbang *spi); |
| 51 | |
| 52 | #endif /* __SPI_BITBANG_H */ |