Symbol: txp_softc
sys/dev/pci/if_txp.c
100
static void txp_dma_free(struct txp_softc *, struct txp_dma_alloc *);
sys/dev/pci/if_txp.c
101
static int txp_dma_malloc(struct txp_softc *, bus_size_t, struct txp_dma_alloc *, int);
sys/dev/pci/if_txp.c
102
static void txp_set_filter(struct txp_softc *);
sys/dev/pci/if_txp.c
104
static int txp_cmd_desc_numfree(struct txp_softc *);
sys/dev/pci/if_txp.c
105
static int txp_command(struct txp_softc *, uint16_t, uint16_t, uint32_t,
sys/dev/pci/if_txp.c
107
static int txp_command2(struct txp_softc *, uint16_t, uint16_t,
sys/dev/pci/if_txp.c
110
static int txp_response(struct txp_softc *, uint32_t, uint16_t, uint16_t,
sys/dev/pci/if_txp.c
112
static void txp_rsp_fixup(struct txp_softc *, struct txp_rsp_desc *,
sys/dev/pci/if_txp.c
114
static void txp_capabilities(struct txp_softc *);
sys/dev/pci/if_txp.c
118
static void txp_tx_reclaim(struct txp_softc *, struct txp_tx_ring *,
sys/dev/pci/if_txp.c
120
static void txp_rxbuf_reclaim(struct txp_softc *);
sys/dev/pci/if_txp.c
121
static void txp_rx_reclaim(struct txp_softc *, struct txp_rx_ring *,
sys/dev/pci/if_txp.c
124
static void txp_rxd_free(struct txp_softc *, struct txp_swdesc *);
sys/dev/pci/if_txp.c
125
static struct txp_swdesc *txp_rxd_alloc(struct txp_softc *);
sys/dev/pci/if_txp.c
1257
txp_dma_malloc(struct txp_softc *sc, bus_size_t size,
sys/dev/pci/if_txp.c
127
CFATTACH_DECL_NEW(txp, sizeof(struct txp_softc), txp_probe, txp_attach,
sys/dev/pci/if_txp.c
1292
txp_dma_free(struct txp_softc *sc, struct txp_dma_alloc *dma)
sys/dev/pci/if_txp.c
1305
struct txp_softc *sc = ifp->if_softc;
sys/dev/pci/if_txp.c
1370
txp_init(struct txp_softc *sc)
sys/dev/pci/if_txp.c
1404
struct txp_softc *sc = vsc;
sys/dev/pci/if_txp.c
1445
struct txp_softc *sc = ifp->if_softc;
sys/dev/pci/if_txp.c
1619
txp_command(struct txp_softc *sc, uint16_t id, uint16_t in1, uint32_t in2,
sys/dev/pci/if_txp.c
1641
txp_command2(struct txp_softc *sc, uint16_t id, uint16_t in1, uint32_t in2,
sys/dev/pci/if_txp.c
1716
txp_response(struct txp_softc *sc, uint32_t ridx, uint16_t id, uint16_t seq,
sys/dev/pci/if_txp.c
1764
txp_rsp_fixup(struct txp_softc *sc, struct txp_rsp_desc *rsp,
sys/dev/pci/if_txp.c
1790
txp_cmd_desc_numfree(struct txp_softc *sc)
sys/dev/pci/if_txp.c
1814
txp_stop(struct txp_softc *sc)
sys/dev/pci/if_txp.c
1831
struct txp_softc *sc = ifp->if_softc;
sys/dev/pci/if_txp.c
184
struct txp_softc *sc = device_private(self);
sys/dev/pci/if_txp.c
1868
struct txp_softc *sc = ifp->if_softc;
sys/dev/pci/if_txp.c
1982
txp_set_filter(struct txp_softc *sc)
sys/dev/pci/if_txp.c
2063
txp_capabilities(struct txp_softc *sc)
sys/dev/pci/if_txp.c
373
txp_chip_init(struct txp_softc *sc)
sys/dev/pci/if_txp.c
410
txp_reset_adapter(struct txp_softc *sc)
sys/dev/pci/if_txp.c
436
txp_download_fw(struct txp_softc *sc)
sys/dev/pci/if_txp.c
517
txp_download_fw_wait(struct txp_softc *sc)
sys/dev/pci/if_txp.c
544
txp_download_fw_section(struct txp_softc *sc,
sys/dev/pci/if_txp.c
626
struct txp_softc *sc = vsc;
sys/dev/pci/if_txp.c
679
txp_rxd_alloc(struct txp_softc *sc)
sys/dev/pci/if_txp.c
687
txp_rxd_free(struct txp_softc *sc, struct txp_swdesc *sd)
sys/dev/pci/if_txp.c
694
txp_rxd_idx(struct txp_softc *sc, struct txp_swdesc *sd)
sys/dev/pci/if_txp.c
701
txp_txd_idx(struct txp_softc *sc, struct txp_swdesc *sd)
sys/dev/pci/if_txp.c
708
txp_rx_reclaim(struct txp_softc *sc, struct txp_rx_ring *r,
sys/dev/pci/if_txp.c
826
txp_rxbuf_reclaim(struct txp_softc *sc)
sys/dev/pci/if_txp.c
89
static void txp_stop(struct txp_softc *);
sys/dev/pci/if_txp.c
90
static void txp_init(struct txp_softc *);
sys/dev/pci/if_txp.c
906
txp_tx_reclaim(struct txp_softc *sc, struct txp_tx_ring *r,
sys/dev/pci/if_txp.c
93
static int txp_chip_init(struct txp_softc *);
sys/dev/pci/if_txp.c
94
static int txp_reset_adapter(struct txp_softc *);
sys/dev/pci/if_txp.c
95
static int txp_download_fw(struct txp_softc *);
sys/dev/pci/if_txp.c
96
static int txp_download_fw_wait(struct txp_softc *);
sys/dev/pci/if_txp.c
962
struct txp_softc *sc;
sys/dev/pci/if_txp.c
97
static int txp_download_fw_section(struct txp_softc *,
sys/dev/pci/if_txp.c
980
txp_alloc_rings(struct txp_softc *sc)
sys/dev/pci/if_txp.c
99
static int txp_alloc_rings(struct txp_softc *);