Lines Matching full:transfers

42  * struct spi_statistics - statistics for spi transfers
47 * @transfers: number of spi_transfers handled
65 * number of transfers that have been split because of
72 u64_stats_t transfers; member
144 * @bits_per_word: Data transfers involve one or more words; word sizes
424 * It's always safe to call this unless transfers are pending on
466 * message while queuing transfers that arrive in the meantime. When the
530 * for spi_sync transfers.
578 /* Bitmask of supported bits_per_word for transfers */
635 * IMPORTANT: this may be called when transfers to another
637 * which could break those transfers.
652 * Bidirectional bulk transfers
668 * + The message transfers use clock and SPI mode parameters
764 * transfers (needed e.g. for reading the time of POSIX clocks)
961 * @transfer_list: transfers are sequenced through @spi_message.transfers
992 * SPI transfers always write the same number of bytes as they read.
1015 * All SPI transfers start with the relevant chipselect active. Normally
1044 * and its transfers, ignore them until its completion callback.
1096 * @transfers: list of transfer segments in this transaction
1112 * A @spi_message is used to execute an atomic sequence of data transfers,
1124 * and its transfers, ignore them until its completion callback.
1127 struct list_head transfers; member
1177 INIT_LIST_HEAD(&m->transfers); in spi_message_init_no_memset()
1190 list_add_tail(&t->transfer_list, &m->transfers); in spi_message_add_tail()
1206 * spi_message_init_with_transfers - Initialize spi_message and append transfers
1208 * @xfers: An array of SPI transfers
1338 * @replaced_transfers: transfers that have been replaced and which need
1342 * @inserted: number of transfers inserted
1453 /* This copies txbuf and rxbuf data; for small transfers only! */
1665 return list_is_last(&xfer->transfer_list, &ctlr->cur_msg->transfers); in spi_transfer_is_last()