Searched refs:txout (Results 1 – 4 of 4) sorted by relevance
/openbmc/linux/drivers/gpu/drm/tests/ |
H A D | drm_dp_mst_helper_test.c | 286 const struct drm_dp_remote_i2c_read_tx *txin, *txout; in sideband_msg_req_equal() local 309 txout = &OUT.transactions[i]; in sideband_msg_req_equal() 311 if (txin->i2c_dev_id != txout->i2c_dev_id || in sideband_msg_req_equal() 312 txin->no_stop_bit != txout->no_stop_bit || in sideband_msg_req_equal() 313 txin->num_bytes != txout->num_bytes || in sideband_msg_req_equal() 315 txout->i2c_transaction_delay) in sideband_msg_req_equal() 318 if (memcmp(txin->bytes, txout->bytes, in sideband_msg_req_equal()
|
/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmsmac/ |
H A D | dma.c | 234 u16 txout; /* index of next descriptor to post */ member 1150 di->txin = di->txout = 0; in dma_txinit() 1218 if (di->txin == di->txout) in dma_txreclaim() 1275 u16 txout; in dma_txenq() local 1279 txout = di->txout; in dma_txenq() 1281 if (WARN_ON(nexttxd(di, txout) == di->txin)) in dma_txenq() 1303 if (txout == (di->ntxd - 1)) in dma_txenq() 1306 dma64_dd_upd(di, di->txd64, pa, txout, &flags, len); in dma_txenq() 1308 txout = nexttxd(di, txout); in dma_txenq() 1311 di->txp[prevtxd(di, txout)] = p; in dma_txenq() [all …]
|
/openbmc/linux/drivers/mailbox/ |
H A D | bcm-pdc-mailbox.c | 357 u32 txout; member 552 struct dma64dd *txd = &pdcs->txd_64[pdcs->txout]; in pdc_build_txd() 556 pdcs->pdc_idx, pdcs->txout, buf_len, flags); in pdc_build_txd() 564 pdcs->txout = NEXTTXD(pdcs->txout, pdcs->ntxpost); in pdc_build_txd() 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() 732 if (pdcs->tx_msg_start == pdcs->txout) { in pdc_tx_list_sg_add() 735 pdcs->src_sg[pdcs->txout] = sg; in pdc_tx_list_sg_add() 740 if (unlikely(pdcs->txout == (pdcs->ntxd - 1))) in pdc_tx_list_sg_add() 757 if (unlikely(pdcs->txout == (pdcs->ntxd - 1))) in pdc_tx_list_sg_add() [all …]
|
/openbmc/u-boot/drivers/net/ |
H A D | bcm-sf2-eth-gmac.c | 317 int txout = dma->cur_tx_index; in gmac_tx_packet() local 341 if (txout == (TX_BUF_NUM - 1)) { in gmac_tx_packet() 347 descp = ((dma64dd_t *)(dma->tx_desc_aligned)) + txout; in gmac_tx_packet() 366 dma->cur_tx_index = (txout + 1) & (TX_BUF_NUM - 1); in gmac_tx_packet()
|