Lines Matching defs:xilinx_spi
81 struct xilinx_spi { struct
83 struct spi_bitbang bitbang;
84 struct completion done;
85 void __iomem *regs; /* virt. address of the control registers */
87 int irq;
89 u8 *rx_ptr; /* pointer in the Tx buffer */
90 const u8 *tx_ptr; /* pointer in the Rx buffer */
91 u8 bytes_per_word;
92 int buffer_size; /* buffer size in words */
93 u32 cs_inactive; /* Level of the CS pins when inactive*/
94 unsigned int (*read_fn)(void __iomem *);
118 static void xilinx_spi_tx(struct xilinx_spi *xspi) in xilinx_spi_tx() argument