Lines Matching full:transfers

39  * struct spi_statistics - statistics for spi transfers
44 * @transfers: number of spi_transfers handled
62 * number of transfers that have been split because of
69 u64_stats_t transfers; member
141 * @bits_per_word: Data transfers involve one or more words; word sizes
405 * It's always safe to call this unless transfers are pending on
445 * message while queuing transfers that arrive in the meantime. When the
507 * for spi_sync transfers.
552 /* Bitmask of supported bits_per_word for transfers */
603 * IMPORTANT: this may be called when transfers to another
605 * which could break those transfers.
620 * Bidirectional bulk transfers
636 * + The message transfers use clock and SPI mode parameters
733 * transfers (needed e.g. for reading the time of POSIX clocks)
946 * @transfer_list: transfers are sequenced through @spi_message.transfers
975 * SPI transfers always write the same number of bytes as they read.
998 * All SPI transfers start with the relevant chipselect active. Normally
1027 * and its transfers, ignore them until its completion callback.
1075 * @transfers: list of transfer segments in this transaction
1089 * @t: for use with spi_message_alloc() when message and transfers have
1092 * A @spi_message is used to execute an atomic sequence of data transfers,
1104 * and its transfers, ignore them until its completion callback.
1107 struct list_head transfers; member
1146 /* For embedding transfers into the memory of the message */
1152 INIT_LIST_HEAD(&m->transfers); in spi_message_init_no_memset()
1165 list_add_tail(&t->transfer_list, &m->transfers); in spi_message_add_tail()
1181 * spi_message_init_with_transfers - Initialize spi_message and append transfers
1183 * @xfers: An array of SPI transfers
1305 * @replaced_transfers: transfers that have been replaced and which need
1309 * @inserted: number of transfers inserted
1422 /* This copies txbuf and rxbuf data; for small transfers only! */
1634 return list_is_last(&xfer->transfer_list, &ctlr->cur_msg->transfers); in spi_transfer_is_last()