Lines Matching refs:slave
7 between the master and the slave. The minimum requirement for running
8 CAIF over SPI is a SPI slave chip and two GPIOs (more details below).
9 Please note that running as a slave implies that you need to keep up
18 SPI slave device part, which is the module that you have to write if
24 - Functionality provided by the CAIF SPI slave device:
37 to map to different CAIF SPI slave devices.
45 SPI slave devices.
51 This function is called by the CAIF SPI slave device in order to
60 This function is called by the CAIF SPI slave device in order to
69 - Filling in the SPI slave device structure:
74 SPI slave devices).
77 - Filling in the SPI slave platform device structure:
79 Assign the SPI slave device structure as platform data.
114 static struct sspi_struct slave;
180 /* Initialize slave device. */
181 slave.sdev.init_xfer = sspi_init_xfer;
182 slave.sdev.sig_xfer = sspi_sig_xfer;
183 slave.sdev.clk_mhz = 13;
184 slave.sdev.priv = &slave;
185 slave.sdev.name = "spi_sspi";
190 slave_device.dev.platform_data = &slave.sdev;