dmatest: replace stored results mechanism, with uniform messages
[pandora-kernel.git] / Documentation / dmatest.txt
1                                 DMA Test Guide
2                                 ==============
3
4                 Andy Shevchenko <andriy.shevchenko@linux.intel.com>
5
6 This small document introduces how to test DMA drivers using dmatest module.
7
8         Part 1 - How to build the test module
9
10 The menuconfig contains an option that could be found by following path:
11         Device Drivers -> DMA Engine support -> DMA Test client
12
13 In the configuration file the option called CONFIG_DMATEST. The dmatest could
14 be built as module or inside kernel. Let's consider those cases.
15
16         Part 2 - When dmatest is built as a module...
17
18 After mounting debugfs and loading the module, the /sys/kernel/debug/dmatest
19 folder with a file named 'run' nodes will be created.  'run' controls run and
20 stop phases of the test.
21
22 Note that in this case test will not run on load automatically.
23
24 Example of usage:
25         % echo dma0chan0 > /sys/module/dmatest/parameters/channel
26         % echo 2000 > /sys/module/dmatest/parameters/timeout
27         % echo 1 > /sys/module/dmatest/parameters/iterations
28         % echo 1 > /sys/kernel/debug/dmatest/run
29
30 Hint: available channel list could be extracted by running the following
31 command:
32         % ls -1 /sys/class/dma/
33
34 Once started a message like "dmatest: Started 1 threads using dma0chan0" is
35 emitted.  After that only test failure messages are reported until the test
36 stops.
37
38 Note that running a new test will not stop any in progress test.
39
40 The following command should return actual state of the test.
41         % cat /sys/kernel/debug/dmatest/run
42
43 To wait for test done the user may perform a busy loop that checks the state.
44
45         % while [ $(cat /sys/kernel/debug/dmatest/run) = "Y" ]
46         > do
47         >       echo -n "."
48         >       sleep 1
49         > done
50         > echo
51
52         Part 3 - When built-in in the kernel...
53
54 The module parameters that is supplied to the kernel command line will be used
55 for the first performed test. After user gets a control, the test could be
56 re-run with the same or different parameters. For the details see the above
57 section "Part 2 - When dmatest is built as a module..."
58
59 In both cases the module parameters are used as the actual values for the test
60 case. You always could check them at run-time by running
61         % grep -H . /sys/module/dmatest/parameters/*
62
63         Part 4 - Gathering the test results
64
65 Test results are printed to the kernel log buffer with the format:
66
67 "dmatest: result <channel>: <test id>: '<error msg>' with src_off=<val> dst_off=<val> len=<val> (<err code>)"
68
69 Example of output:
70         % dmesg | tail -n 1
71         dmatest: result dma0chan0-copy0: #1: No errors with src_off=0x7bf dst_off=0x8ad len=0x3fea (0)
72
73 The message format is unified across the different types of errors. A number in
74 the parens represents additional information, e.g. error code, error counter,
75 or status.  A test thread also emits a summary line at completion listing the
76 number of tests executed, number that failed, and a result code.
77
78 The details of a data miscompare error are also emitted, but do not follow the
79 above format.