2 * DMA Engine test module
4 * Copyright (C) 2007 Atmel Corporation
5 * Copyright (C) 2013 Intel Corporation
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13 #include <linux/delay.h>
14 #include <linux/dma-mapping.h>
15 #include <linux/dmaengine.h>
16 #include <linux/freezer.h>
17 #include <linux/init.h>
18 #include <linux/kthread.h>
19 #include <linux/sched/task.h>
20 #include <linux/module.h>
21 #include <linux/moduleparam.h>
22 #include <linux/random.h>
23 #include <linux/slab.h>
24 #include <linux/wait.h>
26 static unsigned int test_buf_size
= 16384;
27 module_param(test_buf_size
, uint
, S_IRUGO
| S_IWUSR
);
28 MODULE_PARM_DESC(test_buf_size
, "Size of the memcpy test buffer");
30 static char test_channel
[20];
31 module_param_string(channel
, test_channel
, sizeof(test_channel
),
33 MODULE_PARM_DESC(channel
, "Bus ID of the channel to test (default: any)");
35 static char test_device
[32];
36 module_param_string(device
, test_device
, sizeof(test_device
),
38 MODULE_PARM_DESC(device
, "Bus ID of the DMA Engine to test (default: any)");
40 static unsigned int threads_per_chan
= 1;
41 module_param(threads_per_chan
, uint
, S_IRUGO
| S_IWUSR
);
42 MODULE_PARM_DESC(threads_per_chan
,
43 "Number of threads to start per channel (default: 1)");
45 static unsigned int max_channels
;
46 module_param(max_channels
, uint
, S_IRUGO
| S_IWUSR
);
47 MODULE_PARM_DESC(max_channels
,
48 "Maximum number of channels to use (default: all)");
50 static unsigned int iterations
;
51 module_param(iterations
, uint
, S_IRUGO
| S_IWUSR
);
52 MODULE_PARM_DESC(iterations
,
53 "Iterations before stopping test (default: infinite)");
55 static unsigned int dmatest
;
56 module_param(dmatest
, uint
, S_IRUGO
| S_IWUSR
);
57 MODULE_PARM_DESC(dmatest
,
58 "dmatest 0-memcpy 1-memset (default: 0)");
60 static unsigned int xor_sources
= 3;
61 module_param(xor_sources
, uint
, S_IRUGO
| S_IWUSR
);
62 MODULE_PARM_DESC(xor_sources
,
63 "Number of xor source buffers (default: 3)");
65 static unsigned int pq_sources
= 3;
66 module_param(pq_sources
, uint
, S_IRUGO
| S_IWUSR
);
67 MODULE_PARM_DESC(pq_sources
,
68 "Number of p+q source buffers (default: 3)");
70 static int timeout
= 3000;
71 module_param(timeout
, uint
, S_IRUGO
| S_IWUSR
);
72 MODULE_PARM_DESC(timeout
, "Transfer Timeout in msec (default: 3000), "
73 "Pass -1 for infinite timeout");
76 module_param(noverify
, bool, S_IRUGO
| S_IWUSR
);
77 MODULE_PARM_DESC(noverify
, "Disable data verification (default: verify)");
80 module_param(norandom
, bool, 0644);
81 MODULE_PARM_DESC(norandom
, "Disable random offset setup (default: random)");
84 module_param(verbose
, bool, S_IRUGO
| S_IWUSR
);
85 MODULE_PARM_DESC(verbose
, "Enable \"success\" result messages (default: off)");
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, -1 for infinite timeout
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
;
114 * struct dmatest_info - test information.
115 * @params: test parameters
116 * @lock: access protection to the fields of this structure
118 static struct dmatest_info
{
119 /* Test parameters */
120 struct dmatest_params params
;
123 struct list_head channels
;
124 unsigned int nr_channels
;
128 .channels
= LIST_HEAD_INIT(test_info
.channels
),
129 .lock
= __MUTEX_INITIALIZER(test_info
.lock
),
132 static int dmatest_run_set(const char *val
, const struct kernel_param
*kp
);
133 static int dmatest_run_get(char *val
, const struct kernel_param
*kp
);
134 static const struct kernel_param_ops run_ops
= {
135 .set
= dmatest_run_set
,
136 .get
= dmatest_run_get
,
138 static bool dmatest_run
;
139 module_param_cb(run
, &run_ops
, &dmatest_run
, S_IRUGO
| S_IWUSR
);
140 MODULE_PARM_DESC(run
, "Run the test (default: false)");
142 /* Maximum amount of mismatched bytes in buffer to print */
143 #define MAX_ERROR_COUNT 32
146 * Initialization patterns. All bytes in the source buffer has bit 7
147 * set, all bytes in the destination buffer has bit 7 cleared.
149 * Bit 6 is set for all bytes which are to be copied by the DMA
150 * engine. Bit 5 is set for all bytes which are to be overwritten by
153 * The remaining bits are the inverse of a counter which increments by
154 * one for each byte address.
156 #define PATTERN_SRC 0x80
157 #define PATTERN_DST 0x00
158 #define PATTERN_COPY 0x40
159 #define PATTERN_OVERWRITE 0x20
160 #define PATTERN_COUNT_MASK 0x1f
161 #define PATTERN_MEMSET_IDX 0x01
163 /* poor man's completion - we want to use wait_event_freezable() on it */
164 struct dmatest_done
{
166 wait_queue_head_t
*wait
;
169 struct dmatest_thread
{
170 struct list_head node
;
171 struct dmatest_info
*info
;
172 struct task_struct
*task
;
173 struct dma_chan
*chan
;
178 enum dma_transaction_type type
;
179 wait_queue_head_t done_wait
;
180 struct dmatest_done test_done
;
184 struct dmatest_chan
{
185 struct list_head node
;
186 struct dma_chan
*chan
;
187 struct list_head threads
;
190 static DECLARE_WAIT_QUEUE_HEAD(thread_wait
);
193 static bool is_threaded_test_run(struct dmatest_info
*info
)
195 struct dmatest_chan
*dtc
;
197 list_for_each_entry(dtc
, &info
->channels
, node
) {
198 struct dmatest_thread
*thread
;
200 list_for_each_entry(thread
, &dtc
->threads
, node
) {
209 static int dmatest_wait_get(char *val
, const struct kernel_param
*kp
)
211 struct dmatest_info
*info
= &test_info
;
212 struct dmatest_params
*params
= &info
->params
;
214 if (params
->iterations
)
215 wait_event(thread_wait
, !is_threaded_test_run(info
));
217 return param_get_bool(val
, kp
);
220 static const struct kernel_param_ops wait_ops
= {
221 .get
= dmatest_wait_get
,
222 .set
= param_set_bool
,
224 module_param_cb(wait
, &wait_ops
, &wait
, S_IRUGO
);
225 MODULE_PARM_DESC(wait
, "Wait for tests to complete (default: false)");
227 static bool dmatest_match_channel(struct dmatest_params
*params
,
228 struct dma_chan
*chan
)
230 if (params
->channel
[0] == '\0')
232 return strcmp(dma_chan_name(chan
), params
->channel
) == 0;
235 static bool dmatest_match_device(struct dmatest_params
*params
,
236 struct dma_device
*device
)
238 if (params
->device
[0] == '\0')
240 return strcmp(dev_name(device
->dev
), params
->device
) == 0;
243 static unsigned long dmatest_random(void)
247 prandom_bytes(&buf
, sizeof(buf
));
251 static inline u8
gen_inv_idx(u8 index
, bool is_memset
)
253 u8 val
= is_memset
? PATTERN_MEMSET_IDX
: index
;
255 return ~val
& PATTERN_COUNT_MASK
;
258 static inline u8
gen_src_value(u8 index
, bool is_memset
)
260 return PATTERN_SRC
| gen_inv_idx(index
, is_memset
);
263 static inline u8
gen_dst_value(u8 index
, bool is_memset
)
265 return PATTERN_DST
| gen_inv_idx(index
, is_memset
);
268 static void dmatest_init_srcs(u8
**bufs
, unsigned int start
, unsigned int len
,
269 unsigned int buf_size
, bool is_memset
)
274 for (; (buf
= *bufs
); bufs
++) {
275 for (i
= 0; i
< start
; i
++)
276 buf
[i
] = gen_src_value(i
, is_memset
);
277 for ( ; i
< start
+ len
; i
++)
278 buf
[i
] = gen_src_value(i
, is_memset
) | PATTERN_COPY
;
279 for ( ; i
< buf_size
; i
++)
280 buf
[i
] = gen_src_value(i
, is_memset
);
285 static void dmatest_init_dsts(u8
**bufs
, unsigned int start
, unsigned int len
,
286 unsigned int buf_size
, bool is_memset
)
291 for (; (buf
= *bufs
); bufs
++) {
292 for (i
= 0; i
< start
; i
++)
293 buf
[i
] = gen_dst_value(i
, is_memset
);
294 for ( ; i
< start
+ len
; i
++)
295 buf
[i
] = gen_dst_value(i
, is_memset
) |
297 for ( ; i
< buf_size
; i
++)
298 buf
[i
] = gen_dst_value(i
, is_memset
);
302 static void dmatest_mismatch(u8 actual
, u8 pattern
, unsigned int index
,
303 unsigned int counter
, bool is_srcbuf
, bool is_memset
)
305 u8 diff
= actual
^ pattern
;
306 u8 expected
= pattern
| gen_inv_idx(counter
, is_memset
);
307 const char *thread_name
= current
->comm
;
310 pr_warn("%s: srcbuf[0x%x] overwritten! Expected %02x, got %02x\n",
311 thread_name
, index
, expected
, actual
);
312 else if ((pattern
& PATTERN_COPY
)
313 && (diff
& (PATTERN_COPY
| PATTERN_OVERWRITE
)))
314 pr_warn("%s: dstbuf[0x%x] not copied! Expected %02x, got %02x\n",
315 thread_name
, index
, expected
, actual
);
316 else if (diff
& PATTERN_SRC
)
317 pr_warn("%s: dstbuf[0x%x] was copied! Expected %02x, got %02x\n",
318 thread_name
, index
, expected
, actual
);
320 pr_warn("%s: dstbuf[0x%x] mismatch! Expected %02x, got %02x\n",
321 thread_name
, index
, expected
, actual
);
324 static unsigned int dmatest_verify(u8
**bufs
, unsigned int start
,
325 unsigned int end
, unsigned int counter
, u8 pattern
,
326 bool is_srcbuf
, bool is_memset
)
329 unsigned int error_count
= 0;
333 unsigned int counter_orig
= counter
;
335 for (; (buf
= *bufs
); bufs
++) {
336 counter
= counter_orig
;
337 for (i
= start
; i
< end
; i
++) {
339 expected
= pattern
| gen_inv_idx(counter
, is_memset
);
340 if (actual
!= expected
) {
341 if (error_count
< MAX_ERROR_COUNT
)
342 dmatest_mismatch(actual
, pattern
, i
,
351 if (error_count
> MAX_ERROR_COUNT
)
352 pr_warn("%s: %u errors suppressed\n",
353 current
->comm
, error_count
- MAX_ERROR_COUNT
);
359 static void dmatest_callback(void *arg
)
361 struct dmatest_done
*done
= arg
;
362 struct dmatest_thread
*thread
=
363 container_of(done
, struct dmatest_thread
, test_done
);
366 wake_up_all(done
->wait
);
369 * If thread->done, it means that this callback occurred
370 * after the parent thread has cleaned up. This can
371 * happen in the case that driver doesn't implement
372 * the terminate_all() functionality and a dma operation
373 * did not occur within the timeout period
375 WARN(1, "dmatest: Kernel memory may be corrupted!!\n");
379 static unsigned int min_odd(unsigned int x
, unsigned int y
)
381 unsigned int val
= min(x
, y
);
383 return val
% 2 ? val
: val
- 1;
386 static void result(const char *err
, unsigned int n
, unsigned int src_off
,
387 unsigned int dst_off
, unsigned int len
, unsigned long data
)
389 pr_info("%s: result #%u: '%s' with src_off=0x%x dst_off=0x%x len=0x%x (%lu)\n",
390 current
->comm
, n
, err
, src_off
, dst_off
, len
, data
);
393 static void dbg_result(const char *err
, unsigned int n
, unsigned int src_off
,
394 unsigned int dst_off
, unsigned int len
,
397 pr_debug("%s: result #%u: '%s' with src_off=0x%x dst_off=0x%x len=0x%x (%lu)\n",
398 current
->comm
, n
, err
, src_off
, dst_off
, len
, data
);
401 #define verbose_result(err, n, src_off, dst_off, len, data) ({ \
403 result(err, n, src_off, dst_off, len, data); \
405 dbg_result(err, n, src_off, dst_off, len, data);\
408 static unsigned long long dmatest_persec(s64 runtime
, unsigned int val
)
410 unsigned long long per_sec
= 1000000;
415 /* drop precision until runtime is 32-bits */
416 while (runtime
> UINT_MAX
) {
422 do_div(per_sec
, runtime
);
426 static unsigned long long dmatest_KBs(s64 runtime
, unsigned long long len
)
428 return dmatest_persec(runtime
, len
>> 10);
432 * This function repeatedly tests DMA transfers of various lengths and
433 * offsets for a given operation type until it is told to exit by
434 * kthread_stop(). There may be multiple threads running this function
435 * in parallel for a single channel, and there may be multiple channels
436 * being tested in parallel.
438 * Before each test, the source and destination buffer is initialized
439 * with a known pattern. This pattern is different depending on
440 * whether it's in an area which is supposed to be copied or
441 * overwritten, and different in the source and destination buffers.
442 * So if the DMA engine doesn't copy exactly what we tell it to copy,
445 static int dmatest_func(void *data
)
447 struct dmatest_thread
*thread
= data
;
448 struct dmatest_done
*done
= &thread
->test_done
;
449 struct dmatest_info
*info
;
450 struct dmatest_params
*params
;
451 struct dma_chan
*chan
;
452 struct dma_device
*dev
;
453 unsigned int error_count
;
454 unsigned int failed_tests
= 0;
455 unsigned int total_tests
= 0;
457 enum dma_status status
;
458 enum dma_ctrl_flags flags
;
464 ktime_t ktime
, start
, diff
;
465 ktime_t filltime
= 0;
466 ktime_t comparetime
= 0;
468 unsigned long long total_len
= 0;
470 bool is_memset
= false;
480 params
= &info
->params
;
483 if (thread
->type
== DMA_MEMCPY
) {
484 align
= dev
->copy_align
;
485 src_cnt
= dst_cnt
= 1;
486 } else if (thread
->type
== DMA_MEMSET
) {
487 align
= dev
->fill_align
;
488 src_cnt
= dst_cnt
= 1;
490 } else if (thread
->type
== DMA_XOR
) {
491 /* force odd to ensure dst = src */
492 src_cnt
= min_odd(params
->xor_sources
| 1, dev
->max_xor
);
494 align
= dev
->xor_align
;
495 } else if (thread
->type
== DMA_PQ
) {
496 /* force odd to ensure dst = src */
497 src_cnt
= min_odd(params
->pq_sources
| 1, dma_maxpq(dev
, 0));
499 align
= dev
->pq_align
;
501 pq_coefs
= kmalloc(params
->pq_sources
+ 1, GFP_KERNEL
);
503 goto err_thread_type
;
505 for (i
= 0; i
< src_cnt
; i
++)
508 goto err_thread_type
;
510 thread
->srcs
= kcalloc(src_cnt
+ 1, sizeof(u8
*), GFP_KERNEL
);
514 thread
->usrcs
= kcalloc(src_cnt
+ 1, sizeof(u8
*), GFP_KERNEL
);
518 for (i
= 0; i
< src_cnt
; i
++) {
519 thread
->usrcs
[i
] = kmalloc(params
->buf_size
+ align
,
521 if (!thread
->usrcs
[i
])
524 /* align srcs to alignment restriction */
526 thread
->srcs
[i
] = PTR_ALIGN(thread
->usrcs
[i
], align
);
528 thread
->srcs
[i
] = thread
->usrcs
[i
];
530 thread
->srcs
[i
] = NULL
;
532 thread
->dsts
= kcalloc(dst_cnt
+ 1, sizeof(u8
*), GFP_KERNEL
);
536 thread
->udsts
= kcalloc(dst_cnt
+ 1, sizeof(u8
*), GFP_KERNEL
);
540 for (i
= 0; i
< dst_cnt
; i
++) {
541 thread
->udsts
[i
] = kmalloc(params
->buf_size
+ align
,
543 if (!thread
->udsts
[i
])
546 /* align dsts to alignment restriction */
548 thread
->dsts
[i
] = PTR_ALIGN(thread
->udsts
[i
], align
);
550 thread
->dsts
[i
] = thread
->udsts
[i
];
552 thread
->dsts
[i
] = NULL
;
554 set_user_nice(current
, 10);
556 srcs
= kcalloc(src_cnt
, sizeof(dma_addr_t
), GFP_KERNEL
);
560 dma_pq
= kcalloc(dst_cnt
, sizeof(dma_addr_t
), GFP_KERNEL
);
565 * src and dst buffers are freed by ourselves below
567 flags
= DMA_CTRL_ACK
| DMA_PREP_INTERRUPT
;
570 while (!(kthread_should_stop() ||
571 (params
->iterations
&& total_tests
>= params
->iterations
))) {
572 struct dma_async_tx_descriptor
*tx
= NULL
;
573 struct dmaengine_unmap_data
*um
;
575 unsigned int src_off
, dst_off
, len
;
579 /* Check if buffer count fits into map count variable (u8) */
580 if ((src_cnt
+ dst_cnt
) >= 255) {
581 pr_err("too many buffers (%d of 255 supported)\n",
586 if (1 << align
> params
->buf_size
) {
587 pr_err("%u-byte buffer too small for %d-byte alignment\n",
588 params
->buf_size
, 1 << align
);
592 if (params
->norandom
)
593 len
= params
->buf_size
;
595 len
= dmatest_random() % params
->buf_size
+ 1;
597 len
= (len
>> align
) << align
;
603 if (params
->norandom
) {
607 src_off
= dmatest_random() % (params
->buf_size
- len
+ 1);
608 dst_off
= dmatest_random() % (params
->buf_size
- len
+ 1);
610 src_off
= (src_off
>> align
) << align
;
611 dst_off
= (dst_off
>> align
) << align
;
614 if (!params
->noverify
) {
616 dmatest_init_srcs(thread
->srcs
, src_off
, len
,
617 params
->buf_size
, is_memset
);
618 dmatest_init_dsts(thread
->dsts
, dst_off
, len
,
619 params
->buf_size
, is_memset
);
621 diff
= ktime_sub(ktime_get(), start
);
622 filltime
= ktime_add(filltime
, diff
);
625 um
= dmaengine_get_unmap_data(dev
->dev
, src_cnt
+ dst_cnt
,
629 result("unmap data NULL", total_tests
,
630 src_off
, dst_off
, len
, ret
);
634 um
->len
= params
->buf_size
;
635 for (i
= 0; i
< src_cnt
; i
++) {
636 void *buf
= thread
->srcs
[i
];
637 struct page
*pg
= virt_to_page(buf
);
638 unsigned long pg_off
= offset_in_page(buf
);
640 um
->addr
[i
] = dma_map_page(dev
->dev
, pg
, pg_off
,
641 um
->len
, DMA_TO_DEVICE
);
642 srcs
[i
] = um
->addr
[i
] + src_off
;
643 ret
= dma_mapping_error(dev
->dev
, um
->addr
[i
]);
645 result("src mapping error", total_tests
,
646 src_off
, dst_off
, len
, ret
);
647 goto error_unmap_continue
;
651 /* map with DMA_BIDIRECTIONAL to force writeback/invalidate */
652 dsts
= &um
->addr
[src_cnt
];
653 for (i
= 0; i
< dst_cnt
; i
++) {
654 void *buf
= thread
->dsts
[i
];
655 struct page
*pg
= virt_to_page(buf
);
656 unsigned long pg_off
= offset_in_page(buf
);
658 dsts
[i
] = dma_map_page(dev
->dev
, pg
, pg_off
, um
->len
,
660 ret
= dma_mapping_error(dev
->dev
, dsts
[i
]);
662 result("dst mapping error", total_tests
,
663 src_off
, dst_off
, len
, ret
);
664 goto error_unmap_continue
;
669 if (thread
->type
== DMA_MEMCPY
)
670 tx
= dev
->device_prep_dma_memcpy(chan
,
672 srcs
[0], len
, flags
);
673 else if (thread
->type
== DMA_MEMSET
)
674 tx
= dev
->device_prep_dma_memset(chan
,
676 *(thread
->srcs
[0] + src_off
),
678 else if (thread
->type
== DMA_XOR
)
679 tx
= dev
->device_prep_dma_xor(chan
,
683 else if (thread
->type
== DMA_PQ
) {
684 for (i
= 0; i
< dst_cnt
; i
++)
685 dma_pq
[i
] = dsts
[i
] + dst_off
;
686 tx
= dev
->device_prep_dma_pq(chan
, dma_pq
, srcs
,
692 result("prep error", total_tests
, src_off
,
695 goto error_unmap_continue
;
699 tx
->callback
= dmatest_callback
;
700 tx
->callback_param
= done
;
701 cookie
= tx
->tx_submit(tx
);
703 if (dma_submit_error(cookie
)) {
704 result("submit error", total_tests
, src_off
,
707 goto error_unmap_continue
;
709 dma_async_issue_pending(chan
);
711 wait_event_freezable_timeout(thread
->done_wait
, done
->done
,
712 msecs_to_jiffies(params
->timeout
));
714 status
= dma_async_is_tx_complete(chan
, cookie
, NULL
, NULL
);
717 dmaengine_unmap_put(um
);
718 result("test timed out", total_tests
, src_off
, dst_off
,
720 goto error_unmap_continue
;
721 } else if (status
!= DMA_COMPLETE
) {
722 dmaengine_unmap_put(um
);
723 result(status
== DMA_ERROR
?
724 "completion error status" :
725 "completion busy status", total_tests
, src_off
,
727 goto error_unmap_continue
;
730 dmaengine_unmap_put(um
);
732 if (params
->noverify
) {
733 verbose_result("test passed", total_tests
, src_off
,
739 pr_debug("%s: verifying source buffer...\n", current
->comm
);
740 error_count
= dmatest_verify(thread
->srcs
, 0, src_off
,
741 0, PATTERN_SRC
, true, is_memset
);
742 error_count
+= dmatest_verify(thread
->srcs
, src_off
,
743 src_off
+ len
, src_off
,
744 PATTERN_SRC
| PATTERN_COPY
, true, is_memset
);
745 error_count
+= dmatest_verify(thread
->srcs
, src_off
+ len
,
746 params
->buf_size
, src_off
+ len
,
747 PATTERN_SRC
, true, is_memset
);
749 pr_debug("%s: verifying dest buffer...\n", current
->comm
);
750 error_count
+= dmatest_verify(thread
->dsts
, 0, dst_off
,
751 0, PATTERN_DST
, false, is_memset
);
753 error_count
+= dmatest_verify(thread
->dsts
, dst_off
,
754 dst_off
+ len
, src_off
,
755 PATTERN_SRC
| PATTERN_COPY
, false, is_memset
);
757 error_count
+= dmatest_verify(thread
->dsts
, dst_off
+ len
,
758 params
->buf_size
, dst_off
+ len
,
759 PATTERN_DST
, false, is_memset
);
761 diff
= ktime_sub(ktime_get(), start
);
762 comparetime
= ktime_add(comparetime
, diff
);
765 result("data error", total_tests
, src_off
, dst_off
,
769 verbose_result("test passed", total_tests
, src_off
,
775 error_unmap_continue
:
776 dmaengine_unmap_put(um
);
779 ktime
= ktime_sub(ktime_get(), ktime
);
780 ktime
= ktime_sub(ktime
, comparetime
);
781 ktime
= ktime_sub(ktime
, filltime
);
782 runtime
= ktime_to_us(ktime
);
789 for (i
= 0; thread
->udsts
[i
]; i
++)
790 kfree(thread
->udsts
[i
]);
791 kfree(thread
->udsts
);
796 for (i
= 0; thread
->usrcs
[i
]; i
++)
797 kfree(thread
->usrcs
[i
]);
798 kfree(thread
->usrcs
);
804 pr_info("%s: summary %u tests, %u failures %llu iops %llu KB/s (%d)\n",
805 current
->comm
, total_tests
, failed_tests
,
806 dmatest_persec(runtime
, total_tests
),
807 dmatest_KBs(runtime
, total_len
), ret
);
809 /* terminate all transfers on specified channels */
810 if (ret
|| failed_tests
)
811 dmaengine_terminate_all(chan
);
814 wake_up(&thread_wait
);
819 static void dmatest_cleanup_channel(struct dmatest_chan
*dtc
)
821 struct dmatest_thread
*thread
;
822 struct dmatest_thread
*_thread
;
825 list_for_each_entry_safe(thread
, _thread
, &dtc
->threads
, node
) {
826 ret
= kthread_stop(thread
->task
);
827 pr_debug("thread %s exited with status %d\n",
828 thread
->task
->comm
, ret
);
829 list_del(&thread
->node
);
830 put_task_struct(thread
->task
);
834 /* terminate all transfers on specified channels */
835 dmaengine_terminate_all(dtc
->chan
);
840 static int dmatest_add_threads(struct dmatest_info
*info
,
841 struct dmatest_chan
*dtc
, enum dma_transaction_type type
)
843 struct dmatest_params
*params
= &info
->params
;
844 struct dmatest_thread
*thread
;
845 struct dma_chan
*chan
= dtc
->chan
;
849 if (type
== DMA_MEMCPY
)
851 else if (type
== DMA_MEMSET
)
853 else if (type
== DMA_XOR
)
855 else if (type
== DMA_PQ
)
860 for (i
= 0; i
< params
->threads_per_chan
; i
++) {
861 thread
= kzalloc(sizeof(struct dmatest_thread
), GFP_KERNEL
);
863 pr_warn("No memory for %s-%s%u\n",
864 dma_chan_name(chan
), op
, i
);
868 thread
->chan
= dtc
->chan
;
870 thread
->test_done
.wait
= &thread
->done_wait
;
871 init_waitqueue_head(&thread
->done_wait
);
873 thread
->task
= kthread_create(dmatest_func
, thread
, "%s-%s%u",
874 dma_chan_name(chan
), op
, i
);
875 if (IS_ERR(thread
->task
)) {
876 pr_warn("Failed to create thread %s-%s%u\n",
877 dma_chan_name(chan
), op
, i
);
882 /* srcbuf and dstbuf are allocated by the thread itself */
883 get_task_struct(thread
->task
);
884 list_add_tail(&thread
->node
, &dtc
->threads
);
885 wake_up_process(thread
->task
);
891 static int dmatest_add_channel(struct dmatest_info
*info
,
892 struct dma_chan
*chan
)
894 struct dmatest_chan
*dtc
;
895 struct dma_device
*dma_dev
= chan
->device
;
896 unsigned int thread_count
= 0;
899 dtc
= kmalloc(sizeof(struct dmatest_chan
), GFP_KERNEL
);
901 pr_warn("No memory for %s\n", dma_chan_name(chan
));
906 INIT_LIST_HEAD(&dtc
->threads
);
908 if (dma_has_cap(DMA_MEMCPY
, dma_dev
->cap_mask
)) {
910 cnt
= dmatest_add_threads(info
, dtc
, DMA_MEMCPY
);
911 thread_count
+= cnt
> 0 ? cnt
: 0;
915 if (dma_has_cap(DMA_MEMSET
, dma_dev
->cap_mask
)) {
917 cnt
= dmatest_add_threads(info
, dtc
, DMA_MEMSET
);
918 thread_count
+= cnt
> 0 ? cnt
: 0;
922 if (dma_has_cap(DMA_XOR
, dma_dev
->cap_mask
)) {
923 cnt
= dmatest_add_threads(info
, dtc
, DMA_XOR
);
924 thread_count
+= cnt
> 0 ? cnt
: 0;
926 if (dma_has_cap(DMA_PQ
, dma_dev
->cap_mask
)) {
927 cnt
= dmatest_add_threads(info
, dtc
, DMA_PQ
);
928 thread_count
+= cnt
> 0 ? cnt
: 0;
931 pr_info("Started %u threads using %s\n",
932 thread_count
, dma_chan_name(chan
));
934 list_add_tail(&dtc
->node
, &info
->channels
);
940 static bool filter(struct dma_chan
*chan
, void *param
)
942 struct dmatest_params
*params
= param
;
944 if (!dmatest_match_channel(params
, chan
) ||
945 !dmatest_match_device(params
, chan
->device
))
951 static void request_channels(struct dmatest_info
*info
,
952 enum dma_transaction_type type
)
957 dma_cap_set(type
, mask
);
959 struct dmatest_params
*params
= &info
->params
;
960 struct dma_chan
*chan
;
962 chan
= dma_request_channel(mask
, filter
, params
);
964 if (dmatest_add_channel(info
, chan
)) {
965 dma_release_channel(chan
);
966 break; /* add_channel failed, punt */
969 break; /* no more channels available */
970 if (params
->max_channels
&&
971 info
->nr_channels
>= params
->max_channels
)
972 break; /* we have all we need */
976 static void run_threaded_test(struct dmatest_info
*info
)
978 struct dmatest_params
*params
= &info
->params
;
980 /* Copy test parameters */
981 params
->buf_size
= test_buf_size
;
982 strlcpy(params
->channel
, strim(test_channel
), sizeof(params
->channel
));
983 strlcpy(params
->device
, strim(test_device
), sizeof(params
->device
));
984 params
->threads_per_chan
= threads_per_chan
;
985 params
->max_channels
= max_channels
;
986 params
->iterations
= iterations
;
987 params
->xor_sources
= xor_sources
;
988 params
->pq_sources
= pq_sources
;
989 params
->timeout
= timeout
;
990 params
->noverify
= noverify
;
991 params
->norandom
= norandom
;
993 request_channels(info
, DMA_MEMCPY
);
994 request_channels(info
, DMA_MEMSET
);
995 request_channels(info
, DMA_XOR
);
996 request_channels(info
, DMA_PQ
);
999 static void stop_threaded_test(struct dmatest_info
*info
)
1001 struct dmatest_chan
*dtc
, *_dtc
;
1002 struct dma_chan
*chan
;
1004 list_for_each_entry_safe(dtc
, _dtc
, &info
->channels
, node
) {
1005 list_del(&dtc
->node
);
1007 dmatest_cleanup_channel(dtc
);
1008 pr_debug("dropped channel %s\n", dma_chan_name(chan
));
1009 dma_release_channel(chan
);
1012 info
->nr_channels
= 0;
1015 static void restart_threaded_test(struct dmatest_info
*info
, bool run
)
1017 /* we might be called early to set run=, defer running until all
1018 * parameters have been evaluated
1020 if (!info
->did_init
)
1023 /* Stop any running test first */
1024 stop_threaded_test(info
);
1026 /* Run test with new parameters */
1027 run_threaded_test(info
);
1030 static int dmatest_run_get(char *val
, const struct kernel_param
*kp
)
1032 struct dmatest_info
*info
= &test_info
;
1034 mutex_lock(&info
->lock
);
1035 if (is_threaded_test_run(info
)) {
1038 stop_threaded_test(info
);
1039 dmatest_run
= false;
1041 mutex_unlock(&info
->lock
);
1043 return param_get_bool(val
, kp
);
1046 static int dmatest_run_set(const char *val
, const struct kernel_param
*kp
)
1048 struct dmatest_info
*info
= &test_info
;
1051 mutex_lock(&info
->lock
);
1052 ret
= param_set_bool(val
, kp
);
1054 mutex_unlock(&info
->lock
);
1058 if (is_threaded_test_run(info
))
1060 else if (dmatest_run
)
1061 restart_threaded_test(info
, dmatest_run
);
1063 mutex_unlock(&info
->lock
);
1068 static int __init
dmatest_init(void)
1070 struct dmatest_info
*info
= &test_info
;
1071 struct dmatest_params
*params
= &info
->params
;
1074 mutex_lock(&info
->lock
);
1075 run_threaded_test(info
);
1076 mutex_unlock(&info
->lock
);
1079 if (params
->iterations
&& wait
)
1080 wait_event(thread_wait
, !is_threaded_test_run(info
));
1082 /* module parameters are stable, inittime tests are started,
1083 * let userspace take over 'run' control
1085 info
->did_init
= true;
1089 /* when compiled-in wait for drivers to load first */
1090 late_initcall(dmatest_init
);
1092 static void __exit
dmatest_exit(void)
1094 struct dmatest_info
*info
= &test_info
;
1096 mutex_lock(&info
->lock
);
1097 stop_threaded_test(info
);
1098 mutex_unlock(&info
->lock
);
1100 module_exit(dmatest_exit
);
1102 MODULE_AUTHOR("Haavard Skinnemoen (Atmel)");
1103 MODULE_LICENSE("GPL v2");