Lines Matching defs:emdtv_softc
64 struct emdtv_softc { struct
65 device_t sc_dev;
66 struct usbd_device *sc_udev;
68 device_t sc_cirdev;
69 device_t sc_dtvdev;
71 uint16_t sc_vendor, sc_product;
73 bool sc_subdevs_attached;
75 const struct emdtv_board *sc_board;
77 struct lg3303 *sc_lg3303;
78 struct xc3028 *sc_xc3028;
80 struct i2c_controller sc_i2c;
81 kmutex_t sc_i2c_lock;
83 uint8_t sc_eeprom[EMDTV_EEPROM_LEN];
85 struct usbd_interface *sc_iface;
87 struct usbd_pipe *sc_isoc_pipe;
88 int sc_isoc_buflen;
89 int sc_isoc_maxpacketsize;
90 struct emdtv_isoc_xfer sc_ix[EMDTV_NXFERS];
114 void emdtv_dtv_attach(struct emdtv_softc *); argument