Lines Matching defs:gfe_txqueue
66 struct gfe_txqueue { struct
67 struct ifqueue txq_pendq; /* these are ready to go to the GT */
68 struct gfe_dmamem txq_desc_mem; /* transmit descriptor memory */
69 struct gfe_dmamem txq_buf_mem; /* transmit buffer memory */
70 unsigned int txq_lo; /* next to be given to GT */
71 unsigned int txq_fi; /* next to be returned to CPU */
72 unsigned int txq_ei_gapcount; /* counter until next EI */
73 unsigned int txq_nactive; /* number of active descriptors */
74 unsigned int txq_outptr; /* where to put next transmit packet */
75 unsigned int txq_inptr; /* start of 1st queued tx packet */
76 uint32_t txq_intrbits; /* bits to write to EIMR */
77 uint32_t txq_esdcmrbits; /* bits to write to ESDCMR */
78 uint32_t txq_epsrbits; /* bits to test with EPSR */
79 volatile struct gt_eth_desc *txq_descs; /* ptr to tx descriptors */
80 bus_addr_t txq_ectdp; /* offset to cur. tx desc ptr reg */
81 bus_addr_t txq_desc_busaddr; /* bus addr of tx descriptors */
82 bus_addr_t txq_buf_busaddr; /* bus addr of tx buffers */