2013-03-04 13:09:30 +04:00
DMA Test Guide
==============
Andy Shevchenko <andriy.shevchenko@linux.intel.com>
This small document introduces how to test DMA drivers using dmatest module.
Part 1 - How to build the test module
The menuconfig contains an option that could be found by following path:
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.
Part 2 - When dmatest is built as a module...
Example of usage:
2013-11-07 04:30:01 +04:00
% modprobe dmatest channel=dma0chan0 timeout=2000 iterations=1 run=1
...or:
% modprobe dmatest
2013-07-23 19:36:46 +04:00
% echo dma0chan0 > /sys/module/dmatest/parameters/channel
% echo 2000 > /sys/module/dmatest/parameters/timeout
% echo 1 > /sys/module/dmatest/parameters/iterations
2013-11-07 04:30:01 +04:00
% echo 1 > /sys/module/dmatest/parameters/run
...or on the kernel command line:
dmatest.channel=dma0chan0 dmatest.timeout=2000 dmatest.iterations=1 dmatest.run=1
2013-03-04 13:09:30 +04:00
Hint: available channel list could be extracted by running the following
command:
% ls -1 /sys/class/dma/
2013-11-07 04:29:58 +04:00
Once started a message like "dmatest: Started 1 threads using dma0chan0" is
2016-11-03 16:03:30 +03:00
emitted. After that only test failure messages are reported until the test
2013-11-07 04:29:58 +04:00
stops.
2013-03-04 13:09:30 +04:00
2013-05-23 15:29:53 +04:00
Note that running a new test will not stop any in progress test.
2013-03-04 13:09:30 +04:00
2013-11-07 04:30:09 +04:00
The following command returns the state of the test.
% cat /sys/module/dmatest/parameters/run
2013-03-04 13:09:31 +04:00
2013-11-07 04:30:09 +04:00
To wait for test completion userpace can poll 'run' until it is false, or use
2016-11-03 16:03:30 +03:00
the wait parameter. Specifying 'wait=1' when loading the module causes module
2013-11-07 04:30:09 +04: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 16:03:30 +03: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-07 04:30:09 +04:00
waiting is disabled.
2013-03-04 13:09:31 +04:00
2013-11-07 04:30:09 +04:00
Example:
% modprobe dmatest run=1 iterations=42 wait=1
% modprobe -r dmatest
...or:
% modprobe dmatest run=1 iterations=42
% cat /sys/module/dmatest/parameters/wait
% modprobe -r dmatest
2013-03-04 13:09:31 +04:00
2013-03-04 13:09:30 +04:00
Part 3 - When built-in in the kernel...
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 15:29:53 +04:00
re-run with the same or different parameters. For the details see the above
section "Part 2 - When dmatest is built as a module..."
2013-03-04 13:09:30 +04:00
2013-07-23 19:36:46 +04:00
In both cases the module parameters are used as the actual values for the test
case. You always could check them at run-time by running
2013-03-04 13:09:30 +04:00
% grep -H . /sys/module/dmatest/parameters/*
2013-03-04 13:09:33 +04:00
Part 4 - Gathering the test results
2013-11-07 04:29:58 +04:00
Test results are printed to the kernel log buffer with the format:
2013-03-04 13:09:33 +04:00
2013-11-07 04:29:58 +04:00
"dmatest: result <channel>: <test id>: '<error msg>' with src_off=<val> dst_off=<val> len=<val> (<err code>)"
2013-03-04 13:09:33 +04:00
Example of output:
2013-11-07 04:29:58 +04:00
% dmesg | tail -n 1
dmatest: result dma0chan0-copy0: #1: No errors with src_off=0x7bf dst_off=0x8ad len=0x3fea (0)
2013-03-04 13:09:33 +04:00
The message format is unified across the different types of errors. A number in
the parens represents additional information, e.g. error code, error counter,
2016-11-03 16:03:30 +03:00
or status. A test thread also emits a summary line at completion listing the
2013-11-07 04:29:58 +04:00
number of tests executed, number that failed, and a result code.
2013-03-04 13:09:33 +04:00
2013-11-07 04:30:07 +04:00
Example:
% dmesg | tail -n 1
2013-11-07 04:30:09 +04:00
dmatest: dma0chan0-copy0: summary 1 test, 0 failures 1000 iops 100000 KB/s (0)
2013-11-07 04:30:07 +04:00
2013-11-07 04:29:58 +04:00
The details of a data miscompare error are also emitted, but do not follow the
above format.