~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/crypto/async-tx-api.rst

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /Documentation/crypto/async-tx-api.rst (Architecture m68k) and /Documentation/crypto/async-tx-api.rst (Architecture alpha)


  1 .. SPDX-License-Identifier: GPL-2.0                 1 .. SPDX-License-Identifier: GPL-2.0
  2                                                     2 
  3 =====================================               3 =====================================
  4 Asynchronous Transfers/Transforms API               4 Asynchronous Transfers/Transforms API
  5 =====================================               5 =====================================
  6                                                     6 
  7 .. Contents                                         7 .. Contents
  8                                                     8 
  9   1. INTRODUCTION                                   9   1. INTRODUCTION
 10                                                    10 
 11   2 GENEALOGY                                      11   2 GENEALOGY
 12                                                    12 
 13   3 USAGE                                          13   3 USAGE
 14   3.1 General format of the API                    14   3.1 General format of the API
 15   3.2 Supported operations                         15   3.2 Supported operations
 16   3.3 Descriptor management                        16   3.3 Descriptor management
 17   3.4 When does the operation execute?             17   3.4 When does the operation execute?
 18   3.5 When does the operation complete?            18   3.5 When does the operation complete?
 19   3.6 Constraints                                  19   3.6 Constraints
 20   3.7 Example                                      20   3.7 Example
 21                                                    21 
 22   4 DMAENGINE DRIVER DEVELOPER NOTES               22   4 DMAENGINE DRIVER DEVELOPER NOTES
 23   4.1 Conformance points                           23   4.1 Conformance points
 24   4.2 "My application needs exclusive control      24   4.2 "My application needs exclusive control of hardware channels"
 25                                                    25 
 26   5 SOURCE                                         26   5 SOURCE
 27                                                    27 
 28 1. Introduction                                    28 1. Introduction
 29 ===============                                    29 ===============
 30                                                    30 
 31 The async_tx API provides methods for describi     31 The async_tx API provides methods for describing a chain of asynchronous
 32 bulk memory transfers/transforms with support      32 bulk memory transfers/transforms with support for inter-transactional
 33 dependencies.  It is implemented as a dmaengin     33 dependencies.  It is implemented as a dmaengine client that smooths over
 34 the details of different hardware offload engi     34 the details of different hardware offload engine implementations.  Code
 35 that is written to the API can optimize for as     35 that is written to the API can optimize for asynchronous operation and
 36 the API will fit the chain of operations to th     36 the API will fit the chain of operations to the available offload
 37 resources.                                         37 resources.
 38                                                    38 
 39 2.Genealogy                                        39 2.Genealogy
 40 ===========                                        40 ===========
 41                                                    41 
 42 The API was initially designed to offload the      42 The API was initially designed to offload the memory copy and
 43 xor-parity-calculations of the md-raid5 driver     43 xor-parity-calculations of the md-raid5 driver using the offload engines
 44 present in the Intel(R) Xscale series of I/O p     44 present in the Intel(R) Xscale series of I/O processors.  It also built
 45 on the 'dmaengine' layer developed for offload     45 on the 'dmaengine' layer developed for offloading memory copies in the
 46 network stack using Intel(R) I/OAT engines.  T     46 network stack using Intel(R) I/OAT engines.  The following design
 47 features surfaced as a result:                     47 features surfaced as a result:
 48                                                    48 
 49 1. implicit synchronous path: users of the API     49 1. implicit synchronous path: users of the API do not need to know if
 50    the platform they are running on has offloa     50    the platform they are running on has offload capabilities.  The
 51    operation will be offloaded when an engine      51    operation will be offloaded when an engine is available and carried out
 52    in software otherwise.                          52    in software otherwise.
 53 2. cross channel dependency chains: the API al     53 2. cross channel dependency chains: the API allows a chain of dependent
 54    operations to be submitted, like xor->copy-     54    operations to be submitted, like xor->copy->xor in the raid5 case.  The
 55    API automatically handles cases where the t     55    API automatically handles cases where the transition from one operation
 56    to another implies a hardware channel switc     56    to another implies a hardware channel switch.
 57 3. dmaengine extensions to support multiple cl     57 3. dmaengine extensions to support multiple clients and operation types
 58    beyond 'memcpy'                                 58    beyond 'memcpy'
 59                                                    59 
 60 3. Usage                                           60 3. Usage
 61 ========                                           61 ========
 62                                                    62 
 63 3.1 General format of the API                      63 3.1 General format of the API
 64 -----------------------------                      64 -----------------------------
 65                                                    65 
 66 ::                                                 66 ::
 67                                                    67 
 68   struct dma_async_tx_descriptor *                 68   struct dma_async_tx_descriptor *
 69   async_<operation>(<op specific parameters>,      69   async_<operation>(<op specific parameters>, struct async_submit_ctl *submit)
 70                                                    70 
 71 3.2 Supported operations                           71 3.2 Supported operations
 72 ------------------------                           72 ------------------------
 73                                                    73 
 74 ========  ====================================     74 ========  ====================================================================
 75 memcpy    memory copy between a source and a d     75 memcpy    memory copy between a source and a destination buffer
 76 memset    fill a destination buffer with a byt     76 memset    fill a destination buffer with a byte value
 77 xor       xor a series of source buffers and w     77 xor       xor a series of source buffers and write the result to a
 78           destination buffer                       78           destination buffer
 79 xor_val   xor a series of source buffers and s     79 xor_val   xor a series of source buffers and set a flag if the
 80           result is zero.  The implementation      80           result is zero.  The implementation attempts to prevent
 81           writes to memory                         81           writes to memory
 82 pq        generate the p+q (raid6 syndrome) fr     82 pq        generate the p+q (raid6 syndrome) from a series of source buffers
 83 pq_val    validate that a p and or q buffer ar     83 pq_val    validate that a p and or q buffer are in sync with a given series of
 84           sources                                  84           sources
 85 datap     (raid6_datap_recov) recover a raid6      85 datap     (raid6_datap_recov) recover a raid6 data block and the p block
 86           from the given sources                   86           from the given sources
 87 2data     (raid6_2data_recov) recover 2 raid6      87 2data     (raid6_2data_recov) recover 2 raid6 data blocks from the given
 88           sources                                  88           sources
 89 ========  ====================================     89 ========  ====================================================================
 90                                                    90 
 91 3.3 Descriptor management                          91 3.3 Descriptor management
 92 -------------------------                          92 -------------------------
 93                                                    93 
 94 The return value is non-NULL and points to a '     94 The return value is non-NULL and points to a 'descriptor' when the operation
 95 has been queued to execute asynchronously.  De     95 has been queued to execute asynchronously.  Descriptors are recycled
 96 resources, under control of the offload engine     96 resources, under control of the offload engine driver, to be reused as
 97 operations complete.  When an application need     97 operations complete.  When an application needs to submit a chain of
 98 operations it must guarantee that the descript     98 operations it must guarantee that the descriptor is not automatically recycled
 99 before the dependency is submitted.  This requ     99 before the dependency is submitted.  This requires that all descriptors be
100 acknowledged by the application before the off    100 acknowledged by the application before the offload engine driver is allowed to
101 recycle (or free) the descriptor.  A descripto    101 recycle (or free) the descriptor.  A descriptor can be acked by one of the
102 following methods:                                102 following methods:
103                                                   103 
104 1. setting the ASYNC_TX_ACK flag if no child o    104 1. setting the ASYNC_TX_ACK flag if no child operations are to be submitted
105 2. submitting an unacknowledged descriptor as     105 2. submitting an unacknowledged descriptor as a dependency to another
106    async_tx call will implicitly set the ackno    106    async_tx call will implicitly set the acknowledged state.
107 3. calling async_tx_ack() on the descriptor.      107 3. calling async_tx_ack() on the descriptor.
108                                                   108 
109 3.4 When does the operation execute?              109 3.4 When does the operation execute?
110 ------------------------------------              110 ------------------------------------
111                                                   111 
112 Operations do not immediately issue after retu    112 Operations do not immediately issue after return from the
113 async_<operation> call.  Offload engine driver    113 async_<operation> call.  Offload engine drivers batch operations to
114 improve performance by reducing the number of     114 improve performance by reducing the number of mmio cycles needed to
115 manage the channel.  Once a driver-specific th    115 manage the channel.  Once a driver-specific threshold is met the driver
116 automatically issues pending operations.  An a    116 automatically issues pending operations.  An application can force this
117 event by calling async_tx_issue_pending_all().    117 event by calling async_tx_issue_pending_all().  This operates on all
118 channels since the application has no knowledg    118 channels since the application has no knowledge of channel to operation
119 mapping.                                          119 mapping.
120                                                   120 
121 3.5 When does the operation complete?             121 3.5 When does the operation complete?
122 -------------------------------------             122 -------------------------------------
123                                                   123 
124 There are two methods for an application to le    124 There are two methods for an application to learn about the completion
125 of an operation.                                  125 of an operation.
126                                                   126 
127 1. Call dma_wait_for_async_tx().  This call ca    127 1. Call dma_wait_for_async_tx().  This call causes the CPU to spin while
128    it polls for the completion of the operatio    128    it polls for the completion of the operation.  It handles dependency
129    chains and issuing pending operations.         129    chains and issuing pending operations.
130 2. Specify a completion callback.  The callbac    130 2. Specify a completion callback.  The callback routine runs in tasklet
131    context if the offload engine driver suppor    131    context if the offload engine driver supports interrupts, or it is
132    called in application context if the operat    132    called in application context if the operation is carried out
133    synchronously in software.  The callback ca    133    synchronously in software.  The callback can be set in the call to
134    async_<operation>, or when the application     134    async_<operation>, or when the application needs to submit a chain of
135    unknown length it can use the async_trigger    135    unknown length it can use the async_trigger_callback() routine to set a
136    completion interrupt/callback at the end of    136    completion interrupt/callback at the end of the chain.
137                                                   137 
138 3.6 Constraints                                   138 3.6 Constraints
139 ---------------                                   139 ---------------
140                                                   140 
141 1. Calls to async_<operation> are not permitte    141 1. Calls to async_<operation> are not permitted in IRQ context.  Other
142    contexts are permitted provided constraint     142    contexts are permitted provided constraint #2 is not violated.
143 2. Completion callback routines cannot submit     143 2. Completion callback routines cannot submit new operations.  This
144    results in recursion in the synchronous cas    144    results in recursion in the synchronous case and spin_locks being
145    acquired twice in the asynchronous case.       145    acquired twice in the asynchronous case.
146                                                   146 
147 3.7 Example                                       147 3.7 Example
148 -----------                                       148 -----------
149                                                   149 
150 Perform a xor->copy->xor operation where each     150 Perform a xor->copy->xor operation where each operation depends on the
151 result from the previous operation::              151 result from the previous operation::
152                                                   152 
153     #include <linux/async_tx.h>                   153     #include <linux/async_tx.h>
154                                                   154 
155     static void callback(void *param)             155     static void callback(void *param)
156     {                                             156     {
157             complete(param);                      157             complete(param);
158     }                                             158     }
159                                                   159 
160     #define NDISKS  2                             160     #define NDISKS  2
161                                                   161 
162     static void run_xor_copy_xor(struct page *    162     static void run_xor_copy_xor(struct page **xor_srcs,
163                                  struct page *    163                                  struct page *xor_dest,
164                                  size_t xor_le    164                                  size_t xor_len,
165                                  struct page *    165                                  struct page *copy_src,
166                                  struct page *    166                                  struct page *copy_dest,
167                                  size_t copy_l    167                                  size_t copy_len)
168     {                                             168     {
169             struct dma_async_tx_descriptor *tx    169             struct dma_async_tx_descriptor *tx;
170             struct async_submit_ctl submit;       170             struct async_submit_ctl submit;
171             addr_conv_t addr_conv[NDISKS];        171             addr_conv_t addr_conv[NDISKS];
172             struct completion cmp;                172             struct completion cmp;
173                                                   173 
174             init_async_submit(&submit, ASYNC_T    174             init_async_submit(&submit, ASYNC_TX_XOR_DROP_DST, NULL, NULL, NULL,
175                             addr_conv);           175                             addr_conv);
176             tx = async_xor(xor_dest, xor_srcs,    176             tx = async_xor(xor_dest, xor_srcs, 0, NDISKS, xor_len, &submit);
177                                                   177 
178             submit.depend_tx = tx;                178             submit.depend_tx = tx;
179             tx = async_memcpy(copy_dest, copy_    179             tx = async_memcpy(copy_dest, copy_src, 0, 0, copy_len, &submit);
180                                                   180 
181             init_completion(&cmp);                181             init_completion(&cmp);
182             init_async_submit(&submit, ASYNC_T    182             init_async_submit(&submit, ASYNC_TX_XOR_DROP_DST | ASYNC_TX_ACK, tx,
183                             callback, &cmp, ad    183                             callback, &cmp, addr_conv);
184             tx = async_xor(xor_dest, xor_srcs,    184             tx = async_xor(xor_dest, xor_srcs, 0, NDISKS, xor_len, &submit);
185                                                   185 
186             async_tx_issue_pending_all();         186             async_tx_issue_pending_all();
187                                                   187 
188             wait_for_completion(&cmp);            188             wait_for_completion(&cmp);
189     }                                             189     }
190                                                   190 
191 See include/linux/async_tx.h for more informat    191 See include/linux/async_tx.h for more information on the flags.  See the
192 ops_run_* and ops_complete_* routines in drive    192 ops_run_* and ops_complete_* routines in drivers/md/raid5.c for more
193 implementation examples.                          193 implementation examples.
194                                                   194 
195 4. Driver Development Notes                       195 4. Driver Development Notes
196 ===========================                       196 ===========================
197                                                   197 
198 4.1 Conformance points                            198 4.1 Conformance points
199 ----------------------                            199 ----------------------
200                                                   200 
201 There are a few conformance points required in    201 There are a few conformance points required in dmaengine drivers to
202 accommodate assumptions made by applications u    202 accommodate assumptions made by applications using the async_tx API:
203                                                   203 
204 1. Completion callbacks are expected to happen    204 1. Completion callbacks are expected to happen in tasklet context
205 2. dma_async_tx_descriptor fields are never ma    205 2. dma_async_tx_descriptor fields are never manipulated in IRQ context
206 3. Use async_tx_run_dependencies() in the desc    206 3. Use async_tx_run_dependencies() in the descriptor clean up path to
207    handle submission of dependent operations      207    handle submission of dependent operations
208                                                   208 
209 4.2 "My application needs exclusive control of    209 4.2 "My application needs exclusive control of hardware channels"
210 ----------------------------------------------    210 -----------------------------------------------------------------
211                                                   211 
212 Primarily this requirement arises from cases w    212 Primarily this requirement arises from cases where a DMA engine driver
213 is being used to support device-to-memory oper    213 is being used to support device-to-memory operations.  A channel that is
214 performing these operations cannot, for many p    214 performing these operations cannot, for many platform specific reasons,
215 be shared.  For these cases the dma_request_ch    215 be shared.  For these cases the dma_request_channel() interface is
216 provided.                                         216 provided.
217                                                   217 
218 The interface is::                                218 The interface is::
219                                                   219 
220   struct dma_chan *dma_request_channel(dma_cap    220   struct dma_chan *dma_request_channel(dma_cap_mask_t mask,
221                                        dma_fil    221                                        dma_filter_fn filter_fn,
222                                        void *f    222                                        void *filter_param);
223                                                   223 
224 Where dma_filter_fn is defined as::               224 Where dma_filter_fn is defined as::
225                                                   225 
226   typedef bool (*dma_filter_fn)(struct dma_cha    226   typedef bool (*dma_filter_fn)(struct dma_chan *chan, void *filter_param);
227                                                   227 
228 When the optional 'filter_fn' parameter is set    228 When the optional 'filter_fn' parameter is set to NULL
229 dma_request_channel simply returns the first c    229 dma_request_channel simply returns the first channel that satisfies the
230 capability mask.  Otherwise, when the mask par    230 capability mask.  Otherwise, when the mask parameter is insufficient for
231 specifying the necessary channel, the filter_f    231 specifying the necessary channel, the filter_fn routine can be used to
232 disposition the available channels in the syst    232 disposition the available channels in the system. The filter_fn routine
233 is called once for each free channel in the sy    233 is called once for each free channel in the system.  Upon seeing a
234 suitable channel filter_fn returns DMA_ACK whi    234 suitable channel filter_fn returns DMA_ACK which flags that channel to
235 be the return value from dma_request_channel.     235 be the return value from dma_request_channel.  A channel allocated via
236 this interface is exclusive to the caller, unt    236 this interface is exclusive to the caller, until dma_release_channel()
237 is called.                                        237 is called.
238                                                   238 
239 The DMA_PRIVATE capability flag is used to tag    239 The DMA_PRIVATE capability flag is used to tag dma devices that should
240 not be used by the general-purpose allocator.     240 not be used by the general-purpose allocator.  It can be set at
241 initialization time if it is known that a chan    241 initialization time if it is known that a channel will always be
242 private.  Alternatively, it is set when dma_re    242 private.  Alternatively, it is set when dma_request_channel() finds an
243 unused "public" channel.                          243 unused "public" channel.
244                                                   244 
245 A couple caveats to note when implementing a d    245 A couple caveats to note when implementing a driver and consumer:
246                                                   246 
247 1. Once a channel has been privately allocated    247 1. Once a channel has been privately allocated it will no longer be
248    considered by the general-purpose allocator    248    considered by the general-purpose allocator even after a call to
249    dma_release_channel().                         249    dma_release_channel().
250 2. Since capabilities are specified at the dev    250 2. Since capabilities are specified at the device level a dma_device
251    with multiple channels will either have all    251    with multiple channels will either have all channels public, or all
252    channels private.                              252    channels private.
253                                                   253 
254 5. Source                                         254 5. Source
255 ---------                                         255 ---------
256                                                   256 
257 include/linux/dmaengine.h:                        257 include/linux/dmaengine.h:
258     core header file for DMA drivers and api u    258     core header file for DMA drivers and api users
259 drivers/dma/dmaengine.c:                          259 drivers/dma/dmaengine.c:
260     offload engine channel management routines    260     offload engine channel management routines
261 drivers/dma/:                                     261 drivers/dma/:
262     location for offload engine drivers           262     location for offload engine drivers
263 include/linux/async_tx.h:                         263 include/linux/async_tx.h:
264     core header file for the async_tx api         264     core header file for the async_tx api
265 crypto/async_tx/async_tx.c:                       265 crypto/async_tx/async_tx.c:
266     async_tx interface to dmaengine and common    266     async_tx interface to dmaengine and common code
267 crypto/async_tx/async_memcpy.c:                   267 crypto/async_tx/async_memcpy.c:
268     copy offload                                  268     copy offload
269 crypto/async_tx/async_xor.c:                      269 crypto/async_tx/async_xor.c:
270     xor and xor zero sum offload                  270     xor and xor zero sum offload
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php