async_tx: add support for asynchronous GF multiplication
[deliverable/linux.git] / Documentation / crypto / async-tx-api.txt
CommitLineData
c5d2b9f4
DW
1 Asynchronous Transfers/Transforms API
2
31 INTRODUCTION
4
52 GENEALOGY
6
73 USAGE
83.1 General format of the API
93.2 Supported operations
103.3 Descriptor management
113.4 When does the operation execute?
123.5 When does the operation complete?
133.6 Constraints
143.7 Example
15
28405d8d 164 DMAENGINE DRIVER DEVELOPER NOTES
c5d2b9f4 174.1 Conformance points
28405d8d 184.2 "My application needs exclusive control of hardware channels"
c5d2b9f4
DW
19
205 SOURCE
21
22---
23
241 INTRODUCTION
25
26The async_tx API provides methods for describing a chain of asynchronous
27bulk memory transfers/transforms with support for inter-transactional
28dependencies. It is implemented as a dmaengine client that smooths over
29the details of different hardware offload engine implementations. Code
30that is written to the API can optimize for asynchronous operation and
31the API will fit the chain of operations to the available offload
32resources.
33
342 GENEALOGY
35
36The API was initially designed to offload the memory copy and
37xor-parity-calculations of the md-raid5 driver using the offload engines
38present in the Intel(R) Xscale series of I/O processors. It also built
39on the 'dmaengine' layer developed for offloading memory copies in the
40network stack using Intel(R) I/OAT engines. The following design
41features surfaced as a result:
421/ implicit synchronous path: users of the API do not need to know if
43 the platform they are running on has offload capabilities. The
44 operation will be offloaded when an engine is available and carried out
45 in software otherwise.
462/ cross channel dependency chains: the API allows a chain of dependent
47 operations to be submitted, like xor->copy->xor in the raid5 case. The
48 API automatically handles cases where the transition from one operation
49 to another implies a hardware channel switch.
503/ dmaengine extensions to support multiple clients and operation types
51 beyond 'memcpy'
52
533 USAGE
54
553.1 General format of the API:
56struct dma_async_tx_descriptor *
a08abd8c 57async_<operation>(<op specific parameters>, struct async_submit ctl *submit)
c5d2b9f4
DW
58
593.2 Supported operations:
099f53cb
DW
60memcpy - memory copy between a source and a destination buffer
61memset - fill a destination buffer with a byte value
62xor - xor a series of source buffers and write the result to a
63 destination buffer
64xor_val - xor a series of source buffers and set a flag if the
65 result is zero. The implementation attempts to prevent
66 writes to memory
b2f46fd8
DW
67pq - generate the p+q (raid6 syndrome) from a series of source buffers
68pq_val - validate that a p and or q buffer are in sync with a given series of
69 sources
c5d2b9f4
DW
70
713.3 Descriptor management:
72The return value is non-NULL and points to a 'descriptor' when the operation
73has been queued to execute asynchronously. Descriptors are recycled
74resources, under control of the offload engine driver, to be reused as
75operations complete. When an application needs to submit a chain of
76operations it must guarantee that the descriptor is not automatically recycled
77before the dependency is submitted. This requires that all descriptors be
78acknowledged by the application before the offload engine driver is allowed to
79recycle (or free) the descriptor. A descriptor can be acked by one of the
80following methods:
811/ setting the ASYNC_TX_ACK flag if no child operations are to be submitted
88ba2aa5
DW
822/ submitting an unacknowledged descriptor as a dependency to another
83 async_tx call will implicitly set the acknowledged state.
c5d2b9f4
DW
843/ calling async_tx_ack() on the descriptor.
85
863.4 When does the operation execute?
87Operations do not immediately issue after return from the
88async_<operation> call. Offload engine drivers batch operations to
89improve performance by reducing the number of mmio cycles needed to
90manage the channel. Once a driver-specific threshold is met the driver
91automatically issues pending operations. An application can force this
92event by calling async_tx_issue_pending_all(). This operates on all
93channels since the application has no knowledge of channel to operation
94mapping.
95
963.5 When does the operation complete?
97There are two methods for an application to learn about the completion
98of an operation.
991/ Call dma_wait_for_async_tx(). This call causes the CPU to spin while
100 it polls for the completion of the operation. It handles dependency
101 chains and issuing pending operations.
1022/ Specify a completion callback. The callback routine runs in tasklet
103 context if the offload engine driver supports interrupts, or it is
104 called in application context if the operation is carried out
105 synchronously in software. The callback can be set in the call to
106 async_<operation>, or when the application needs to submit a chain of
107 unknown length it can use the async_trigger_callback() routine to set a
108 completion interrupt/callback at the end of the chain.
109
1103.6 Constraints:
1111/ Calls to async_<operation> are not permitted in IRQ context. Other
112 contexts are permitted provided constraint #2 is not violated.
1132/ Completion callback routines cannot submit new operations. This
114 results in recursion in the synchronous case and spin_locks being
115 acquired twice in the asynchronous case.
116
1173.7 Example:
118Perform a xor->copy->xor operation where each operation depends on the
119result from the previous operation:
120
04ce9ab3 121void callback(void *param)
c5d2b9f4 122{
04ce9ab3
DW
123 struct completion *cmp = param;
124
125 complete(cmp);
c5d2b9f4
DW
126}
127
04ce9ab3
DW
128void run_xor_copy_xor(struct page **xor_srcs,
129 int xor_src_cnt,
130 struct page *xor_dest,
131 size_t xor_len,
132 struct page *copy_src,
133 struct page *copy_dest,
134 size_t copy_len)
c5d2b9f4
DW
135{
136 struct dma_async_tx_descriptor *tx;
04ce9ab3
DW
137 addr_conv_t addr_conv[xor_src_cnt];
138 struct async_submit_ctl submit;
139 addr_conv_t addr_conv[NDISKS];
140 struct completion cmp;
141
142 init_async_submit(&submit, ASYNC_TX_XOR_DROP_DST, NULL, NULL, NULL,
143 addr_conv);
144 tx = async_xor(xor_dest, xor_srcs, 0, xor_src_cnt, xor_len, &submit)
c5d2b9f4 145
04ce9ab3
DW
146 submit->depend_tx = tx;
147 tx = async_memcpy(copy_dest, copy_src, 0, 0, copy_len, &submit);
148
149 init_completion(&cmp);
150 init_async_submit(&submit, ASYNC_TX_XOR_DROP_DST | ASYNC_TX_ACK, tx,
151 callback, &cmp, addr_conv);
152 tx = async_xor(xor_dest, xor_srcs, 0, xor_src_cnt, xor_len, &submit);
c5d2b9f4
DW
153
154 async_tx_issue_pending_all();
04ce9ab3
DW
155
156 wait_for_completion(&cmp);
c5d2b9f4
DW
157}
158
159See include/linux/async_tx.h for more information on the flags. See the
160ops_run_* and ops_complete_* routines in drivers/md/raid5.c for more
161implementation examples.
162
1634 DRIVER DEVELOPMENT NOTES
28405d8d 164
c5d2b9f4
DW
1654.1 Conformance points:
166There are a few conformance points required in dmaengine drivers to
167accommodate assumptions made by applications using the async_tx API:
1681/ Completion callbacks are expected to happen in tasklet context
1692/ dma_async_tx_descriptor fields are never manipulated in IRQ context
1703/ Use async_tx_run_dependencies() in the descriptor clean up path to
171 handle submission of dependent operations
172
28405d8d
DW
1734.2 "My application needs exclusive control of hardware channels"
174Primarily this requirement arises from cases where a DMA engine driver
175is being used to support device-to-memory operations. A channel that is
176performing these operations cannot, for many platform specific reasons,
177be shared. For these cases the dma_request_channel() interface is
178provided.
179
180The interface is:
181struct dma_chan *dma_request_channel(dma_cap_mask_t mask,
182 dma_filter_fn filter_fn,
183 void *filter_param);
184
185Where dma_filter_fn is defined as:
186typedef bool (*dma_filter_fn)(struct dma_chan *chan, void *filter_param);
187
188When the optional 'filter_fn' parameter is set to NULL
189dma_request_channel simply returns the first channel that satisfies the
190capability mask. Otherwise, when the mask parameter is insufficient for
191specifying the necessary channel, the filter_fn routine can be used to
192disposition the available channels in the system. The filter_fn routine
193is called once for each free channel in the system. Upon seeing a
194suitable channel filter_fn returns DMA_ACK which flags that channel to
195be the return value from dma_request_channel. A channel allocated via
196this interface is exclusive to the caller, until dma_release_channel()
197is called.
198
199The DMA_PRIVATE capability flag is used to tag dma devices that should
200not be used by the general-purpose allocator. It can be set at
201initialization time if it is known that a channel will always be
202private. Alternatively, it is set when dma_request_channel() finds an
203unused "public" channel.
204
205A couple caveats to note when implementing a driver and consumer:
2061/ Once a channel has been privately allocated it will no longer be
207 considered by the general-purpose allocator even after a call to
208 dma_release_channel().
2092/ Since capabilities are specified at the device level a dma_device
210 with multiple channels will either have all channels public, or all
211 channels private.
c5d2b9f4
DW
212
2135 SOURCE
28405d8d
DW
214
215include/linux/dmaengine.h: core header file for DMA drivers and api users
c5d2b9f4
DW
216drivers/dma/dmaengine.c: offload engine channel management routines
217drivers/dma/: location for offload engine drivers
218include/linux/async_tx.h: core header file for the async_tx api
219crypto/async_tx/async_tx.c: async_tx interface to dmaengine and common code
220crypto/async_tx/async_memcpy.c: copy offload
221crypto/async_tx/async_memset.c: memory fill offload
222crypto/async_tx/async_xor.c: xor and xor zero sum offload
This page took 0.159846 seconds and 5 git commands to generate.