Lines Matching defs:sq_softc
106 struct sq_softc { struct
107 device_t sc_dev;
110 bus_space_tag_t sc_hpct;
111 bus_space_handle_t sc_hpch;
115 bus_space_tag_t sc_regt;
116 bus_space_handle_t sc_regh;
118 bus_dma_tag_t sc_dmat;
120 struct ethercom sc_ethercom;
121 uint8_t sc_enaddr[ETHER_ADDR_LEN];
123 int sc_type;
125 struct sq_control* sc_control;
130 int sc_ncdseg;
131 bus_dma_segment_t sc_cdseg;
132 bus_dmamap_t sc_cdmap;
135 int sc_nextrx;
138 bus_dma_segment_t sc_rxseg[SQ_NRXDESC];
139 bus_dmamap_t sc_rxmap[SQ_NRXDESC];
140 struct mbuf* sc_rxmbuf[SQ_NRXDESC];
142 int sc_nexttx;
166 SQ_CDTXSYNC(struct sq_softc *sc, int __x, int __n, int ops) in SQ_CDTXSYNC() argument