blob: dfe0475f791954a1aec8abc8f239801c38d8a9c5 [file] [log] [blame]
Dan Williamsc5d2b9f2007-09-20 15:49:08 -07001 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
Dan Williams28405d82009-01-05 17:14:31 -0700164 DMAENGINE DRIVER DEVELOPER NOTES
Dan Williamsc5d2b9f2007-09-20 15:49:08 -0700174.1 Conformance points
Dan Williams28405d82009-01-05 17:14:31 -0700184.2 "My application needs exclusive control of hardware channels"
Dan Williamsc5d2b9f2007-09-20 15:49:08 -070019
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 *
Dan Williamsa08abd82009-06-03 11:43:59 -070057async_<operation>(<op specific parameters>, struct async_submit ctl *submit)
Dan Williamsc5d2b9f2007-09-20 15:49:08 -070058
593.2 Supported operations:
Dan Williams099f53c2009-04-08 14:28:37 -070060memcpy - 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
Dan Williamsc5d2b9f2007-09-20 15:49:08 -070067
683.3 Descriptor management:
69The return value is non-NULL and points to a 'descriptor' when the operation
70has been queued to execute asynchronously. Descriptors are recycled
71resources, under control of the offload engine driver, to be reused as
72operations complete. When an application needs to submit a chain of
73operations it must guarantee that the descriptor is not automatically recycled
74before the dependency is submitted. This requires that all descriptors be
75acknowledged by the application before the offload engine driver is allowed to
76recycle (or free) the descriptor. A descriptor can be acked by one of the
77following methods:
781/ setting the ASYNC_TX_ACK flag if no child operations are to be submitted
Dan Williams88ba2aa2009-04-09 16:16:18 -0700792/ submitting an unacknowledged descriptor as a dependency to another
80 async_tx call will implicitly set the acknowledged state.
Dan Williamsc5d2b9f2007-09-20 15:49:08 -0700813/ calling async_tx_ack() on the descriptor.
82
833.4 When does the operation execute?
84Operations do not immediately issue after return from the
85async_<operation> call. Offload engine drivers batch operations to
86improve performance by reducing the number of mmio cycles needed to
87manage the channel. Once a driver-specific threshold is met the driver
88automatically issues pending operations. An application can force this
89event by calling async_tx_issue_pending_all(). This operates on all
90channels since the application has no knowledge of channel to operation
91mapping.
92
933.5 When does the operation complete?
94There are two methods for an application to learn about the completion
95of an operation.
961/ Call dma_wait_for_async_tx(). This call causes the CPU to spin while
97 it polls for the completion of the operation. It handles dependency
98 chains and issuing pending operations.
992/ Specify a completion callback. The callback routine runs in tasklet
100 context if the offload engine driver supports interrupts, or it is
101 called in application context if the operation is carried out
102 synchronously in software. The callback can be set in the call to
103 async_<operation>, or when the application needs to submit a chain of
104 unknown length it can use the async_trigger_callback() routine to set a
105 completion interrupt/callback at the end of the chain.
106
1073.6 Constraints:
1081/ Calls to async_<operation> are not permitted in IRQ context. Other
109 contexts are permitted provided constraint #2 is not violated.
1102/ Completion callback routines cannot submit new operations. This
111 results in recursion in the synchronous case and spin_locks being
112 acquired twice in the asynchronous case.
113
1143.7 Example:
115Perform a xor->copy->xor operation where each operation depends on the
116result from the previous operation:
117
118void complete_xor_copy_xor(void *param)
119{
120 printk("complete\n");
121}
122
123int run_xor_copy_xor(struct page **xor_srcs,
124 int xor_src_cnt,
125 struct page *xor_dest,
126 size_t xor_len,
127 struct page *copy_src,
128 struct page *copy_dest,
129 size_t copy_len)
130{
131 struct dma_async_tx_descriptor *tx;
132
133 tx = async_xor(xor_dest, xor_srcs, 0, xor_src_cnt, xor_len,
134 ASYNC_TX_XOR_DROP_DST, NULL, NULL, NULL);
Dan Williams88ba2aa2009-04-09 16:16:18 -0700135 tx = async_memcpy(copy_dest, copy_src, 0, 0, copy_len, tx, NULL, NULL);
Dan Williamsc5d2b9f2007-09-20 15:49:08 -0700136 tx = async_xor(xor_dest, xor_srcs, 0, xor_src_cnt, xor_len,
Dan Williams88ba2aa2009-04-09 16:16:18 -0700137 ASYNC_TX_XOR_DROP_DST | ASYNC_TX_ACK,
Dan Williamsc5d2b9f2007-09-20 15:49:08 -0700138 tx, complete_xor_copy_xor, NULL);
139
140 async_tx_issue_pending_all();
141}
142
143See include/linux/async_tx.h for more information on the flags. See the
144ops_run_* and ops_complete_* routines in drivers/md/raid5.c for more
145implementation examples.
146
1474 DRIVER DEVELOPMENT NOTES
Dan Williams28405d82009-01-05 17:14:31 -0700148
Dan Williamsc5d2b9f2007-09-20 15:49:08 -07001494.1 Conformance points:
150There are a few conformance points required in dmaengine drivers to
151accommodate assumptions made by applications using the async_tx API:
1521/ Completion callbacks are expected to happen in tasklet context
1532/ dma_async_tx_descriptor fields are never manipulated in IRQ context
1543/ Use async_tx_run_dependencies() in the descriptor clean up path to
155 handle submission of dependent operations
156
Dan Williams28405d82009-01-05 17:14:31 -07001574.2 "My application needs exclusive control of hardware channels"
158Primarily this requirement arises from cases where a DMA engine driver
159is being used to support device-to-memory operations. A channel that is
160performing these operations cannot, for many platform specific reasons,
161be shared. For these cases the dma_request_channel() interface is
162provided.
Dan Williamsc5d2b9f2007-09-20 15:49:08 -0700163
Dan Williams28405d82009-01-05 17:14:31 -0700164The interface is:
165struct dma_chan *dma_request_channel(dma_cap_mask_t mask,
166 dma_filter_fn filter_fn,
167 void *filter_param);
Dan Williamsc5d2b9f2007-09-20 15:49:08 -0700168
Dan Williams28405d82009-01-05 17:14:31 -0700169Where dma_filter_fn is defined as:
170typedef bool (*dma_filter_fn)(struct dma_chan *chan, void *filter_param);
Dan Williamsc5d2b9f2007-09-20 15:49:08 -0700171
Dan Williams28405d82009-01-05 17:14:31 -0700172When the optional 'filter_fn' parameter is set to NULL
173dma_request_channel simply returns the first channel that satisfies the
174capability mask. Otherwise, when the mask parameter is insufficient for
175specifying the necessary channel, the filter_fn routine can be used to
176disposition the available channels in the system. The filter_fn routine
177is called once for each free channel in the system. Upon seeing a
178suitable channel filter_fn returns DMA_ACK which flags that channel to
179be the return value from dma_request_channel. A channel allocated via
180this interface is exclusive to the caller, until dma_release_channel()
181is called.
Dan Williamsc5d2b9f2007-09-20 15:49:08 -0700182
Dan Williams28405d82009-01-05 17:14:31 -0700183The DMA_PRIVATE capability flag is used to tag dma devices that should
184not be used by the general-purpose allocator. It can be set at
185initialization time if it is known that a channel will always be
186private. Alternatively, it is set when dma_request_channel() finds an
187unused "public" channel.
Dan Williamsc5d2b9f2007-09-20 15:49:08 -0700188
Dan Williams28405d82009-01-05 17:14:31 -0700189A couple caveats to note when implementing a driver and consumer:
1901/ Once a channel has been privately allocated it will no longer be
191 considered by the general-purpose allocator even after a call to
192 dma_release_channel().
1932/ Since capabilities are specified at the device level a dma_device
194 with multiple channels will either have all channels public, or all
195 channels private.
Dan Williamsc5d2b9f2007-09-20 15:49:08 -0700196
1975 SOURCE
Dan Williams28405d82009-01-05 17:14:31 -0700198
199include/linux/dmaengine.h: core header file for DMA drivers and api users
Dan Williamsc5d2b9f2007-09-20 15:49:08 -0700200drivers/dma/dmaengine.c: offload engine channel management routines
201drivers/dma/: location for offload engine drivers
202include/linux/async_tx.h: core header file for the async_tx api
203crypto/async_tx/async_tx.c: async_tx interface to dmaengine and common code
204crypto/async_tx/async_memcpy.c: copy offload
205crypto/async_tx/async_memset.c: memory fill offload
206crypto/async_tx/async_xor.c: xor and xor zero sum offload