1 // SPDX-License-Identifier: GPL-2.0-only
3 * DMA Engine test module
5 * Copyright (C) 2007 Atmel Corporation
6 * Copyright (C) 2013 Intel Corporation
8 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10 #include <linux/delay.h>
11 #include <linux/dma-mapping.h>
12 #include <linux/dmaengine.h>
13 #include <linux/freezer.h>
14 #include <linux/init.h>
15 #include <linux/kthread.h>
16 #include <linux/sched/task.h>
17 #include <linux/module.h>
18 #include <linux/moduleparam.h>
19 #include <linux/random.h>
20 #include <linux/slab.h>
21 #include <linux/wait.h>
23 static unsigned int test_buf_size
= 16384;
24 module_param(test_buf_size
, uint
, S_IRUGO
| S_IWUSR
);
25 MODULE_PARM_DESC(test_buf_size
, "Size of the memcpy test buffer");
27 static char test_device
[32];
28 module_param_string(device
, test_device
, sizeof(test_device
),
30 MODULE_PARM_DESC(device
, "Bus ID of the DMA Engine to test (default: any)");
32 static unsigned int threads_per_chan
= 1;
33 module_param(threads_per_chan
, uint
, S_IRUGO
| S_IWUSR
);
34 MODULE_PARM_DESC(threads_per_chan
,
35 "Number of threads to start per channel (default: 1)");
37 static unsigned int max_channels
;
38 module_param(max_channels
, uint
, S_IRUGO
| S_IWUSR
);
39 MODULE_PARM_DESC(max_channels
,
40 "Maximum number of channels to use (default: all)");
42 static unsigned int iterations
;
43 module_param(iterations
, uint
, S_IRUGO
| S_IWUSR
);
44 MODULE_PARM_DESC(iterations
,
45 "Iterations before stopping test (default: infinite)");
47 static unsigned int dmatest
;
48 module_param(dmatest
, uint
, S_IRUGO
| S_IWUSR
);
49 MODULE_PARM_DESC(dmatest
,
50 "dmatest 0-memcpy 1-memset (default: 0)");
52 static unsigned int xor_sources
= 3;
53 module_param(xor_sources
, uint
, S_IRUGO
| S_IWUSR
);
54 MODULE_PARM_DESC(xor_sources
,
55 "Number of xor source buffers (default: 3)");
57 static unsigned int pq_sources
= 3;
58 module_param(pq_sources
, uint
, S_IRUGO
| S_IWUSR
);
59 MODULE_PARM_DESC(pq_sources
,
60 "Number of p+q source buffers (default: 3)");
62 static int timeout
= 3000;
63 module_param(timeout
, uint
, S_IRUGO
| S_IWUSR
);
64 MODULE_PARM_DESC(timeout
, "Transfer Timeout in msec (default: 3000), "
65 "Pass 0xFFFFFFFF (4294967295) for maximum timeout");
68 module_param(noverify
, bool, S_IRUGO
| S_IWUSR
);
69 MODULE_PARM_DESC(noverify
, "Disable data verification (default: verify)");
72 module_param(norandom
, bool, 0644);
73 MODULE_PARM_DESC(norandom
, "Disable random offset setup (default: random)");
76 module_param(verbose
, bool, S_IRUGO
| S_IWUSR
);
77 MODULE_PARM_DESC(verbose
, "Enable \"success\" result messages (default: off)");
79 static int alignment
= -1;
80 module_param(alignment
, int, 0644);
81 MODULE_PARM_DESC(alignment
, "Custom data address alignment taken as 2^(alignment) (default: not used (-1))");
83 static unsigned int transfer_size
;
84 module_param(transfer_size
, uint
, 0644);
85 MODULE_PARM_DESC(transfer_size
, "Optional custom transfer size in bytes (default: not used (0))");
88 * struct dmatest_params - test parameters.
89 * @buf_size: size of the memcpy test buffer
90 * @channel: bus ID of the channel to test
91 * @device: bus ID of the DMA Engine to test
92 * @threads_per_chan: number of threads to start per channel
93 * @max_channels: maximum number of channels to use
94 * @iterations: iterations before stopping test
95 * @xor_sources: number of xor source buffers
96 * @pq_sources: number of p+q source buffers
97 * @timeout: transfer timeout in msec, 0 - 0xFFFFFFFF (4294967295)
99 struct dmatest_params
{
100 unsigned int buf_size
;
103 unsigned int threads_per_chan
;
104 unsigned int max_channels
;
105 unsigned int iterations
;
106 unsigned int xor_sources
;
107 unsigned int pq_sources
;
108 unsigned int timeout
;
112 unsigned int transfer_size
;
116 * struct dmatest_info - test information.
117 * @params: test parameters
118 * @lock: access protection to the fields of this structure
120 static struct dmatest_info
{
121 /* Test parameters */
122 struct dmatest_params params
;
125 struct list_head channels
;
126 unsigned int nr_channels
;
130 .channels
= LIST_HEAD_INIT(test_info
.channels
),
131 .lock
= __MUTEX_INITIALIZER(test_info
.lock
),
134 static int dmatest_run_set(const char *val
, const struct kernel_param
*kp
);
135 static int dmatest_run_get(char *val
, const struct kernel_param
*kp
);
136 static const struct kernel_param_ops run_ops
= {
137 .set
= dmatest_run_set
,
138 .get
= dmatest_run_get
,
140 static bool dmatest_run
;
141 module_param_cb(run
, &run_ops
, &dmatest_run
, S_IRUGO
| S_IWUSR
);
142 MODULE_PARM_DESC(run
, "Run the test (default: false)");
144 static int dmatest_chan_set(const char *val
, const struct kernel_param
*kp
);
145 static int dmatest_chan_get(char *val
, const struct kernel_param
*kp
);
146 static const struct kernel_param_ops multi_chan_ops
= {
147 .set
= dmatest_chan_set
,
148 .get
= dmatest_chan_get
,
151 static char test_channel
[20];
152 static struct kparam_string newchan_kps
= {
153 .string
= test_channel
,
156 module_param_cb(channel
, &multi_chan_ops
, &newchan_kps
, 0644);
157 MODULE_PARM_DESC(channel
, "Bus ID of the channel to test (default: any)");
159 static int dmatest_test_list_get(char *val
, const struct kernel_param
*kp
);
160 static const struct kernel_param_ops test_list_ops
= {
161 .get
= dmatest_test_list_get
,
163 module_param_cb(test_list
, &test_list_ops
, NULL
, 0444);
164 MODULE_PARM_DESC(test_list
, "Print current test list");
166 /* Maximum amount of mismatched bytes in buffer to print */
167 #define MAX_ERROR_COUNT 32
170 * Initialization patterns. All bytes in the source buffer has bit 7
171 * set, all bytes in the destination buffer has bit 7 cleared.
173 * Bit 6 is set for all bytes which are to be copied by the DMA
174 * engine. Bit 5 is set for all bytes which are to be overwritten by
177 * The remaining bits are the inverse of a counter which increments by
178 * one for each byte address.
180 #define PATTERN_SRC 0x80
181 #define PATTERN_DST 0x00
182 #define PATTERN_COPY 0x40
183 #define PATTERN_OVERWRITE 0x20
184 #define PATTERN_COUNT_MASK 0x1f
185 #define PATTERN_MEMSET_IDX 0x01
187 /* Fixed point arithmetic ops */
188 #define FIXPT_SHIFT 8
189 #define FIXPNT_MASK 0xFF
190 #define FIXPT_TO_INT(a) ((a) >> FIXPT_SHIFT)
191 #define INT_TO_FIXPT(a) ((a) << FIXPT_SHIFT)
192 #define FIXPT_GET_FRAC(a) ((((a) & FIXPNT_MASK) * 100) >> FIXPT_SHIFT)
194 /* poor man's completion - we want to use wait_event_freezable() on it */
195 struct dmatest_done
{
197 wait_queue_head_t
*wait
;
200 struct dmatest_data
{
207 struct dmatest_thread
{
208 struct list_head node
;
209 struct dmatest_info
*info
;
210 struct task_struct
*task
;
211 struct dma_chan
*chan
;
212 struct dmatest_data src
;
213 struct dmatest_data dst
;
214 enum dma_transaction_type type
;
215 wait_queue_head_t done_wait
;
216 struct dmatest_done test_done
;
221 struct dmatest_chan
{
222 struct list_head node
;
223 struct dma_chan
*chan
;
224 struct list_head threads
;
227 static DECLARE_WAIT_QUEUE_HEAD(thread_wait
);
230 static bool is_threaded_test_run(struct dmatest_info
*info
)
232 struct dmatest_chan
*dtc
;
234 list_for_each_entry(dtc
, &info
->channels
, node
) {
235 struct dmatest_thread
*thread
;
237 list_for_each_entry(thread
, &dtc
->threads
, node
) {
246 static bool is_threaded_test_pending(struct dmatest_info
*info
)
248 struct dmatest_chan
*dtc
;
250 list_for_each_entry(dtc
, &info
->channels
, node
) {
251 struct dmatest_thread
*thread
;
253 list_for_each_entry(thread
, &dtc
->threads
, node
) {
262 static int dmatest_wait_get(char *val
, const struct kernel_param
*kp
)
264 struct dmatest_info
*info
= &test_info
;
265 struct dmatest_params
*params
= &info
->params
;
267 if (params
->iterations
)
268 wait_event(thread_wait
, !is_threaded_test_run(info
));
270 return param_get_bool(val
, kp
);
273 static const struct kernel_param_ops wait_ops
= {
274 .get
= dmatest_wait_get
,
275 .set
= param_set_bool
,
277 module_param_cb(wait
, &wait_ops
, &wait
, S_IRUGO
);
278 MODULE_PARM_DESC(wait
, "Wait for tests to complete (default: false)");
280 static bool dmatest_match_channel(struct dmatest_params
*params
,
281 struct dma_chan
*chan
)
283 if (params
->channel
[0] == '\0')
285 return strcmp(dma_chan_name(chan
), params
->channel
) == 0;
288 static bool dmatest_match_device(struct dmatest_params
*params
,
289 struct dma_device
*device
)
291 if (params
->device
[0] == '\0')
293 return strcmp(dev_name(device
->dev
), params
->device
) == 0;
296 static unsigned long dmatest_random(void)
300 prandom_bytes(&buf
, sizeof(buf
));
304 static inline u8
gen_inv_idx(u8 index
, bool is_memset
)
306 u8 val
= is_memset
? PATTERN_MEMSET_IDX
: index
;
308 return ~val
& PATTERN_COUNT_MASK
;
311 static inline u8
gen_src_value(u8 index
, bool is_memset
)
313 return PATTERN_SRC
| gen_inv_idx(index
, is_memset
);
316 static inline u8
gen_dst_value(u8 index
, bool is_memset
)
318 return PATTERN_DST
| gen_inv_idx(index
, is_memset
);
321 static void dmatest_init_srcs(u8
**bufs
, unsigned int start
, unsigned int len
,
322 unsigned int buf_size
, bool is_memset
)
327 for (; (buf
= *bufs
); bufs
++) {
328 for (i
= 0; i
< start
; i
++)
329 buf
[i
] = gen_src_value(i
, is_memset
);
330 for ( ; i
< start
+ len
; i
++)
331 buf
[i
] = gen_src_value(i
, is_memset
) | PATTERN_COPY
;
332 for ( ; i
< buf_size
; i
++)
333 buf
[i
] = gen_src_value(i
, is_memset
);
338 static void dmatest_init_dsts(u8
**bufs
, unsigned int start
, unsigned int len
,
339 unsigned int buf_size
, bool is_memset
)
344 for (; (buf
= *bufs
); bufs
++) {
345 for (i
= 0; i
< start
; i
++)
346 buf
[i
] = gen_dst_value(i
, is_memset
);
347 for ( ; i
< start
+ len
; i
++)
348 buf
[i
] = gen_dst_value(i
, is_memset
) |
350 for ( ; i
< buf_size
; i
++)
351 buf
[i
] = gen_dst_value(i
, is_memset
);
355 static void dmatest_mismatch(u8 actual
, u8 pattern
, unsigned int index
,
356 unsigned int counter
, bool is_srcbuf
, bool is_memset
)
358 u8 diff
= actual
^ pattern
;
359 u8 expected
= pattern
| gen_inv_idx(counter
, is_memset
);
360 const char *thread_name
= current
->comm
;
363 pr_warn("%s: srcbuf[0x%x] overwritten! Expected %02x, got %02x\n",
364 thread_name
, index
, expected
, actual
);
365 else if ((pattern
& PATTERN_COPY
)
366 && (diff
& (PATTERN_COPY
| PATTERN_OVERWRITE
)))
367 pr_warn("%s: dstbuf[0x%x] not copied! Expected %02x, got %02x\n",
368 thread_name
, index
, expected
, actual
);
369 else if (diff
& PATTERN_SRC
)
370 pr_warn("%s: dstbuf[0x%x] was copied! Expected %02x, got %02x\n",
371 thread_name
, index
, expected
, actual
);
373 pr_warn("%s: dstbuf[0x%x] mismatch! Expected %02x, got %02x\n",
374 thread_name
, index
, expected
, actual
);
377 static unsigned int dmatest_verify(u8
**bufs
, unsigned int start
,
378 unsigned int end
, unsigned int counter
, u8 pattern
,
379 bool is_srcbuf
, bool is_memset
)
382 unsigned int error_count
= 0;
386 unsigned int counter_orig
= counter
;
388 for (; (buf
= *bufs
); bufs
++) {
389 counter
= counter_orig
;
390 for (i
= start
; i
< end
; i
++) {
392 expected
= pattern
| gen_inv_idx(counter
, is_memset
);
393 if (actual
!= expected
) {
394 if (error_count
< MAX_ERROR_COUNT
)
395 dmatest_mismatch(actual
, pattern
, i
,
404 if (error_count
> MAX_ERROR_COUNT
)
405 pr_warn("%s: %u errors suppressed\n",
406 current
->comm
, error_count
- MAX_ERROR_COUNT
);
412 static void dmatest_callback(void *arg
)
414 struct dmatest_done
*done
= arg
;
415 struct dmatest_thread
*thread
=
416 container_of(done
, struct dmatest_thread
, test_done
);
419 wake_up_all(done
->wait
);
422 * If thread->done, it means that this callback occurred
423 * after the parent thread has cleaned up. This can
424 * happen in the case that driver doesn't implement
425 * the terminate_all() functionality and a dma operation
426 * did not occur within the timeout period
428 WARN(1, "dmatest: Kernel memory may be corrupted!!\n");
432 static unsigned int min_odd(unsigned int x
, unsigned int y
)
434 unsigned int val
= min(x
, y
);
436 return val
% 2 ? val
: val
- 1;
439 static void result(const char *err
, unsigned int n
, unsigned int src_off
,
440 unsigned int dst_off
, unsigned int len
, unsigned long data
)
442 pr_info("%s: result #%u: '%s' with src_off=0x%x dst_off=0x%x len=0x%x (%lu)\n",
443 current
->comm
, n
, err
, src_off
, dst_off
, len
, data
);
446 static void dbg_result(const char *err
, unsigned int n
, unsigned int src_off
,
447 unsigned int dst_off
, unsigned int len
,
450 pr_debug("%s: result #%u: '%s' with src_off=0x%x dst_off=0x%x len=0x%x (%lu)\n",
451 current
->comm
, n
, err
, src_off
, dst_off
, len
, data
);
454 #define verbose_result(err, n, src_off, dst_off, len, data) ({ \
456 result(err, n, src_off, dst_off, len, data); \
458 dbg_result(err, n, src_off, dst_off, len, data);\
461 static unsigned long long dmatest_persec(s64 runtime
, unsigned int val
)
463 unsigned long long per_sec
= 1000000;
468 /* drop precision until runtime is 32-bits */
469 while (runtime
> UINT_MAX
) {
475 per_sec
= INT_TO_FIXPT(per_sec
);
476 do_div(per_sec
, runtime
);
481 static unsigned long long dmatest_KBs(s64 runtime
, unsigned long long len
)
483 return FIXPT_TO_INT(dmatest_persec(runtime
, len
>> 10));
486 static void __dmatest_free_test_data(struct dmatest_data
*d
, unsigned int cnt
)
490 for (i
= 0; i
< cnt
; i
++)
497 static void dmatest_free_test_data(struct dmatest_data
*d
)
499 __dmatest_free_test_data(d
, d
->cnt
);
502 static int dmatest_alloc_test_data(struct dmatest_data
*d
,
503 unsigned int buf_size
, u8 align
)
507 d
->raw
= kcalloc(d
->cnt
+ 1, sizeof(u8
*), GFP_KERNEL
);
511 d
->aligned
= kcalloc(d
->cnt
+ 1, sizeof(u8
*), GFP_KERNEL
);
515 for (i
= 0; i
< d
->cnt
; i
++) {
516 d
->raw
[i
] = kmalloc(buf_size
+ align
, GFP_KERNEL
);
520 /* align to alignment restriction */
522 d
->aligned
[i
] = PTR_ALIGN(d
->raw
[i
], align
);
524 d
->aligned
[i
] = d
->raw
[i
];
529 __dmatest_free_test_data(d
, i
);
534 * This function repeatedly tests DMA transfers of various lengths and
535 * offsets for a given operation type until it is told to exit by
536 * kthread_stop(). There may be multiple threads running this function
537 * in parallel for a single channel, and there may be multiple channels
538 * being tested in parallel.
540 * Before each test, the source and destination buffer is initialized
541 * with a known pattern. This pattern is different depending on
542 * whether it's in an area which is supposed to be copied or
543 * overwritten, and different in the source and destination buffers.
544 * So if the DMA engine doesn't copy exactly what we tell it to copy,
547 static int dmatest_func(void *data
)
549 struct dmatest_thread
*thread
= data
;
550 struct dmatest_done
*done
= &thread
->test_done
;
551 struct dmatest_info
*info
;
552 struct dmatest_params
*params
;
553 struct dma_chan
*chan
;
554 struct dma_device
*dev
;
555 unsigned int error_count
;
556 unsigned int failed_tests
= 0;
557 unsigned int total_tests
= 0;
559 enum dma_status status
;
560 enum dma_ctrl_flags flags
;
563 unsigned int buf_size
;
564 struct dmatest_data
*src
;
565 struct dmatest_data
*dst
;
567 ktime_t ktime
, start
, diff
;
568 ktime_t filltime
= 0;
569 ktime_t comparetime
= 0;
571 unsigned long long total_len
= 0;
572 unsigned long long iops
= 0;
574 bool is_memset
= false;
583 thread
->pending
= false;
585 params
= &info
->params
;
590 if (thread
->type
== DMA_MEMCPY
) {
591 align
= params
->alignment
< 0 ? dev
->copy_align
:
593 src
->cnt
= dst
->cnt
= 1;
594 } else if (thread
->type
== DMA_MEMSET
) {
595 align
= params
->alignment
< 0 ? dev
->fill_align
:
597 src
->cnt
= dst
->cnt
= 1;
599 } else if (thread
->type
== DMA_XOR
) {
600 /* force odd to ensure dst = src */
601 src
->cnt
= min_odd(params
->xor_sources
| 1, dev
->max_xor
);
603 align
= params
->alignment
< 0 ? dev
->xor_align
:
605 } else if (thread
->type
== DMA_PQ
) {
606 /* force odd to ensure dst = src */
607 src
->cnt
= min_odd(params
->pq_sources
| 1, dma_maxpq(dev
, 0));
609 align
= params
->alignment
< 0 ? dev
->pq_align
:
612 pq_coefs
= kmalloc(params
->pq_sources
+ 1, GFP_KERNEL
);
614 goto err_thread_type
;
616 for (i
= 0; i
< src
->cnt
; i
++)
619 goto err_thread_type
;
621 /* Check if buffer count fits into map count variable (u8) */
622 if ((src
->cnt
+ dst
->cnt
) >= 255) {
623 pr_err("too many buffers (%d of 255 supported)\n",
624 src
->cnt
+ dst
->cnt
);
628 buf_size
= params
->buf_size
;
629 if (1 << align
> buf_size
) {
630 pr_err("%u-byte buffer too small for %d-byte alignment\n",
631 buf_size
, 1 << align
);
635 if (dmatest_alloc_test_data(src
, buf_size
, align
) < 0)
638 if (dmatest_alloc_test_data(dst
, buf_size
, align
) < 0)
641 set_user_nice(current
, 10);
643 srcs
= kcalloc(src
->cnt
, sizeof(dma_addr_t
), GFP_KERNEL
);
647 dma_pq
= kcalloc(dst
->cnt
, sizeof(dma_addr_t
), GFP_KERNEL
);
652 * src and dst buffers are freed by ourselves below
654 flags
= DMA_CTRL_ACK
| DMA_PREP_INTERRUPT
;
657 while (!kthread_should_stop()
658 && !(params
->iterations
&& total_tests
>= params
->iterations
)) {
659 struct dma_async_tx_descriptor
*tx
= NULL
;
660 struct dmaengine_unmap_data
*um
;
666 if (params
->transfer_size
) {
667 if (params
->transfer_size
>= buf_size
) {
668 pr_err("%u-byte transfer size must be lower than %u-buffer size\n",
669 params
->transfer_size
, buf_size
);
672 len
= params
->transfer_size
;
673 } else if (params
->norandom
) {
676 len
= dmatest_random() % buf_size
+ 1;
679 /* Do not alter transfer size explicitly defined by user */
680 if (!params
->transfer_size
) {
681 len
= (len
>> align
) << align
;
687 if (params
->norandom
) {
691 src
->off
= dmatest_random() % (buf_size
- len
+ 1);
692 dst
->off
= dmatest_random() % (buf_size
- len
+ 1);
694 src
->off
= (src
->off
>> align
) << align
;
695 dst
->off
= (dst
->off
>> align
) << align
;
698 if (!params
->noverify
) {
700 dmatest_init_srcs(src
->aligned
, src
->off
, len
,
701 buf_size
, is_memset
);
702 dmatest_init_dsts(dst
->aligned
, dst
->off
, len
,
703 buf_size
, is_memset
);
705 diff
= ktime_sub(ktime_get(), start
);
706 filltime
= ktime_add(filltime
, diff
);
709 um
= dmaengine_get_unmap_data(dev
->dev
, src
->cnt
+ dst
->cnt
,
713 result("unmap data NULL", total_tests
,
714 src
->off
, dst
->off
, len
, ret
);
719 for (i
= 0; i
< src
->cnt
; i
++) {
720 void *buf
= src
->aligned
[i
];
721 struct page
*pg
= virt_to_page(buf
);
722 unsigned long pg_off
= offset_in_page(buf
);
724 um
->addr
[i
] = dma_map_page(dev
->dev
, pg
, pg_off
,
725 um
->len
, DMA_TO_DEVICE
);
726 srcs
[i
] = um
->addr
[i
] + src
->off
;
727 ret
= dma_mapping_error(dev
->dev
, um
->addr
[i
]);
729 result("src mapping error", total_tests
,
730 src
->off
, dst
->off
, len
, ret
);
731 goto error_unmap_continue
;
735 /* map with DMA_BIDIRECTIONAL to force writeback/invalidate */
736 dsts
= &um
->addr
[src
->cnt
];
737 for (i
= 0; i
< dst
->cnt
; i
++) {
738 void *buf
= dst
->aligned
[i
];
739 struct page
*pg
= virt_to_page(buf
);
740 unsigned long pg_off
= offset_in_page(buf
);
742 dsts
[i
] = dma_map_page(dev
->dev
, pg
, pg_off
, um
->len
,
744 ret
= dma_mapping_error(dev
->dev
, dsts
[i
]);
746 result("dst mapping error", total_tests
,
747 src
->off
, dst
->off
, len
, ret
);
748 goto error_unmap_continue
;
753 if (thread
->type
== DMA_MEMCPY
)
754 tx
= dev
->device_prep_dma_memcpy(chan
,
756 srcs
[0], len
, flags
);
757 else if (thread
->type
== DMA_MEMSET
)
758 tx
= dev
->device_prep_dma_memset(chan
,
760 *(src
->aligned
[0] + src
->off
),
762 else if (thread
->type
== DMA_XOR
)
763 tx
= dev
->device_prep_dma_xor(chan
,
767 else if (thread
->type
== DMA_PQ
) {
768 for (i
= 0; i
< dst
->cnt
; i
++)
769 dma_pq
[i
] = dsts
[i
] + dst
->off
;
770 tx
= dev
->device_prep_dma_pq(chan
, dma_pq
, srcs
,
776 result("prep error", total_tests
, src
->off
,
779 goto error_unmap_continue
;
783 tx
->callback
= dmatest_callback
;
784 tx
->callback_param
= done
;
785 cookie
= tx
->tx_submit(tx
);
787 if (dma_submit_error(cookie
)) {
788 result("submit error", total_tests
, src
->off
,
791 goto error_unmap_continue
;
793 dma_async_issue_pending(chan
);
795 wait_event_freezable_timeout(thread
->done_wait
, done
->done
,
796 msecs_to_jiffies(params
->timeout
));
798 status
= dma_async_is_tx_complete(chan
, cookie
, NULL
, NULL
);
801 result("test timed out", total_tests
, src
->off
, dst
->off
,
803 goto error_unmap_continue
;
804 } else if (status
!= DMA_COMPLETE
) {
805 result(status
== DMA_ERROR
?
806 "completion error status" :
807 "completion busy status", total_tests
, src
->off
,
809 goto error_unmap_continue
;
812 dmaengine_unmap_put(um
);
814 if (params
->noverify
) {
815 verbose_result("test passed", total_tests
, src
->off
,
821 pr_debug("%s: verifying source buffer...\n", current
->comm
);
822 error_count
= dmatest_verify(src
->aligned
, 0, src
->off
,
823 0, PATTERN_SRC
, true, is_memset
);
824 error_count
+= dmatest_verify(src
->aligned
, src
->off
,
825 src
->off
+ len
, src
->off
,
826 PATTERN_SRC
| PATTERN_COPY
, true, is_memset
);
827 error_count
+= dmatest_verify(src
->aligned
, src
->off
+ len
,
828 buf_size
, src
->off
+ len
,
829 PATTERN_SRC
, true, is_memset
);
831 pr_debug("%s: verifying dest buffer...\n", current
->comm
);
832 error_count
+= dmatest_verify(dst
->aligned
, 0, dst
->off
,
833 0, PATTERN_DST
, false, is_memset
);
835 error_count
+= dmatest_verify(dst
->aligned
, dst
->off
,
836 dst
->off
+ len
, src
->off
,
837 PATTERN_SRC
| PATTERN_COPY
, false, is_memset
);
839 error_count
+= dmatest_verify(dst
->aligned
, dst
->off
+ len
,
840 buf_size
, dst
->off
+ len
,
841 PATTERN_DST
, false, is_memset
);
843 diff
= ktime_sub(ktime_get(), start
);
844 comparetime
= ktime_add(comparetime
, diff
);
847 result("data error", total_tests
, src
->off
, dst
->off
,
851 verbose_result("test passed", total_tests
, src
->off
,
857 error_unmap_continue
:
858 dmaengine_unmap_put(um
);
861 ktime
= ktime_sub(ktime_get(), ktime
);
862 ktime
= ktime_sub(ktime
, comparetime
);
863 ktime
= ktime_sub(ktime
, filltime
);
864 runtime
= ktime_to_us(ktime
);
871 dmatest_free_test_data(dst
);
873 dmatest_free_test_data(src
);
877 iops
= dmatest_persec(runtime
, total_tests
);
878 pr_info("%s: summary %u tests, %u failures %llu.%02llu iops %llu KB/s (%d)\n",
879 current
->comm
, total_tests
, failed_tests
,
880 FIXPT_TO_INT(iops
), FIXPT_GET_FRAC(iops
),
881 dmatest_KBs(runtime
, total_len
), ret
);
883 /* terminate all transfers on specified channels */
884 if (ret
|| failed_tests
)
885 dmaengine_terminate_sync(chan
);
888 wake_up(&thread_wait
);
893 static void dmatest_cleanup_channel(struct dmatest_chan
*dtc
)
895 struct dmatest_thread
*thread
;
896 struct dmatest_thread
*_thread
;
899 list_for_each_entry_safe(thread
, _thread
, &dtc
->threads
, node
) {
900 ret
= kthread_stop(thread
->task
);
901 pr_debug("thread %s exited with status %d\n",
902 thread
->task
->comm
, ret
);
903 list_del(&thread
->node
);
904 put_task_struct(thread
->task
);
908 /* terminate all transfers on specified channels */
909 dmaengine_terminate_sync(dtc
->chan
);
914 static int dmatest_add_threads(struct dmatest_info
*info
,
915 struct dmatest_chan
*dtc
, enum dma_transaction_type type
)
917 struct dmatest_params
*params
= &info
->params
;
918 struct dmatest_thread
*thread
;
919 struct dma_chan
*chan
= dtc
->chan
;
923 if (type
== DMA_MEMCPY
)
925 else if (type
== DMA_MEMSET
)
927 else if (type
== DMA_XOR
)
929 else if (type
== DMA_PQ
)
934 for (i
= 0; i
< params
->threads_per_chan
; i
++) {
935 thread
= kzalloc(sizeof(struct dmatest_thread
), GFP_KERNEL
);
937 pr_warn("No memory for %s-%s%u\n",
938 dma_chan_name(chan
), op
, i
);
942 thread
->chan
= dtc
->chan
;
944 thread
->test_done
.wait
= &thread
->done_wait
;
945 init_waitqueue_head(&thread
->done_wait
);
947 thread
->task
= kthread_create(dmatest_func
, thread
, "%s-%s%u",
948 dma_chan_name(chan
), op
, i
);
949 if (IS_ERR(thread
->task
)) {
950 pr_warn("Failed to create thread %s-%s%u\n",
951 dma_chan_name(chan
), op
, i
);
956 /* srcbuf and dstbuf are allocated by the thread itself */
957 get_task_struct(thread
->task
);
958 list_add_tail(&thread
->node
, &dtc
->threads
);
959 thread
->pending
= true;
965 static int dmatest_add_channel(struct dmatest_info
*info
,
966 struct dma_chan
*chan
)
968 struct dmatest_chan
*dtc
;
969 struct dma_device
*dma_dev
= chan
->device
;
970 unsigned int thread_count
= 0;
973 dtc
= kmalloc(sizeof(struct dmatest_chan
), GFP_KERNEL
);
975 pr_warn("No memory for %s\n", dma_chan_name(chan
));
980 INIT_LIST_HEAD(&dtc
->threads
);
982 if (dma_has_cap(DMA_MEMCPY
, dma_dev
->cap_mask
)) {
984 cnt
= dmatest_add_threads(info
, dtc
, DMA_MEMCPY
);
985 thread_count
+= cnt
> 0 ? cnt
: 0;
989 if (dma_has_cap(DMA_MEMSET
, dma_dev
->cap_mask
)) {
991 cnt
= dmatest_add_threads(info
, dtc
, DMA_MEMSET
);
992 thread_count
+= cnt
> 0 ? cnt
: 0;
996 if (dma_has_cap(DMA_XOR
, dma_dev
->cap_mask
)) {
997 cnt
= dmatest_add_threads(info
, dtc
, DMA_XOR
);
998 thread_count
+= cnt
> 0 ? cnt
: 0;
1000 if (dma_has_cap(DMA_PQ
, dma_dev
->cap_mask
)) {
1001 cnt
= dmatest_add_threads(info
, dtc
, DMA_PQ
);
1002 thread_count
+= cnt
> 0 ? cnt
: 0;
1005 pr_info("Added %u threads using %s\n",
1006 thread_count
, dma_chan_name(chan
));
1008 list_add_tail(&dtc
->node
, &info
->channels
);
1009 info
->nr_channels
++;
1014 static bool filter(struct dma_chan
*chan
, void *param
)
1016 struct dmatest_params
*params
= param
;
1018 if (!dmatest_match_channel(params
, chan
) ||
1019 !dmatest_match_device(params
, chan
->device
))
1025 static void request_channels(struct dmatest_info
*info
,
1026 enum dma_transaction_type type
)
1028 dma_cap_mask_t mask
;
1031 dma_cap_set(type
, mask
);
1033 struct dmatest_params
*params
= &info
->params
;
1034 struct dma_chan
*chan
;
1036 chan
= dma_request_channel(mask
, filter
, params
);
1038 if (dmatest_add_channel(info
, chan
)) {
1039 dma_release_channel(chan
);
1040 break; /* add_channel failed, punt */
1043 break; /* no more channels available */
1044 if (params
->max_channels
&&
1045 info
->nr_channels
>= params
->max_channels
)
1046 break; /* we have all we need */
1050 static void add_threaded_test(struct dmatest_info
*info
)
1052 struct dmatest_params
*params
= &info
->params
;
1054 /* Copy test parameters */
1055 params
->buf_size
= test_buf_size
;
1056 strlcpy(params
->channel
, strim(test_channel
), sizeof(params
->channel
));
1057 strlcpy(params
->device
, strim(test_device
), sizeof(params
->device
));
1058 params
->threads_per_chan
= threads_per_chan
;
1059 params
->max_channels
= max_channels
;
1060 params
->iterations
= iterations
;
1061 params
->xor_sources
= xor_sources
;
1062 params
->pq_sources
= pq_sources
;
1063 params
->timeout
= timeout
;
1064 params
->noverify
= noverify
;
1065 params
->norandom
= norandom
;
1066 params
->alignment
= alignment
;
1067 params
->transfer_size
= transfer_size
;
1069 request_channels(info
, DMA_MEMCPY
);
1070 request_channels(info
, DMA_MEMSET
);
1071 request_channels(info
, DMA_XOR
);
1072 request_channels(info
, DMA_PQ
);
1075 static void run_pending_tests(struct dmatest_info
*info
)
1077 struct dmatest_chan
*dtc
;
1078 unsigned int thread_count
= 0;
1080 list_for_each_entry(dtc
, &info
->channels
, node
) {
1081 struct dmatest_thread
*thread
;
1084 list_for_each_entry(thread
, &dtc
->threads
, node
) {
1085 wake_up_process(thread
->task
);
1088 pr_info("Started %u threads using %s\n",
1089 thread_count
, dma_chan_name(dtc
->chan
));
1093 static void stop_threaded_test(struct dmatest_info
*info
)
1095 struct dmatest_chan
*dtc
, *_dtc
;
1096 struct dma_chan
*chan
;
1098 list_for_each_entry_safe(dtc
, _dtc
, &info
->channels
, node
) {
1099 list_del(&dtc
->node
);
1101 dmatest_cleanup_channel(dtc
);
1102 pr_debug("dropped channel %s\n", dma_chan_name(chan
));
1103 dma_release_channel(chan
);
1106 info
->nr_channels
= 0;
1109 static void start_threaded_tests(struct dmatest_info
*info
)
1111 /* we might be called early to set run=, defer running until all
1112 * parameters have been evaluated
1114 if (!info
->did_init
)
1117 run_pending_tests(info
);
1120 static int dmatest_run_get(char *val
, const struct kernel_param
*kp
)
1122 struct dmatest_info
*info
= &test_info
;
1124 mutex_lock(&info
->lock
);
1125 if (is_threaded_test_run(info
)) {
1128 if (!is_threaded_test_pending(info
))
1129 stop_threaded_test(info
);
1130 dmatest_run
= false;
1132 mutex_unlock(&info
->lock
);
1134 return param_get_bool(val
, kp
);
1137 static int dmatest_run_set(const char *val
, const struct kernel_param
*kp
)
1139 struct dmatest_info
*info
= &test_info
;
1142 mutex_lock(&info
->lock
);
1143 ret
= param_set_bool(val
, kp
);
1145 mutex_unlock(&info
->lock
);
1147 } else if (dmatest_run
) {
1148 if (is_threaded_test_pending(info
))
1149 start_threaded_tests(info
);
1151 pr_info("Could not start test, no channels configured\n");
1153 stop_threaded_test(info
);
1156 mutex_unlock(&info
->lock
);
1161 static int dmatest_chan_set(const char *val
, const struct kernel_param
*kp
)
1163 struct dmatest_info
*info
= &test_info
;
1164 struct dmatest_chan
*dtc
;
1165 char chan_reset_val
[20];
1168 mutex_lock(&info
->lock
);
1169 ret
= param_set_copystring(val
, kp
);
1171 mutex_unlock(&info
->lock
);
1174 /*Clear any previously run threads */
1175 if (!is_threaded_test_run(info
) && !is_threaded_test_pending(info
))
1176 stop_threaded_test(info
);
1177 /* Reject channels that are already registered */
1178 if (is_threaded_test_pending(info
)) {
1179 list_for_each_entry(dtc
, &info
->channels
, node
) {
1180 if (strcmp(dma_chan_name(dtc
->chan
),
1181 strim(test_channel
)) == 0) {
1182 dtc
= list_last_entry(&info
->channels
,
1183 struct dmatest_chan
,
1185 strlcpy(chan_reset_val
,
1186 dma_chan_name(dtc
->chan
),
1187 sizeof(chan_reset_val
));
1194 add_threaded_test(info
);
1196 /* Check if channel was added successfully */
1197 dtc
= list_last_entry(&info
->channels
, struct dmatest_chan
, node
);
1201 * if new channel was not successfully added, revert the
1202 * "test_channel" string to the name of the last successfully
1203 * added channel. exception for when users issues empty string
1204 * to channel parameter.
1206 if ((strcmp(dma_chan_name(dtc
->chan
), strim(test_channel
)) != 0)
1207 && (strcmp("", strim(test_channel
)) != 0)) {
1209 strlcpy(chan_reset_val
, dma_chan_name(dtc
->chan
),
1210 sizeof(chan_reset_val
));
1215 /* Clear test_channel if no channels were added successfully */
1216 strlcpy(chan_reset_val
, "", sizeof(chan_reset_val
));
1221 mutex_unlock(&info
->lock
);
1226 param_set_copystring(chan_reset_val
, kp
);
1227 mutex_unlock(&info
->lock
);
1232 static int dmatest_chan_get(char *val
, const struct kernel_param
*kp
)
1234 struct dmatest_info
*info
= &test_info
;
1236 mutex_lock(&info
->lock
);
1237 if (!is_threaded_test_run(info
) && !is_threaded_test_pending(info
)) {
1238 stop_threaded_test(info
);
1239 strlcpy(test_channel
, "", sizeof(test_channel
));
1241 mutex_unlock(&info
->lock
);
1243 return param_get_string(val
, kp
);
1246 static int dmatest_test_list_get(char *val
, const struct kernel_param
*kp
)
1248 struct dmatest_info
*info
= &test_info
;
1249 struct dmatest_chan
*dtc
;
1250 unsigned int thread_count
= 0;
1252 list_for_each_entry(dtc
, &info
->channels
, node
) {
1253 struct dmatest_thread
*thread
;
1256 list_for_each_entry(thread
, &dtc
->threads
, node
) {
1259 pr_info("%u threads using %s\n",
1260 thread_count
, dma_chan_name(dtc
->chan
));
1266 static int __init
dmatest_init(void)
1268 struct dmatest_info
*info
= &test_info
;
1269 struct dmatest_params
*params
= &info
->params
;
1272 mutex_lock(&info
->lock
);
1273 add_threaded_test(info
);
1274 run_pending_tests(info
);
1275 mutex_unlock(&info
->lock
);
1278 if (params
->iterations
&& wait
)
1279 wait_event(thread_wait
, !is_threaded_test_run(info
));
1281 /* module parameters are stable, inittime tests are started,
1282 * let userspace take over 'run' control
1284 info
->did_init
= true;
1288 /* when compiled-in wait for drivers to load first */
1289 late_initcall(dmatest_init
);
1291 static void __exit
dmatest_exit(void)
1293 struct dmatest_info
*info
= &test_info
;
1295 mutex_lock(&info
->lock
);
1296 stop_threaded_test(info
);
1297 mutex_unlock(&info
->lock
);
1299 module_exit(dmatest_exit
);
1301 MODULE_AUTHOR("Haavard Skinnemoen (Atmel)");
1302 MODULE_LICENSE("GPL v2");