Home
last modified time | relevance | path

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

/linux-4.4.14/drivers/crypto/qce/
Ddma.c27 dma->rxchan = dma_request_slave_channel_reason(dev, "rx"); in qce_dma_request()
28 if (IS_ERR(dma->rxchan)) { in qce_dma_request()
29 ret = PTR_ERR(dma->rxchan); in qce_dma_request()
44 dma_release_channel(dma->rxchan); in qce_dma_request()
53 dma_release_channel(dma->rxchan); in qce_dma_release()
108 struct dma_chan *rxchan = dma->rxchan; in qce_dma_prep_sgs() local
113 ret = qce_dma_prep_sg(rxchan, rx_sg, rx_nents, flags, DMA_MEM_TO_DEV, in qce_dma_prep_sgs()
124 dma_async_issue_pending(dma->rxchan); in qce_dma_issue_pending()
132 ret = dmaengine_terminate_all(dma->rxchan); in qce_dma_terminate_all()
Ddma.h40 struct dma_chan *rxchan; member
/linux-4.4.14/drivers/tty/serial/8250/
D8250_dma.c58 dmaengine_tx_status(dma->rxchan, dma->rx_cookie, &state); in __dma_rx_complete()
128 dmaengine_pause(dma->rxchan); in serial8250_rx_dma()
130 dmaengine_terminate_all(dma->rxchan); in serial8250_rx_dma()
140 desc = dmaengine_prep_slave_single(dma->rxchan, dma->rx_addr, in serial8250_rx_dma()
152 dma_async_issue_pending(dma->rxchan); in serial8250_rx_dma()
175 dma->rxchan = dma_request_slave_channel_compat(mask, in serial8250_request_dma()
178 if (!dma->rxchan) in serial8250_request_dma()
181 dmaengine_slave_config(dma->rxchan, &dma->rxconf); in serial8250_request_dma()
188 dma_release_channel(dma->rxchan); in serial8250_request_dma()
198 dma->rx_buf = dma_alloc_coherent(dma->rxchan->device->dev, dma->rx_size, in serial8250_request_dma()
[all …]
D8250_omap.c730 dma_sync_single_for_cpu(dma->rxchan->device->dev, dma->rx_addr, in __dma_rx_do_complete()
739 dmaengine_tx_status(dma->rxchan, dma->rx_cookie, &state); in __dma_rx_do_complete()
740 dmaengine_terminate_all(dma->rxchan); in __dma_rx_do_complete()
776 ret = dmaengine_pause(dma->rxchan); in omap_8250_rx_dma_flush()
830 desc = dmaengine_prep_slave_single(dma->rxchan, dma->rx_addr, in omap_8250_rx_dma()
844 dma_sync_single_for_device(dma->rxchan->device->dev, dma->rx_addr, in omap_8250_rx_dma()
847 dma_async_issue_pending(dma->rxchan); in omap_8250_rx_dma()
1369 if (up->dma && up->dma->rxchan) in omap8250_runtime_suspend()
1394 if (up->dma && up->dma->rxchan) in omap8250_runtime_resume()
D8250.h31 struct dma_chan *rxchan; member
/linux-4.4.14/drivers/spi/
Dspi-dw-mid.c66 dws->rxchan = dma_request_channel(mask, mid_spi_dma_chan_filter, rx); in mid_spi_dma_init()
67 if (!dws->rxchan) in mid_spi_dma_init()
69 dws->master->dma_rx = dws->rxchan; in mid_spi_dma_init()
82 dma_release_channel(dws->rxchan); in mid_spi_dma_init()
95 dmaengine_terminate_all(dws->rxchan); in mid_spi_dma_exit()
96 dma_release_channel(dws->rxchan); in mid_spi_dma_exit()
211 dmaengine_slave_config(dws->rxchan, &rxconf); in dw_spi_dma_prepare_rx()
213 rxdesc = dmaengine_prep_slave_sg(dws->rxchan, in dw_spi_dma_prepare_rx()
262 dma_async_issue_pending(dws->rxchan); in mid_spi_dma_transfer()
281 dmaengine_terminate_all(dws->rxchan); in mid_spi_dma_stop()
Dspi-pl022.c948 struct dma_chan *rxchan = pl022->dma_rx_channel; in configure_dma() local
954 if (!rxchan || !txchan) in configure_dma()
1044 dmaengine_slave_config(rxchan, &rx_conf); in configure_dma()
1066 rx_sglen = dma_map_sg(rxchan->device->dev, pl022->sgt_rx.sgl, in configure_dma()
1077 rxdesc = dmaengine_prep_slave_sg(rxchan, in configure_dma()
1100 dma_async_issue_pending(rxchan); in configure_dma()
1109 dmaengine_terminate_all(rxchan); in configure_dma()
1113 dma_unmap_sg(rxchan->device->dev, pl022->sgt_rx.sgl, in configure_dma()
1214 struct dma_chan *rxchan = pl022->dma_rx_channel; in terminate_dma() local
1217 dmaengine_terminate_all(rxchan); in terminate_dma()
Dspi-dw.h130 struct dma_chan *rxchan; member
Dspi-atmel.c733 struct dma_chan *rxchan = as->dma.chan_rx; in atmel_spi_next_xfer_dma_submit() local
744 if (!rxchan || !txchan) in atmel_spi_next_xfer_dma_submit()
781 rxdesc = dmaengine_prep_slave_sg(rxchan, &as->dma.sgrx, 1, in atmel_spi_next_xfer_dma_submit()
812 rxchan->device->device_issue_pending(rxchan); in atmel_spi_next_xfer_dma_submit()
/linux-4.4.14/Documentation/devicetree/bindings/soc/ti/
Dkeystone-navigator-dma.txt47 - Rx DMA channel configuration register region (rxchan).
79 reg-names = "global", "txchan", "rxchan",
89 reg-names = "global", "txchan", "rxchan",
/linux-4.4.14/drivers/tty/serial/
Damba-pl011.c714 struct dma_chan *rxchan = uap->dmarx.chan; in pl011_dma_rx_trigger_dma() local
719 if (!rxchan) in pl011_dma_rx_trigger_dma()
725 desc = dmaengine_prep_slave_sg(rxchan, &sgbuf->sg, 1, in pl011_dma_rx_trigger_dma()
735 dmaengine_terminate_all(rxchan); in pl011_dma_rx_trigger_dma()
743 dma_async_issue_pending(rxchan); in pl011_dma_rx_trigger_dma()
836 struct dma_chan *rxchan = dmarx->chan; in pl011_dma_rx_irq() local
848 if (dmaengine_pause(rxchan)) in pl011_dma_rx_irq()
850 dmastat = rxchan->device->device_tx_status(rxchan, in pl011_dma_rx_irq()
863 dmaengine_terminate_all(rxchan); in pl011_dma_rx_irq()
885 struct dma_chan *rxchan = dmarx->chan; in pl011_dma_rx_callback() local
[all …]
/linux-4.4.14/drivers/net/wan/
Dcosa.c159 struct channel_data *rxchan; member
1855 cosa->rxchan = cosa->chan + ((cosa->rxsize & 0xe000) >> 13); in rx_interrupt()
1860 if (cosa->rxchan->setup_rx) in rx_interrupt()
1861 cosa->rxbuf = cosa->rxchan->setup_rx(cosa->rxchan, cosa->rxsize); in rx_interrupt()
1866 cosa->num, cosa->rxchan->num); in rx_interrupt()
1875 if (cosa_dma_able(cosa->rxchan, cosa->rxbuf, cosa->rxsize & 0x1fff)) { in rx_interrupt()
1913 cosa->num, cosa->rxchan->num, cosa->rxsize); in eot_interrupt()
1922 if (!cosa_dma_able(cosa->rxchan, cosa->rxbuf, cosa->rxsize)) in eot_interrupt()
1924 if (cosa->rxchan->rx_done) in eot_interrupt()
1925 if (cosa->rxchan->rx_done(cosa->rxchan)) in eot_interrupt()
[all …]
/linux-4.4.14/drivers/net/ethernet/ti/
Ddavinci_emac.c335 struct cpdma_chan *rxchan; member
1042 ret = cpdma_chan_submit(priv->rxchan, skb, skb->data, in emac_rx_handler()
1395 num_rx_pkts = cpdma_chan_process(priv->rxchan, budget); in emac_poll()
1569 ret = cpdma_chan_submit(priv->rxchan, skb, skb->data, in emac_dev_open()
2015 priv->rxchan = cpdma_chan_create(priv->dma, rx_chan_num(EMAC_DEF_RX_CH), in davinci_emac_probe()
2017 if (WARN_ON(!priv->txchan || !priv->rxchan)) { in davinci_emac_probe()
2078 if (priv->rxchan) in davinci_emac_probe()
2079 cpdma_chan_destroy(priv->rxchan); in davinci_emac_probe()
2102 if (priv->rxchan) in davinci_emac_remove()
2103 cpdma_chan_destroy(priv->rxchan); in davinci_emac_remove()
/linux-4.4.14/arch/arm/boot/dts/
Dk2l-netcp.dtsi125 reg-names = "global", "txchan", "rxchan",
Dk2e-netcp.dtsi126 reg-names = "global", "txchan", "rxchan",
Dk2hk-netcp.dtsi143 reg-names = "global", "txchan", "rxchan",