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/module.h>
20 #include <linux/moduleparam.h>
21 #include <linux/random.h>
22 #include <linux/slab.h>
23 #include <linux/wait.h>
25 static unsigned int test_buf_size
= 16384;
26 module_param(test_buf_size
, uint
, S_IRUGO
| S_IWUSR
);
27 MODULE_PARM_DESC(test_buf_size
, "Size of the memcpy test buffer");
29 static char test_channel
[20];
30 module_param_string(channel
, test_channel
, sizeof(test_channel
),
32 MODULE_PARM_DESC(channel
, "Bus ID of the channel to test (default: any)");
34 static char test_device
[20];
35 module_param_string(device
, test_device
, sizeof(test_device
),
37 MODULE_PARM_DESC(device
, "Bus ID of the DMA Engine to test (default: any)");
39 static unsigned int threads_per_chan
= 1;
40 module_param(threads_per_chan
, uint
, S_IRUGO
| S_IWUSR
);
41 MODULE_PARM_DESC(threads_per_chan
,
42 "Number of threads to start per channel (default: 1)");
44 static unsigned int max_channels
;
45 module_param(max_channels
, uint
, S_IRUGO
| S_IWUSR
);
46 MODULE_PARM_DESC(max_channels
,
47 "Maximum number of channels to use (default: all)");
49 static unsigned int iterations
;
50 module_param(iterations
, uint
, S_IRUGO
| S_IWUSR
);
51 MODULE_PARM_DESC(iterations
,
52 "Iterations before stopping test (default: infinite)");
54 static unsigned int xor_sources
= 3;
55 module_param(xor_sources
, uint
, S_IRUGO
| S_IWUSR
);
56 MODULE_PARM_DESC(xor_sources
,
57 "Number of xor source buffers (default: 3)");
59 static unsigned int pq_sources
= 3;
60 module_param(pq_sources
, uint
, S_IRUGO
| S_IWUSR
);
61 MODULE_PARM_DESC(pq_sources
,
62 "Number of p+q source buffers (default: 3)");
64 static int timeout
= 3000;
65 module_param(timeout
, uint
, S_IRUGO
| S_IWUSR
);
66 MODULE_PARM_DESC(timeout
, "Transfer Timeout in msec (default: 3000), "
67 "Pass -1 for infinite timeout");
70 module_param(noverify
, bool, S_IRUGO
| S_IWUSR
);
71 MODULE_PARM_DESC(noverify
, "Disable random data setup and verification");
74 module_param(verbose
, bool, S_IRUGO
| S_IWUSR
);
75 MODULE_PARM_DESC(verbose
, "Enable \"success\" result messages (default: off)");
78 * struct dmatest_params - test parameters.
79 * @buf_size: size of the memcpy test buffer
80 * @channel: bus ID of the channel to test
81 * @device: bus ID of the DMA Engine to test
82 * @threads_per_chan: number of threads to start per channel
83 * @max_channels: maximum number of channels to use
84 * @iterations: iterations before stopping test
85 * @xor_sources: number of xor source buffers
86 * @pq_sources: number of p+q source buffers
87 * @timeout: transfer timeout in msec, -1 for infinite timeout
89 struct dmatest_params
{
90 unsigned int buf_size
;
93 unsigned int threads_per_chan
;
94 unsigned int max_channels
;
95 unsigned int iterations
;
96 unsigned int xor_sources
;
97 unsigned int pq_sources
;
103 * struct dmatest_info - test information.
104 * @params: test parameters
105 * @lock: access protection to the fields of this structure
107 static struct dmatest_info
{
108 /* Test parameters */
109 struct dmatest_params params
;
112 struct list_head channels
;
113 unsigned int nr_channels
;
117 .channels
= LIST_HEAD_INIT(test_info
.channels
),
118 .lock
= __MUTEX_INITIALIZER(test_info
.lock
),
121 static int dmatest_run_set(const char *val
, const struct kernel_param
*kp
);
122 static int dmatest_run_get(char *val
, const struct kernel_param
*kp
);
123 static struct kernel_param_ops run_ops
= {
124 .set
= dmatest_run_set
,
125 .get
= dmatest_run_get
,
127 static bool dmatest_run
;
128 module_param_cb(run
, &run_ops
, &dmatest_run
, S_IRUGO
| S_IWUSR
);
129 MODULE_PARM_DESC(run
, "Run the test (default: false)");
131 /* Maximum amount of mismatched bytes in buffer to print */
132 #define MAX_ERROR_COUNT 32
135 * Initialization patterns. All bytes in the source buffer has bit 7
136 * set, all bytes in the destination buffer has bit 7 cleared.
138 * Bit 6 is set for all bytes which are to be copied by the DMA
139 * engine. Bit 5 is set for all bytes which are to be overwritten by
142 * The remaining bits are the inverse of a counter which increments by
143 * one for each byte address.
145 #define PATTERN_SRC 0x80
146 #define PATTERN_DST 0x00
147 #define PATTERN_COPY 0x40
148 #define PATTERN_OVERWRITE 0x20
149 #define PATTERN_COUNT_MASK 0x1f
151 struct dmatest_thread
{
152 struct list_head node
;
153 struct dmatest_info
*info
;
154 struct task_struct
*task
;
155 struct dma_chan
*chan
;
158 enum dma_transaction_type type
;
162 struct dmatest_chan
{
163 struct list_head node
;
164 struct dma_chan
*chan
;
165 struct list_head threads
;
168 static DECLARE_WAIT_QUEUE_HEAD(thread_wait
);
171 static bool is_threaded_test_run(struct dmatest_info
*info
)
173 struct dmatest_chan
*dtc
;
175 list_for_each_entry(dtc
, &info
->channels
, node
) {
176 struct dmatest_thread
*thread
;
178 list_for_each_entry(thread
, &dtc
->threads
, node
) {
187 static int dmatest_wait_get(char *val
, const struct kernel_param
*kp
)
189 struct dmatest_info
*info
= &test_info
;
190 struct dmatest_params
*params
= &info
->params
;
192 if (params
->iterations
)
193 wait_event(thread_wait
, !is_threaded_test_run(info
));
195 return param_get_bool(val
, kp
);
198 static struct kernel_param_ops wait_ops
= {
199 .get
= dmatest_wait_get
,
200 .set
= param_set_bool
,
202 module_param_cb(wait
, &wait_ops
, &wait
, S_IRUGO
);
203 MODULE_PARM_DESC(wait
, "Wait for tests to complete (default: false)");
205 static bool dmatest_match_channel(struct dmatest_params
*params
,
206 struct dma_chan
*chan
)
208 if (params
->channel
[0] == '\0')
210 return strcmp(dma_chan_name(chan
), params
->channel
) == 0;
213 static bool dmatest_match_device(struct dmatest_params
*params
,
214 struct dma_device
*device
)
216 if (params
->device
[0] == '\0')
218 return strcmp(dev_name(device
->dev
), params
->device
) == 0;
221 static unsigned long dmatest_random(void)
225 prandom_bytes(&buf
, sizeof(buf
));
229 static void dmatest_init_srcs(u8
**bufs
, unsigned int start
, unsigned int len
,
230 unsigned int buf_size
)
235 for (; (buf
= *bufs
); bufs
++) {
236 for (i
= 0; i
< start
; i
++)
237 buf
[i
] = PATTERN_SRC
| (~i
& PATTERN_COUNT_MASK
);
238 for ( ; i
< start
+ len
; i
++)
239 buf
[i
] = PATTERN_SRC
| PATTERN_COPY
240 | (~i
& PATTERN_COUNT_MASK
);
241 for ( ; i
< buf_size
; i
++)
242 buf
[i
] = PATTERN_SRC
| (~i
& PATTERN_COUNT_MASK
);
247 static void dmatest_init_dsts(u8
**bufs
, unsigned int start
, unsigned int len
,
248 unsigned int buf_size
)
253 for (; (buf
= *bufs
); bufs
++) {
254 for (i
= 0; i
< start
; i
++)
255 buf
[i
] = PATTERN_DST
| (~i
& PATTERN_COUNT_MASK
);
256 for ( ; i
< start
+ len
; i
++)
257 buf
[i
] = PATTERN_DST
| PATTERN_OVERWRITE
258 | (~i
& PATTERN_COUNT_MASK
);
259 for ( ; i
< buf_size
; i
++)
260 buf
[i
] = PATTERN_DST
| (~i
& PATTERN_COUNT_MASK
);
264 static void dmatest_mismatch(u8 actual
, u8 pattern
, unsigned int index
,
265 unsigned int counter
, bool is_srcbuf
)
267 u8 diff
= actual
^ pattern
;
268 u8 expected
= pattern
| (~counter
& PATTERN_COUNT_MASK
);
269 const char *thread_name
= current
->comm
;
272 pr_warn("%s: srcbuf[0x%x] overwritten! Expected %02x, got %02x\n",
273 thread_name
, index
, expected
, actual
);
274 else if ((pattern
& PATTERN_COPY
)
275 && (diff
& (PATTERN_COPY
| PATTERN_OVERWRITE
)))
276 pr_warn("%s: dstbuf[0x%x] not copied! Expected %02x, got %02x\n",
277 thread_name
, index
, expected
, actual
);
278 else if (diff
& PATTERN_SRC
)
279 pr_warn("%s: dstbuf[0x%x] was copied! Expected %02x, got %02x\n",
280 thread_name
, index
, expected
, actual
);
282 pr_warn("%s: dstbuf[0x%x] mismatch! Expected %02x, got %02x\n",
283 thread_name
, index
, expected
, actual
);
286 static unsigned int dmatest_verify(u8
**bufs
, unsigned int start
,
287 unsigned int end
, unsigned int counter
, u8 pattern
,
291 unsigned int error_count
= 0;
295 unsigned int counter_orig
= counter
;
297 for (; (buf
= *bufs
); bufs
++) {
298 counter
= counter_orig
;
299 for (i
= start
; i
< end
; i
++) {
301 expected
= pattern
| (~counter
& PATTERN_COUNT_MASK
);
302 if (actual
!= expected
) {
303 if (error_count
< MAX_ERROR_COUNT
)
304 dmatest_mismatch(actual
, pattern
, i
,
312 if (error_count
> MAX_ERROR_COUNT
)
313 pr_warn("%s: %u errors suppressed\n",
314 current
->comm
, error_count
- MAX_ERROR_COUNT
);
319 /* poor man's completion - we want to use wait_event_freezable() on it */
320 struct dmatest_done
{
322 wait_queue_head_t
*wait
;
325 static void dmatest_callback(void *arg
)
327 struct dmatest_done
*done
= arg
;
330 wake_up_all(done
->wait
);
333 static unsigned int min_odd(unsigned int x
, unsigned int y
)
335 unsigned int val
= min(x
, y
);
337 return val
% 2 ? val
: val
- 1;
340 static void result(const char *err
, unsigned int n
, unsigned int src_off
,
341 unsigned int dst_off
, unsigned int len
, unsigned long data
)
343 pr_info("%s: result #%u: '%s' with src_off=0x%x dst_off=0x%x len=0x%x (%lu)",
344 current
->comm
, n
, err
, src_off
, dst_off
, len
, data
);
347 static void dbg_result(const char *err
, unsigned int n
, unsigned int src_off
,
348 unsigned int dst_off
, unsigned int len
,
351 pr_debug("%s: result #%u: '%s' with src_off=0x%x dst_off=0x%x len=0x%x (%lu)",
352 current
->comm
, n
, err
, src_off
, dst_off
, len
, data
);
355 #define verbose_result(err, n, src_off, dst_off, len, data) ({ \
357 result(err, n, src_off, dst_off, len, data); \
359 dbg_result(err, n, src_off, dst_off, len, data); \
362 static unsigned long long dmatest_persec(s64 runtime
, unsigned int val
)
364 unsigned long long per_sec
= 1000000;
369 /* drop precision until runtime is 32-bits */
370 while (runtime
> UINT_MAX
) {
376 do_div(per_sec
, runtime
);
380 static unsigned long long dmatest_KBs(s64 runtime
, unsigned long long len
)
382 return dmatest_persec(runtime
, len
>> 10);
386 * This function repeatedly tests DMA transfers of various lengths and
387 * offsets for a given operation type until it is told to exit by
388 * kthread_stop(). There may be multiple threads running this function
389 * in parallel for a single channel, and there may be multiple channels
390 * being tested in parallel.
392 * Before each test, the source and destination buffer is initialized
393 * with a known pattern. This pattern is different depending on
394 * whether it's in an area which is supposed to be copied or
395 * overwritten, and different in the source and destination buffers.
396 * So if the DMA engine doesn't copy exactly what we tell it to copy,
399 static int dmatest_func(void *data
)
401 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(done_wait
);
402 struct dmatest_thread
*thread
= data
;
403 struct dmatest_done done
= { .wait
= &done_wait
};
404 struct dmatest_info
*info
;
405 struct dmatest_params
*params
;
406 struct dma_chan
*chan
;
407 struct dma_device
*dev
;
408 unsigned int src_off
, dst_off
, len
;
409 unsigned int error_count
;
410 unsigned int failed_tests
= 0;
411 unsigned int total_tests
= 0;
413 enum dma_status status
;
414 enum dma_ctrl_flags flags
;
422 unsigned long long total_len
= 0;
430 params
= &info
->params
;
433 if (thread
->type
== DMA_MEMCPY
)
434 src_cnt
= dst_cnt
= 1;
435 else if (thread
->type
== DMA_XOR
) {
436 /* force odd to ensure dst = src */
437 src_cnt
= min_odd(params
->xor_sources
| 1, dev
->max_xor
);
439 } else if (thread
->type
== DMA_PQ
) {
440 /* force odd to ensure dst = src */
441 src_cnt
= min_odd(params
->pq_sources
| 1, dma_maxpq(dev
, 0));
444 pq_coefs
= kmalloc(params
->pq_sources
+1, GFP_KERNEL
);
446 goto err_thread_type
;
448 for (i
= 0; i
< src_cnt
; i
++)
451 goto err_thread_type
;
453 thread
->srcs
= kcalloc(src_cnt
+1, sizeof(u8
*), GFP_KERNEL
);
456 for (i
= 0; i
< src_cnt
; i
++) {
457 thread
->srcs
[i
] = kmalloc(params
->buf_size
, GFP_KERNEL
);
458 if (!thread
->srcs
[i
])
461 thread
->srcs
[i
] = NULL
;
463 thread
->dsts
= kcalloc(dst_cnt
+1, sizeof(u8
*), GFP_KERNEL
);
466 for (i
= 0; i
< dst_cnt
; i
++) {
467 thread
->dsts
[i
] = kmalloc(params
->buf_size
, GFP_KERNEL
);
468 if (!thread
->dsts
[i
])
471 thread
->dsts
[i
] = NULL
;
473 set_user_nice(current
, 10);
476 * src and dst buffers are freed by ourselves below
478 flags
= DMA_CTRL_ACK
| DMA_PREP_INTERRUPT
;
481 while (!kthread_should_stop()
482 && !(params
->iterations
&& total_tests
>= params
->iterations
)) {
483 struct dma_async_tx_descriptor
*tx
= NULL
;
484 struct dmaengine_unmap_data
*um
;
485 dma_addr_t srcs
[src_cnt
];
491 /* honor alignment restrictions */
492 if (thread
->type
== DMA_MEMCPY
)
493 align
= dev
->copy_align
;
494 else if (thread
->type
== DMA_XOR
)
495 align
= dev
->xor_align
;
496 else if (thread
->type
== DMA_PQ
)
497 align
= dev
->pq_align
;
499 if (1 << align
> params
->buf_size
) {
500 pr_err("%u-byte buffer too small for %d-byte alignment\n",
501 params
->buf_size
, 1 << align
);
505 if (params
->noverify
) {
506 len
= params
->buf_size
;
510 len
= dmatest_random() % params
->buf_size
+ 1;
511 len
= (len
>> align
) << align
;
514 src_off
= dmatest_random() % (params
->buf_size
- len
+ 1);
515 dst_off
= dmatest_random() % (params
->buf_size
- len
+ 1);
517 src_off
= (src_off
>> align
) << align
;
518 dst_off
= (dst_off
>> align
) << align
;
520 dmatest_init_srcs(thread
->srcs
, src_off
, len
,
522 dmatest_init_dsts(thread
->dsts
, dst_off
, len
,
526 len
= (len
>> align
) << align
;
531 um
= dmaengine_get_unmap_data(dev
->dev
, src_cnt
+dst_cnt
,
535 result("unmap data NULL", total_tests
,
536 src_off
, dst_off
, len
, ret
);
540 um
->len
= params
->buf_size
;
541 for (i
= 0; i
< src_cnt
; i
++) {
542 unsigned long buf
= (unsigned long) thread
->srcs
[i
];
543 struct page
*pg
= virt_to_page(buf
);
544 unsigned pg_off
= buf
& ~PAGE_MASK
;
546 um
->addr
[i
] = dma_map_page(dev
->dev
, pg
, pg_off
,
547 um
->len
, DMA_TO_DEVICE
);
548 srcs
[i
] = um
->addr
[i
] + src_off
;
549 ret
= dma_mapping_error(dev
->dev
, um
->addr
[i
]);
551 dmaengine_unmap_put(um
);
552 result("src mapping error", total_tests
,
553 src_off
, dst_off
, len
, ret
);
559 /* map with DMA_BIDIRECTIONAL to force writeback/invalidate */
560 dsts
= &um
->addr
[src_cnt
];
561 for (i
= 0; i
< dst_cnt
; i
++) {
562 unsigned long buf
= (unsigned long) thread
->dsts
[i
];
563 struct page
*pg
= virt_to_page(buf
);
564 unsigned pg_off
= buf
& ~PAGE_MASK
;
566 dsts
[i
] = dma_map_page(dev
->dev
, pg
, pg_off
, um
->len
,
568 ret
= dma_mapping_error(dev
->dev
, dsts
[i
]);
570 dmaengine_unmap_put(um
);
571 result("dst mapping error", total_tests
,
572 src_off
, dst_off
, len
, ret
);
579 if (thread
->type
== DMA_MEMCPY
)
580 tx
= dev
->device_prep_dma_memcpy(chan
,
582 srcs
[0], len
, flags
);
583 else if (thread
->type
== DMA_XOR
)
584 tx
= dev
->device_prep_dma_xor(chan
,
588 else if (thread
->type
== DMA_PQ
) {
589 dma_addr_t dma_pq
[dst_cnt
];
591 for (i
= 0; i
< dst_cnt
; i
++)
592 dma_pq
[i
] = dsts
[i
] + dst_off
;
593 tx
= dev
->device_prep_dma_pq(chan
, dma_pq
, srcs
,
599 dmaengine_unmap_put(um
);
600 result("prep error", total_tests
, src_off
,
608 tx
->callback
= dmatest_callback
;
609 tx
->callback_param
= &done
;
610 cookie
= tx
->tx_submit(tx
);
612 if (dma_submit_error(cookie
)) {
613 dmaengine_unmap_put(um
);
614 result("submit error", total_tests
, src_off
,
620 dma_async_issue_pending(chan
);
622 wait_event_freezable_timeout(done_wait
, done
.done
,
623 msecs_to_jiffies(params
->timeout
));
625 status
= dma_async_is_tx_complete(chan
, cookie
, NULL
, NULL
);
629 * We're leaving the timed out dma operation with
630 * dangling pointer to done_wait. To make this
631 * correct, we'll need to allocate wait_done for
632 * each test iteration and perform "who's gonna
633 * free it this time?" dancing. For now, just
636 dmaengine_unmap_put(um
);
637 result("test timed out", total_tests
, src_off
, dst_off
,
641 } else if (status
!= DMA_COMPLETE
) {
642 dmaengine_unmap_put(um
);
643 result(status
== DMA_ERROR
?
644 "completion error status" :
645 "completion busy status", total_tests
, src_off
,
651 dmaengine_unmap_put(um
);
653 if (params
->noverify
) {
654 verbose_result("test passed", total_tests
, src_off
,
659 pr_debug("%s: verifying source buffer...\n", current
->comm
);
660 error_count
= dmatest_verify(thread
->srcs
, 0, src_off
,
661 0, PATTERN_SRC
, true);
662 error_count
+= dmatest_verify(thread
->srcs
, src_off
,
663 src_off
+ len
, src_off
,
664 PATTERN_SRC
| PATTERN_COPY
, true);
665 error_count
+= dmatest_verify(thread
->srcs
, src_off
+ len
,
666 params
->buf_size
, src_off
+ len
,
669 pr_debug("%s: verifying dest buffer...\n", current
->comm
);
670 error_count
+= dmatest_verify(thread
->dsts
, 0, dst_off
,
671 0, PATTERN_DST
, false);
672 error_count
+= dmatest_verify(thread
->dsts
, dst_off
,
673 dst_off
+ len
, src_off
,
674 PATTERN_SRC
| PATTERN_COPY
, false);
675 error_count
+= dmatest_verify(thread
->dsts
, dst_off
+ len
,
676 params
->buf_size
, dst_off
+ len
,
680 result("data error", total_tests
, src_off
, dst_off
,
684 verbose_result("test passed", total_tests
, src_off
,
688 runtime
= ktime_us_delta(ktime_get(), ktime
);
691 for (i
= 0; thread
->dsts
[i
]; i
++)
692 kfree(thread
->dsts
[i
]);
696 for (i
= 0; thread
->srcs
[i
]; i
++)
697 kfree(thread
->srcs
[i
]);
703 pr_info("%s: summary %u tests, %u failures %llu iops %llu KB/s (%d)\n",
704 current
->comm
, total_tests
, failed_tests
,
705 dmatest_persec(runtime
, total_tests
),
706 dmatest_KBs(runtime
, total_len
), ret
);
708 /* terminate all transfers on specified channels */
710 dmaengine_terminate_all(chan
);
713 wake_up(&thread_wait
);
718 static void dmatest_cleanup_channel(struct dmatest_chan
*dtc
)
720 struct dmatest_thread
*thread
;
721 struct dmatest_thread
*_thread
;
724 list_for_each_entry_safe(thread
, _thread
, &dtc
->threads
, node
) {
725 ret
= kthread_stop(thread
->task
);
726 pr_debug("thread %s exited with status %d\n",
727 thread
->task
->comm
, ret
);
728 list_del(&thread
->node
);
729 put_task_struct(thread
->task
);
733 /* terminate all transfers on specified channels */
734 dmaengine_terminate_all(dtc
->chan
);
739 static int dmatest_add_threads(struct dmatest_info
*info
,
740 struct dmatest_chan
*dtc
, enum dma_transaction_type type
)
742 struct dmatest_params
*params
= &info
->params
;
743 struct dmatest_thread
*thread
;
744 struct dma_chan
*chan
= dtc
->chan
;
748 if (type
== DMA_MEMCPY
)
750 else if (type
== DMA_XOR
)
752 else if (type
== DMA_PQ
)
757 for (i
= 0; i
< params
->threads_per_chan
; i
++) {
758 thread
= kzalloc(sizeof(struct dmatest_thread
), GFP_KERNEL
);
760 pr_warn("No memory for %s-%s%u\n",
761 dma_chan_name(chan
), op
, i
);
765 thread
->chan
= dtc
->chan
;
768 thread
->task
= kthread_create(dmatest_func
, thread
, "%s-%s%u",
769 dma_chan_name(chan
), op
, i
);
770 if (IS_ERR(thread
->task
)) {
771 pr_warn("Failed to create thread %s-%s%u\n",
772 dma_chan_name(chan
), op
, i
);
777 /* srcbuf and dstbuf are allocated by the thread itself */
778 get_task_struct(thread
->task
);
779 list_add_tail(&thread
->node
, &dtc
->threads
);
780 wake_up_process(thread
->task
);
786 static int dmatest_add_channel(struct dmatest_info
*info
,
787 struct dma_chan
*chan
)
789 struct dmatest_chan
*dtc
;
790 struct dma_device
*dma_dev
= chan
->device
;
791 unsigned int thread_count
= 0;
794 dtc
= kmalloc(sizeof(struct dmatest_chan
), GFP_KERNEL
);
796 pr_warn("No memory for %s\n", dma_chan_name(chan
));
801 INIT_LIST_HEAD(&dtc
->threads
);
803 if (dma_has_cap(DMA_MEMCPY
, dma_dev
->cap_mask
)) {
804 cnt
= dmatest_add_threads(info
, dtc
, DMA_MEMCPY
);
805 thread_count
+= cnt
> 0 ? cnt
: 0;
807 if (dma_has_cap(DMA_XOR
, dma_dev
->cap_mask
)) {
808 cnt
= dmatest_add_threads(info
, dtc
, DMA_XOR
);
809 thread_count
+= cnt
> 0 ? cnt
: 0;
811 if (dma_has_cap(DMA_PQ
, dma_dev
->cap_mask
)) {
812 cnt
= dmatest_add_threads(info
, dtc
, DMA_PQ
);
813 thread_count
+= cnt
> 0 ? cnt
: 0;
816 pr_info("Started %u threads using %s\n",
817 thread_count
, dma_chan_name(chan
));
819 list_add_tail(&dtc
->node
, &info
->channels
);
825 static bool filter(struct dma_chan
*chan
, void *param
)
827 struct dmatest_params
*params
= param
;
829 if (!dmatest_match_channel(params
, chan
) ||
830 !dmatest_match_device(params
, chan
->device
))
836 static void request_channels(struct dmatest_info
*info
,
837 enum dma_transaction_type type
)
842 dma_cap_set(type
, mask
);
844 struct dmatest_params
*params
= &info
->params
;
845 struct dma_chan
*chan
;
847 chan
= dma_request_channel(mask
, filter
, params
);
849 if (dmatest_add_channel(info
, chan
)) {
850 dma_release_channel(chan
);
851 break; /* add_channel failed, punt */
854 break; /* no more channels available */
855 if (params
->max_channels
&&
856 info
->nr_channels
>= params
->max_channels
)
857 break; /* we have all we need */
861 static void run_threaded_test(struct dmatest_info
*info
)
863 struct dmatest_params
*params
= &info
->params
;
865 /* Copy test parameters */
866 params
->buf_size
= test_buf_size
;
867 strlcpy(params
->channel
, strim(test_channel
), sizeof(params
->channel
));
868 strlcpy(params
->device
, strim(test_device
), sizeof(params
->device
));
869 params
->threads_per_chan
= threads_per_chan
;
870 params
->max_channels
= max_channels
;
871 params
->iterations
= iterations
;
872 params
->xor_sources
= xor_sources
;
873 params
->pq_sources
= pq_sources
;
874 params
->timeout
= timeout
;
875 params
->noverify
= noverify
;
877 request_channels(info
, DMA_MEMCPY
);
878 request_channels(info
, DMA_XOR
);
879 request_channels(info
, DMA_PQ
);
882 static void stop_threaded_test(struct dmatest_info
*info
)
884 struct dmatest_chan
*dtc
, *_dtc
;
885 struct dma_chan
*chan
;
887 list_for_each_entry_safe(dtc
, _dtc
, &info
->channels
, node
) {
888 list_del(&dtc
->node
);
890 dmatest_cleanup_channel(dtc
);
891 pr_debug("dropped channel %s\n", dma_chan_name(chan
));
892 dma_release_channel(chan
);
895 info
->nr_channels
= 0;
898 static void restart_threaded_test(struct dmatest_info
*info
, bool run
)
900 /* we might be called early to set run=, defer running until all
901 * parameters have been evaluated
906 /* Stop any running test first */
907 stop_threaded_test(info
);
909 /* Run test with new parameters */
910 run_threaded_test(info
);
913 static int dmatest_run_get(char *val
, const struct kernel_param
*kp
)
915 struct dmatest_info
*info
= &test_info
;
917 mutex_lock(&info
->lock
);
918 if (is_threaded_test_run(info
)) {
921 stop_threaded_test(info
);
924 mutex_unlock(&info
->lock
);
926 return param_get_bool(val
, kp
);
929 static int dmatest_run_set(const char *val
, const struct kernel_param
*kp
)
931 struct dmatest_info
*info
= &test_info
;
934 mutex_lock(&info
->lock
);
935 ret
= param_set_bool(val
, kp
);
937 mutex_unlock(&info
->lock
);
941 if (is_threaded_test_run(info
))
943 else if (dmatest_run
)
944 restart_threaded_test(info
, dmatest_run
);
946 mutex_unlock(&info
->lock
);
951 static int __init
dmatest_init(void)
953 struct dmatest_info
*info
= &test_info
;
954 struct dmatest_params
*params
= &info
->params
;
957 mutex_lock(&info
->lock
);
958 run_threaded_test(info
);
959 mutex_unlock(&info
->lock
);
962 if (params
->iterations
&& wait
)
963 wait_event(thread_wait
, !is_threaded_test_run(info
));
965 /* module parameters are stable, inittime tests are started,
966 * let userspace take over 'run' control
968 info
->did_init
= true;
972 /* when compiled-in wait for drivers to load first */
973 late_initcall(dmatest_init
);
975 static void __exit
dmatest_exit(void)
977 struct dmatest_info
*info
= &test_info
;
979 mutex_lock(&info
->lock
);
980 stop_threaded_test(info
);
981 mutex_unlock(&info
->lock
);
983 module_exit(dmatest_exit
);
985 MODULE_AUTHOR("Haavard Skinnemoen (Atmel)");
986 MODULE_LICENSE("GPL v2");