]> git.ipfire.org Git - thirdparty/linux.git/blame - drivers/dma/dmatest.c
Merge tag 'io_uring-5.7-2020-05-22' of git://git.kernel.dk/linux-block
[thirdparty/linux.git] / drivers / dma / dmatest.c
CommitLineData
d2912cb1 1// SPDX-License-Identifier: GPL-2.0-only
4a776f0a
HS
2/*
3 * DMA Engine test module
4 *
5 * Copyright (C) 2007 Atmel Corporation
851b7e16 6 * Copyright (C) 2013 Intel Corporation
4a776f0a 7 */
872f05c6
DW
8#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
9
4a776f0a 10#include <linux/delay.h>
b7f080cf 11#include <linux/dma-mapping.h>
4a776f0a 12#include <linux/dmaengine.h>
981ed70d 13#include <linux/freezer.h>
4a776f0a
HS
14#include <linux/init.h>
15#include <linux/kthread.h>
0881e7bd 16#include <linux/sched/task.h>
4a776f0a
HS
17#include <linux/module.h>
18#include <linux/moduleparam.h>
19#include <linux/random.h>
5a0e3ad6 20#include <linux/slab.h>
4a776f0a
HS
21#include <linux/wait.h>
22
23static unsigned int test_buf_size = 16384;
a6c268d0 24module_param(test_buf_size, uint, S_IRUGO | S_IWUSR);
4a776f0a
HS
25MODULE_PARM_DESC(test_buf_size, "Size of the memcpy test buffer");
26
a85159fe 27static char test_device[32];
a6c268d0
AS
28module_param_string(device, test_device, sizeof(test_device),
29 S_IRUGO | S_IWUSR);
4a776f0a
HS
30MODULE_PARM_DESC(device, "Bus ID of the DMA Engine to test (default: any)");
31
32static unsigned int threads_per_chan = 1;
a6c268d0 33module_param(threads_per_chan, uint, S_IRUGO | S_IWUSR);
4a776f0a
HS
34MODULE_PARM_DESC(threads_per_chan,
35 "Number of threads to start per channel (default: 1)");
36
37static unsigned int max_channels;
a6c268d0 38module_param(max_channels, uint, S_IRUGO | S_IWUSR);
33df8ca0 39MODULE_PARM_DESC(max_channels,
4a776f0a
HS
40 "Maximum number of channels to use (default: all)");
41
0a2ff57d 42static unsigned int iterations;
a6c268d0 43module_param(iterations, uint, S_IRUGO | S_IWUSR);
0a2ff57d
NF
44MODULE_PARM_DESC(iterations,
45 "Iterations before stopping test (default: infinite)");
46
d8646724 47static unsigned int dmatest;
a0d4cb44
KA
48module_param(dmatest, uint, S_IRUGO | S_IWUSR);
49MODULE_PARM_DESC(dmatest,
c678fa66 50 "dmatest 0-memcpy 1-memset (default: 0)");
a0d4cb44 51
b54d5cb9 52static unsigned int xor_sources = 3;
a6c268d0 53module_param(xor_sources, uint, S_IRUGO | S_IWUSR);
b54d5cb9
DW
54MODULE_PARM_DESC(xor_sources,
55 "Number of xor source buffers (default: 3)");
56
58691d64 57static unsigned int pq_sources = 3;
a6c268d0 58module_param(pq_sources, uint, S_IRUGO | S_IWUSR);
58691d64
DW
59MODULE_PARM_DESC(pq_sources,
60 "Number of p+q source buffers (default: 3)");
61
d42efe6b 62static int timeout = 3000;
a6c268d0 63module_param(timeout, uint, S_IRUGO | S_IWUSR);
85ee7a1d 64MODULE_PARM_DESC(timeout, "Transfer Timeout in msec (default: 3000), "
ed04b7c5 65 "Pass 0xFFFFFFFF (4294967295) for maximum timeout");
d42efe6b 66
e3b9c347
DW
67static bool noverify;
68module_param(noverify, bool, S_IRUGO | S_IWUSR);
2e67a087
YS
69MODULE_PARM_DESC(noverify, "Disable data verification (default: verify)");
70
71static bool norandom;
72module_param(norandom, bool, 0644);
73MODULE_PARM_DESC(norandom, "Disable random offset setup (default: random)");
4a776f0a 74
fb9816f9
PU
75static bool polled;
76module_param(polled, bool, S_IRUGO | S_IWUSR);
77MODULE_PARM_DESC(polled, "Use polling for completion instead of interrupts");
78
50137a7d
DW
79static bool verbose;
80module_param(verbose, bool, S_IRUGO | S_IWUSR);
81MODULE_PARM_DESC(verbose, "Enable \"success\" result messages (default: off)");
4a776f0a 82
a875abfa
SA
83static int alignment = -1;
84module_param(alignment, int, 0644);
85MODULE_PARM_DESC(alignment, "Custom data address alignment taken as 2^(alignment) (default: not used (-1))");
86
13396a13
SA
87static unsigned int transfer_size;
88module_param(transfer_size, uint, 0644);
89MODULE_PARM_DESC(transfer_size, "Optional custom transfer size in bytes (default: not used (0))");
90
e03e93a9 91/**
15b8a8ea 92 * struct dmatest_params - test parameters.
e03e93a9
AS
93 * @buf_size: size of the memcpy test buffer
94 * @channel: bus ID of the channel to test
95 * @device: bus ID of the DMA Engine to test
96 * @threads_per_chan: number of threads to start per channel
97 * @max_channels: maximum number of channels to use
98 * @iterations: iterations before stopping test
99 * @xor_sources: number of xor source buffers
100 * @pq_sources: number of p+q source buffers
ed04b7c5 101 * @timeout: transfer timeout in msec, 0 - 0xFFFFFFFF (4294967295)
e03e93a9 102 */
15b8a8ea 103struct dmatest_params {
e03e93a9
AS
104 unsigned int buf_size;
105 char channel[20];
a85159fe 106 char device[32];
e03e93a9
AS
107 unsigned int threads_per_chan;
108 unsigned int max_channels;
109 unsigned int iterations;
110 unsigned int xor_sources;
111 unsigned int pq_sources;
ed04b7c5 112 unsigned int timeout;
e3b9c347 113 bool noverify;
2e67a087 114 bool norandom;
a875abfa 115 int alignment;
13396a13 116 unsigned int transfer_size;
fb9816f9 117 bool polled;
15b8a8ea
AS
118};
119
120/**
121 * struct dmatest_info - test information.
122 * @params: test parameters
851b7e16 123 * @lock: access protection to the fields of this structure
15b8a8ea 124 */
a310d037 125static struct dmatest_info {
15b8a8ea
AS
126 /* Test parameters */
127 struct dmatest_params params;
838cc704
AS
128
129 /* Internal state */
130 struct list_head channels;
131 unsigned int nr_channels;
851b7e16 132 struct mutex lock;
a310d037
DW
133 bool did_init;
134} test_info = {
135 .channels = LIST_HEAD_INIT(test_info.channels),
136 .lock = __MUTEX_INITIALIZER(test_info.lock),
137};
851b7e16 138
a310d037
DW
139static int dmatest_run_set(const char *val, const struct kernel_param *kp);
140static int dmatest_run_get(char *val, const struct kernel_param *kp);
9c27847d 141static const struct kernel_param_ops run_ops = {
a310d037
DW
142 .set = dmatest_run_set,
143 .get = dmatest_run_get,
e03e93a9 144};
a310d037
DW
145static bool dmatest_run;
146module_param_cb(run, &run_ops, &dmatest_run, S_IRUGO | S_IWUSR);
147MODULE_PARM_DESC(run, "Run the test (default: false)");
e03e93a9 148
d53513d5
SA
149static int dmatest_chan_set(const char *val, const struct kernel_param *kp);
150static int dmatest_chan_get(char *val, const struct kernel_param *kp);
151static const struct kernel_param_ops multi_chan_ops = {
152 .set = dmatest_chan_set,
153 .get = dmatest_chan_get,
154};
155
156static char test_channel[20];
157static struct kparam_string newchan_kps = {
158 .string = test_channel,
159 .maxlen = 20,
160};
161module_param_cb(channel, &multi_chan_ops, &newchan_kps, 0644);
162MODULE_PARM_DESC(channel, "Bus ID of the channel to test (default: any)");
163
164static int dmatest_test_list_get(char *val, const struct kernel_param *kp);
165static const struct kernel_param_ops test_list_ops = {
166 .get = dmatest_test_list_get,
167};
168module_param_cb(test_list, &test_list_ops, NULL, 0444);
169MODULE_PARM_DESC(test_list, "Print current test list");
170
a310d037
DW
171/* Maximum amount of mismatched bytes in buffer to print */
172#define MAX_ERROR_COUNT 32
173
174/*
175 * Initialization patterns. All bytes in the source buffer has bit 7
176 * set, all bytes in the destination buffer has bit 7 cleared.
177 *
178 * Bit 6 is set for all bytes which are to be copied by the DMA
179 * engine. Bit 5 is set for all bytes which are to be overwritten by
180 * the DMA engine.
181 *
182 * The remaining bits are the inverse of a counter which increments by
183 * one for each byte address.
184 */
185#define PATTERN_SRC 0x80
186#define PATTERN_DST 0x00
187#define PATTERN_COPY 0x40
188#define PATTERN_OVERWRITE 0x20
189#define PATTERN_COUNT_MASK 0x1f
61b5f54d 190#define PATTERN_MEMSET_IDX 0x01
851b7e16 191
6138f967
SA
192/* Fixed point arithmetic ops */
193#define FIXPT_SHIFT 8
194#define FIXPNT_MASK 0xFF
195#define FIXPT_TO_INT(a) ((a) >> FIXPT_SHIFT)
196#define INT_TO_FIXPT(a) ((a) << FIXPT_SHIFT)
197#define FIXPT_GET_FRAC(a) ((((a) & FIXPNT_MASK) * 100) >> FIXPT_SHIFT)
198
6f6a23a2
AW
199/* poor man's completion - we want to use wait_event_freezable() on it */
200struct dmatest_done {
201 bool done;
202 wait_queue_head_t *wait;
203};
204
361deb72
AA
205struct dmatest_data {
206 u8 **raw;
207 u8 **aligned;
208 unsigned int cnt;
209 unsigned int off;
210};
211
a310d037
DW
212struct dmatest_thread {
213 struct list_head node;
214 struct dmatest_info *info;
215 struct task_struct *task;
216 struct dma_chan *chan;
361deb72
AA
217 struct dmatest_data src;
218 struct dmatest_data dst;
a310d037 219 enum dma_transaction_type type;
6f6a23a2
AW
220 wait_queue_head_t done_wait;
221 struct dmatest_done test_done;
a310d037 222 bool done;
d53513d5 223 bool pending;
a310d037 224};
95019c8c 225
a310d037
DW
226struct dmatest_chan {
227 struct list_head node;
228 struct dma_chan *chan;
229 struct list_head threads;
e03e93a9
AS
230};
231
2d88ce76
DW
232static DECLARE_WAIT_QUEUE_HEAD(thread_wait);
233static bool wait;
234
235static bool is_threaded_test_run(struct dmatest_info *info)
236{
237 struct dmatest_chan *dtc;
238
239 list_for_each_entry(dtc, &info->channels, node) {
240 struct dmatest_thread *thread;
241
242 list_for_each_entry(thread, &dtc->threads, node) {
aa72f1d2 243 if (!thread->done && !thread->pending)
2d88ce76
DW
244 return true;
245 }
246 }
247
248 return false;
249}
250
d53513d5
SA
251static bool is_threaded_test_pending(struct dmatest_info *info)
252{
253 struct dmatest_chan *dtc;
254
255 list_for_each_entry(dtc, &info->channels, node) {
256 struct dmatest_thread *thread;
257
258 list_for_each_entry(thread, &dtc->threads, node) {
259 if (thread->pending)
260 return true;
261 }
262 }
263
264 return false;
265}
266
2d88ce76
DW
267static int dmatest_wait_get(char *val, const struct kernel_param *kp)
268{
269 struct dmatest_info *info = &test_info;
270 struct dmatest_params *params = &info->params;
271
272 if (params->iterations)
273 wait_event(thread_wait, !is_threaded_test_run(info));
274 wait = true;
275 return param_get_bool(val, kp);
276}
277
9c27847d 278static const struct kernel_param_ops wait_ops = {
2d88ce76
DW
279 .get = dmatest_wait_get,
280 .set = param_set_bool,
281};
282module_param_cb(wait, &wait_ops, &wait, S_IRUGO);
283MODULE_PARM_DESC(wait, "Wait for tests to complete (default: false)");
e03e93a9 284
15b8a8ea 285static bool dmatest_match_channel(struct dmatest_params *params,
e03e93a9 286 struct dma_chan *chan)
4a776f0a 287{
15b8a8ea 288 if (params->channel[0] == '\0')
4a776f0a 289 return true;
15b8a8ea 290 return strcmp(dma_chan_name(chan), params->channel) == 0;
4a776f0a
HS
291}
292
15b8a8ea 293static bool dmatest_match_device(struct dmatest_params *params,
e03e93a9 294 struct dma_device *device)
4a776f0a 295{
15b8a8ea 296 if (params->device[0] == '\0')
4a776f0a 297 return true;
15b8a8ea 298 return strcmp(dev_name(device->dev), params->device) == 0;
4a776f0a
HS
299}
300
301static unsigned long dmatest_random(void)
302{
303 unsigned long buf;
304
be9fa5a4 305 prandom_bytes(&buf, sizeof(buf));
4a776f0a
HS
306 return buf;
307}
308
61b5f54d
SK
309static inline u8 gen_inv_idx(u8 index, bool is_memset)
310{
311 u8 val = is_memset ? PATTERN_MEMSET_IDX : index;
312
313 return ~val & PATTERN_COUNT_MASK;
314}
315
316static inline u8 gen_src_value(u8 index, bool is_memset)
317{
318 return PATTERN_SRC | gen_inv_idx(index, is_memset);
319}
320
321static inline u8 gen_dst_value(u8 index, bool is_memset)
322{
323 return PATTERN_DST | gen_inv_idx(index, is_memset);
324}
325
e03e93a9 326static void dmatest_init_srcs(u8 **bufs, unsigned int start, unsigned int len,
61b5f54d 327 unsigned int buf_size, bool is_memset)
4a776f0a
HS
328{
329 unsigned int i;
b54d5cb9
DW
330 u8 *buf;
331
332 for (; (buf = *bufs); bufs++) {
333 for (i = 0; i < start; i++)
61b5f54d 334 buf[i] = gen_src_value(i, is_memset);
b54d5cb9 335 for ( ; i < start + len; i++)
61b5f54d 336 buf[i] = gen_src_value(i, is_memset) | PATTERN_COPY;
e03e93a9 337 for ( ; i < buf_size; i++)
61b5f54d 338 buf[i] = gen_src_value(i, is_memset);
b54d5cb9
DW
339 buf++;
340 }
4a776f0a
HS
341}
342
e03e93a9 343static void dmatest_init_dsts(u8 **bufs, unsigned int start, unsigned int len,
61b5f54d 344 unsigned int buf_size, bool is_memset)
4a776f0a
HS
345{
346 unsigned int i;
b54d5cb9
DW
347 u8 *buf;
348
349 for (; (buf = *bufs); bufs++) {
350 for (i = 0; i < start; i++)
61b5f54d 351 buf[i] = gen_dst_value(i, is_memset);
b54d5cb9 352 for ( ; i < start + len; i++)
61b5f54d
SK
353 buf[i] = gen_dst_value(i, is_memset) |
354 PATTERN_OVERWRITE;
e03e93a9 355 for ( ; i < buf_size; i++)
61b5f54d 356 buf[i] = gen_dst_value(i, is_memset);
b54d5cb9 357 }
4a776f0a
HS
358}
359
7b610178 360static void dmatest_mismatch(u8 actual, u8 pattern, unsigned int index,
61b5f54d 361 unsigned int counter, bool is_srcbuf, bool is_memset)
7b610178
DW
362{
363 u8 diff = actual ^ pattern;
61b5f54d 364 u8 expected = pattern | gen_inv_idx(counter, is_memset);
7b610178
DW
365 const char *thread_name = current->comm;
366
367 if (is_srcbuf)
368 pr_warn("%s: srcbuf[0x%x] overwritten! Expected %02x, got %02x\n",
369 thread_name, index, expected, actual);
370 else if ((pattern & PATTERN_COPY)
371 && (diff & (PATTERN_COPY | PATTERN_OVERWRITE)))
372 pr_warn("%s: dstbuf[0x%x] not copied! Expected %02x, got %02x\n",
373 thread_name, index, expected, actual);
374 else if (diff & PATTERN_SRC)
375 pr_warn("%s: dstbuf[0x%x] was copied! Expected %02x, got %02x\n",
376 thread_name, index, expected, actual);
377 else
378 pr_warn("%s: dstbuf[0x%x] mismatch! Expected %02x, got %02x\n",
379 thread_name, index, expected, actual);
380}
381
382static unsigned int dmatest_verify(u8 **bufs, unsigned int start,
383 unsigned int end, unsigned int counter, u8 pattern,
61b5f54d 384 bool is_srcbuf, bool is_memset)
4a776f0a
HS
385{
386 unsigned int i;
387 unsigned int error_count = 0;
388 u8 actual;
b54d5cb9
DW
389 u8 expected;
390 u8 *buf;
391 unsigned int counter_orig = counter;
392
393 for (; (buf = *bufs); bufs++) {
394 counter = counter_orig;
395 for (i = start; i < end; i++) {
396 actual = buf[i];
61b5f54d 397 expected = pattern | gen_inv_idx(counter, is_memset);
b54d5cb9 398 if (actual != expected) {
7b610178
DW
399 if (error_count < MAX_ERROR_COUNT)
400 dmatest_mismatch(actual, pattern, i,
61b5f54d
SK
401 counter, is_srcbuf,
402 is_memset);
b54d5cb9
DW
403 error_count++;
404 }
405 counter++;
4a776f0a 406 }
4a776f0a
HS
407 }
408
74b5c07a 409 if (error_count > MAX_ERROR_COUNT)
7b610178 410 pr_warn("%s: %u errors suppressed\n",
74b5c07a 411 current->comm, error_count - MAX_ERROR_COUNT);
4a776f0a
HS
412
413 return error_count;
414}
415
adfa543e
TH
416
417static void dmatest_callback(void *arg)
e44e0aa3 418{
adfa543e 419 struct dmatest_done *done = arg;
6f6a23a2 420 struct dmatest_thread *thread =
66b3bd23 421 container_of(done, struct dmatest_thread, test_done);
6f6a23a2
AW
422 if (!thread->done) {
423 done->done = true;
424 wake_up_all(done->wait);
425 } else {
426 /*
427 * If thread->done, it means that this callback occurred
428 * after the parent thread has cleaned up. This can
429 * happen in the case that driver doesn't implement
430 * the terminate_all() functionality and a dma operation
431 * did not occur within the timeout period
432 */
433 WARN(1, "dmatest: Kernel memory may be corrupted!!\n");
434 }
e44e0aa3
DW
435}
436
8be9e32b
AM
437static unsigned int min_odd(unsigned int x, unsigned int y)
438{
439 unsigned int val = min(x, y);
440
441 return val % 2 ? val : val - 1;
442}
443
872f05c6
DW
444static void result(const char *err, unsigned int n, unsigned int src_off,
445 unsigned int dst_off, unsigned int len, unsigned long data)
d86b2f29 446{
2acec150 447 pr_info("%s: result #%u: '%s' with src_off=0x%x dst_off=0x%x len=0x%x (%lu)\n",
872f05c6 448 current->comm, n, err, src_off, dst_off, len, data);
d86b2f29
AS
449}
450
872f05c6
DW
451static void dbg_result(const char *err, unsigned int n, unsigned int src_off,
452 unsigned int dst_off, unsigned int len,
453 unsigned long data)
95019c8c 454{
2acec150 455 pr_debug("%s: result #%u: '%s' with src_off=0x%x dst_off=0x%x len=0x%x (%lu)\n",
a835bb85 456 current->comm, n, err, src_off, dst_off, len, data);
95019c8c
AS
457}
458
a835bb85
AS
459#define verbose_result(err, n, src_off, dst_off, len, data) ({ \
460 if (verbose) \
461 result(err, n, src_off, dst_off, len, data); \
462 else \
463 dbg_result(err, n, src_off, dst_off, len, data);\
50137a7d 464})
95019c8c 465
86727443 466static unsigned long long dmatest_persec(s64 runtime, unsigned int val)
d86b2f29 467{
86727443 468 unsigned long long per_sec = 1000000;
d86b2f29 469
86727443
DW
470 if (runtime <= 0)
471 return 0;
95019c8c 472
86727443
DW
473 /* drop precision until runtime is 32-bits */
474 while (runtime > UINT_MAX) {
475 runtime >>= 1;
476 per_sec <<= 1;
95019c8c
AS
477 }
478
86727443 479 per_sec *= val;
6138f967 480 per_sec = INT_TO_FIXPT(per_sec);
86727443 481 do_div(per_sec, runtime);
6138f967 482
86727443 483 return per_sec;
95019c8c
AS
484}
485
86727443 486static unsigned long long dmatest_KBs(s64 runtime, unsigned long long len)
95019c8c 487{
6138f967 488 return FIXPT_TO_INT(dmatest_persec(runtime, len >> 10));
95019c8c
AS
489}
490
3b6679f9
AA
491static void __dmatest_free_test_data(struct dmatest_data *d, unsigned int cnt)
492{
493 unsigned int i;
494
495 for (i = 0; i < cnt; i++)
496 kfree(d->raw[i]);
497
498 kfree(d->aligned);
499 kfree(d->raw);
500}
501
502static void dmatest_free_test_data(struct dmatest_data *d)
503{
504 __dmatest_free_test_data(d, d->cnt);
505}
506
507static int dmatest_alloc_test_data(struct dmatest_data *d,
508 unsigned int buf_size, u8 align)
509{
510 unsigned int i = 0;
511
512 d->raw = kcalloc(d->cnt + 1, sizeof(u8 *), GFP_KERNEL);
513 if (!d->raw)
514 return -ENOMEM;
515
516 d->aligned = kcalloc(d->cnt + 1, sizeof(u8 *), GFP_KERNEL);
517 if (!d->aligned)
518 goto err;
519
520 for (i = 0; i < d->cnt; i++) {
521 d->raw[i] = kmalloc(buf_size + align, GFP_KERNEL);
522 if (!d->raw[i])
523 goto err;
524
525 /* align to alignment restriction */
526 if (align)
527 d->aligned[i] = PTR_ALIGN(d->raw[i], align);
528 else
529 d->aligned[i] = d->raw[i];
530 }
531
532 return 0;
533err:
534 __dmatest_free_test_data(d, i);
535 return -ENOMEM;
536}
537
4a776f0a
HS
538/*
539 * This function repeatedly tests DMA transfers of various lengths and
b54d5cb9
DW
540 * offsets for a given operation type until it is told to exit by
541 * kthread_stop(). There may be multiple threads running this function
542 * in parallel for a single channel, and there may be multiple channels
543 * being tested in parallel.
4a776f0a
HS
544 *
545 * Before each test, the source and destination buffer is initialized
546 * with a known pattern. This pattern is different depending on
547 * whether it's in an area which is supposed to be copied or
548 * overwritten, and different in the source and destination buffers.
549 * So if the DMA engine doesn't copy exactly what we tell it to copy,
550 * we'll notice.
551 */
552static int dmatest_func(void *data)
553{
554 struct dmatest_thread *thread = data;
6f6a23a2 555 struct dmatest_done *done = &thread->test_done;
e03e93a9 556 struct dmatest_info *info;
15b8a8ea 557 struct dmatest_params *params;
4a776f0a 558 struct dma_chan *chan;
8be9e32b 559 struct dma_device *dev;
4a776f0a
HS
560 unsigned int error_count;
561 unsigned int failed_tests = 0;
562 unsigned int total_tests = 0;
563 dma_cookie_t cookie;
564 enum dma_status status;
b54d5cb9 565 enum dma_ctrl_flags flags;
945b5af3 566 u8 *pq_coefs = NULL;
4a776f0a 567 int ret;
41d00bb7 568 unsigned int buf_size;
361deb72
AA
569 struct dmatest_data *src;
570 struct dmatest_data *dst;
b54d5cb9 571 int i;
e9405ef0 572 ktime_t ktime, start, diff;
8b0e1953
TG
573 ktime_t filltime = 0;
574 ktime_t comparetime = 0;
86727443
DW
575 s64 runtime = 0;
576 unsigned long long total_len = 0;
6138f967 577 unsigned long long iops = 0;
d6481608 578 u8 align = 0;
61b5f54d 579 bool is_memset = false;
72ef08bf
LA
580 dma_addr_t *srcs;
581 dma_addr_t *dma_pq;
4a776f0a 582
adfa543e 583 set_freezable();
4a776f0a
HS
584
585 ret = -ENOMEM;
4a776f0a
HS
586
587 smp_rmb();
d53513d5 588 thread->pending = false;
e03e93a9 589 info = thread->info;
15b8a8ea 590 params = &info->params;
4a776f0a 591 chan = thread->chan;
8be9e32b 592 dev = chan->device;
361deb72
AA
593 src = &thread->src;
594 dst = &thread->dst;
d6481608 595 if (thread->type == DMA_MEMCPY) {
a875abfa
SA
596 align = params->alignment < 0 ? dev->copy_align :
597 params->alignment;
361deb72 598 src->cnt = dst->cnt = 1;
61b5f54d 599 } else if (thread->type == DMA_MEMSET) {
a875abfa
SA
600 align = params->alignment < 0 ? dev->fill_align :
601 params->alignment;
361deb72 602 src->cnt = dst->cnt = 1;
61b5f54d 603 is_memset = true;
d6481608 604 } else if (thread->type == DMA_XOR) {
8be9e32b 605 /* force odd to ensure dst = src */
361deb72
AA
606 src->cnt = min_odd(params->xor_sources | 1, dev->max_xor);
607 dst->cnt = 1;
a875abfa
SA
608 align = params->alignment < 0 ? dev->xor_align :
609 params->alignment;
58691d64 610 } else if (thread->type == DMA_PQ) {
8be9e32b 611 /* force odd to ensure dst = src */
361deb72
AA
612 src->cnt = min_odd(params->pq_sources | 1, dma_maxpq(dev, 0));
613 dst->cnt = 2;
a875abfa
SA
614 align = params->alignment < 0 ? dev->pq_align :
615 params->alignment;
945b5af3 616
31d18257 617 pq_coefs = kmalloc(params->pq_sources + 1, GFP_KERNEL);
945b5af3
AS
618 if (!pq_coefs)
619 goto err_thread_type;
620
361deb72 621 for (i = 0; i < src->cnt; i++)
58691d64 622 pq_coefs[i] = 1;
b54d5cb9 623 } else
945b5af3 624 goto err_thread_type;
b54d5cb9 625
787d3083 626 /* Check if buffer count fits into map count variable (u8) */
361deb72 627 if ((src->cnt + dst->cnt) >= 255) {
787d3083 628 pr_err("too many buffers (%d of 255 supported)\n",
361deb72 629 src->cnt + dst->cnt);
3f3c7554 630 goto err_free_coefs;
787d3083
AA
631 }
632
41d00bb7
AA
633 buf_size = params->buf_size;
634 if (1 << align > buf_size) {
787d3083 635 pr_err("%u-byte buffer too small for %d-byte alignment\n",
41d00bb7 636 buf_size, 1 << align);
3f3c7554 637 goto err_free_coefs;
787d3083
AA
638 }
639
3b6679f9 640 if (dmatest_alloc_test_data(src, buf_size, align) < 0)
3f3c7554 641 goto err_free_coefs;
d6481608 642
3b6679f9
AA
643 if (dmatest_alloc_test_data(dst, buf_size, align) < 0)
644 goto err_src;
b54d5cb9 645
e44e0aa3
DW
646 set_user_nice(current, 10);
647
361deb72 648 srcs = kcalloc(src->cnt, sizeof(dma_addr_t), GFP_KERNEL);
72ef08bf 649 if (!srcs)
3b6679f9 650 goto err_dst;
72ef08bf 651
361deb72 652 dma_pq = kcalloc(dst->cnt, sizeof(dma_addr_t), GFP_KERNEL);
72ef08bf
LA
653 if (!dma_pq)
654 goto err_srcs_array;
655
b203bd3f 656 /*
d1cab34c 657 * src and dst buffers are freed by ourselves below
b203bd3f 658 */
fb9816f9
PU
659 if (params->polled)
660 flags = DMA_CTRL_ACK;
661 else
662 flags = DMA_CTRL_ACK | DMA_PREP_INTERRUPT;
4a776f0a 663
86727443 664 ktime = ktime_get();
b9f96020
AS
665 while (!(kthread_should_stop() ||
666 (params->iterations && total_tests >= params->iterations))) {
b54d5cb9 667 struct dma_async_tx_descriptor *tx = NULL;
4076e755 668 struct dmaengine_unmap_data *um;
4076e755 669 dma_addr_t *dsts;
361deb72 670 unsigned int len;
d86be86e 671
4a776f0a
HS
672 total_tests++;
673
13396a13 674 if (params->transfer_size) {
41d00bb7 675 if (params->transfer_size >= buf_size) {
13396a13 676 pr_err("%u-byte transfer size must be lower than %u-buffer size\n",
41d00bb7 677 params->transfer_size, buf_size);
13396a13
SA
678 break;
679 }
680 len = params->transfer_size;
681 } else if (params->norandom) {
41d00bb7 682 len = buf_size;
13396a13 683 } else {
41d00bb7 684 len = dmatest_random() % buf_size + 1;
13396a13 685 }
ede23a58 686
13396a13
SA
687 /* Do not alter transfer size explicitly defined by user */
688 if (!params->transfer_size) {
689 len = (len >> align) << align;
690 if (!len)
691 len = 1 << align;
692 }
ede23a58
AS
693 total_len += len;
694
2e67a087 695 if (params->norandom) {
361deb72
AA
696 src->off = 0;
697 dst->off = 0;
e3b9c347 698 } else {
41d00bb7
AA
699 src->off = dmatest_random() % (buf_size - len + 1);
700 dst->off = dmatest_random() % (buf_size - len + 1);
e3b9c347 701
361deb72
AA
702 src->off = (src->off >> align) << align;
703 dst->off = (dst->off >> align) << align;
2e67a087 704 }
e3b9c347 705
2e67a087
YS
706 if (!params->noverify) {
707 start = ktime_get();
361deb72 708 dmatest_init_srcs(src->aligned, src->off, len,
41d00bb7 709 buf_size, is_memset);
361deb72 710 dmatest_init_dsts(dst->aligned, dst->off, len,
41d00bb7 711 buf_size, is_memset);
e9405ef0
SK
712
713 diff = ktime_sub(ktime_get(), start);
714 filltime = ktime_add(filltime, diff);
e3b9c347
DW
715 }
716
361deb72 717 um = dmaengine_get_unmap_data(dev->dev, src->cnt + dst->cnt,
4076e755
DW
718 GFP_KERNEL);
719 if (!um) {
720 failed_tests++;
721 result("unmap data NULL", total_tests,
361deb72 722 src->off, dst->off, len, ret);
4076e755
DW
723 continue;
724 }
4a776f0a 725
41d00bb7 726 um->len = buf_size;
361deb72
AA
727 for (i = 0; i < src->cnt; i++) {
728 void *buf = src->aligned[i];
4076e755 729 struct page *pg = virt_to_page(buf);
f62e5f61 730 unsigned long pg_off = offset_in_page(buf);
4076e755
DW
731
732 um->addr[i] = dma_map_page(dev->dev, pg, pg_off,
733 um->len, DMA_TO_DEVICE);
361deb72 734 srcs[i] = um->addr[i] + src->off;
4076e755 735 ret = dma_mapping_error(dev->dev, um->addr[i]);
afde3be1 736 if (ret) {
872f05c6 737 result("src mapping error", total_tests,
361deb72 738 src->off, dst->off, len, ret);
6454368a 739 goto error_unmap_continue;
afde3be1 740 }
4076e755 741 um->to_cnt++;
b54d5cb9 742 }
d86be86e 743 /* map with DMA_BIDIRECTIONAL to force writeback/invalidate */
361deb72
AA
744 dsts = &um->addr[src->cnt];
745 for (i = 0; i < dst->cnt; i++) {
746 void *buf = dst->aligned[i];
4076e755 747 struct page *pg = virt_to_page(buf);
f62e5f61 748 unsigned long pg_off = offset_in_page(buf);
4076e755
DW
749
750 dsts[i] = dma_map_page(dev->dev, pg, pg_off, um->len,
751 DMA_BIDIRECTIONAL);
752 ret = dma_mapping_error(dev->dev, dsts[i]);
afde3be1 753 if (ret) {
872f05c6 754 result("dst mapping error", total_tests,
361deb72 755 src->off, dst->off, len, ret);
6454368a 756 goto error_unmap_continue;
afde3be1 757 }
4076e755 758 um->bidi_cnt++;
b54d5cb9
DW
759 }
760
761 if (thread->type == DMA_MEMCPY)
762 tx = dev->device_prep_dma_memcpy(chan,
361deb72 763 dsts[0] + dst->off,
4076e755 764 srcs[0], len, flags);
61b5f54d
SK
765 else if (thread->type == DMA_MEMSET)
766 tx = dev->device_prep_dma_memset(chan,
361deb72
AA
767 dsts[0] + dst->off,
768 *(src->aligned[0] + src->off),
61b5f54d 769 len, flags);
b54d5cb9
DW
770 else if (thread->type == DMA_XOR)
771 tx = dev->device_prep_dma_xor(chan,
361deb72
AA
772 dsts[0] + dst->off,
773 srcs, src->cnt,
b54d5cb9 774 len, flags);
58691d64 775 else if (thread->type == DMA_PQ) {
361deb72
AA
776 for (i = 0; i < dst->cnt; i++)
777 dma_pq[i] = dsts[i] + dst->off;
4076e755 778 tx = dev->device_prep_dma_pq(chan, dma_pq, srcs,
361deb72 779 src->cnt, pq_coefs,
58691d64
DW
780 len, flags);
781 }
d86be86e 782
d86be86e 783 if (!tx) {
361deb72
AA
784 result("prep error", total_tests, src->off,
785 dst->off, len, ret);
d86be86e 786 msleep(100);
6454368a 787 goto error_unmap_continue;
d86be86e 788 }
e44e0aa3 789
6f6a23a2 790 done->done = false;
fb9816f9
PU
791 if (!params->polled) {
792 tx->callback = dmatest_callback;
793 tx->callback_param = done;
794 }
d86be86e
AN
795 cookie = tx->tx_submit(tx);
796
4a776f0a 797 if (dma_submit_error(cookie)) {
361deb72
AA
798 result("submit error", total_tests, src->off,
799 dst->off, len, ret);
4a776f0a 800 msleep(100);
6454368a 801 goto error_unmap_continue;
4a776f0a 802 }
4a776f0a 803
fb9816f9
PU
804 if (params->polled) {
805 status = dma_sync_wait(chan, cookie);
806 dmaengine_terminate_sync(chan);
807 if (status == DMA_COMPLETE)
808 done->done = true;
809 } else {
810 dma_async_issue_pending(chan);
811
812 wait_event_freezable_timeout(thread->done_wait,
813 done->done,
814 msecs_to_jiffies(params->timeout));
981ed70d 815
fb9816f9
PU
816 status = dma_async_is_tx_complete(chan, cookie, NULL,
817 NULL);
818 }
4a776f0a 819
6f6a23a2 820 if (!done->done) {
361deb72 821 result("test timed out", total_tests, src->off, dst->off,
872f05c6 822 len, 0);
6454368a 823 goto error_unmap_continue;
19e9f99f 824 } else if (status != DMA_COMPLETE) {
872f05c6
DW
825 result(status == DMA_ERROR ?
826 "completion error status" :
361deb72
AA
827 "completion busy status", total_tests, src->off,
828 dst->off, len, ret);
6454368a 829 goto error_unmap_continue;
4a776f0a 830 }
e44e0aa3 831
6454368a
AS
832 dmaengine_unmap_put(um);
833
e3b9c347 834 if (params->noverify) {
361deb72
AA
835 verbose_result("test passed", total_tests, src->off,
836 dst->off, len, 0);
e3b9c347
DW
837 continue;
838 }
4a776f0a 839
e9405ef0 840 start = ktime_get();
872f05c6 841 pr_debug("%s: verifying source buffer...\n", current->comm);
361deb72 842 error_count = dmatest_verify(src->aligned, 0, src->off,
61b5f54d 843 0, PATTERN_SRC, true, is_memset);
361deb72
AA
844 error_count += dmatest_verify(src->aligned, src->off,
845 src->off + len, src->off,
61b5f54d 846 PATTERN_SRC | PATTERN_COPY, true, is_memset);
361deb72 847 error_count += dmatest_verify(src->aligned, src->off + len,
41d00bb7 848 buf_size, src->off + len,
61b5f54d 849 PATTERN_SRC, true, is_memset);
7b610178 850
872f05c6 851 pr_debug("%s: verifying dest buffer...\n", current->comm);
361deb72 852 error_count += dmatest_verify(dst->aligned, 0, dst->off,
61b5f54d
SK
853 0, PATTERN_DST, false, is_memset);
854
361deb72
AA
855 error_count += dmatest_verify(dst->aligned, dst->off,
856 dst->off + len, src->off,
61b5f54d
SK
857 PATTERN_SRC | PATTERN_COPY, false, is_memset);
858
361deb72 859 error_count += dmatest_verify(dst->aligned, dst->off + len,
41d00bb7 860 buf_size, dst->off + len,
61b5f54d 861 PATTERN_DST, false, is_memset);
4a776f0a 862
e9405ef0
SK
863 diff = ktime_sub(ktime_get(), start);
864 comparetime = ktime_add(comparetime, diff);
865
4a776f0a 866 if (error_count) {
361deb72 867 result("data error", total_tests, src->off, dst->off,
872f05c6 868 len, error_count);
4a776f0a
HS
869 failed_tests++;
870 } else {
361deb72
AA
871 verbose_result("test passed", total_tests, src->off,
872 dst->off, len, 0);
4a776f0a 873 }
6454368a
AS
874
875 continue;
876
877error_unmap_continue:
878 dmaengine_unmap_put(um);
879 failed_tests++;
4a776f0a 880 }
e9405ef0
SK
881 ktime = ktime_sub(ktime_get(), ktime);
882 ktime = ktime_sub(ktime, comparetime);
883 ktime = ktime_sub(ktime, filltime);
884 runtime = ktime_to_us(ktime);
4a776f0a
HS
885
886 ret = 0;
72ef08bf
LA
887 kfree(dma_pq);
888err_srcs_array:
889 kfree(srcs);
3b6679f9
AA
890err_dst:
891 dmatest_free_test_data(dst);
892err_src:
893 dmatest_free_test_data(src);
3f3c7554 894err_free_coefs:
945b5af3
AS
895 kfree(pq_coefs);
896err_thread_type:
6138f967
SA
897 iops = dmatest_persec(runtime, total_tests);
898 pr_info("%s: summary %u tests, %u failures %llu.%02llu iops %llu KB/s (%d)\n",
86727443 899 current->comm, total_tests, failed_tests,
6138f967 900 FIXPT_TO_INT(iops), FIXPT_GET_FRAC(iops),
86727443 901 dmatest_KBs(runtime, total_len), ret);
0a2ff57d 902
9704efaa 903 /* terminate all transfers on specified channels */
6f6a23a2 904 if (ret || failed_tests)
fbffb6b4 905 dmaengine_terminate_sync(chan);
5e034f7b 906
3e5ccd86 907 thread->done = true;
2d88ce76 908 wake_up(&thread_wait);
0a2ff57d 909
4a776f0a
HS
910 return ret;
911}
912
913static void dmatest_cleanup_channel(struct dmatest_chan *dtc)
914{
915 struct dmatest_thread *thread;
916 struct dmatest_thread *_thread;
917 int ret;
918
919 list_for_each_entry_safe(thread, _thread, &dtc->threads, node) {
920 ret = kthread_stop(thread->task);
0adff800
DW
921 pr_debug("thread %s exited with status %d\n",
922 thread->task->comm, ret);
4a776f0a 923 list_del(&thread->node);
2d88ce76 924 put_task_struct(thread->task);
4a776f0a
HS
925 kfree(thread);
926 }
9704efaa
VK
927
928 /* terminate all transfers on specified channels */
fbffb6b4 929 dmaengine_terminate_sync(dtc->chan);
9704efaa 930
4a776f0a
HS
931 kfree(dtc);
932}
933
e03e93a9
AS
934static int dmatest_add_threads(struct dmatest_info *info,
935 struct dmatest_chan *dtc, enum dma_transaction_type type)
4a776f0a 936{
15b8a8ea 937 struct dmatest_params *params = &info->params;
b54d5cb9
DW
938 struct dmatest_thread *thread;
939 struct dma_chan *chan = dtc->chan;
940 char *op;
941 unsigned int i;
4a776f0a 942
b54d5cb9
DW
943 if (type == DMA_MEMCPY)
944 op = "copy";
61b5f54d
SK
945 else if (type == DMA_MEMSET)
946 op = "set";
b54d5cb9
DW
947 else if (type == DMA_XOR)
948 op = "xor";
58691d64
DW
949 else if (type == DMA_PQ)
950 op = "pq";
b54d5cb9
DW
951 else
952 return -EINVAL;
4a776f0a 953
15b8a8ea 954 for (i = 0; i < params->threads_per_chan; i++) {
4a776f0a
HS
955 thread = kzalloc(sizeof(struct dmatest_thread), GFP_KERNEL);
956 if (!thread) {
0adff800
DW
957 pr_warn("No memory for %s-%s%u\n",
958 dma_chan_name(chan), op, i);
4a776f0a
HS
959 break;
960 }
e03e93a9 961 thread->info = info;
4a776f0a 962 thread->chan = dtc->chan;
b54d5cb9 963 thread->type = type;
6f6a23a2
AW
964 thread->test_done.wait = &thread->done_wait;
965 init_waitqueue_head(&thread->done_wait);
4a776f0a 966 smp_wmb();
2d88ce76 967 thread->task = kthread_create(dmatest_func, thread, "%s-%s%u",
b54d5cb9 968 dma_chan_name(chan), op, i);
4a776f0a 969 if (IS_ERR(thread->task)) {
2d88ce76 970 pr_warn("Failed to create thread %s-%s%u\n",
0adff800 971 dma_chan_name(chan), op, i);
4a776f0a
HS
972 kfree(thread);
973 break;
974 }
975
976 /* srcbuf and dstbuf are allocated by the thread itself */
2d88ce76 977 get_task_struct(thread->task);
4a776f0a 978 list_add_tail(&thread->node, &dtc->threads);
d53513d5 979 thread->pending = true;
4a776f0a
HS
980 }
981
b54d5cb9
DW
982 return i;
983}
984
e03e93a9
AS
985static int dmatest_add_channel(struct dmatest_info *info,
986 struct dma_chan *chan)
b54d5cb9
DW
987{
988 struct dmatest_chan *dtc;
989 struct dma_device *dma_dev = chan->device;
990 unsigned int thread_count = 0;
b9033e68 991 int cnt;
b54d5cb9
DW
992
993 dtc = kmalloc(sizeof(struct dmatest_chan), GFP_KERNEL);
994 if (!dtc) {
0adff800 995 pr_warn("No memory for %s\n", dma_chan_name(chan));
b54d5cb9
DW
996 return -ENOMEM;
997 }
998
999 dtc->chan = chan;
1000 INIT_LIST_HEAD(&dtc->threads);
1001
1002 if (dma_has_cap(DMA_MEMCPY, dma_dev->cap_mask)) {
a0d4cb44
KA
1003 if (dmatest == 0) {
1004 cnt = dmatest_add_threads(info, dtc, DMA_MEMCPY);
1005 thread_count += cnt > 0 ? cnt : 0;
1006 }
b54d5cb9 1007 }
a0d4cb44 1008
61b5f54d 1009 if (dma_has_cap(DMA_MEMSET, dma_dev->cap_mask)) {
a0d4cb44 1010 if (dmatest == 1) {
c678fa66 1011 cnt = dmatest_add_threads(info, dtc, DMA_MEMSET);
a0d4cb44
KA
1012 thread_count += cnt > 0 ? cnt : 0;
1013 }
1014 }
1015
b54d5cb9 1016 if (dma_has_cap(DMA_XOR, dma_dev->cap_mask)) {
e03e93a9 1017 cnt = dmatest_add_threads(info, dtc, DMA_XOR);
f1aef8b6 1018 thread_count += cnt > 0 ? cnt : 0;
b54d5cb9 1019 }
58691d64 1020 if (dma_has_cap(DMA_PQ, dma_dev->cap_mask)) {
e03e93a9 1021 cnt = dmatest_add_threads(info, dtc, DMA_PQ);
d07a74a5 1022 thread_count += cnt > 0 ? cnt : 0;
58691d64 1023 }
b54d5cb9 1024
d53513d5 1025 pr_info("Added %u threads using %s\n",
b54d5cb9 1026 thread_count, dma_chan_name(chan));
4a776f0a 1027
838cc704
AS
1028 list_add_tail(&dtc->node, &info->channels);
1029 info->nr_channels++;
4a776f0a 1030
33df8ca0 1031 return 0;
4a776f0a
HS
1032}
1033
7dd60251 1034static bool filter(struct dma_chan *chan, void *param)
4a776f0a 1035{
15b8a8ea 1036 struct dmatest_params *params = param;
e03e93a9 1037
15b8a8ea
AS
1038 if (!dmatest_match_channel(params, chan) ||
1039 !dmatest_match_device(params, chan->device))
7dd60251 1040 return false;
33df8ca0 1041 else
7dd60251 1042 return true;
4a776f0a
HS
1043}
1044
a9e55495
DW
1045static void request_channels(struct dmatest_info *info,
1046 enum dma_transaction_type type)
4a776f0a 1047{
33df8ca0 1048 dma_cap_mask_t mask;
33df8ca0
DW
1049
1050 dma_cap_zero(mask);
a9e55495 1051 dma_cap_set(type, mask);
33df8ca0 1052 for (;;) {
a9e55495
DW
1053 struct dmatest_params *params = &info->params;
1054 struct dma_chan *chan;
1055
15b8a8ea 1056 chan = dma_request_channel(mask, filter, params);
33df8ca0 1057 if (chan) {
a9e55495 1058 if (dmatest_add_channel(info, chan)) {
33df8ca0
DW
1059 dma_release_channel(chan);
1060 break; /* add_channel failed, punt */
1061 }
1062 } else
1063 break; /* no more channels available */
15b8a8ea
AS
1064 if (params->max_channels &&
1065 info->nr_channels >= params->max_channels)
33df8ca0
DW
1066 break; /* we have all we need */
1067 }
4a776f0a 1068}
4a776f0a 1069
d53513d5 1070static void add_threaded_test(struct dmatest_info *info)
851b7e16 1071{
a9e55495 1072 struct dmatest_params *params = &info->params;
851b7e16 1073
a9e55495
DW
1074 /* Copy test parameters */
1075 params->buf_size = test_buf_size;
1076 strlcpy(params->channel, strim(test_channel), sizeof(params->channel));
1077 strlcpy(params->device, strim(test_device), sizeof(params->device));
1078 params->threads_per_chan = threads_per_chan;
1079 params->max_channels = max_channels;
1080 params->iterations = iterations;
1081 params->xor_sources = xor_sources;
1082 params->pq_sources = pq_sources;
1083 params->timeout = timeout;
e3b9c347 1084 params->noverify = noverify;
2e67a087 1085 params->norandom = norandom;
a875abfa 1086 params->alignment = alignment;
13396a13 1087 params->transfer_size = transfer_size;
fb9816f9 1088 params->polled = polled;
a9e55495
DW
1089
1090 request_channels(info, DMA_MEMCPY);
61b5f54d 1091 request_channels(info, DMA_MEMSET);
a9e55495
DW
1092 request_channels(info, DMA_XOR);
1093 request_channels(info, DMA_PQ);
851b7e16 1094}
851b7e16 1095
d53513d5
SA
1096static void run_pending_tests(struct dmatest_info *info)
1097{
1098 struct dmatest_chan *dtc;
1099 unsigned int thread_count = 0;
1100
1101 list_for_each_entry(dtc, &info->channels, node) {
1102 struct dmatest_thread *thread;
1103
1104 thread_count = 0;
1105 list_for_each_entry(thread, &dtc->threads, node) {
1106 wake_up_process(thread->task);
1107 thread_count++;
1108 }
1109 pr_info("Started %u threads using %s\n",
1110 thread_count, dma_chan_name(dtc->chan));
1111 }
1112}
1113
a310d037 1114static void stop_threaded_test(struct dmatest_info *info)
4a776f0a 1115{
33df8ca0 1116 struct dmatest_chan *dtc, *_dtc;
7cbd4877 1117 struct dma_chan *chan;
33df8ca0 1118
838cc704 1119 list_for_each_entry_safe(dtc, _dtc, &info->channels, node) {
33df8ca0 1120 list_del(&dtc->node);
7cbd4877 1121 chan = dtc->chan;
33df8ca0 1122 dmatest_cleanup_channel(dtc);
0adff800 1123 pr_debug("dropped channel %s\n", dma_chan_name(chan));
7cbd4877 1124 dma_release_channel(chan);
33df8ca0 1125 }
838cc704
AS
1126
1127 info->nr_channels = 0;
4a776f0a 1128}
e03e93a9 1129
d53513d5 1130static void start_threaded_tests(struct dmatest_info *info)
851b7e16 1131{
a310d037
DW
1132 /* we might be called early to set run=, defer running until all
1133 * parameters have been evaluated
1134 */
1135 if (!info->did_init)
a9e55495 1136 return;
851b7e16 1137
d53513d5 1138 run_pending_tests(info);
851b7e16
AS
1139}
1140
a310d037 1141static int dmatest_run_get(char *val, const struct kernel_param *kp)
851b7e16 1142{
a310d037 1143 struct dmatest_info *info = &test_info;
851b7e16
AS
1144
1145 mutex_lock(&info->lock);
a310d037
DW
1146 if (is_threaded_test_run(info)) {
1147 dmatest_run = true;
3e5ccd86 1148 } else {
d53513d5
SA
1149 if (!is_threaded_test_pending(info))
1150 stop_threaded_test(info);
a310d037 1151 dmatest_run = false;
3e5ccd86 1152 }
851b7e16 1153 mutex_unlock(&info->lock);
851b7e16 1154
a310d037 1155 return param_get_bool(val, kp);
851b7e16
AS
1156}
1157
a310d037 1158static int dmatest_run_set(const char *val, const struct kernel_param *kp)
95019c8c 1159{
a310d037
DW
1160 struct dmatest_info *info = &test_info;
1161 int ret;
95019c8c 1162
a310d037
DW
1163 mutex_lock(&info->lock);
1164 ret = param_set_bool(val, kp);
1165 if (ret) {
851b7e16 1166 mutex_unlock(&info->lock);
a310d037 1167 return ret;
d53513d5 1168 } else if (dmatest_run) {
6b41030f
VM
1169 if (!is_threaded_test_pending(info)) {
1170 pr_info("No channels configured, continue with any\n");
1171 add_threaded_test(info);
1172 }
1173 start_threaded_tests(info);
d53513d5
SA
1174 } else {
1175 stop_threaded_test(info);
1176 }
1177
1178 mutex_unlock(&info->lock);
1179
1180 return ret;
1181}
1182
1183static int dmatest_chan_set(const char *val, const struct kernel_param *kp)
1184{
1185 struct dmatest_info *info = &test_info;
1186 struct dmatest_chan *dtc;
1187 char chan_reset_val[20];
1188 int ret = 0;
1189
1190 mutex_lock(&info->lock);
1191 ret = param_set_copystring(val, kp);
1192 if (ret) {
1193 mutex_unlock(&info->lock);
1194 return ret;
1195 }
1196 /*Clear any previously run threads */
1197 if (!is_threaded_test_run(info) && !is_threaded_test_pending(info))
1198 stop_threaded_test(info);
1199 /* Reject channels that are already registered */
1200 if (is_threaded_test_pending(info)) {
1201 list_for_each_entry(dtc, &info->channels, node) {
1202 if (strcmp(dma_chan_name(dtc->chan),
1203 strim(test_channel)) == 0) {
1204 dtc = list_last_entry(&info->channels,
1205 struct dmatest_chan,
1206 node);
1207 strlcpy(chan_reset_val,
1208 dma_chan_name(dtc->chan),
1209 sizeof(chan_reset_val));
1210 ret = -EBUSY;
1211 goto add_chan_err;
1212 }
1213 }
95019c8c
AS
1214 }
1215
d53513d5
SA
1216 add_threaded_test(info);
1217
1218 /* Check if channel was added successfully */
1219 dtc = list_last_entry(&info->channels, struct dmatest_chan, node);
1220
1221 if (dtc->chan) {
1222 /*
1223 * if new channel was not successfully added, revert the
1224 * "test_channel" string to the name of the last successfully
1225 * added channel. exception for when users issues empty string
1226 * to channel parameter.
1227 */
1228 if ((strcmp(dma_chan_name(dtc->chan), strim(test_channel)) != 0)
1229 && (strcmp("", strim(test_channel)) != 0)) {
1230 ret = -EINVAL;
1231 strlcpy(chan_reset_val, dma_chan_name(dtc->chan),
1232 sizeof(chan_reset_val));
1233 goto add_chan_err;
1234 }
1235
1236 } else {
1237 /* Clear test_channel if no channels were added successfully */
1238 strlcpy(chan_reset_val, "", sizeof(chan_reset_val));
a310d037 1239 ret = -EBUSY;
d53513d5
SA
1240 goto add_chan_err;
1241 }
1242
1243 mutex_unlock(&info->lock);
1244
1245 return ret;
851b7e16 1246
d53513d5
SA
1247add_chan_err:
1248 param_set_copystring(chan_reset_val, kp);
a310d037 1249 mutex_unlock(&info->lock);
851b7e16 1250
a310d037 1251 return ret;
851b7e16
AS
1252}
1253
d53513d5
SA
1254static int dmatest_chan_get(char *val, const struct kernel_param *kp)
1255{
1256 struct dmatest_info *info = &test_info;
1257
1258 mutex_lock(&info->lock);
1259 if (!is_threaded_test_run(info) && !is_threaded_test_pending(info)) {
1260 stop_threaded_test(info);
1261 strlcpy(test_channel, "", sizeof(test_channel));
1262 }
1263 mutex_unlock(&info->lock);
1264
1265 return param_get_string(val, kp);
1266}
1267
1268static int dmatest_test_list_get(char *val, const struct kernel_param *kp)
1269{
1270 struct dmatest_info *info = &test_info;
1271 struct dmatest_chan *dtc;
1272 unsigned int thread_count = 0;
1273
1274 list_for_each_entry(dtc, &info->channels, node) {
1275 struct dmatest_thread *thread;
1276
1277 thread_count = 0;
1278 list_for_each_entry(thread, &dtc->threads, node) {
1279 thread_count++;
1280 }
1281 pr_info("%u threads using %s\n",
1282 thread_count, dma_chan_name(dtc->chan));
1283 }
1284
1285 return 0;
1286}
1287
e03e93a9
AS
1288static int __init dmatest_init(void)
1289{
1290 struct dmatest_info *info = &test_info;
2d88ce76 1291 struct dmatest_params *params = &info->params;
e03e93a9 1292
a310d037
DW
1293 if (dmatest_run) {
1294 mutex_lock(&info->lock);
d53513d5
SA
1295 add_threaded_test(info);
1296 run_pending_tests(info);
a310d037
DW
1297 mutex_unlock(&info->lock);
1298 }
838cc704 1299
2d88ce76
DW
1300 if (params->iterations && wait)
1301 wait_event(thread_wait, !is_threaded_test_run(info));
95019c8c 1302
a310d037
DW
1303 /* module parameters are stable, inittime tests are started,
1304 * let userspace take over 'run' control
1305 */
1306 info->did_init = true;
851b7e16 1307
851b7e16 1308 return 0;
e03e93a9
AS
1309}
1310/* when compiled-in wait for drivers to load first */
1311late_initcall(dmatest_init);
1312
1313static void __exit dmatest_exit(void)
1314{
1315 struct dmatest_info *info = &test_info;
1316
a310d037 1317 mutex_lock(&info->lock);
e03e93a9 1318 stop_threaded_test(info);
a310d037 1319 mutex_unlock(&info->lock);
e03e93a9 1320}
4a776f0a
HS
1321module_exit(dmatest_exit);
1322
e05503ef 1323MODULE_AUTHOR("Haavard Skinnemoen (Atmel)");
4a776f0a 1324MODULE_LICENSE("GPL v2");