Lines Matching defs:fxp_softc

181 struct fxp_softc {  struct
182 void *ifp; /* per-interface network data */
183 struct resource *fxp_res[2]; /* I/O and IRQ resources */
184 struct resource_spec *fxp_spec; /* the resource spec we used */
185 void *ih; /* interrupt handler cookie */
186 const struct fxp_ident *ident;
187 struct mtx sc_mtx;
188 bus_dma_tag_t fxp_txmtag; /* bus DMA tag for Tx mbufs */
189 bus_dma_tag_t fxp_rxmtag; /* bus DMA tag for Rx mbufs */
190 bus_dma_tag_t fxp_stag; /* bus DMA tag for stats */
191 bus_dmamap_t fxp_smap; /* bus DMA map for stats */
192 bus_dma_tag_t cbl_tag; /* DMA tag for the TxCB list */
193 bus_dmamap_t cbl_map; /* DMA map for the TxCB list */
194 bus_dma_tag_t mcs_tag; /* DMA tag for the multicast setup */
195 bus_dmamap_t mcs_map; /* DMA map for the multicast setup */
196 bus_dmamap_t spare_map; /* spare DMA map */
197 struct fxp_desc_list fxp_desc; /* descriptors management struct */
198 int maxtxseg; /* maximum # of TX segments */
199 int maxsegsize; /* maximum size of a TX segment */
200 int tx_queued; /* # of active TxCB's */
201 struct fxp_stats *fxp_stats; /* Pointer to interface stats */
202 uint32_t stats_addr; /* DMA address of the stats structure */
203 struct fxp_hwstats fxp_hwstats;
204 int rx_idle_secs; /* # of seconds RX has been idle */
205 struct callout stat_ch; /* stat callout */
206 int watchdog_timer; /* seconds until chip reset */
207 struct fxp_cb_mcs *mcsp; /* Pointer to mcast setup descriptor */
208 uint32_t mcs_addr; /* DMA address of the multicast cmd */
209 struct ifmedia sc_media; /* media information */
210 device_t miibus;
211 device_t dev;
212 int tunable_int_delay; /* interrupt delay value for ucode */
213 int tunable_bundle_max; /* max # frames per interrupt (ucode) */
214 int rnr; /* RNR events */
215 int eeprom_size; /* size of serial EEPROM */
216 int suspended; /* 0 = normal 1 = suspended or dead */
217 int cu_resume_bug;
218 int revision;
219 int flags;
220 int if_flags;
221 uint8_t rfa_size;
222 uint32_t tx_cmd;
223 uint16_t eeprom[256];