2017-11-03 10:19:40 +05:30
==============
DMA Test Guide
==============
2013-03-04 11:09:30 +02:00
2017-11-03 10:19:40 +05:30
Andy Shevchenko <andriy.shevchenko@linux.intel.com>
2013-03-04 11:09:30 +02:00
This small document introduces how to test DMA drivers using dmatest module.
2018-03-26 14:50:25 +03:00
.. note ::
The test suite works only on the channels that have at least one
capability of the following: DMA_MEMCPY (memory-to-memory), DMA_MEMSET
(const-to-memory or memory-to-memory, when emulated), DMA_XOR, DMA_PQ.
2017-11-03 10:19:40 +05:30
Part 1 - How to build the test module
=====================================
2013-03-04 11:09:30 +02:00
The menuconfig contains an option that could be found by following path:
2018-03-26 14:50:26 +03:00
2013-03-04 11:09:30 +02:00
Device Drivers -> DMA Engine support -> DMA Test client
In the configuration file the option called CONFIG_DMATEST. The dmatest could
be built as module or inside kernel. Let's consider those cases.
2017-11-03 10:19:40 +05:30
Part 2 - When dmatest is built as a module
==========================================
2013-03-04 11:09:30 +02:00
2018-03-26 14:50:26 +03:00
Example of usage::
2013-11-06 16:30:01 -08:00
2017-11-03 10:19:40 +05:30
% modprobe dmatest channel=dma0chan0 timeout=2000 iterations=1 run=1
2013-11-06 16:30:01 -08:00
2018-03-26 14:50:26 +03:00
...or::
2013-11-06 16:30:01 -08:00
2017-11-03 10:19:40 +05:30
% modprobe dmatest
% echo dma0chan0 > /sys/module/dmatest/parameters/channel
% echo 2000 > /sys/module/dmatest/parameters/timeout
% echo 1 > /sys/module/dmatest/parameters/iterations
% echo 1 > /sys/module/dmatest/parameters/run
2013-03-04 11:09:30 +02:00
2018-03-26 14:50:26 +03:00
...or on the kernel command line::
2017-11-03 10:19:40 +05:30
dmatest.channel=dma0chan0 dmatest.timeout=2000 dmatest.iterations=1 dmatest.run=1
2018-03-26 14:50:26 +03:00
.. hint ::
available channel list could be extracted by running the following command::
2017-11-03 10:19:40 +05:30
% ls -1 /sys/class/dma/
2013-03-04 11:09:30 +02:00
2013-11-06 16:29:58 -08:00
Once started a message like "dmatest: Started 1 threads using dma0chan0" is
2016-11-03 07:03:30 -06:00
emitted. After that only test failure messages are reported until the test
2013-11-06 16:29:58 -08:00
stops.
2013-03-04 11:09:30 +02:00
2013-05-23 14:29:53 +03:00
Note that running a new test will not stop any in progress test.
2013-03-04 11:09:30 +02:00
2017-11-03 10:19:40 +05:30
The following command returns the state of the test. ::
% cat /sys/module/dmatest/parameters/run
2013-03-04 11:09:31 +02:00
2013-11-06 16:30:09 -08:00
To wait for test completion userpace can poll 'run' until it is false, or use
2016-11-03 07:03:30 -06:00
the wait parameter. Specifying 'wait=1' when loading the module causes module
2013-11-06 16:30:09 -08:00
initialization to pause until a test run has completed, while reading
/sys/module/dmatest/parameters/wait waits for any running test to complete
2016-11-03 07:03:30 -06:00
before returning. For example, the following scripts wait for 42 tests
to complete before exiting. Note that if 'iterations' is set to 'infinite' then
2013-11-06 16:30:09 -08:00
waiting is disabled.
2013-03-04 11:09:31 +02:00
2018-03-26 14:50:26 +03:00
Example::
2017-11-03 10:19:40 +05:30
% modprobe dmatest run=1 iterations=42 wait=1
% modprobe -r dmatest
2013-03-04 11:09:31 +02:00
2018-03-26 14:50:26 +03:00
...or::
2017-11-03 10:19:40 +05:30
% modprobe dmatest run=1 iterations=42
% cat /sys/module/dmatest/parameters/wait
% modprobe -r dmatest
Part 3 - When built-in in the kernel
====================================
2013-03-04 11:09:30 +02:00
The module parameters that is supplied to the kernel command line will be used
for the first performed test. After user gets a control, the test could be
2013-05-23 14:29:53 +03:00
re-run with the same or different parameters. For the details see the above
2018-03-26 14:50:26 +03:00
section `Part 2 - When dmatest is built as a module`_ .
2013-03-04 11:09:30 +02:00
2013-07-23 18:36:46 +03:00
In both cases the module parameters are used as the actual values for the test
2017-11-03 10:19:40 +05:30
case. You always could check them at run-time by running ::
% grep -H . /sys/module/dmatest/parameters/*
2013-03-04 11:09:33 +02:00
2017-11-03 10:19:40 +05:30
Part 4 - Gathering the test results
===================================
2013-03-04 11:09:33 +02:00
2018-03-26 14:50:26 +03:00
Test results are printed to the kernel log buffer with the format::
2013-03-04 11:09:33 +02:00
2017-11-03 10:19:40 +05:30
"dmatest: result <channel>: <test id>: '<error msg>' with src_off=<val> dst_off=<val> len=<val> (<err code>)"
2013-03-04 11:09:33 +02:00
2018-03-26 14:50:26 +03:00
Example of output::
2017-11-03 10:19:40 +05:30
% dmesg | tail -n 1
dmatest: result dma0chan0-copy0: #1: No errors with src_off=0x7bf dst_off=0x8ad len=0x3fea (0)
2013-03-04 11:09:33 +02:00
2018-03-26 14:50:27 +03:00
The message format is unified across the different types of errors. A
number in the parentheses represents additional information, e.g. error
code, error counter, or status. A test thread also emits a summary line at
completion listing the number of tests executed, number that failed, and a
result code.
2013-03-04 11:09:33 +02:00
2018-03-26 14:50:26 +03:00
Example::
2017-11-03 10:19:40 +05:30
% dmesg | tail -n 1
dmatest: dma0chan0-copy0: summary 1 test, 0 failures 1000 iops 100000 KB/s (0)
2013-11-06 16:30:07 -08:00
2013-11-06 16:29:58 -08:00
The details of a data miscompare error are also emitted, but do not follow the
above format.