Lines Matching defs:spi_device
180 struct spi_device { struct
181 struct device dev;
182 struct spi_controller *controller;
183 struct spi_controller *master; /* Compatibility layer */
184 u32 max_speed_hz;
185 u8 chip_select;
186 u8 bits_per_word;
187 bool rt;
210 u32 mode;
211 int irq;
212 void *controller_state;
213 void *controller_data;
214 char modalias[SPI_NAME_SIZE];
215 const char *driver_override;
216 struct gpio_desc *cs_gpiod; /* Chip select GPIO descriptor */
240 static inline struct spi_device *to_spi_device(const struct device *dev) in to_spi_device() argument