Andy Shevchenko | 851b7e1 | 2013-03-04 11:09:30 +0200 | [diff] [blame] | 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 | |
Andy Shevchenko | 851b7e1 | 2013-03-04 11:09:30 +0200 | [diff] [blame] | 18 | Example of usage: |
Dan Williams | a310d03 | 2013-11-06 16:30:01 -0800 | [diff] [blame] | 19 | % modprobe dmatest channel=dma0chan0 timeout=2000 iterations=1 run=1 |
| 20 | |
| 21 | ...or: |
| 22 | % modprobe dmatest |
Andy Shevchenko | a6c268d | 2013-07-23 18:36:46 +0300 | [diff] [blame] | 23 | % echo dma0chan0 > /sys/module/dmatest/parameters/channel |
| 24 | % echo 2000 > /sys/module/dmatest/parameters/timeout |
| 25 | % echo 1 > /sys/module/dmatest/parameters/iterations |
Dan Williams | a310d03 | 2013-11-06 16:30:01 -0800 | [diff] [blame] | 26 | % echo 1 > /sys/module/dmatest/parameters/run |
| 27 | |
| 28 | ...or on the kernel command line: |
| 29 | |
| 30 | dmatest.channel=dma0chan0 dmatest.timeout=2000 dmatest.iterations=1 dmatest.run=1 |
Andy Shevchenko | 851b7e1 | 2013-03-04 11:09:30 +0200 | [diff] [blame] | 31 | |
| 32 | Hint: available channel list could be extracted by running the following |
| 33 | command: |
| 34 | % ls -1 /sys/class/dma/ |
| 35 | |
Dan Williams | 872f05c | 2013-11-06 16:29:58 -0800 | [diff] [blame] | 36 | Once started a message like "dmatest: Started 1 threads using dma0chan0" is |
| 37 | emitted. After that only test failure messages are reported until the test |
| 38 | stops. |
Andy Shevchenko | 851b7e1 | 2013-03-04 11:09:30 +0200 | [diff] [blame] | 39 | |
Andy Shevchenko | bcc567e | 2013-05-23 14:29:53 +0300 | [diff] [blame] | 40 | Note that running a new test will not stop any in progress test. |
Andy Shevchenko | 851b7e1 | 2013-03-04 11:09:30 +0200 | [diff] [blame] | 41 | |
Dan Williams | 2d88ce7 | 2013-11-06 16:30:09 -0800 | [diff] [blame] | 42 | The following command returns the state of the test. |
| 43 | % cat /sys/module/dmatest/parameters/run |
Andy Shevchenko | 3e5ccd8 | 2013-03-04 11:09:31 +0200 | [diff] [blame] | 44 | |
Dan Williams | 2d88ce7 | 2013-11-06 16:30:09 -0800 | [diff] [blame] | 45 | To wait for test completion userpace can poll 'run' until it is false, or use |
| 46 | the wait parameter. Specifying 'wait=1' when loading the module causes module |
| 47 | initialization to pause until a test run has completed, while reading |
| 48 | /sys/module/dmatest/parameters/wait waits for any running test to complete |
| 49 | before returning. For example, the following scripts wait for 42 tests |
| 50 | to complete before exiting. Note that if 'iterations' is set to 'infinite' then |
| 51 | waiting is disabled. |
Andy Shevchenko | 3e5ccd8 | 2013-03-04 11:09:31 +0200 | [diff] [blame] | 52 | |
Dan Williams | 2d88ce7 | 2013-11-06 16:30:09 -0800 | [diff] [blame] | 53 | Example: |
| 54 | % modprobe dmatest run=1 iterations=42 wait=1 |
| 55 | % modprobe -r dmatest |
| 56 | ...or: |
| 57 | % modprobe dmatest run=1 iterations=42 |
| 58 | % cat /sys/module/dmatest/parameters/wait |
| 59 | % modprobe -r dmatest |
Andy Shevchenko | 3e5ccd8 | 2013-03-04 11:09:31 +0200 | [diff] [blame] | 60 | |
Andy Shevchenko | 851b7e1 | 2013-03-04 11:09:30 +0200 | [diff] [blame] | 61 | Part 3 - When built-in in the kernel... |
| 62 | |
| 63 | The module parameters that is supplied to the kernel command line will be used |
| 64 | for the first performed test. After user gets a control, the test could be |
Andy Shevchenko | bcc567e | 2013-05-23 14:29:53 +0300 | [diff] [blame] | 65 | re-run with the same or different parameters. For the details see the above |
| 66 | section "Part 2 - When dmatest is built as a module..." |
Andy Shevchenko | 851b7e1 | 2013-03-04 11:09:30 +0200 | [diff] [blame] | 67 | |
Andy Shevchenko | a6c268d | 2013-07-23 18:36:46 +0300 | [diff] [blame] | 68 | In both cases the module parameters are used as the actual values for the test |
| 69 | case. You always could check them at run-time by running |
Andy Shevchenko | 851b7e1 | 2013-03-04 11:09:30 +0200 | [diff] [blame] | 70 | % grep -H . /sys/module/dmatest/parameters/* |
Andy Shevchenko | 95019c8 | 2013-03-04 11:09:33 +0200 | [diff] [blame] | 71 | |
| 72 | Part 4 - Gathering the test results |
| 73 | |
Dan Williams | 872f05c | 2013-11-06 16:29:58 -0800 | [diff] [blame] | 74 | Test results are printed to the kernel log buffer with the format: |
Andy Shevchenko | 95019c8 | 2013-03-04 11:09:33 +0200 | [diff] [blame] | 75 | |
Dan Williams | 872f05c | 2013-11-06 16:29:58 -0800 | [diff] [blame] | 76 | "dmatest: result <channel>: <test id>: '<error msg>' with src_off=<val> dst_off=<val> len=<val> (<err code>)" |
Andy Shevchenko | 95019c8 | 2013-03-04 11:09:33 +0200 | [diff] [blame] | 77 | |
| 78 | Example of output: |
Dan Williams | 872f05c | 2013-11-06 16:29:58 -0800 | [diff] [blame] | 79 | % dmesg | tail -n 1 |
| 80 | dmatest: result dma0chan0-copy0: #1: No errors with src_off=0x7bf dst_off=0x8ad len=0x3fea (0) |
Andy Shevchenko | 95019c8 | 2013-03-04 11:09:33 +0200 | [diff] [blame] | 81 | |
| 82 | The message format is unified across the different types of errors. A number in |
| 83 | the parens represents additional information, e.g. error code, error counter, |
Dan Williams | 872f05c | 2013-11-06 16:29:58 -0800 | [diff] [blame] | 84 | or status. A test thread also emits a summary line at completion listing the |
| 85 | number of tests executed, number that failed, and a result code. |
Andy Shevchenko | 95019c8 | 2013-03-04 11:09:33 +0200 | [diff] [blame] | 86 | |
Dan Williams | 8672744 | 2013-11-06 16:30:07 -0800 | [diff] [blame] | 87 | Example: |
| 88 | % dmesg | tail -n 1 |
Dan Williams | 2d88ce7 | 2013-11-06 16:30:09 -0800 | [diff] [blame] | 89 | dmatest: dma0chan0-copy0: summary 1 test, 0 failures 1000 iops 100000 KB/s (0) |
Dan Williams | 8672744 | 2013-11-06 16:30:07 -0800 | [diff] [blame] | 90 | |
Dan Williams | 872f05c | 2013-11-06 16:29:58 -0800 | [diff] [blame] | 91 | The details of a data miscompare error are also emitted, but do not follow the |
| 92 | above format. |