Blame view

Documentation/dmatest.txt 3.38 KB
851b7e16a   Andy Shevchenko   dmatest: run test...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  				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...
851b7e16a   Andy Shevchenko   dmatest: run test...
17
  Example of usage:
a310d037b   Dan Williams   dmatest: restore ...
18
19
20
21
  	% modprobe dmatest channel=dma0chan0 timeout=2000 iterations=1 run=1
  
  ...or:
  	% modprobe dmatest
a6c268d03   Andy Shevchenko   dmatest: make mod...
22
23
24
  	% echo dma0chan0 > /sys/module/dmatest/parameters/channel
  	% echo 2000 > /sys/module/dmatest/parameters/timeout
  	% echo 1 > /sys/module/dmatest/parameters/iterations
a310d037b   Dan Williams   dmatest: restore ...
25
26
27
28
29
  	% 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
851b7e16a   Andy Shevchenko   dmatest: run test...
30
31
32
33
  
  Hint: available channel list could be extracted by running the following
  command:
  	% ls -1 /sys/class/dma/
872f05c6e   Dan Williams   dmatest: replace ...
34
35
36
  Once started a message like "dmatest: Started 1 threads using dma0chan0" is
  emitted.  After that only test failure messages are reported until the test
  stops.
851b7e16a   Andy Shevchenko   dmatest: run test...
37

bcc567e31   Andy Shevchenko   dmatest: do not a...
38
  Note that running a new test will not stop any in progress test.
851b7e16a   Andy Shevchenko   dmatest: run test...
39

2d88ce76e   Dan Williams   dmatest: add a 'w...
40
41
  The following command returns the state of the test.
  	% cat /sys/module/dmatest/parameters/run
3e5ccd866   Andy Shevchenko   dmatest: return a...
42

2d88ce76e   Dan Williams   dmatest: add a 'w...
43
44
45
46
47
48
49
  To wait for test completion userpace can poll 'run' until it is false, or use
  the wait parameter.  Specifying 'wait=1' when loading the module causes module
  initialization to pause until a test run has completed, while reading
  /sys/module/dmatest/parameters/wait waits for any running test to complete
  before returning.  For example, the following scripts wait for 42 tests
  to complete before exiting.  Note that if 'iterations' is set to 'infinite' then
  waiting is disabled.
3e5ccd866   Andy Shevchenko   dmatest: return a...
50

2d88ce76e   Dan Williams   dmatest: add a 'w...
51
52
53
54
55
56
57
  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
3e5ccd866   Andy Shevchenko   dmatest: return a...
58

851b7e16a   Andy Shevchenko   dmatest: run test...
59
60
61
62
  	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
bcc567e31   Andy Shevchenko   dmatest: do not a...
63
64
  re-run with the same or different parameters. For the details see the above
  section "Part 2 - When dmatest is built as a module..."
851b7e16a   Andy Shevchenko   dmatest: run test...
65

a6c268d03   Andy Shevchenko   dmatest: make mod...
66
67
  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
851b7e16a   Andy Shevchenko   dmatest: run test...
68
  	% grep -H . /sys/module/dmatest/parameters/*
95019c8c5   Andy Shevchenko   dmatest: gather t...
69
70
  
  	Part 4 - Gathering the test results
872f05c6e   Dan Williams   dmatest: replace ...
71
  Test results are printed to the kernel log buffer with the format:
95019c8c5   Andy Shevchenko   dmatest: gather t...
72

872f05c6e   Dan Williams   dmatest: replace ...
73
  "dmatest: result <channel>: <test id>: '<error msg>' with src_off=<val> dst_off=<val> len=<val> (<err code>)"
95019c8c5   Andy Shevchenko   dmatest: gather t...
74
75
  
  Example of output:
872f05c6e   Dan Williams   dmatest: replace ...
76
77
  	% dmesg | tail -n 1
  	dmatest: result dma0chan0-copy0: #1: No errors with src_off=0x7bf dst_off=0x8ad len=0x3fea (0)
95019c8c5   Andy Shevchenko   dmatest: gather t...
78
79
80
  
  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,
872f05c6e   Dan Williams   dmatest: replace ...
81
82
  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.
95019c8c5   Andy Shevchenko   dmatest: gather t...
83

86727443a   Dan Williams   dmatest: add basi...
84
85
  Example:
  	% dmesg | tail -n 1
2d88ce76e   Dan Williams   dmatest: add a 'w...
86
  	dmatest: dma0chan0-copy0: summary 1 test, 0 failures 1000 iops 100000 KB/s (0)
86727443a   Dan Williams   dmatest: add basi...
87

872f05c6e   Dan Williams   dmatest: replace ...
88
89
  The details of a data miscompare error are also emitted, but do not follow the
  above format.