The spi_dma_xfer() function uses DMA to exchange data between the SPI master and an SPI device. The prototype for this function is:
int spi_dma_xfer( int fd, uint32_t device, void *paddr, int len);
The arguments are:
typedef struct { uint64_t rpaddr; uint64_t wpaddr; } spi_dma_paddr_t;
The rpaddr and wpaddr are physical addresses.
The spi_dma_xfer() function returns the number of bytes of data that it successfully exchanged. If an error occurred, the function returns -1 and sets errno:
An SPI driver typically considers it to be an error if the number of bytes returned by this function isn't the same as the number of bytes it asked the function to exchange.