|
| module_param (test_buf_size, uint, S_IRUGO) |
|
| MODULE_PARM_DESC (test_buf_size,"Size of the memcpy test buffer") |
|
| module_param_string (channel, test_channel, sizeof(test_channel), S_IRUGO) |
|
| MODULE_PARM_DESC (channel,"Bus ID of the channel to test (default: any)") |
|
| module_param_string (device, test_device, sizeof(test_device), S_IRUGO) |
|
| MODULE_PARM_DESC (device,"Bus ID of the DMA Engine to test (default: any)") |
|
| module_param (threads_per_chan, uint, S_IRUGO) |
|
| MODULE_PARM_DESC (threads_per_chan,"Number of threads to start per channel (default: 1)") |
|
| module_param (max_channels, uint, S_IRUGO) |
|
| MODULE_PARM_DESC (max_channels,"Maximum number of channels to use (default: all)") |
|
| module_param (iterations, uint, S_IRUGO) |
|
| MODULE_PARM_DESC (iterations,"Iterations before stopping test (default: infinite)") |
|
| module_param (xor_sources, uint, S_IRUGO) |
|
| MODULE_PARM_DESC (xor_sources,"Number of xor source buffers (default: 3)") |
|
| module_param (pq_sources, uint, S_IRUGO) |
|
| MODULE_PARM_DESC (pq_sources,"Number of p+q source buffers (default: 3)") |
|
| module_param (timeout, uint, S_IRUGO) |
|
| MODULE_PARM_DESC (timeout,"Transfer Timeout in msec (default: 3000), ""Pass -1 for infinite timeout") |
|
| late_initcall (dmatest_init) |
|
| module_exit (dmatest_exit) |
|
| MODULE_AUTHOR ("Haavard Skinnemoen (Atmel)") |
|
| MODULE_LICENSE ("GPL v2") |
|