Lines Matching defs:dwge_softc
263 struct dwge_softc { struct
264 struct device sc_dev;
265 int sc_node;
266 bus_space_tag_t sc_iot;
267 bus_space_handle_t sc_ioh;
268 bus_dma_tag_t sc_dmat;
269 void *sc_ih;
271 struct if_device sc_ifd;
273 struct arpcom sc_ac;
275 struct mii_data sc_mii;
277 uint64_t sc_fixed_media;
278 int sc_link;
279 int sc_phyloc;
280 int sc_force_thresh_dma_mode;
281 int sc_enh_desc;
282 int sc_defrag;
284 struct dwge_dmamem *sc_txring;
285 struct dwge_buf *sc_txbuf;
286 struct dwge_desc *sc_txdesc;
287 int sc_tx_prod;
288 int sc_tx_cons;
290 struct dwge_dmamem *sc_rxring;
291 struct dwge_buf *sc_rxbuf;
292 struct dwge_desc *sc_rxdesc;
293 int sc_rx_prod;
317 void dwge_setup_allwinner(struct dwge_softc *); argument