Lines Matching defs:spi_device
179 struct spi_device { struct
180 struct device dev;
181 struct spi_controller *controller;
182 struct spi_controller *master; /* Compatibility layer */
183 u32 max_speed_hz;
184 u8 chip_select;
185 u8 bits_per_word;
186 bool rt;
199 u32 mode;
200 int irq;
201 void *controller_state;
202 void *controller_data;
203 char modalias[SPI_NAME_SIZE];
204 const char *driver_override;
205 struct gpio_desc *cs_gpiod; /* Chip select gpio desc */
229 static inline struct spi_device *to_spi_device(const struct device *dev) in to_spi_device() argument