Home
last modified time | relevance | path

Searched refs:txb (Results 1 – 16 of 16) sorted by relevance

/freebsd-14.2/sys/dev/xen/netback/
H A Dnetback_unit_tests.c184 netif_tx_back_ring_t txb; member
655 xnb_ring2pkt(&pkt, &xnb_unit_pvt.txb, xnb_unit_pvt.txb.req_cons); in xnb_txpkt2rsp_emptypkt()
941 xnb_ring2pkt(&pkt, &xnb_unit_pvt.txb, xnb_unit_pvt.txb.req_cons); in xnb_txpkt2rsp_wraps()
988 xnb_ring2pkt(&pkt, &xnb_unit_pvt.txb, xnb_unit_pvt.txb.req_cons); in xnb_pkt2mbufc_empty()
1101 xnb_ring2pkt(&pkt, &xnb_unit_pvt.txb, xnb_unit_pvt.txb.req_cons); in xnb_txpkt2gnttab_empty()
1132 xnb_ring2pkt(&pkt, &xnb_unit_pvt.txb, xnb_unit_pvt.txb.req_cons); in xnb_txpkt2gnttab_short()
1180 xnb_ring2pkt(&pkt, &xnb_unit_pvt.txb, xnb_unit_pvt.txb.req_cons); in xnb_txpkt2gnttab_2req()
1217 xnb_ring2pkt(&pkt, &xnb_unit_pvt.txb, xnb_unit_pvt.txb.req_cons); in xnb_txpkt2gnttab_2cluster()
1292 xnb_ring2pkt(&pkt, &xnb_unit_pvt.txb, xnb_unit_pvt.txb.req_cons); in xnb_update_mbufc_short()
1336 xnb_ring2pkt(&pkt, &xnb_unit_pvt.txb, xnb_unit_pvt.txb.req_cons); in xnb_update_mbufc_2req()
[all …]
H A Dnetback.c165 const netif_tx_back_ring_t *txb,
544 netif_tx_back_ring_t const* txb = in xnb_dump_rings() local
550 if ( !txb || !txb->sring || !rxb || !rxb->sring ) in xnb_dump_rings()
1427 netif_tx_back_ring_t *txb; in xnb_intr() local
1457 txb->sring->req_event = txb->req_cons + 1; in xnb_intr()
1814 num_consumed = xnb_ring2pkt(&pkt, txb, txb->req_cons); in xnb_recv()
1827 xnb_txpkt2rsp(&pkt, txb, 1); in xnb_recv()
1828 txb->req_cons += num_consumed; in xnb_recv()
1842 xnb_txpkt2rsp(&pkt, txb, 1); in xnb_recv()
1859 xnb_txpkt2rsp(&pkt, txb, 0); in xnb_recv()
[all …]
/freebsd-14.2/sys/contrib/device-tree/Bindings/media/i2c/
H A Dadv748x.yaml38 - enum: [ dpll, cp, hdmi, edid, repeater, infoframe, cbus, cec, sdp, txa, txb ]
39 - enum: [ dpll, cp, hdmi, edid, repeater, infoframe, cbus, cec, sdp, txa, txb ]
40 - enum: [ dpll, cp, hdmi, edid, repeater, infoframe, cbus, cec, sdp, txa, txb ]
41 - enum: [ dpll, cp, hdmi, edid, repeater, infoframe, cbus, cec, sdp, txa, txb ]
42 - enum: [ dpll, cp, hdmi, edid, repeater, infoframe, cbus, cec, sdp, txa, txb ]
43 - enum: [ dpll, cp, hdmi, edid, repeater, infoframe, cbus, cec, sdp, txa, txb ]
44 - enum: [ dpll, cp, hdmi, edid, repeater, infoframe, cbus, cec, sdp, txa, txb ]
45 - enum: [ dpll, cp, hdmi, edid, repeater, infoframe, cbus, cec, sdp, txa, txb ]
46 - enum: [ dpll, cp, hdmi, edid, repeater, infoframe, cbus, cec, sdp, txa, txb ]
47 - enum: [ dpll, cp, hdmi, edid, repeater, infoframe, cbus, cec, sdp, txa, txb ]
[all …]
H A Dadv748x.txt29 "infoframe", "cbus", "cec", "sdp", "txa", "txb"
71 "infoframe", "cbus", "cec", "sdp", "txa", "txb";
/freebsd-14.2/sys/dev/qlxge/
H A Dqls_isr.c46 qla_tx_buf_t *txb; in qls_tx_comp() local
54 txb = &ha->tx_ring[txr_idx].tx_buf[tx_idx]; in qls_tx_comp()
56 if (txb->m_head) { in qls_tx_comp()
58 bus_dmamap_sync(ha->tx_tag, txb->map, in qls_tx_comp()
60 bus_dmamap_unload(ha->tx_tag, txb->map); in qls_tx_comp()
61 m_freem(txb->m_head); in qls_tx_comp()
63 txb->m_head = NULL; in qls_tx_comp()
H A Dqls_hw.c1348 qla_tx_buf_t *txb; in qls_free_tx_dma() local
1354 txb = &ha->tx_ring[i].tx_buf[j]; in qls_free_tx_dma()
1356 if (txb->map) { in qls_free_tx_dma()
1357 bus_dmamap_destroy(ha->tx_tag, txb->map); in qls_free_tx_dma()
1376 qla_tx_buf_t *txb; in qls_alloc_tx_ring_dma() local
1419 txb = ha->tx_ring[ridx].tx_buf; in qls_alloc_tx_ring_dma()
1422 txb[i].oal_vaddr = v_addr; in qls_alloc_tx_ring_dma()
1423 txb[i].oal_paddr = p_addr; in qls_alloc_tx_ring_dma()
1438 qla_tx_buf_t *txb; in qls_alloc_tx_dma() local
1466 txb = &ha->tx_ring[i].tx_buf[j]; in qls_alloc_tx_dma()
[all …]
H A Dqls_os.c1227 qls_flush_tx_buf(qla_host_t *ha, qla_tx_buf_t *txb) in qls_flush_tx_buf() argument
1231 if (txb->m_head) { in qls_flush_tx_buf()
1232 bus_dmamap_unload(ha->tx_tag, txb->map); in qls_flush_tx_buf()
1234 m_freem(txb->m_head); in qls_flush_tx_buf()
1235 txb->m_head = NULL; in qls_flush_tx_buf()
/freebsd-14.2/sys/dev/qlxgbe/
H A Dql_os.c1684 qla_tx_buf_t *txb; in qla_alloc_xmt_bufs() local
1710 txb = &ha->tx_ring[j].tx_buf[i]; in qla_alloc_xmt_bufs()
1713 BUS_DMA_NOWAIT, &txb->map))) { in qla_alloc_xmt_bufs()
1737 if (txb->m_head) { in qla_clear_tx_buf()
1738 bus_dmamap_sync(ha->tx_tag, txb->map, in qla_clear_tx_buf()
1741 bus_dmamap_unload(ha->tx_tag, txb->map); in qla_clear_tx_buf()
1743 m_freem(txb->m_head); in qla_clear_tx_buf()
1744 txb->m_head = NULL; in qla_clear_tx_buf()
1747 txb->map = NULL; in qla_clear_tx_buf()
1750 if (txb->map) { in qla_clear_tx_buf()
[all …]
H A Dql_hw.c3732 qla_tx_buf_t *txb; in ql_hw_tx_done_locked() local
3743 txb = &ha->tx_ring[txr_idx].tx_buf[hw_tx_cntxt->txr_comp]; in ql_hw_tx_done_locked()
3751 if (txb->m_head) { in ql_hw_tx_done_locked()
3754 bus_dmamap_sync(ha->tx_tag, txb->map, in ql_hw_tx_done_locked()
3756 bus_dmamap_unload(ha->tx_tag, txb->map); in ql_hw_tx_done_locked()
3757 m_freem(txb->m_head); in ql_hw_tx_done_locked()
3759 txb->m_head = NULL; in ql_hw_tx_done_locked()
/freebsd-14.2/sys/contrib/device-tree/Bindings/sound/
H A Dfsl,asrc.txt25 - dma-names : Contains "rxa", "rxb", "rxc", "txa", "txb" and "txc".
77 "txa", "txb", "txc";
/freebsd-14.2/sys/dev/qlxgb/
H A Dqla_hw.c1683 qla_tx_buf_t *txb; in qla_hw_tx_done_locked() local
1691 txb = &ha->tx_buf[hw->txr_comp]; in qla_hw_tx_done_locked()
1699 if (txb->m_head) { in qla_hw_tx_done_locked()
1700 bus_dmamap_sync(ha->tx_tag, txb->map, in qla_hw_tx_done_locked()
1702 bus_dmamap_unload(ha->tx_tag, txb->map); in qla_hw_tx_done_locked()
1703 bus_dmamap_destroy(ha->tx_tag, txb->map); in qla_hw_tx_done_locked()
1704 m_freem(txb->m_head); in qla_hw_tx_done_locked()
1706 txb->map = (bus_dmamap_t)0; in qla_hw_tx_done_locked()
1707 txb->m_head = NULL; in qla_hw_tx_done_locked()
H A Dqla_os.c1171 qla_clear_tx_buf(qla_host_t *ha, qla_tx_buf_t *txb) in qla_clear_tx_buf() argument
1175 if (txb->m_head) { in qla_clear_tx_buf()
1176 bus_dmamap_unload(ha->tx_tag, txb->map); in qla_clear_tx_buf()
1177 bus_dmamap_destroy(ha->tx_tag, txb->map); in qla_clear_tx_buf()
1179 m_freem(txb->m_head); in qla_clear_tx_buf()
1180 txb->m_head = NULL; in qla_clear_tx_buf()
/freebsd-14.2/sys/contrib/device-tree/src/arm64/renesas/
H A Dsalvator-common.dtsi532 "infoframe", "cbus", "cec", "sdp", "txa", "txb" ;
/freebsd-14.2/sys/contrib/device-tree/src/arm/
H A Dimx6ul.dtsi366 "txa", "txb", "txc";
H A Dimx6qdl.dtsi477 "txa", "txb", "txc";
H A Dimx6sx.dtsi420 "txa", "txb", "txc";