Lines Matching full:transfers
34 * struct spi_statistics - statistics for spi transfers
38 * @transfers: number of spi_transfers handled
56 * number of transfers that have been split because of
63 unsigned long transfers; member
126 * @bits_per_word: Data transfers involve one or more words; word sizes
362 * It's always safe to call this unless transfers are pending on
394 * message while queuing transfers that arrive in the meantime. When the
499 /* bitmask of supported bits_per_word for transfers */
546 * IMPORTANT: this may be called when transfers to another
548 * which could break those transfers.
562 /* bidirectional bulk transfers
578 * + The message transfers use clock and SPI mode parameters
669 * transfers (needed e.g. for reading the time of POSIX clocks)
846 * @transfer_list: transfers are sequenced through @spi_message.transfers
875 * SPI transfers always write the same number of bytes as they read.
898 * All SPI transfers start with the relevant chipselect active. Normally
927 * and its transfers, ignore them until its completion callback.
974 * @transfers: list of transfer segments in this transaction
988 * A @spi_message is used to execute an atomic sequence of data transfers,
1000 * and its transfers, ignore them until its completion callback.
1003 struct list_head transfers; member
1040 INIT_LIST_HEAD(&m->transfers); in spi_message_init_no_memset()
1053 list_add_tail(&t->transfer_list, &m->transfers); in spi_message_add_tail()
1069 * spi_message_init_with_transfers - Initialize spi_message and append transfers
1071 * @xfers: An array of spi transfers
1180 * @replaced_transfers: transfers that have been replaced and which need
1184 * @inserted: number of transfers inserted
1301 /* this copies txbuf and rxbuf data; for small transfers only! */
1505 return list_is_last(&xfer->transfer_list, &ctlr->cur_msg->transfers); in spi_transfer_is_last()