Lines Matching defs:ti_iic_softc
164 struct ti_iic_softc { struct
165 device_t sc_dev;
166 struct i2c_controller sc_ic;
167 kmutex_t sc_lock;
168 device_t sc_i2cdev;
170 bus_space_tag_t sc_iot;
171 bus_space_handle_t sc_ioh;
173 enum ti_iic_type sc_type;
175 void *sc_ih;
176 kmutex_t sc_mtx;
177 kcondvar_t sc_cv;
178 ti_i2cop_t sc_op;
179 int sc_opflags;
180 int sc_buflen;
181 int sc_bufidx;
182 char *sc_buf;
184 bool sc_busy;
209 static int ti_iic_reset(struct ti_iic_softc *); argument