Lines Matching defs:cad_softc
265 struct cad_softc { struct
266 struct device sc_dev;
267 struct arpcom sc_ac;
269 bus_dma_tag_t sc_dmat;
270 bus_space_tag_t sc_iot;
271 bus_space_handle_t sc_ioh;
272 void *sc_ih;
273 int sc_node;
274 int sc_phy_loc;
275 enum cad_phy_mode sc_phy_mode;
276 unsigned char sc_rxhang_erratum;
277 unsigned char sc_rxdone;
278 unsigned char sc_dma64;
279 size_t sc_descsize;
280 uint32_t sc_qmask;
281 uint8_t sc_ntype1scr;
282 uint8_t sc_ntype2scr;
284 struct mii_data sc_mii;
286 struct timeout sc_tick;
288 struct cad_dmamem *sc_txring;
289 struct cad_buf *sc_txbuf;
290 caddr_t sc_txdesc;
291 unsigned int sc_tx_prod;
292 unsigned int sc_tx_cons;
294 struct if_rxring sc_rx_ring;
295 struct cad_dmamem *sc_rxring;
296 struct cad_buf *sc_rxbuf;
297 caddr_t sc_rxdesc;
298 unsigned int sc_rx_prod;
322 void cad_reset(struct cad_softc *); argument