Home
last modified time | relevance | path

Searched refs:txin (Results 1 – 9 of 9) sorted by relevance

/drivers/gpu/drm/selftests/
Dtest-drm_dp_mst_helper.c49 const struct drm_dp_remote_i2c_read_tx *txin, *txout; in sideband_msg_req_equal() local
71 txin = &IN.transactions[i]; in sideband_msg_req_equal()
74 if (txin->i2c_dev_id != txout->i2c_dev_id || in sideband_msg_req_equal()
75 txin->no_stop_bit != txout->no_stop_bit || in sideband_msg_req_equal()
76 txin->num_bytes != txout->num_bytes || in sideband_msg_req_equal()
77 txin->i2c_transaction_delay != in sideband_msg_req_equal()
81 if (memcmp(txin->bytes, txout->bytes, in sideband_msg_req_equal()
82 txin->num_bytes) != 0) in sideband_msg_req_equal()
/drivers/net/wan/
Dhd64572.c132 port->txin = 0; in sca_init_port()
535 sca_in(DSR_TX(port->chan), card), port->txin, port->txlast, in sca_dump_rings()
571 desc = desc_address(port, port->txin + 1, 1); in sca_xmit()
579 desc = desc_address(port, port->txin, 1); in sca_xmit()
580 buff = buffer_offset(port, port->txin, 1); in sca_xmit()
587 port->txin = (port->txin + 1) % card->tx_ring_buffers; in sca_xmit()
588 sca_outl(desc_offset(port, port->txin, 1), in sca_xmit()
593 desc = desc_address(port, port->txin + 1, 1); in sca_xmit()
Dhd64570.c153 port->txin = 0; in sca_init_port()
587 sca_in(DSR_TX(phy_node(port)), card), port->txin, port->txlast, in sca_dump_rings()
628 desc = desc_address(port, port->txin + 1, 1); in sca_xmit()
636 desc = desc_address(port, port->txin, 1); in sca_xmit()
637 buff = buffer_offset(port, port->txin, 1); in sca_xmit()
657 port->txin = next_desc(port, port->txin, 1); in sca_xmit()
658 sca_outw(desc_offset(port, port->txin, 1), in sca_xmit()
663 desc = desc_address(port, port->txin + 1, 1); in sca_xmit()
Dpci200syn.c73 u16 txin; /* tx ring buffer 'in' and 'last' pointers */ member
Dc101.c68 u16 txin; /* tx ring buffer 'in' and 'last' pointers */ member
Dpc300too.c87 u16 txin; /* tx ring buffer 'in' and 'last' pointers */ member
Dn2.c104 u16 txin; /* tx ring buffer 'in' and 'last' pointers */ member
/drivers/mailbox/
Dbcm-pdc-mailbox.c346 u32 txin; member
608 num_frags = pdcs->txin_numd[pdcs->txin]; in pdc_receive_one()
611 dma_unmap_sg(dev, pdcs->src_sg[pdcs->txin], in pdc_receive_one()
612 sg_nents(pdcs->src_sg[pdcs->txin]), DMA_TO_DEVICE); in pdc_receive_one()
614 pdcs->txin = (pdcs->txin + num_frags) & pdcs->ntxpost; in pdc_receive_one()
637 pdcs->pdc_idx, pdcs->txin, pdcs->txout, pdcs->rxin, in pdc_receive_one()
724 tx_avail = pdcs->ntxpost - NTXDACTIVE(pdcs->txin, pdcs->txout, in pdc_tx_list_sg_add()
1019 pdcs->txin = 0; in pdc_ring_init()
1140 tx_avail = pdcs->ntxpost - NTXDACTIVE(pdcs->txin, pdcs->txout, in pdc_rings_full()
/drivers/net/wireless/broadcom/brcm80211/brcmsmac/
Ddma.c233 u16 txin; /* index of next descriptor to reclaim */ member
1150 di->txin = di->txout = 0; in dma_txinit()
1218 if (di->txin == di->txout) in dma_txreclaim()
1281 if (WARN_ON(nexttxd(di, txout) == di->txin)) in dma_txenq()
1369 di->dma.txavail = di->ntxd - ntxdactive(di, di->txin, di->txout) - in dma_update_txavail()
1392 if (di->dma.txavail == 0 || nexttxd(di, di->txout) == di->txin) in dma_txfast()
1442 return ntxdactive(di, di->txin, di->txout); in dma_txpending()
1486 start = di->txin; in dma_getnexttxp()
1530 di->txin = i; in dma_getnexttxp()
1553 uint i = di->txin; in dma_walk_packets()