/freebsd/sys/contrib/device-tree/Bindings/media/i2c/ |
H A D | adv748x.yaml | 15 HDMI receiver. They can output CSI-2 on two independent outputs TXA and TXB 38 - 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 ] [all …]
|
H A D | adv748x.txt | 4 HDMI receiver. They can output CSI-2 on two independent outputs TXA and TXB 29 "infoframe", "cbus", "cec", "sdp", "txa", "txb" 49 TXB source 11 59 while for TXB only 1 data lane is valid. See video-interfaces.txt 71 "infoframe", "cbus", "cec", "sdp", "txa", "txb";
|
/freebsd/sys/dev/xen/netback/ |
H A D | netback_unit_tests.c | 185 netif_tx_back_ring_t txb; member 350 BACK_RING_INIT(&xnb_unit_pvt.txb, xnb_unit_pvt.txs, PAGE_SIZE); in setup_pvt_data() 396 num_consumed = xnb_ring2pkt(&pkt, &xnb_unit_pvt.txb, in xnb_ring2pkt_emptyring() 397 xnb_unit_pvt.txb.req_cons); in xnb_ring2pkt_emptyring() 420 num_consumed = xnb_ring2pkt(&pkt, &xnb_unit_pvt.txb, in xnb_ring2pkt_1req() 421 xnb_unit_pvt.txb.req_cons); in xnb_ring2pkt_1req() 457 num_consumed = xnb_ring2pkt(&pkt, &xnb_unit_pvt.txb, in xnb_ring2pkt_2req() 458 xnb_unit_pvt.txb.req_cons); in xnb_ring2pkt_2req() 500 num_consumed = xnb_ring2pkt(&pkt, &xnb_unit_pvt.txb, in xnb_ring2pkt_3req() 501 xnb_unit_pvt.txb.req_cons); in xnb_ring2pkt_3req() [all …]
|
H A D | netback.c | 153 static int xnb_recv(netif_tx_back_ring_t *txb, domid_t otherend, 165 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() 564 "req_cons", txb->req_cons, rxb->req_cons, in xnb_dump_rings() 565 "nr_ents", txb->nr_ents, rxb->nr_ents, in xnb_dump_rings() 566 "rsp_prod_pvt", txb->rsp_prod_pvt, rxb->rsp_prod_pvt, in xnb_dump_rings() 567 "sring", txb->sring, rxb->sring, in xnb_dump_rings() 568 "sring->req_prod", txb->sring->req_prod, rxb->sring->req_prod, in xnb_dump_rings() 569 "sring->req_event", txb->sring->req_event, rxb->sring->req_event, in xnb_dump_rings() [all …]
|
/freebsd/sys/dev/qlxge/ |
H A D | qls_isr.c | 46 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 D | qls_hw.c | 1348 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 D | qls_os.c | 1227 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/sys/dev/qlxgbe/ |
H A D | ql_os.c | 69 static void qla_clear_tx_buf(qla_host_t *ha, qla_tx_buf_t *txb); 1684 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() 1733 qla_clear_tx_buf(qla_host_t *ha, qla_tx_buf_t *txb) in qla_clear_tx_buf() argument 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() [all …]
|
H A D | ql_hw.c | 3732 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/sys/contrib/device-tree/Bindings/sound/ |
H A D | fsl,asrc.txt | 25 - dma-names : Contains "rxa", "rxb", "rxc", "txa", "txb" and "txc". 77 "txa", "txb", "txc";
|
H A D | apple,mca.yaml | 52 as associated to the TXA, RXA, TXB, RXB units.
|
/freebsd/sys/dev/qlxgb/ |
H A D | qla_hw.c | 1683 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 D | qla_os.c | 1171 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/sys/contrib/dev/rtw88/ |
H A D | rtw8822b.c | 310 /* TXA+RXA or TXB+RXB */ in rtw8822b_set_channel_rfe_efem() 313 /* TXB+RXA or TXA+RXB */ in rtw8822b_set_channel_rfe_efem() 340 /* TXA+RXA or TXB+RXB */ in rtw8822b_set_channel_rfe_ifem() 343 /* TXB+RXA or TXA+RXB */ in rtw8822b_set_channel_rfe_ifem()
|
/freebsd/sys/contrib/device-tree/src/arm64/renesas/ |
H A D | salvator-common.dtsi | 532 "infoframe", "cbus", "cec", "sdp", "txa", "txb" ;
|
/freebsd/sys/contrib/device-tree/src/arm/nxp/imx/ |
H A D | imx6ul.dtsi | 366 "txa", "txb", "txc";
|
H A D | imx6qdl.dtsi | 477 "txa", "txb", "txc";
|
H A D | imx6sx.dtsi | 420 "txa", "txb", "txc";
|