Lines Matching refs:tx_bd
74 struct cpm_buf_desc __iomem *tx_bd = mspi->tx_bd;
90 out_be32(&tx_bd->cbd_bufaddr, mspi->tx_dma);
92 out_be32(&tx_bd->cbd_bufaddr, mspi->tx_dma + xfer_ofs);
93 out_be16(&tx_bd->cbd_datlen, xfer_len);
94 out_be16(&tx_bd->cbd_sc, BD_SC_READY | BD_SC_INTRPT | BD_SC_WRAP |
352 bds_ofs = cpm_muram_alloc(sizeof(*mspi->tx_bd) +
373 mspi->tx_bd = cpm_muram_addr(bds_ofs);
374 mspi->rx_bd = cpm_muram_addr(bds_ofs + sizeof(*mspi->tx_bd));
377 out_be16(&mspi->pram->tbase, cpm_muram_offset(mspi->tx_bd));
417 cpm_muram_free(cpm_muram_offset(mspi->tx_bd));