Lines Matching defs:txp_softc
570 struct txp_softc { struct
571 device_t sc_dev; /* base device */
572 struct ethercom sc_arpcom; /* ethernet common */
573 struct txp_hostvar *sc_hostvar;
574 struct txp_boot_record *sc_boot;
575 bus_space_handle_t sc_bh; /* bus handle (regs) */
576 bus_space_tag_t sc_bt; /* bus tag (regs) */
577 bus_dma_tag_t sc_dmat; /* dma tag */
578 struct txp_cmd_ring sc_cmdring;
579 struct txp_rsp_ring sc_rspring;
580 struct txp_swdesc sc_txd[TX_ENTRIES];
581 void * sc_ih;
582 struct callout sc_tick;
583 struct ifmedia sc_ifmedia;
584 struct txp_tx_ring sc_txhir, sc_txlor;
585 struct txp_rxbuf_desc *sc_rxbufs;
586 struct txp_rx_ring sc_rxhir, sc_rxlor;
587 struct txp_swdesc sc_rxd[RXBUF_ENTRIES];
588 struct txp_swdesc *sc_rxd_pool[RXBUF_ENTRIES];
589 unsigned int sc_txd_pool_ptr;
590 u_int16_t sc_xcvr;
591 u_int16_t sc_seq;
592 struct txp_dma_alloc sc_boot_dma, sc_host_dma, sc_zero_dma;
593 struct txp_dma_alloc sc_rxhiring_dma, sc_rxloring_dma;
594 struct txp_dma_alloc sc_txhiring_dma, sc_txloring_dma;
595 struct txp_dma_alloc sc_cmdring_dma, sc_rspring_dma;
596 struct txp_dma_alloc sc_rxbufring_dma;
597 int sc_cold;
598 u_int32_t sc_rx_capability, sc_tx_capability;
599 int sc_flags;