Lines Matching defs:xe_softc
27 struct xe_softc { struct
28 struct mb8795_softc sc_mb8795; /* glue to MI code */
30 bus_space_tag_t sc_bst; /* bus space tag */
31 bus_space_handle_t sc_bsh; /* bus space handle */
33 struct nextdma_softc *sc_rxdma;
34 struct nextdma_softc *sc_txdma;
36 bus_dmamap_t sc_tx_dmamap; /* should we have multiple of these? */
37 struct mbuf *sc_tx_mb_head; /* pointer to data for this command */
38 int sc_tx_loaded;
39 u_char *sc_txbuf; /* to solve alignment problems, we
43 bus_dmamap_t sc_rx_dmamap[MB8795_NRXBUFS];
44 struct mbuf *sc_rx_mb_head[MB8795_NRXBUFS];
45 int sc_rx_loaded_idx;
46 int sc_rx_completed_idx;
47 int sc_rx_handled_idx;