Home
last modified time | relevance | path

Searched refs:tx_cntxt (Results 1 – 4 of 4) sorted by relevance

/freebsd/sys/dev/qlxgbe/
H A Dql_ioctl.c415 tx_state->base_p_addr = ha->hw.tx_cntxt[i].tx_ring_paddr; in ql_get_tx_state()
416 tx_state->cons_p_addr = ha->hw.tx_cntxt[i].tx_cons_paddr; in ql_get_tx_state()
417 tx_state->tx_prod_reg = ha->hw.tx_cntxt[i].tx_prod_reg; in ql_get_tx_state()
418 tx_state->tx_cntxt_id = ha->hw.tx_cntxt[i].tx_cntxt_id; in ql_get_tx_state()
419 tx_state->txr_free = ha->hw.tx_cntxt[i].txr_free; in ql_get_tx_state()
420 tx_state->txr_next = ha->hw.tx_cntxt[i].txr_next; in ql_get_tx_state()
421 tx_state->txr_comp = ha->hw.tx_cntxt[i].txr_comp; in ql_get_tx_state()
H A Dql_hw.c1258 qla_hw_tx_cntxt_t *tx_cntxt; in ql_alloc_dma() local
1285 tx_cntxt = (qla_hw_tx_cntxt_t *)&hw->tx_cntxt[i]; in ql_alloc_dma()
1287 tx_cntxt->tx_ring_base = (q80_tx_cmd_t *)vaddr; in ql_alloc_dma()
1288 tx_cntxt->tx_ring_paddr = paddr; in ql_alloc_dma()
1295 tx_cntxt = (qla_hw_tx_cntxt_t *)&hw->tx_cntxt[i]; in ql_alloc_dma()
1297 tx_cntxt->tx_cons = (uint32_t *)vaddr; in ql_alloc_dma()
1298 tx_cntxt->tx_cons_paddr = paddr; in ql_alloc_dma()
2232 cmd |= (ha->hw.tx_cntxt[i].tx_cntxt_id << 16); in ql_get_stats()
2535 if (hw->tx_cntxt[txr_idx].txr_free <= (num_tx_cmds + QLA_TX_MIN_FREE)) { in ql_hw_send()
2537 if (hw->tx_cntxt[txr_idx].txr_free <= in ql_hw_send()
[all …]
H A Dql_hw.h1622 qla_hw_tx_cntxt_t tx_cntxt[NUM_TX_RINGS]; member
1719 WRITE_REG32(ha, ha->hw.tx_cntxt[i].tx_prod_reg, val)
H A Dql_os.c1265 tx_idx = ha->hw.tx_cntxt[txr_idx].txr_next; in qla_send()