Lines Matching defs:bfe_softc
583 struct bfe_softc struct
585 if_t bfe_ifp; /* interface info */
586 device_t bfe_dev;
587 device_t bfe_miibus;
588 bus_dma_tag_t bfe_tag;
589 bus_dma_tag_t bfe_parent_tag;
590 bus_dma_tag_t bfe_tx_tag, bfe_rx_tag;
591 bus_dmamap_t bfe_tx_map, bfe_rx_map;
592 bus_dma_tag_t bfe_txmbuf_tag, bfe_rxmbuf_tag;
593 bus_dmamap_t bfe_rx_sparemap;
594 void *bfe_intrhand;
595 struct resource *bfe_irq;
596 struct resource *bfe_res;
597 struct callout bfe_stat_co;
598 struct bfe_hw_stats bfe_stats;
599 struct bfe_desc *bfe_tx_list, *bfe_rx_list;
600 struct bfe_tx_data bfe_tx_ring[BFE_TX_LIST_CNT]; /* XXX */
601 struct bfe_rx_data bfe_rx_ring[BFE_RX_LIST_CNT]; /* XXX */
602 struct mtx bfe_mtx;
603 u_int32_t bfe_flags;
606 u_int32_t bfe_imask;
607 u_int32_t bfe_dma_offset;
608 u_int32_t bfe_tx_cnt, bfe_tx_cons, bfe_tx_prod;
609 u_int32_t bfe_rx_prod, bfe_rx_cons;
610 u_int32_t bfe_tx_dma, bfe_rx_dma;
611 int bfe_watchdog_timer;
612 u_int8_t bfe_phyaddr; /* Address of the card's PHY */
613 u_int8_t bfe_mdc_port;
614 u_int8_t bfe_core_unit;
615 u_char bfe_enaddr[6];
616 int bfe_if_flags;