1 #ifndef __SPI_BITBANG_H
2 #define __SPI_BITBANG_H
4 #include <linux/workqueue.h>
10 u8 flags
; /* extra spi->mode support */
12 struct spi_master
*master
;
14 /* setup_transfer() changes clock and/or wordsize to match settings
15 * for this transfer; zeroes restore defaults from spi_device.
17 int (*setup_transfer
)(struct spi_device
*spi
,
18 struct spi_transfer
*t
);
20 void (*chipselect
)(struct spi_device
*spi
, int is_on
);
21 #define BITBANG_CS_ACTIVE 1 /* normally nCS, active low */
22 #define BITBANG_CS_INACTIVE 0
24 /* txrx_bufs() may handle dma mapping for transfers that don't
25 * already have one (transfer.{tx,rx}_dma is zero), or use PIO
27 int (*txrx_bufs
)(struct spi_device
*spi
, struct spi_transfer
*t
);
29 /* txrx_word[SPI_MODE_*]() just looks like a shift register */
30 u32 (*txrx_word
[4])(struct spi_device
*spi
,
35 /* you can call these default bitbang->master methods from your custom
36 * methods, if you like.
38 extern int spi_bitbang_setup(struct spi_device
*spi
);
39 extern void spi_bitbang_cleanup(struct spi_device
*spi
);
40 extern int spi_bitbang_setup_transfer(struct spi_device
*spi
,
41 struct spi_transfer
*t
);
43 /* start or stop queue processing */
44 extern int spi_bitbang_start(struct spi_bitbang
*spi
);
45 extern void spi_bitbang_stop(struct spi_bitbang
*spi
);
47 #endif /* __SPI_BITBANG_H */