Lines Matching full:transfer
62 * transfer bytes histogram
137 * The spi_transfer.speed_hz can override this for each transfer.
144 * each word in a transfer (by specifying SPI_LSB_FIRST).
150 * The spi_transfer.bits_per_word can override this for each transfer.
167 * words of a transfer
407 * supported. If set, the SPI core will reject any transfer with an
410 * @min_speed_hz: Lowest supported transfer speed
411 * @max_speed_hz: Highest supported transfer speed
416 * @max_transfer_size: function that returns the max transfer size for
435 * @transfer: adds a message to the controller's transfer queue.
465 * @max_dma_len: Maximum length of a DMA transfer for the device.
467 * so the subsystem requests the driver to prepare the transfer hardware
469 * @transfer_one_message: the subsystem calls the driver to transfer a single
480 * @prepare_message: set up the controller to transfer a single message,
483 * @transfer_one: transfer a single spi_transfer.
485 * - return 0 if the transfer is finished,
486 * - return 1 if the transfer is still in progress. When
487 * the driver is finished with this transfer it must
489 * can issue the next transfer. If the transfer fails, the
503 * @slave_abort: abort the ongoing transfer request on an SPI slave controller
504 * @target_abort: abort the ongoing transfer request on an SPI target controller
532 * @fallback: fallback to PIO if DMA transfer return failure with
585 /* Limits on transfer speed */
615 * On some hardware transfer / message size may be constrained
616 * the limit may depend on device transfer settings.
656 * + The transfer() method may not sleep; its main role is
673 int (*transfer)(struct spi_device *spi, member
681 * exists and returns true then the transfer will be mapped
695 * controller transfer queueing mechanism. If these are used, the
696 * transfer() function above must NOT be specified by the driver.
739 struct spi_transfer *transfer);
823 /* Helper calls for driver to timestamp transfer */
943 * The spi_messages themselves consist of a series of read+write transfer
966 * transfer. If 0 the default (from @spi_device) is used.
968 * for this transfer. If 0 the default (from @spi_device) is used.
969 * @dummy_data: indicates transfer is dummy bytes transfer.
970 * @cs_off: performs the transfer with chipselect off.
971 * @cs_change: affects chipselect after this transfer completes
974 * @delay: delay to be introduced after this transfer before
976 * the next transfer or completing this @spi_message.
980 * transfer this transfer. Set to 0 if the SPI bus driver does
987 * snapshot for this transfer begins. Upon completing the SPI transfer,
989 * on the available snapshotting resolution (DMA transfer,
995 * @ptp_sts_word_post to the length of the transfer. This is done
997 * that a transfer-level snapshot taken from within the driver may still
1001 * hardware has some sort of assist for retrieving exact transfer timing,
1008 * @timestamped: true if the transfer has been timestamped
1029 * When the word size of the SPI transfer is not a power-of-two multiple
1035 * it stays selected until after the last transfer in a message. Drivers
1038 * (i) If the transfer isn't the last one in the message, this flag is
1044 * (ii) When the transfer is the last one in the message, the chip may
1045 * stay selected until the next transfer. On multi-device SPI busses
1054 * When SPI can transfer in 1x,2x or 4x. It can get this transfer information
1056 * two should both be set. User can set transfer mode with SPI_NBITS_SINGLE(1x)
1057 * SPI_NBITS_DUAL(2x) and SPI_NBITS_QUAD(4x) to support these three transfer.
1091 #define SPI_NBITS_SINGLE 0x01 /* 1-bit transfer */
1092 #define SPI_NBITS_DUAL 0x02 /* 2-bit transfer */
1093 #define SPI_NBITS_QUAD 0x04 /* 4-bit transfer */
1112 * @transfers: list of transfer segments in this transaction
1115 * addresses for each transfer buffer
1131 * a single programmed DMA transfer. On all systems, these messages are
1153 * last transfer ... allowing things like "read 16 bit length L"
1285 /* Transfer size limit must not be greater than message size limit */ in spi_max_transfer_size()
1312 * @xfer: Transfer descriptor
1314 * Compute a relevant timeout value for the given transfer. We derive the time
1318 * Returns: Transfer timeout value in milliseconds.
1328 /* SPI transfer replacement methods which make use of spi_res */
1343 * @replaced_after: the transfer after which the @replaced_transfers
1364 /* SPI transfer transformation methods */
1378 * All these synchronous SPI transfer routines are utilities layered
1379 * over the core async transfer primitive. Here, "synchronous" means
1380 * they will sleep uninterruptibly until the async transfer completes.
1389 * spi_sync_transfer - synchronous SPI data transfer
1395 * Does a synchronous SPI data transfer of the given spi_transfer array.
1575 * as the default transfer wordsize) is not included here.