1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2012-2014, The Linux Foundation. All rights reserved.
6 #include <linux/dmaengine.h>
7 #include <crypto/scatterwalk.h>
11 int qce_dma_request(struct device
*dev
, struct qce_dma_data
*dma
)
15 dma
->txchan
= dma_request_chan(dev
, "tx");
16 if (IS_ERR(dma
->txchan
))
17 return PTR_ERR(dma
->txchan
);
19 dma
->rxchan
= dma_request_chan(dev
, "rx");
20 if (IS_ERR(dma
->rxchan
)) {
21 ret
= PTR_ERR(dma
->rxchan
);
25 dma
->result_buf
= kmalloc(QCE_RESULT_BUF_SZ
+ QCE_IGNORE_BUF_SZ
,
27 if (!dma
->result_buf
) {
32 dma
->ignore_buf
= dma
->result_buf
+ QCE_RESULT_BUF_SZ
;
36 dma_release_channel(dma
->rxchan
);
38 dma_release_channel(dma
->txchan
);
42 void qce_dma_release(struct qce_dma_data
*dma
)
44 dma_release_channel(dma
->txchan
);
45 dma_release_channel(dma
->rxchan
);
46 kfree(dma
->result_buf
);
50 qce_sgtable_add(struct sg_table
*sgt
, struct scatterlist
*new_sgl
,
53 struct scatterlist
*sg
= sgt
->sgl
, *sg_last
= NULL
;
62 return ERR_PTR(-EINVAL
);
64 while (new_sgl
&& sg
&& max_ents
) {
65 sg_set_page(sg
, sg_page(new_sgl
), new_sgl
->length
,
69 new_sgl
= sg_next(new_sgl
);
76 static int qce_dma_prep_sg(struct dma_chan
*chan
, struct scatterlist
*sg
,
77 int nents
, unsigned long flags
,
78 enum dma_transfer_direction dir
,
79 dma_async_tx_callback cb
, void *cb_param
)
81 struct dma_async_tx_descriptor
*desc
;
87 desc
= dmaengine_prep_slave_sg(chan
, sg
, nents
, dir
, flags
);
92 desc
->callback_param
= cb_param
;
93 cookie
= dmaengine_submit(desc
);
95 return dma_submit_error(cookie
);
98 int qce_dma_prep_sgs(struct qce_dma_data
*dma
, struct scatterlist
*rx_sg
,
99 int rx_nents
, struct scatterlist
*tx_sg
, int tx_nents
,
100 dma_async_tx_callback cb
, void *cb_param
)
102 struct dma_chan
*rxchan
= dma
->rxchan
;
103 struct dma_chan
*txchan
= dma
->txchan
;
104 unsigned long flags
= DMA_PREP_INTERRUPT
| DMA_CTRL_ACK
;
107 ret
= qce_dma_prep_sg(rxchan
, rx_sg
, rx_nents
, flags
, DMA_MEM_TO_DEV
,
112 return qce_dma_prep_sg(txchan
, tx_sg
, tx_nents
, flags
, DMA_DEV_TO_MEM
,
116 void qce_dma_issue_pending(struct qce_dma_data
*dma
)
118 dma_async_issue_pending(dma
->rxchan
);
119 dma_async_issue_pending(dma
->txchan
);
122 int qce_dma_terminate_all(struct qce_dma_data
*dma
)
126 ret
= dmaengine_terminate_all(dma
->rxchan
);
127 return ret
?: dmaengine_terminate_all(dma
->txchan
);