Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 2 | /* |
| 3 | * DMA Engine test module |
| 4 | * |
| 5 | * Copyright (C) 2007 Atmel Corporation |
Andy Shevchenko | 851b7e1 | 2013-03-04 11:09:30 +0200 | [diff] [blame] | 6 | * Copyright (C) 2013 Intel Corporation |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 7 | */ |
Dan Williams | 872f05c | 2013-11-06 16:29:58 -0800 | [diff] [blame] | 8 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 9 | |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 10 | #include <linux/delay.h> |
Alexey Dobriyan | b7f080c | 2011-06-16 11:01:34 +0000 | [diff] [blame] | 11 | #include <linux/dma-mapping.h> |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 12 | #include <linux/dmaengine.h> |
Guennadi Liakhovetski | 981ed70 | 2011-08-18 16:50:51 +0200 | [diff] [blame] | 13 | #include <linux/freezer.h> |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 14 | #include <linux/init.h> |
| 15 | #include <linux/kthread.h> |
Ingo Molnar | 0881e7b | 2017-02-05 15:30:50 +0100 | [diff] [blame] | 16 | #include <linux/sched/task.h> |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 17 | #include <linux/module.h> |
| 18 | #include <linux/moduleparam.h> |
| 19 | #include <linux/random.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 20 | #include <linux/slab.h> |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 21 | #include <linux/wait.h> |
| 22 | |
| 23 | static unsigned int test_buf_size = 16384; |
Andy Shevchenko | a6c268d | 2013-07-23 18:36:46 +0300 | [diff] [blame] | 24 | module_param(test_buf_size, uint, S_IRUGO | S_IWUSR); |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 25 | MODULE_PARM_DESC(test_buf_size, "Size of the memcpy test buffer"); |
| 26 | |
Guennadi Liakhovetski | a85159f | 2013-12-30 14:58:04 +0100 | [diff] [blame] | 27 | static char test_device[32]; |
Andy Shevchenko | a6c268d | 2013-07-23 18:36:46 +0300 | [diff] [blame] | 28 | module_param_string(device, test_device, sizeof(test_device), |
| 29 | S_IRUGO | S_IWUSR); |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 30 | MODULE_PARM_DESC(device, "Bus ID of the DMA Engine to test (default: any)"); |
| 31 | |
| 32 | static unsigned int threads_per_chan = 1; |
Andy Shevchenko | a6c268d | 2013-07-23 18:36:46 +0300 | [diff] [blame] | 33 | module_param(threads_per_chan, uint, S_IRUGO | S_IWUSR); |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 34 | MODULE_PARM_DESC(threads_per_chan, |
| 35 | "Number of threads to start per channel (default: 1)"); |
| 36 | |
| 37 | static unsigned int max_channels; |
Andy Shevchenko | a6c268d | 2013-07-23 18:36:46 +0300 | [diff] [blame] | 38 | module_param(max_channels, uint, S_IRUGO | S_IWUSR); |
Dan Williams | 33df8ca | 2009-01-06 11:38:15 -0700 | [diff] [blame] | 39 | MODULE_PARM_DESC(max_channels, |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 40 | "Maximum number of channels to use (default: all)"); |
| 41 | |
Nicolas Ferre | 0a2ff57d | 2009-07-03 19:26:51 +0200 | [diff] [blame] | 42 | static unsigned int iterations; |
Andy Shevchenko | a6c268d | 2013-07-23 18:36:46 +0300 | [diff] [blame] | 43 | module_param(iterations, uint, S_IRUGO | S_IWUSR); |
Nicolas Ferre | 0a2ff57d | 2009-07-03 19:26:51 +0200 | [diff] [blame] | 44 | MODULE_PARM_DESC(iterations, |
| 45 | "Iterations before stopping test (default: infinite)"); |
| 46 | |
Eugeniy Paltsev | d864672 | 2016-09-14 20:40:38 +0300 | [diff] [blame] | 47 | static unsigned int dmatest; |
Kedareswara rao Appana | a0d4cb4 | 2016-06-09 21:10:14 +0530 | [diff] [blame] | 48 | module_param(dmatest, uint, S_IRUGO | S_IWUSR); |
| 49 | MODULE_PARM_DESC(dmatest, |
Dave Jiang | c678fa6 | 2017-08-21 10:23:13 -0700 | [diff] [blame] | 50 | "dmatest 0-memcpy 1-memset (default: 0)"); |
Kedareswara rao Appana | a0d4cb4 | 2016-06-09 21:10:14 +0530 | [diff] [blame] | 51 | |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 52 | static unsigned int xor_sources = 3; |
Andy Shevchenko | a6c268d | 2013-07-23 18:36:46 +0300 | [diff] [blame] | 53 | module_param(xor_sources, uint, S_IRUGO | S_IWUSR); |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 54 | MODULE_PARM_DESC(xor_sources, |
| 55 | "Number of xor source buffers (default: 3)"); |
| 56 | |
Dan Williams | 58691d6 | 2009-08-29 19:09:27 -0700 | [diff] [blame] | 57 | static unsigned int pq_sources = 3; |
Andy Shevchenko | a6c268d | 2013-07-23 18:36:46 +0300 | [diff] [blame] | 58 | module_param(pq_sources, uint, S_IRUGO | S_IWUSR); |
Dan Williams | 58691d6 | 2009-08-29 19:09:27 -0700 | [diff] [blame] | 59 | MODULE_PARM_DESC(pq_sources, |
| 60 | "Number of p+q source buffers (default: 3)"); |
| 61 | |
Viresh Kumar | d42efe6 | 2011-03-22 17:27:25 +0530 | [diff] [blame] | 62 | static int timeout = 3000; |
Andy Shevchenko | a6c268d | 2013-07-23 18:36:46 +0300 | [diff] [blame] | 63 | module_param(timeout, uint, S_IRUGO | S_IWUSR); |
Joe Perches | 85ee7a1 | 2011-04-23 20:38:19 -0700 | [diff] [blame] | 64 | MODULE_PARM_DESC(timeout, "Transfer Timeout in msec (default: 3000), " |
Hook, Gary | ed04b7c | 2019-06-18 22:03:04 +0000 | [diff] [blame] | 65 | "Pass 0xFFFFFFFF (4294967295) for maximum timeout"); |
Viresh Kumar | d42efe6 | 2011-03-22 17:27:25 +0530 | [diff] [blame] | 66 | |
Dan Williams | e3b9c34 | 2013-11-06 16:30:05 -0800 | [diff] [blame] | 67 | static bool noverify; |
| 68 | module_param(noverify, bool, S_IRUGO | S_IWUSR); |
Yang Shunyong | 2e67a08 | 2018-02-02 17:51:09 +0800 | [diff] [blame] | 69 | MODULE_PARM_DESC(noverify, "Disable data verification (default: verify)"); |
| 70 | |
| 71 | static bool norandom; |
| 72 | module_param(norandom, bool, 0644); |
| 73 | MODULE_PARM_DESC(norandom, "Disable random offset setup (default: random)"); |
Andy Shevchenko | 74b5c07 | 2013-03-04 11:09:32 +0200 | [diff] [blame] | 74 | |
Peter Ujfalusi | fb9816f | 2019-07-31 10:14:38 +0300 | [diff] [blame] | 75 | static bool polled; |
| 76 | module_param(polled, bool, S_IRUGO | S_IWUSR); |
| 77 | MODULE_PARM_DESC(polled, "Use polling for completion instead of interrupts"); |
| 78 | |
Dan Williams | 50137a7 | 2013-11-08 12:26:26 -0800 | [diff] [blame] | 79 | static bool verbose; |
| 80 | module_param(verbose, bool, S_IRUGO | S_IWUSR); |
| 81 | MODULE_PARM_DESC(verbose, "Enable \"success\" result messages (default: off)"); |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 82 | |
Seraj Alijan | a875abf | 2018-12-10 08:52:37 +0000 | [diff] [blame] | 83 | static int alignment = -1; |
| 84 | module_param(alignment, int, 0644); |
| 85 | MODULE_PARM_DESC(alignment, "Custom data address alignment taken as 2^(alignment) (default: not used (-1))"); |
| 86 | |
Seraj Alijan | 13396a1 | 2018-12-10 08:52:39 +0000 | [diff] [blame] | 87 | static unsigned int transfer_size; |
| 88 | module_param(transfer_size, uint, 0644); |
| 89 | MODULE_PARM_DESC(transfer_size, "Optional custom transfer size in bytes (default: not used (0))"); |
| 90 | |
Andy Shevchenko | e03e93a | 2013-03-04 11:09:27 +0200 | [diff] [blame] | 91 | /** |
Andy Shevchenko | 15b8a8e | 2013-03-04 11:09:29 +0200 | [diff] [blame] | 92 | * struct dmatest_params - test parameters. |
Andy Shevchenko | e03e93a | 2013-03-04 11:09:27 +0200 | [diff] [blame] | 93 | * @buf_size: size of the memcpy test buffer |
| 94 | * @channel: bus ID of the channel to test |
| 95 | * @device: bus ID of the DMA Engine to test |
| 96 | * @threads_per_chan: number of threads to start per channel |
| 97 | * @max_channels: maximum number of channels to use |
| 98 | * @iterations: iterations before stopping test |
| 99 | * @xor_sources: number of xor source buffers |
| 100 | * @pq_sources: number of p+q source buffers |
Hook, Gary | ed04b7c | 2019-06-18 22:03:04 +0000 | [diff] [blame] | 101 | * @timeout: transfer timeout in msec, 0 - 0xFFFFFFFF (4294967295) |
Andy Shevchenko | e03e93a | 2013-03-04 11:09:27 +0200 | [diff] [blame] | 102 | */ |
Andy Shevchenko | 15b8a8e | 2013-03-04 11:09:29 +0200 | [diff] [blame] | 103 | struct dmatest_params { |
Andy Shevchenko | e03e93a | 2013-03-04 11:09:27 +0200 | [diff] [blame] | 104 | unsigned int buf_size; |
| 105 | char channel[20]; |
Guennadi Liakhovetski | a85159f | 2013-12-30 14:58:04 +0100 | [diff] [blame] | 106 | char device[32]; |
Andy Shevchenko | e03e93a | 2013-03-04 11:09:27 +0200 | [diff] [blame] | 107 | unsigned int threads_per_chan; |
| 108 | unsigned int max_channels; |
| 109 | unsigned int iterations; |
| 110 | unsigned int xor_sources; |
| 111 | unsigned int pq_sources; |
Hook, Gary | ed04b7c | 2019-06-18 22:03:04 +0000 | [diff] [blame] | 112 | unsigned int timeout; |
Dan Williams | e3b9c34 | 2013-11-06 16:30:05 -0800 | [diff] [blame] | 113 | bool noverify; |
Yang Shunyong | 2e67a08 | 2018-02-02 17:51:09 +0800 | [diff] [blame] | 114 | bool norandom; |
Seraj Alijan | a875abf | 2018-12-10 08:52:37 +0000 | [diff] [blame] | 115 | int alignment; |
Seraj Alijan | 13396a1 | 2018-12-10 08:52:39 +0000 | [diff] [blame] | 116 | unsigned int transfer_size; |
Peter Ujfalusi | fb9816f | 2019-07-31 10:14:38 +0300 | [diff] [blame] | 117 | bool polled; |
Andy Shevchenko | 15b8a8e | 2013-03-04 11:09:29 +0200 | [diff] [blame] | 118 | }; |
| 119 | |
| 120 | /** |
| 121 | * struct dmatest_info - test information. |
| 122 | * @params: test parameters |
Andy Shevchenko | 851b7e1 | 2013-03-04 11:09:30 +0200 | [diff] [blame] | 123 | * @lock: access protection to the fields of this structure |
Andy Shevchenko | 15b8a8e | 2013-03-04 11:09:29 +0200 | [diff] [blame] | 124 | */ |
Dan Williams | a310d03 | 2013-11-06 16:30:01 -0800 | [diff] [blame] | 125 | static struct dmatest_info { |
Andy Shevchenko | 15b8a8e | 2013-03-04 11:09:29 +0200 | [diff] [blame] | 126 | /* Test parameters */ |
| 127 | struct dmatest_params params; |
Andy Shevchenko | 838cc70 | 2013-03-04 11:09:28 +0200 | [diff] [blame] | 128 | |
| 129 | /* Internal state */ |
| 130 | struct list_head channels; |
| 131 | unsigned int nr_channels; |
Andy Shevchenko | 851b7e1 | 2013-03-04 11:09:30 +0200 | [diff] [blame] | 132 | struct mutex lock; |
Dan Williams | a310d03 | 2013-11-06 16:30:01 -0800 | [diff] [blame] | 133 | bool did_init; |
| 134 | } test_info = { |
| 135 | .channels = LIST_HEAD_INIT(test_info.channels), |
| 136 | .lock = __MUTEX_INITIALIZER(test_info.lock), |
Andy Shevchenko | e03e93a | 2013-03-04 11:09:27 +0200 | [diff] [blame] | 137 | }; |
| 138 | |
Dan Williams | a310d03 | 2013-11-06 16:30:01 -0800 | [diff] [blame] | 139 | static int dmatest_run_set(const char *val, const struct kernel_param *kp); |
| 140 | static int dmatest_run_get(char *val, const struct kernel_param *kp); |
Luis R. Rodriguez | 9c27847 | 2015-05-27 11:09:38 +0930 | [diff] [blame] | 141 | static const struct kernel_param_ops run_ops = { |
Dan Williams | a310d03 | 2013-11-06 16:30:01 -0800 | [diff] [blame] | 142 | .set = dmatest_run_set, |
| 143 | .get = dmatest_run_get, |
| 144 | }; |
| 145 | static bool dmatest_run; |
| 146 | module_param_cb(run, &run_ops, &dmatest_run, S_IRUGO | S_IWUSR); |
| 147 | MODULE_PARM_DESC(run, "Run the test (default: false)"); |
| 148 | |
Seraj Alijan | d53513d | 2018-12-10 08:52:31 +0000 | [diff] [blame] | 149 | static int dmatest_chan_set(const char *val, const struct kernel_param *kp); |
| 150 | static int dmatest_chan_get(char *val, const struct kernel_param *kp); |
| 151 | static const struct kernel_param_ops multi_chan_ops = { |
| 152 | .set = dmatest_chan_set, |
| 153 | .get = dmatest_chan_get, |
| 154 | }; |
| 155 | |
| 156 | static char test_channel[20]; |
| 157 | static struct kparam_string newchan_kps = { |
| 158 | .string = test_channel, |
| 159 | .maxlen = 20, |
| 160 | }; |
| 161 | module_param_cb(channel, &multi_chan_ops, &newchan_kps, 0644); |
| 162 | MODULE_PARM_DESC(channel, "Bus ID of the channel to test (default: any)"); |
| 163 | |
| 164 | static int dmatest_test_list_get(char *val, const struct kernel_param *kp); |
| 165 | static const struct kernel_param_ops test_list_ops = { |
| 166 | .get = dmatest_test_list_get, |
| 167 | }; |
| 168 | module_param_cb(test_list, &test_list_ops, NULL, 0444); |
| 169 | MODULE_PARM_DESC(test_list, "Print current test list"); |
| 170 | |
Dan Williams | a310d03 | 2013-11-06 16:30:01 -0800 | [diff] [blame] | 171 | /* Maximum amount of mismatched bytes in buffer to print */ |
| 172 | #define MAX_ERROR_COUNT 32 |
| 173 | |
| 174 | /* |
| 175 | * Initialization patterns. All bytes in the source buffer has bit 7 |
| 176 | * set, all bytes in the destination buffer has bit 7 cleared. |
| 177 | * |
| 178 | * Bit 6 is set for all bytes which are to be copied by the DMA |
| 179 | * engine. Bit 5 is set for all bytes which are to be overwritten by |
| 180 | * the DMA engine. |
| 181 | * |
| 182 | * The remaining bits are the inverse of a counter which increments by |
| 183 | * one for each byte address. |
| 184 | */ |
| 185 | #define PATTERN_SRC 0x80 |
| 186 | #define PATTERN_DST 0x00 |
| 187 | #define PATTERN_COPY 0x40 |
| 188 | #define PATTERN_OVERWRITE 0x20 |
| 189 | #define PATTERN_COUNT_MASK 0x1f |
Sinan Kaya | 61b5f54 | 2017-06-29 22:30:58 -0400 | [diff] [blame] | 190 | #define PATTERN_MEMSET_IDX 0x01 |
Dan Williams | a310d03 | 2013-11-06 16:30:01 -0800 | [diff] [blame] | 191 | |
Seraj Alijan | 6138f96 | 2018-12-10 08:52:34 +0000 | [diff] [blame] | 192 | /* Fixed point arithmetic ops */ |
| 193 | #define FIXPT_SHIFT 8 |
| 194 | #define FIXPNT_MASK 0xFF |
| 195 | #define FIXPT_TO_INT(a) ((a) >> FIXPT_SHIFT) |
| 196 | #define INT_TO_FIXPT(a) ((a) << FIXPT_SHIFT) |
| 197 | #define FIXPT_GET_FRAC(a) ((((a) & FIXPNT_MASK) * 100) >> FIXPT_SHIFT) |
| 198 | |
Adam Wallis | 6f6a23a | 2017-11-27 10:45:01 -0500 | [diff] [blame] | 199 | /* poor man's completion - we want to use wait_event_freezable() on it */ |
| 200 | struct dmatest_done { |
| 201 | bool done; |
| 202 | wait_queue_head_t *wait; |
| 203 | }; |
| 204 | |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 205 | struct dmatest_data { |
| 206 | u8 **raw; |
| 207 | u8 **aligned; |
| 208 | unsigned int cnt; |
| 209 | unsigned int off; |
| 210 | }; |
| 211 | |
Dan Williams | a310d03 | 2013-11-06 16:30:01 -0800 | [diff] [blame] | 212 | struct dmatest_thread { |
| 213 | struct list_head node; |
| 214 | struct dmatest_info *info; |
| 215 | struct task_struct *task; |
| 216 | struct dma_chan *chan; |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 217 | struct dmatest_data src; |
| 218 | struct dmatest_data dst; |
Dan Williams | a310d03 | 2013-11-06 16:30:01 -0800 | [diff] [blame] | 219 | enum dma_transaction_type type; |
Adam Wallis | 6f6a23a | 2017-11-27 10:45:01 -0500 | [diff] [blame] | 220 | wait_queue_head_t done_wait; |
| 221 | struct dmatest_done test_done; |
Dan Williams | a310d03 | 2013-11-06 16:30:01 -0800 | [diff] [blame] | 222 | bool done; |
Seraj Alijan | d53513d | 2018-12-10 08:52:31 +0000 | [diff] [blame] | 223 | bool pending; |
Dan Williams | a310d03 | 2013-11-06 16:30:01 -0800 | [diff] [blame] | 224 | }; |
| 225 | |
| 226 | struct dmatest_chan { |
| 227 | struct list_head node; |
| 228 | struct dma_chan *chan; |
| 229 | struct list_head threads; |
| 230 | }; |
Andy Shevchenko | e03e93a | 2013-03-04 11:09:27 +0200 | [diff] [blame] | 231 | |
Dan Williams | 2d88ce7 | 2013-11-06 16:30:09 -0800 | [diff] [blame] | 232 | static DECLARE_WAIT_QUEUE_HEAD(thread_wait); |
| 233 | static bool wait; |
| 234 | |
| 235 | static bool is_threaded_test_run(struct dmatest_info *info) |
| 236 | { |
| 237 | struct dmatest_chan *dtc; |
| 238 | |
| 239 | list_for_each_entry(dtc, &info->channels, node) { |
| 240 | struct dmatest_thread *thread; |
| 241 | |
| 242 | list_for_each_entry(thread, &dtc->threads, node) { |
| 243 | if (!thread->done) |
| 244 | return true; |
| 245 | } |
| 246 | } |
| 247 | |
| 248 | return false; |
| 249 | } |
| 250 | |
Seraj Alijan | d53513d | 2018-12-10 08:52:31 +0000 | [diff] [blame] | 251 | static bool is_threaded_test_pending(struct dmatest_info *info) |
| 252 | { |
| 253 | struct dmatest_chan *dtc; |
| 254 | |
| 255 | list_for_each_entry(dtc, &info->channels, node) { |
| 256 | struct dmatest_thread *thread; |
| 257 | |
| 258 | list_for_each_entry(thread, &dtc->threads, node) { |
| 259 | if (thread->pending) |
| 260 | return true; |
| 261 | } |
| 262 | } |
| 263 | |
| 264 | return false; |
| 265 | } |
| 266 | |
Dan Williams | 2d88ce7 | 2013-11-06 16:30:09 -0800 | [diff] [blame] | 267 | static int dmatest_wait_get(char *val, const struct kernel_param *kp) |
| 268 | { |
| 269 | struct dmatest_info *info = &test_info; |
| 270 | struct dmatest_params *params = &info->params; |
| 271 | |
| 272 | if (params->iterations) |
| 273 | wait_event(thread_wait, !is_threaded_test_run(info)); |
| 274 | wait = true; |
| 275 | return param_get_bool(val, kp); |
| 276 | } |
| 277 | |
Luis R. Rodriguez | 9c27847 | 2015-05-27 11:09:38 +0930 | [diff] [blame] | 278 | static const struct kernel_param_ops wait_ops = { |
Dan Williams | 2d88ce7 | 2013-11-06 16:30:09 -0800 | [diff] [blame] | 279 | .get = dmatest_wait_get, |
| 280 | .set = param_set_bool, |
| 281 | }; |
| 282 | module_param_cb(wait, &wait_ops, &wait, S_IRUGO); |
| 283 | MODULE_PARM_DESC(wait, "Wait for tests to complete (default: false)"); |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 284 | |
Andy Shevchenko | 15b8a8e | 2013-03-04 11:09:29 +0200 | [diff] [blame] | 285 | static bool dmatest_match_channel(struct dmatest_params *params, |
Andy Shevchenko | e03e93a | 2013-03-04 11:09:27 +0200 | [diff] [blame] | 286 | struct dma_chan *chan) |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 287 | { |
Andy Shevchenko | 15b8a8e | 2013-03-04 11:09:29 +0200 | [diff] [blame] | 288 | if (params->channel[0] == '\0') |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 289 | return true; |
Andy Shevchenko | 15b8a8e | 2013-03-04 11:09:29 +0200 | [diff] [blame] | 290 | return strcmp(dma_chan_name(chan), params->channel) == 0; |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 291 | } |
| 292 | |
Andy Shevchenko | 15b8a8e | 2013-03-04 11:09:29 +0200 | [diff] [blame] | 293 | static bool dmatest_match_device(struct dmatest_params *params, |
Andy Shevchenko | e03e93a | 2013-03-04 11:09:27 +0200 | [diff] [blame] | 294 | struct dma_device *device) |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 295 | { |
Andy Shevchenko | 15b8a8e | 2013-03-04 11:09:29 +0200 | [diff] [blame] | 296 | if (params->device[0] == '\0') |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 297 | return true; |
Andy Shevchenko | 15b8a8e | 2013-03-04 11:09:29 +0200 | [diff] [blame] | 298 | return strcmp(dev_name(device->dev), params->device) == 0; |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 299 | } |
| 300 | |
| 301 | static unsigned long dmatest_random(void) |
| 302 | { |
| 303 | unsigned long buf; |
| 304 | |
Dan Williams | be9fa5a | 2013-11-06 16:30:03 -0800 | [diff] [blame] | 305 | prandom_bytes(&buf, sizeof(buf)); |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 306 | return buf; |
| 307 | } |
| 308 | |
Sinan Kaya | 61b5f54 | 2017-06-29 22:30:58 -0400 | [diff] [blame] | 309 | static inline u8 gen_inv_idx(u8 index, bool is_memset) |
| 310 | { |
| 311 | u8 val = is_memset ? PATTERN_MEMSET_IDX : index; |
| 312 | |
| 313 | return ~val & PATTERN_COUNT_MASK; |
| 314 | } |
| 315 | |
| 316 | static inline u8 gen_src_value(u8 index, bool is_memset) |
| 317 | { |
| 318 | return PATTERN_SRC | gen_inv_idx(index, is_memset); |
| 319 | } |
| 320 | |
| 321 | static inline u8 gen_dst_value(u8 index, bool is_memset) |
| 322 | { |
| 323 | return PATTERN_DST | gen_inv_idx(index, is_memset); |
| 324 | } |
| 325 | |
Andy Shevchenko | e03e93a | 2013-03-04 11:09:27 +0200 | [diff] [blame] | 326 | static void dmatest_init_srcs(u8 **bufs, unsigned int start, unsigned int len, |
Sinan Kaya | 61b5f54 | 2017-06-29 22:30:58 -0400 | [diff] [blame] | 327 | unsigned int buf_size, bool is_memset) |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 328 | { |
| 329 | unsigned int i; |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 330 | u8 *buf; |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 331 | |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 332 | for (; (buf = *bufs); bufs++) { |
| 333 | for (i = 0; i < start; i++) |
Sinan Kaya | 61b5f54 | 2017-06-29 22:30:58 -0400 | [diff] [blame] | 334 | buf[i] = gen_src_value(i, is_memset); |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 335 | for ( ; i < start + len; i++) |
Sinan Kaya | 61b5f54 | 2017-06-29 22:30:58 -0400 | [diff] [blame] | 336 | buf[i] = gen_src_value(i, is_memset) | PATTERN_COPY; |
Andy Shevchenko | e03e93a | 2013-03-04 11:09:27 +0200 | [diff] [blame] | 337 | for ( ; i < buf_size; i++) |
Sinan Kaya | 61b5f54 | 2017-06-29 22:30:58 -0400 | [diff] [blame] | 338 | buf[i] = gen_src_value(i, is_memset); |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 339 | buf++; |
| 340 | } |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 341 | } |
| 342 | |
Andy Shevchenko | e03e93a | 2013-03-04 11:09:27 +0200 | [diff] [blame] | 343 | static void dmatest_init_dsts(u8 **bufs, unsigned int start, unsigned int len, |
Sinan Kaya | 61b5f54 | 2017-06-29 22:30:58 -0400 | [diff] [blame] | 344 | unsigned int buf_size, bool is_memset) |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 345 | { |
| 346 | unsigned int i; |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 347 | u8 *buf; |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 348 | |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 349 | for (; (buf = *bufs); bufs++) { |
| 350 | for (i = 0; i < start; i++) |
Sinan Kaya | 61b5f54 | 2017-06-29 22:30:58 -0400 | [diff] [blame] | 351 | buf[i] = gen_dst_value(i, is_memset); |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 352 | for ( ; i < start + len; i++) |
Sinan Kaya | 61b5f54 | 2017-06-29 22:30:58 -0400 | [diff] [blame] | 353 | buf[i] = gen_dst_value(i, is_memset) | |
| 354 | PATTERN_OVERWRITE; |
Andy Shevchenko | e03e93a | 2013-03-04 11:09:27 +0200 | [diff] [blame] | 355 | for ( ; i < buf_size; i++) |
Sinan Kaya | 61b5f54 | 2017-06-29 22:30:58 -0400 | [diff] [blame] | 356 | buf[i] = gen_dst_value(i, is_memset); |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 357 | } |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 358 | } |
| 359 | |
Dan Williams | 7b61017 | 2013-11-06 16:29:57 -0800 | [diff] [blame] | 360 | static void dmatest_mismatch(u8 actual, u8 pattern, unsigned int index, |
Sinan Kaya | 61b5f54 | 2017-06-29 22:30:58 -0400 | [diff] [blame] | 361 | unsigned int counter, bool is_srcbuf, bool is_memset) |
Dan Williams | 7b61017 | 2013-11-06 16:29:57 -0800 | [diff] [blame] | 362 | { |
| 363 | u8 diff = actual ^ pattern; |
Sinan Kaya | 61b5f54 | 2017-06-29 22:30:58 -0400 | [diff] [blame] | 364 | u8 expected = pattern | gen_inv_idx(counter, is_memset); |
Dan Williams | 7b61017 | 2013-11-06 16:29:57 -0800 | [diff] [blame] | 365 | const char *thread_name = current->comm; |
| 366 | |
| 367 | if (is_srcbuf) |
| 368 | pr_warn("%s: srcbuf[0x%x] overwritten! Expected %02x, got %02x\n", |
| 369 | thread_name, index, expected, actual); |
| 370 | else if ((pattern & PATTERN_COPY) |
| 371 | && (diff & (PATTERN_COPY | PATTERN_OVERWRITE))) |
| 372 | pr_warn("%s: dstbuf[0x%x] not copied! Expected %02x, got %02x\n", |
| 373 | thread_name, index, expected, actual); |
| 374 | else if (diff & PATTERN_SRC) |
| 375 | pr_warn("%s: dstbuf[0x%x] was copied! Expected %02x, got %02x\n", |
| 376 | thread_name, index, expected, actual); |
| 377 | else |
| 378 | pr_warn("%s: dstbuf[0x%x] mismatch! Expected %02x, got %02x\n", |
| 379 | thread_name, index, expected, actual); |
| 380 | } |
| 381 | |
| 382 | static unsigned int dmatest_verify(u8 **bufs, unsigned int start, |
| 383 | unsigned int end, unsigned int counter, u8 pattern, |
Sinan Kaya | 61b5f54 | 2017-06-29 22:30:58 -0400 | [diff] [blame] | 384 | bool is_srcbuf, bool is_memset) |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 385 | { |
| 386 | unsigned int i; |
| 387 | unsigned int error_count = 0; |
| 388 | u8 actual; |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 389 | u8 expected; |
| 390 | u8 *buf; |
| 391 | unsigned int counter_orig = counter; |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 392 | |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 393 | for (; (buf = *bufs); bufs++) { |
| 394 | counter = counter_orig; |
| 395 | for (i = start; i < end; i++) { |
| 396 | actual = buf[i]; |
Sinan Kaya | 61b5f54 | 2017-06-29 22:30:58 -0400 | [diff] [blame] | 397 | expected = pattern | gen_inv_idx(counter, is_memset); |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 398 | if (actual != expected) { |
Dan Williams | 7b61017 | 2013-11-06 16:29:57 -0800 | [diff] [blame] | 399 | if (error_count < MAX_ERROR_COUNT) |
| 400 | dmatest_mismatch(actual, pattern, i, |
Sinan Kaya | 61b5f54 | 2017-06-29 22:30:58 -0400 | [diff] [blame] | 401 | counter, is_srcbuf, |
| 402 | is_memset); |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 403 | error_count++; |
| 404 | } |
| 405 | counter++; |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 406 | } |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 407 | } |
| 408 | |
Andy Shevchenko | 74b5c07 | 2013-03-04 11:09:32 +0200 | [diff] [blame] | 409 | if (error_count > MAX_ERROR_COUNT) |
Dan Williams | 7b61017 | 2013-11-06 16:29:57 -0800 | [diff] [blame] | 410 | pr_warn("%s: %u errors suppressed\n", |
Andy Shevchenko | 74b5c07 | 2013-03-04 11:09:32 +0200 | [diff] [blame] | 411 | current->comm, error_count - MAX_ERROR_COUNT); |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 412 | |
| 413 | return error_count; |
| 414 | } |
| 415 | |
Tejun Heo | adfa543 | 2011-11-23 09:28:16 -0800 | [diff] [blame] | 416 | |
| 417 | static void dmatest_callback(void *arg) |
Dan Williams | e44e0aa | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 418 | { |
Tejun Heo | adfa543 | 2011-11-23 09:28:16 -0800 | [diff] [blame] | 419 | struct dmatest_done *done = arg; |
Adam Wallis | 6f6a23a | 2017-11-27 10:45:01 -0500 | [diff] [blame] | 420 | struct dmatest_thread *thread = |
Yang Shunyong | 66b3bd2 | 2018-01-29 14:40:11 +0800 | [diff] [blame] | 421 | container_of(done, struct dmatest_thread, test_done); |
Adam Wallis | 6f6a23a | 2017-11-27 10:45:01 -0500 | [diff] [blame] | 422 | if (!thread->done) { |
| 423 | done->done = true; |
| 424 | wake_up_all(done->wait); |
| 425 | } else { |
| 426 | /* |
| 427 | * If thread->done, it means that this callback occurred |
| 428 | * after the parent thread has cleaned up. This can |
| 429 | * happen in the case that driver doesn't implement |
| 430 | * the terminate_all() functionality and a dma operation |
| 431 | * did not occur within the timeout period |
| 432 | */ |
| 433 | WARN(1, "dmatest: Kernel memory may be corrupted!!\n"); |
| 434 | } |
Dan Williams | e44e0aa | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 435 | } |
| 436 | |
Akinobu Mita | 8be9e32b | 2012-10-28 00:49:32 +0900 | [diff] [blame] | 437 | static unsigned int min_odd(unsigned int x, unsigned int y) |
| 438 | { |
| 439 | unsigned int val = min(x, y); |
| 440 | |
| 441 | return val % 2 ? val : val - 1; |
| 442 | } |
| 443 | |
Dan Williams | 872f05c | 2013-11-06 16:29:58 -0800 | [diff] [blame] | 444 | static void result(const char *err, unsigned int n, unsigned int src_off, |
| 445 | unsigned int dst_off, unsigned int len, unsigned long data) |
Andy Shevchenko | d86b2f2 | 2013-03-04 11:09:34 +0200 | [diff] [blame] | 446 | { |
Jerome Blin | 2acec15 | 2014-03-04 10:38:55 +0100 | [diff] [blame] | 447 | pr_info("%s: result #%u: '%s' with src_off=0x%x dst_off=0x%x len=0x%x (%lu)\n", |
Dan Williams | 872f05c | 2013-11-06 16:29:58 -0800 | [diff] [blame] | 448 | current->comm, n, err, src_off, dst_off, len, data); |
Andy Shevchenko | d86b2f2 | 2013-03-04 11:09:34 +0200 | [diff] [blame] | 449 | } |
| 450 | |
Dan Williams | 872f05c | 2013-11-06 16:29:58 -0800 | [diff] [blame] | 451 | static void dbg_result(const char *err, unsigned int n, unsigned int src_off, |
| 452 | unsigned int dst_off, unsigned int len, |
| 453 | unsigned long data) |
Andy Shevchenko | 95019c8 | 2013-03-04 11:09:33 +0200 | [diff] [blame] | 454 | { |
Jerome Blin | 2acec15 | 2014-03-04 10:38:55 +0100 | [diff] [blame] | 455 | pr_debug("%s: result #%u: '%s' with src_off=0x%x dst_off=0x%x len=0x%x (%lu)\n", |
Andy Shevchenko | a835bb8 | 2014-10-22 16:16:42 +0300 | [diff] [blame] | 456 | current->comm, n, err, src_off, dst_off, len, data); |
Andy Shevchenko | 95019c8 | 2013-03-04 11:09:33 +0200 | [diff] [blame] | 457 | } |
| 458 | |
Andy Shevchenko | a835bb8 | 2014-10-22 16:16:42 +0300 | [diff] [blame] | 459 | #define verbose_result(err, n, src_off, dst_off, len, data) ({ \ |
| 460 | if (verbose) \ |
| 461 | result(err, n, src_off, dst_off, len, data); \ |
| 462 | else \ |
| 463 | dbg_result(err, n, src_off, dst_off, len, data);\ |
Dan Williams | 50137a7 | 2013-11-08 12:26:26 -0800 | [diff] [blame] | 464 | }) |
| 465 | |
Dan Williams | 8672744 | 2013-11-06 16:30:07 -0800 | [diff] [blame] | 466 | static unsigned long long dmatest_persec(s64 runtime, unsigned int val) |
Andy Shevchenko | 95019c8 | 2013-03-04 11:09:33 +0200 | [diff] [blame] | 467 | { |
Dan Williams | 8672744 | 2013-11-06 16:30:07 -0800 | [diff] [blame] | 468 | unsigned long long per_sec = 1000000; |
Andy Shevchenko | 95019c8 | 2013-03-04 11:09:33 +0200 | [diff] [blame] | 469 | |
Dan Williams | 8672744 | 2013-11-06 16:30:07 -0800 | [diff] [blame] | 470 | if (runtime <= 0) |
| 471 | return 0; |
Andy Shevchenko | 95019c8 | 2013-03-04 11:09:33 +0200 | [diff] [blame] | 472 | |
Dan Williams | 8672744 | 2013-11-06 16:30:07 -0800 | [diff] [blame] | 473 | /* drop precision until runtime is 32-bits */ |
| 474 | while (runtime > UINT_MAX) { |
| 475 | runtime >>= 1; |
| 476 | per_sec <<= 1; |
| 477 | } |
Andy Shevchenko | 95019c8 | 2013-03-04 11:09:33 +0200 | [diff] [blame] | 478 | |
Dan Williams | 8672744 | 2013-11-06 16:30:07 -0800 | [diff] [blame] | 479 | per_sec *= val; |
Seraj Alijan | 6138f96 | 2018-12-10 08:52:34 +0000 | [diff] [blame] | 480 | per_sec = INT_TO_FIXPT(per_sec); |
Dan Williams | 8672744 | 2013-11-06 16:30:07 -0800 | [diff] [blame] | 481 | do_div(per_sec, runtime); |
Seraj Alijan | 6138f96 | 2018-12-10 08:52:34 +0000 | [diff] [blame] | 482 | |
Dan Williams | 8672744 | 2013-11-06 16:30:07 -0800 | [diff] [blame] | 483 | return per_sec; |
Andy Shevchenko | 95019c8 | 2013-03-04 11:09:33 +0200 | [diff] [blame] | 484 | } |
| 485 | |
Dan Williams | 8672744 | 2013-11-06 16:30:07 -0800 | [diff] [blame] | 486 | static unsigned long long dmatest_KBs(s64 runtime, unsigned long long len) |
Andy Shevchenko | d86b2f2 | 2013-03-04 11:09:34 +0200 | [diff] [blame] | 487 | { |
Seraj Alijan | 6138f96 | 2018-12-10 08:52:34 +0000 | [diff] [blame] | 488 | return FIXPT_TO_INT(dmatest_persec(runtime, len >> 10)); |
Andy Shevchenko | 95019c8 | 2013-03-04 11:09:33 +0200 | [diff] [blame] | 489 | } |
| 490 | |
Alexandru Ardelean | 3b6679f | 2019-02-12 17:11:39 +0200 | [diff] [blame] | 491 | static void __dmatest_free_test_data(struct dmatest_data *d, unsigned int cnt) |
| 492 | { |
| 493 | unsigned int i; |
| 494 | |
| 495 | for (i = 0; i < cnt; i++) |
| 496 | kfree(d->raw[i]); |
| 497 | |
| 498 | kfree(d->aligned); |
| 499 | kfree(d->raw); |
| 500 | } |
| 501 | |
| 502 | static void dmatest_free_test_data(struct dmatest_data *d) |
| 503 | { |
| 504 | __dmatest_free_test_data(d, d->cnt); |
| 505 | } |
| 506 | |
| 507 | static int dmatest_alloc_test_data(struct dmatest_data *d, |
| 508 | unsigned int buf_size, u8 align) |
| 509 | { |
| 510 | unsigned int i = 0; |
| 511 | |
| 512 | d->raw = kcalloc(d->cnt + 1, sizeof(u8 *), GFP_KERNEL); |
| 513 | if (!d->raw) |
| 514 | return -ENOMEM; |
| 515 | |
| 516 | d->aligned = kcalloc(d->cnt + 1, sizeof(u8 *), GFP_KERNEL); |
| 517 | if (!d->aligned) |
| 518 | goto err; |
| 519 | |
| 520 | for (i = 0; i < d->cnt; i++) { |
| 521 | d->raw[i] = kmalloc(buf_size + align, GFP_KERNEL); |
| 522 | if (!d->raw[i]) |
| 523 | goto err; |
| 524 | |
| 525 | /* align to alignment restriction */ |
| 526 | if (align) |
| 527 | d->aligned[i] = PTR_ALIGN(d->raw[i], align); |
| 528 | else |
| 529 | d->aligned[i] = d->raw[i]; |
| 530 | } |
| 531 | |
| 532 | return 0; |
| 533 | err: |
| 534 | __dmatest_free_test_data(d, i); |
| 535 | return -ENOMEM; |
| 536 | } |
| 537 | |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 538 | /* |
| 539 | * This function repeatedly tests DMA transfers of various lengths and |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 540 | * offsets for a given operation type until it is told to exit by |
| 541 | * kthread_stop(). There may be multiple threads running this function |
| 542 | * in parallel for a single channel, and there may be multiple channels |
| 543 | * being tested in parallel. |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 544 | * |
| 545 | * Before each test, the source and destination buffer is initialized |
| 546 | * with a known pattern. This pattern is different depending on |
| 547 | * whether it's in an area which is supposed to be copied or |
| 548 | * overwritten, and different in the source and destination buffers. |
| 549 | * So if the DMA engine doesn't copy exactly what we tell it to copy, |
| 550 | * we'll notice. |
| 551 | */ |
| 552 | static int dmatest_func(void *data) |
| 553 | { |
| 554 | struct dmatest_thread *thread = data; |
Adam Wallis | 6f6a23a | 2017-11-27 10:45:01 -0500 | [diff] [blame] | 555 | struct dmatest_done *done = &thread->test_done; |
Andy Shevchenko | e03e93a | 2013-03-04 11:09:27 +0200 | [diff] [blame] | 556 | struct dmatest_info *info; |
Andy Shevchenko | 15b8a8e | 2013-03-04 11:09:29 +0200 | [diff] [blame] | 557 | struct dmatest_params *params; |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 558 | struct dma_chan *chan; |
Akinobu Mita | 8be9e32b | 2012-10-28 00:49:32 +0900 | [diff] [blame] | 559 | struct dma_device *dev; |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 560 | unsigned int error_count; |
| 561 | unsigned int failed_tests = 0; |
| 562 | unsigned int total_tests = 0; |
| 563 | dma_cookie_t cookie; |
| 564 | enum dma_status status; |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 565 | enum dma_ctrl_flags flags; |
Andy Shevchenko | 945b5af | 2013-03-04 11:09:26 +0200 | [diff] [blame] | 566 | u8 *pq_coefs = NULL; |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 567 | int ret; |
Alexandru Ardelean | 41d00bb | 2019-02-12 17:11:38 +0200 | [diff] [blame] | 568 | unsigned int buf_size; |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 569 | struct dmatest_data *src; |
| 570 | struct dmatest_data *dst; |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 571 | int i; |
Sinan Kaya | e9405ef | 2016-09-01 10:02:55 -0400 | [diff] [blame] | 572 | ktime_t ktime, start, diff; |
Thomas Gleixner | 8b0e195 | 2016-12-25 12:30:41 +0100 | [diff] [blame] | 573 | ktime_t filltime = 0; |
| 574 | ktime_t comparetime = 0; |
Dan Williams | 8672744 | 2013-11-06 16:30:07 -0800 | [diff] [blame] | 575 | s64 runtime = 0; |
| 576 | unsigned long long total_len = 0; |
Seraj Alijan | 6138f96 | 2018-12-10 08:52:34 +0000 | [diff] [blame] | 577 | unsigned long long iops = 0; |
Dave Jiang | d648160 | 2016-11-29 13:22:20 -0700 | [diff] [blame] | 578 | u8 align = 0; |
Sinan Kaya | 61b5f54 | 2017-06-29 22:30:58 -0400 | [diff] [blame] | 579 | bool is_memset = false; |
Laura Abbott | 72ef08b | 2018-04-10 18:02:16 -0700 | [diff] [blame] | 580 | dma_addr_t *srcs; |
| 581 | dma_addr_t *dma_pq; |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 582 | |
Tejun Heo | adfa543 | 2011-11-23 09:28:16 -0800 | [diff] [blame] | 583 | set_freezable(); |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 584 | |
| 585 | ret = -ENOMEM; |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 586 | |
| 587 | smp_rmb(); |
Seraj Alijan | d53513d | 2018-12-10 08:52:31 +0000 | [diff] [blame] | 588 | thread->pending = false; |
Andy Shevchenko | e03e93a | 2013-03-04 11:09:27 +0200 | [diff] [blame] | 589 | info = thread->info; |
Andy Shevchenko | 15b8a8e | 2013-03-04 11:09:29 +0200 | [diff] [blame] | 590 | params = &info->params; |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 591 | chan = thread->chan; |
Akinobu Mita | 8be9e32b | 2012-10-28 00:49:32 +0900 | [diff] [blame] | 592 | dev = chan->device; |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 593 | src = &thread->src; |
| 594 | dst = &thread->dst; |
Dave Jiang | d648160 | 2016-11-29 13:22:20 -0700 | [diff] [blame] | 595 | if (thread->type == DMA_MEMCPY) { |
Seraj Alijan | a875abf | 2018-12-10 08:52:37 +0000 | [diff] [blame] | 596 | align = params->alignment < 0 ? dev->copy_align : |
| 597 | params->alignment; |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 598 | src->cnt = dst->cnt = 1; |
Sinan Kaya | 61b5f54 | 2017-06-29 22:30:58 -0400 | [diff] [blame] | 599 | } else if (thread->type == DMA_MEMSET) { |
Seraj Alijan | a875abf | 2018-12-10 08:52:37 +0000 | [diff] [blame] | 600 | align = params->alignment < 0 ? dev->fill_align : |
| 601 | params->alignment; |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 602 | src->cnt = dst->cnt = 1; |
Sinan Kaya | 61b5f54 | 2017-06-29 22:30:58 -0400 | [diff] [blame] | 603 | is_memset = true; |
Dave Jiang | d648160 | 2016-11-29 13:22:20 -0700 | [diff] [blame] | 604 | } else if (thread->type == DMA_XOR) { |
Akinobu Mita | 8be9e32b | 2012-10-28 00:49:32 +0900 | [diff] [blame] | 605 | /* force odd to ensure dst = src */ |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 606 | src->cnt = min_odd(params->xor_sources | 1, dev->max_xor); |
| 607 | dst->cnt = 1; |
Seraj Alijan | a875abf | 2018-12-10 08:52:37 +0000 | [diff] [blame] | 608 | align = params->alignment < 0 ? dev->xor_align : |
| 609 | params->alignment; |
Dan Williams | 58691d6 | 2009-08-29 19:09:27 -0700 | [diff] [blame] | 610 | } else if (thread->type == DMA_PQ) { |
Akinobu Mita | 8be9e32b | 2012-10-28 00:49:32 +0900 | [diff] [blame] | 611 | /* force odd to ensure dst = src */ |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 612 | src->cnt = min_odd(params->pq_sources | 1, dma_maxpq(dev, 0)); |
| 613 | dst->cnt = 2; |
Seraj Alijan | a875abf | 2018-12-10 08:52:37 +0000 | [diff] [blame] | 614 | align = params->alignment < 0 ? dev->pq_align : |
| 615 | params->alignment; |
Andy Shevchenko | 945b5af | 2013-03-04 11:09:26 +0200 | [diff] [blame] | 616 | |
Dave Jiang | 31d1825 | 2016-11-29 13:22:01 -0700 | [diff] [blame] | 617 | pq_coefs = kmalloc(params->pq_sources + 1, GFP_KERNEL); |
Andy Shevchenko | 945b5af | 2013-03-04 11:09:26 +0200 | [diff] [blame] | 618 | if (!pq_coefs) |
| 619 | goto err_thread_type; |
| 620 | |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 621 | for (i = 0; i < src->cnt; i++) |
Dan Williams | 58691d6 | 2009-08-29 19:09:27 -0700 | [diff] [blame] | 622 | pq_coefs[i] = 1; |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 623 | } else |
Andy Shevchenko | 945b5af | 2013-03-04 11:09:26 +0200 | [diff] [blame] | 624 | goto err_thread_type; |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 625 | |
Alexandru Ardelean | 787d308 | 2018-11-01 18:07:16 +0200 | [diff] [blame] | 626 | /* Check if buffer count fits into map count variable (u8) */ |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 627 | if ((src->cnt + dst->cnt) >= 255) { |
Alexandru Ardelean | 787d308 | 2018-11-01 18:07:16 +0200 | [diff] [blame] | 628 | pr_err("too many buffers (%d of 255 supported)\n", |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 629 | src->cnt + dst->cnt); |
Dan Carpenter | 3f3c755 | 2018-12-03 17:49:33 +0300 | [diff] [blame] | 630 | goto err_free_coefs; |
Alexandru Ardelean | 787d308 | 2018-11-01 18:07:16 +0200 | [diff] [blame] | 631 | } |
| 632 | |
Alexandru Ardelean | 41d00bb | 2019-02-12 17:11:38 +0200 | [diff] [blame] | 633 | buf_size = params->buf_size; |
| 634 | if (1 << align > buf_size) { |
Alexandru Ardelean | 787d308 | 2018-11-01 18:07:16 +0200 | [diff] [blame] | 635 | pr_err("%u-byte buffer too small for %d-byte alignment\n", |
Alexandru Ardelean | 41d00bb | 2019-02-12 17:11:38 +0200 | [diff] [blame] | 636 | buf_size, 1 << align); |
Dan Carpenter | 3f3c755 | 2018-12-03 17:49:33 +0300 | [diff] [blame] | 637 | goto err_free_coefs; |
Alexandru Ardelean | 787d308 | 2018-11-01 18:07:16 +0200 | [diff] [blame] | 638 | } |
| 639 | |
Alexandru Ardelean | 3b6679f | 2019-02-12 17:11:39 +0200 | [diff] [blame] | 640 | if (dmatest_alloc_test_data(src, buf_size, align) < 0) |
Dan Carpenter | 3f3c755 | 2018-12-03 17:49:33 +0300 | [diff] [blame] | 641 | goto err_free_coefs; |
Dave Jiang | d648160 | 2016-11-29 13:22:20 -0700 | [diff] [blame] | 642 | |
Alexandru Ardelean | 3b6679f | 2019-02-12 17:11:39 +0200 | [diff] [blame] | 643 | if (dmatest_alloc_test_data(dst, buf_size, align) < 0) |
| 644 | goto err_src; |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 645 | |
Dan Williams | e44e0aa | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 646 | set_user_nice(current, 10); |
| 647 | |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 648 | srcs = kcalloc(src->cnt, sizeof(dma_addr_t), GFP_KERNEL); |
Laura Abbott | 72ef08b | 2018-04-10 18:02:16 -0700 | [diff] [blame] | 649 | if (!srcs) |
Alexandru Ardelean | 3b6679f | 2019-02-12 17:11:39 +0200 | [diff] [blame] | 650 | goto err_dst; |
Laura Abbott | 72ef08b | 2018-04-10 18:02:16 -0700 | [diff] [blame] | 651 | |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 652 | dma_pq = kcalloc(dst->cnt, sizeof(dma_addr_t), GFP_KERNEL); |
Laura Abbott | 72ef08b | 2018-04-10 18:02:16 -0700 | [diff] [blame] | 653 | if (!dma_pq) |
| 654 | goto err_srcs_array; |
| 655 | |
Ira Snyder | b203bd3 | 2011-03-03 07:54:53 +0000 | [diff] [blame] | 656 | /* |
Bartlomiej Zolnierkiewicz | d1cab34 | 2013-10-18 19:35:21 +0200 | [diff] [blame] | 657 | * src and dst buffers are freed by ourselves below |
Ira Snyder | b203bd3 | 2011-03-03 07:54:53 +0000 | [diff] [blame] | 658 | */ |
Peter Ujfalusi | fb9816f | 2019-07-31 10:14:38 +0300 | [diff] [blame] | 659 | if (params->polled) |
| 660 | flags = DMA_CTRL_ACK; |
| 661 | else |
| 662 | flags = DMA_CTRL_ACK | DMA_PREP_INTERRUPT; |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 663 | |
Dan Williams | 8672744 | 2013-11-06 16:30:07 -0800 | [diff] [blame] | 664 | ktime = ktime_get(); |
Nicolas Ferre | 0a2ff57d | 2009-07-03 19:26:51 +0200 | [diff] [blame] | 665 | while (!kthread_should_stop() |
Andy Shevchenko | 15b8a8e | 2013-03-04 11:09:29 +0200 | [diff] [blame] | 666 | && !(params->iterations && total_tests >= params->iterations)) { |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 667 | struct dma_async_tx_descriptor *tx = NULL; |
Dan Williams | 4076e75 | 2013-11-06 16:30:10 -0800 | [diff] [blame] | 668 | struct dmaengine_unmap_data *um; |
Dan Williams | 4076e75 | 2013-11-06 16:30:10 -0800 | [diff] [blame] | 669 | dma_addr_t *dsts; |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 670 | unsigned int len; |
Atsushi Nemoto | d86be86 | 2009-01-13 09:22:20 -0700 | [diff] [blame] | 671 | |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 672 | total_tests++; |
| 673 | |
Seraj Alijan | 13396a1 | 2018-12-10 08:52:39 +0000 | [diff] [blame] | 674 | if (params->transfer_size) { |
Alexandru Ardelean | 41d00bb | 2019-02-12 17:11:38 +0200 | [diff] [blame] | 675 | if (params->transfer_size >= buf_size) { |
Seraj Alijan | 13396a1 | 2018-12-10 08:52:39 +0000 | [diff] [blame] | 676 | pr_err("%u-byte transfer size must be lower than %u-buffer size\n", |
Alexandru Ardelean | 41d00bb | 2019-02-12 17:11:38 +0200 | [diff] [blame] | 677 | params->transfer_size, buf_size); |
Seraj Alijan | 13396a1 | 2018-12-10 08:52:39 +0000 | [diff] [blame] | 678 | break; |
| 679 | } |
| 680 | len = params->transfer_size; |
| 681 | } else if (params->norandom) { |
Alexandru Ardelean | 41d00bb | 2019-02-12 17:11:38 +0200 | [diff] [blame] | 682 | len = buf_size; |
Seraj Alijan | 13396a1 | 2018-12-10 08:52:39 +0000 | [diff] [blame] | 683 | } else { |
Alexandru Ardelean | 41d00bb | 2019-02-12 17:11:38 +0200 | [diff] [blame] | 684 | len = dmatest_random() % buf_size + 1; |
Seraj Alijan | 13396a1 | 2018-12-10 08:52:39 +0000 | [diff] [blame] | 685 | } |
Andy Shevchenko | ede23a5 | 2014-10-22 16:16:43 +0300 | [diff] [blame] | 686 | |
Seraj Alijan | 13396a1 | 2018-12-10 08:52:39 +0000 | [diff] [blame] | 687 | /* Do not alter transfer size explicitly defined by user */ |
| 688 | if (!params->transfer_size) { |
| 689 | len = (len >> align) << align; |
| 690 | if (!len) |
| 691 | len = 1 << align; |
| 692 | } |
Andy Shevchenko | ede23a5 | 2014-10-22 16:16:43 +0300 | [diff] [blame] | 693 | total_len += len; |
| 694 | |
Yang Shunyong | 2e67a08 | 2018-02-02 17:51:09 +0800 | [diff] [blame] | 695 | if (params->norandom) { |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 696 | src->off = 0; |
| 697 | dst->off = 0; |
Dan Williams | e3b9c34 | 2013-11-06 16:30:05 -0800 | [diff] [blame] | 698 | } else { |
Alexandru Ardelean | 41d00bb | 2019-02-12 17:11:38 +0200 | [diff] [blame] | 699 | src->off = dmatest_random() % (buf_size - len + 1); |
| 700 | dst->off = dmatest_random() % (buf_size - len + 1); |
Dan Williams | e3b9c34 | 2013-11-06 16:30:05 -0800 | [diff] [blame] | 701 | |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 702 | src->off = (src->off >> align) << align; |
| 703 | dst->off = (dst->off >> align) << align; |
Yang Shunyong | 2e67a08 | 2018-02-02 17:51:09 +0800 | [diff] [blame] | 704 | } |
Dan Williams | e3b9c34 | 2013-11-06 16:30:05 -0800 | [diff] [blame] | 705 | |
Yang Shunyong | 2e67a08 | 2018-02-02 17:51:09 +0800 | [diff] [blame] | 706 | if (!params->noverify) { |
| 707 | start = ktime_get(); |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 708 | dmatest_init_srcs(src->aligned, src->off, len, |
Alexandru Ardelean | 41d00bb | 2019-02-12 17:11:38 +0200 | [diff] [blame] | 709 | buf_size, is_memset); |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 710 | dmatest_init_dsts(dst->aligned, dst->off, len, |
Alexandru Ardelean | 41d00bb | 2019-02-12 17:11:38 +0200 | [diff] [blame] | 711 | buf_size, is_memset); |
Sinan Kaya | e9405ef | 2016-09-01 10:02:55 -0400 | [diff] [blame] | 712 | |
| 713 | diff = ktime_sub(ktime_get(), start); |
| 714 | filltime = ktime_add(filltime, diff); |
Dan Williams | e3b9c34 | 2013-11-06 16:30:05 -0800 | [diff] [blame] | 715 | } |
| 716 | |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 717 | um = dmaengine_get_unmap_data(dev->dev, src->cnt + dst->cnt, |
Dan Williams | 4076e75 | 2013-11-06 16:30:10 -0800 | [diff] [blame] | 718 | GFP_KERNEL); |
| 719 | if (!um) { |
| 720 | failed_tests++; |
| 721 | result("unmap data NULL", total_tests, |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 722 | src->off, dst->off, len, ret); |
Dan Williams | 4076e75 | 2013-11-06 16:30:10 -0800 | [diff] [blame] | 723 | continue; |
| 724 | } |
Dan Williams | 83544ae | 2009-09-08 17:42:53 -0700 | [diff] [blame] | 725 | |
Alexandru Ardelean | 41d00bb | 2019-02-12 17:11:38 +0200 | [diff] [blame] | 726 | um->len = buf_size; |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 727 | for (i = 0; i < src->cnt; i++) { |
| 728 | void *buf = src->aligned[i]; |
Dan Williams | 4076e75 | 2013-11-06 16:30:10 -0800 | [diff] [blame] | 729 | struct page *pg = virt_to_page(buf); |
Geliang Tang | f62e5f6 | 2017-04-22 09:18:03 +0800 | [diff] [blame] | 730 | unsigned long pg_off = offset_in_page(buf); |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 731 | |
Dan Williams | 4076e75 | 2013-11-06 16:30:10 -0800 | [diff] [blame] | 732 | um->addr[i] = dma_map_page(dev->dev, pg, pg_off, |
| 733 | um->len, DMA_TO_DEVICE); |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 734 | srcs[i] = um->addr[i] + src->off; |
Dan Williams | 4076e75 | 2013-11-06 16:30:10 -0800 | [diff] [blame] | 735 | ret = dma_mapping_error(dev->dev, um->addr[i]); |
Andy Shevchenko | afde3be | 2012-12-17 15:59:53 -0800 | [diff] [blame] | 736 | if (ret) { |
Dan Williams | 872f05c | 2013-11-06 16:29:58 -0800 | [diff] [blame] | 737 | result("src mapping error", total_tests, |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 738 | src->off, dst->off, len, ret); |
Andy Shevchenko | 6454368 | 2019-01-30 21:48:44 +0200 | [diff] [blame] | 739 | goto error_unmap_continue; |
Andy Shevchenko | afde3be | 2012-12-17 15:59:53 -0800 | [diff] [blame] | 740 | } |
Dan Williams | 4076e75 | 2013-11-06 16:30:10 -0800 | [diff] [blame] | 741 | um->to_cnt++; |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 742 | } |
Atsushi Nemoto | d86be86 | 2009-01-13 09:22:20 -0700 | [diff] [blame] | 743 | /* map with DMA_BIDIRECTIONAL to force writeback/invalidate */ |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 744 | dsts = &um->addr[src->cnt]; |
| 745 | for (i = 0; i < dst->cnt; i++) { |
| 746 | void *buf = dst->aligned[i]; |
Dan Williams | 4076e75 | 2013-11-06 16:30:10 -0800 | [diff] [blame] | 747 | struct page *pg = virt_to_page(buf); |
Geliang Tang | f62e5f6 | 2017-04-22 09:18:03 +0800 | [diff] [blame] | 748 | unsigned long pg_off = offset_in_page(buf); |
Dan Williams | 4076e75 | 2013-11-06 16:30:10 -0800 | [diff] [blame] | 749 | |
| 750 | dsts[i] = dma_map_page(dev->dev, pg, pg_off, um->len, |
| 751 | DMA_BIDIRECTIONAL); |
| 752 | ret = dma_mapping_error(dev->dev, dsts[i]); |
Andy Shevchenko | afde3be | 2012-12-17 15:59:53 -0800 | [diff] [blame] | 753 | if (ret) { |
Dan Williams | 872f05c | 2013-11-06 16:29:58 -0800 | [diff] [blame] | 754 | result("dst mapping error", total_tests, |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 755 | src->off, dst->off, len, ret); |
Andy Shevchenko | 6454368 | 2019-01-30 21:48:44 +0200 | [diff] [blame] | 756 | goto error_unmap_continue; |
Andy Shevchenko | afde3be | 2012-12-17 15:59:53 -0800 | [diff] [blame] | 757 | } |
Dan Williams | 4076e75 | 2013-11-06 16:30:10 -0800 | [diff] [blame] | 758 | um->bidi_cnt++; |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 759 | } |
Atsushi Nemoto | d86be86 | 2009-01-13 09:22:20 -0700 | [diff] [blame] | 760 | |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 761 | if (thread->type == DMA_MEMCPY) |
| 762 | tx = dev->device_prep_dma_memcpy(chan, |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 763 | dsts[0] + dst->off, |
Dan Williams | 4076e75 | 2013-11-06 16:30:10 -0800 | [diff] [blame] | 764 | srcs[0], len, flags); |
Sinan Kaya | 61b5f54 | 2017-06-29 22:30:58 -0400 | [diff] [blame] | 765 | else if (thread->type == DMA_MEMSET) |
| 766 | tx = dev->device_prep_dma_memset(chan, |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 767 | dsts[0] + dst->off, |
| 768 | *(src->aligned[0] + src->off), |
Sinan Kaya | 61b5f54 | 2017-06-29 22:30:58 -0400 | [diff] [blame] | 769 | len, flags); |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 770 | else if (thread->type == DMA_XOR) |
| 771 | tx = dev->device_prep_dma_xor(chan, |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 772 | dsts[0] + dst->off, |
| 773 | srcs, src->cnt, |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 774 | len, flags); |
Dan Williams | 58691d6 | 2009-08-29 19:09:27 -0700 | [diff] [blame] | 775 | else if (thread->type == DMA_PQ) { |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 776 | for (i = 0; i < dst->cnt; i++) |
| 777 | dma_pq[i] = dsts[i] + dst->off; |
Dan Williams | 4076e75 | 2013-11-06 16:30:10 -0800 | [diff] [blame] | 778 | tx = dev->device_prep_dma_pq(chan, dma_pq, srcs, |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 779 | src->cnt, pq_coefs, |
Dan Williams | 58691d6 | 2009-08-29 19:09:27 -0700 | [diff] [blame] | 780 | len, flags); |
| 781 | } |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 782 | |
Atsushi Nemoto | d86be86 | 2009-01-13 09:22:20 -0700 | [diff] [blame] | 783 | if (!tx) { |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 784 | result("prep error", total_tests, src->off, |
| 785 | dst->off, len, ret); |
Atsushi Nemoto | d86be86 | 2009-01-13 09:22:20 -0700 | [diff] [blame] | 786 | msleep(100); |
Andy Shevchenko | 6454368 | 2019-01-30 21:48:44 +0200 | [diff] [blame] | 787 | goto error_unmap_continue; |
Atsushi Nemoto | d86be86 | 2009-01-13 09:22:20 -0700 | [diff] [blame] | 788 | } |
Dan Williams | e44e0aa | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 789 | |
Adam Wallis | 6f6a23a | 2017-11-27 10:45:01 -0500 | [diff] [blame] | 790 | done->done = false; |
Peter Ujfalusi | fb9816f | 2019-07-31 10:14:38 +0300 | [diff] [blame] | 791 | if (!params->polled) { |
| 792 | tx->callback = dmatest_callback; |
| 793 | tx->callback_param = done; |
| 794 | } |
Atsushi Nemoto | d86be86 | 2009-01-13 09:22:20 -0700 | [diff] [blame] | 795 | cookie = tx->tx_submit(tx); |
| 796 | |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 797 | if (dma_submit_error(cookie)) { |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 798 | result("submit error", total_tests, src->off, |
| 799 | dst->off, len, ret); |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 800 | msleep(100); |
Andy Shevchenko | 6454368 | 2019-01-30 21:48:44 +0200 | [diff] [blame] | 801 | goto error_unmap_continue; |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 802 | } |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 803 | |
Peter Ujfalusi | fb9816f | 2019-07-31 10:14:38 +0300 | [diff] [blame] | 804 | if (params->polled) { |
| 805 | status = dma_sync_wait(chan, cookie); |
| 806 | dmaengine_terminate_sync(chan); |
| 807 | if (status == DMA_COMPLETE) |
| 808 | done->done = true; |
| 809 | } else { |
| 810 | dma_async_issue_pending(chan); |
Guennadi Liakhovetski | 981ed70 | 2011-08-18 16:50:51 +0200 | [diff] [blame] | 811 | |
Peter Ujfalusi | fb9816f | 2019-07-31 10:14:38 +0300 | [diff] [blame] | 812 | wait_event_freezable_timeout(thread->done_wait, |
| 813 | done->done, |
| 814 | msecs_to_jiffies(params->timeout)); |
| 815 | |
| 816 | status = dma_async_is_tx_complete(chan, cookie, NULL, |
| 817 | NULL); |
| 818 | } |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 819 | |
Adam Wallis | 6f6a23a | 2017-11-27 10:45:01 -0500 | [diff] [blame] | 820 | if (!done->done) { |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 821 | result("test timed out", total_tests, src->off, dst->off, |
Dan Williams | 872f05c | 2013-11-06 16:29:58 -0800 | [diff] [blame] | 822 | len, 0); |
Andy Shevchenko | 6454368 | 2019-01-30 21:48:44 +0200 | [diff] [blame] | 823 | goto error_unmap_continue; |
Vinod Koul | 19e9f99 | 2013-10-16 13:37:27 +0530 | [diff] [blame] | 824 | } else if (status != DMA_COMPLETE) { |
Dan Williams | 872f05c | 2013-11-06 16:29:58 -0800 | [diff] [blame] | 825 | result(status == DMA_ERROR ? |
| 826 | "completion error status" : |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 827 | "completion busy status", total_tests, src->off, |
| 828 | dst->off, len, ret); |
Andy Shevchenko | 6454368 | 2019-01-30 21:48:44 +0200 | [diff] [blame] | 829 | goto error_unmap_continue; |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 830 | } |
Dan Williams | e44e0aa | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 831 | |
Andy Shevchenko | 6454368 | 2019-01-30 21:48:44 +0200 | [diff] [blame] | 832 | dmaengine_unmap_put(um); |
| 833 | |
Dan Williams | e3b9c34 | 2013-11-06 16:30:05 -0800 | [diff] [blame] | 834 | if (params->noverify) { |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 835 | verbose_result("test passed", total_tests, src->off, |
| 836 | dst->off, len, 0); |
Dan Williams | e3b9c34 | 2013-11-06 16:30:05 -0800 | [diff] [blame] | 837 | continue; |
| 838 | } |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 839 | |
Sinan Kaya | e9405ef | 2016-09-01 10:02:55 -0400 | [diff] [blame] | 840 | start = ktime_get(); |
Dan Williams | 872f05c | 2013-11-06 16:29:58 -0800 | [diff] [blame] | 841 | pr_debug("%s: verifying source buffer...\n", current->comm); |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 842 | error_count = dmatest_verify(src->aligned, 0, src->off, |
Sinan Kaya | 61b5f54 | 2017-06-29 22:30:58 -0400 | [diff] [blame] | 843 | 0, PATTERN_SRC, true, is_memset); |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 844 | error_count += dmatest_verify(src->aligned, src->off, |
| 845 | src->off + len, src->off, |
Sinan Kaya | 61b5f54 | 2017-06-29 22:30:58 -0400 | [diff] [blame] | 846 | PATTERN_SRC | PATTERN_COPY, true, is_memset); |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 847 | error_count += dmatest_verify(src->aligned, src->off + len, |
Alexandru Ardelean | 41d00bb | 2019-02-12 17:11:38 +0200 | [diff] [blame] | 848 | buf_size, src->off + len, |
Sinan Kaya | 61b5f54 | 2017-06-29 22:30:58 -0400 | [diff] [blame] | 849 | PATTERN_SRC, true, is_memset); |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 850 | |
Dan Williams | 872f05c | 2013-11-06 16:29:58 -0800 | [diff] [blame] | 851 | pr_debug("%s: verifying dest buffer...\n", current->comm); |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 852 | error_count += dmatest_verify(dst->aligned, 0, dst->off, |
Sinan Kaya | 61b5f54 | 2017-06-29 22:30:58 -0400 | [diff] [blame] | 853 | 0, PATTERN_DST, false, is_memset); |
| 854 | |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 855 | error_count += dmatest_verify(dst->aligned, dst->off, |
| 856 | dst->off + len, src->off, |
Sinan Kaya | 61b5f54 | 2017-06-29 22:30:58 -0400 | [diff] [blame] | 857 | PATTERN_SRC | PATTERN_COPY, false, is_memset); |
| 858 | |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 859 | error_count += dmatest_verify(dst->aligned, dst->off + len, |
Alexandru Ardelean | 41d00bb | 2019-02-12 17:11:38 +0200 | [diff] [blame] | 860 | buf_size, dst->off + len, |
Sinan Kaya | 61b5f54 | 2017-06-29 22:30:58 -0400 | [diff] [blame] | 861 | PATTERN_DST, false, is_memset); |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 862 | |
Sinan Kaya | e9405ef | 2016-09-01 10:02:55 -0400 | [diff] [blame] | 863 | diff = ktime_sub(ktime_get(), start); |
| 864 | comparetime = ktime_add(comparetime, diff); |
| 865 | |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 866 | if (error_count) { |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 867 | result("data error", total_tests, src->off, dst->off, |
Dan Williams | 872f05c | 2013-11-06 16:29:58 -0800 | [diff] [blame] | 868 | len, error_count); |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 869 | failed_tests++; |
| 870 | } else { |
Alexandru Ardelean | 361deb7 | 2019-02-12 17:11:37 +0200 | [diff] [blame] | 871 | verbose_result("test passed", total_tests, src->off, |
| 872 | dst->off, len, 0); |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 873 | } |
Andy Shevchenko | 6454368 | 2019-01-30 21:48:44 +0200 | [diff] [blame] | 874 | |
| 875 | continue; |
| 876 | |
| 877 | error_unmap_continue: |
| 878 | dmaengine_unmap_put(um); |
| 879 | failed_tests++; |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 880 | } |
Sinan Kaya | e9405ef | 2016-09-01 10:02:55 -0400 | [diff] [blame] | 881 | ktime = ktime_sub(ktime_get(), ktime); |
| 882 | ktime = ktime_sub(ktime, comparetime); |
| 883 | ktime = ktime_sub(ktime, filltime); |
| 884 | runtime = ktime_to_us(ktime); |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 885 | |
| 886 | ret = 0; |
Laura Abbott | 72ef08b | 2018-04-10 18:02:16 -0700 | [diff] [blame] | 887 | kfree(dma_pq); |
| 888 | err_srcs_array: |
| 889 | kfree(srcs); |
Alexandru Ardelean | 3b6679f | 2019-02-12 17:11:39 +0200 | [diff] [blame] | 890 | err_dst: |
| 891 | dmatest_free_test_data(dst); |
| 892 | err_src: |
| 893 | dmatest_free_test_data(src); |
Dan Carpenter | 3f3c755 | 2018-12-03 17:49:33 +0300 | [diff] [blame] | 894 | err_free_coefs: |
Andy Shevchenko | 945b5af | 2013-03-04 11:09:26 +0200 | [diff] [blame] | 895 | kfree(pq_coefs); |
| 896 | err_thread_type: |
Seraj Alijan | 6138f96 | 2018-12-10 08:52:34 +0000 | [diff] [blame] | 897 | iops = dmatest_persec(runtime, total_tests); |
| 898 | pr_info("%s: summary %u tests, %u failures %llu.%02llu iops %llu KB/s (%d)\n", |
Dan Williams | 8672744 | 2013-11-06 16:30:07 -0800 | [diff] [blame] | 899 | current->comm, total_tests, failed_tests, |
Seraj Alijan | 6138f96 | 2018-12-10 08:52:34 +0000 | [diff] [blame] | 900 | FIXPT_TO_INT(iops), FIXPT_GET_FRAC(iops), |
Dan Williams | 8672744 | 2013-11-06 16:30:07 -0800 | [diff] [blame] | 901 | dmatest_KBs(runtime, total_len), ret); |
Nicolas Ferre | 0a2ff57d | 2009-07-03 19:26:51 +0200 | [diff] [blame] | 902 | |
Viresh Kumar | 9704efa | 2011-07-29 16:21:57 +0530 | [diff] [blame] | 903 | /* terminate all transfers on specified channels */ |
Adam Wallis | 6f6a23a | 2017-11-27 10:45:01 -0500 | [diff] [blame] | 904 | if (ret || failed_tests) |
Alexandru Ardelean | fbffb6b | 2018-10-29 11:23:36 +0200 | [diff] [blame] | 905 | dmaengine_terminate_sync(chan); |
Shiraz Hashim | 5e034f7 | 2012-11-09 15:26:29 +0000 | [diff] [blame] | 906 | |
Andy Shevchenko | 3e5ccd8 | 2013-03-04 11:09:31 +0200 | [diff] [blame] | 907 | thread->done = true; |
Dan Williams | 2d88ce7 | 2013-11-06 16:30:09 -0800 | [diff] [blame] | 908 | wake_up(&thread_wait); |
Nicolas Ferre | 0a2ff57d | 2009-07-03 19:26:51 +0200 | [diff] [blame] | 909 | |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 910 | return ret; |
| 911 | } |
| 912 | |
| 913 | static void dmatest_cleanup_channel(struct dmatest_chan *dtc) |
| 914 | { |
| 915 | struct dmatest_thread *thread; |
| 916 | struct dmatest_thread *_thread; |
| 917 | int ret; |
| 918 | |
| 919 | list_for_each_entry_safe(thread, _thread, &dtc->threads, node) { |
| 920 | ret = kthread_stop(thread->task); |
Dan Williams | 0adff80 | 2013-11-06 16:30:00 -0800 | [diff] [blame] | 921 | pr_debug("thread %s exited with status %d\n", |
| 922 | thread->task->comm, ret); |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 923 | list_del(&thread->node); |
Dan Williams | 2d88ce7 | 2013-11-06 16:30:09 -0800 | [diff] [blame] | 924 | put_task_struct(thread->task); |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 925 | kfree(thread); |
| 926 | } |
Viresh Kumar | 9704efa | 2011-07-29 16:21:57 +0530 | [diff] [blame] | 927 | |
| 928 | /* terminate all transfers on specified channels */ |
Alexandru Ardelean | fbffb6b | 2018-10-29 11:23:36 +0200 | [diff] [blame] | 929 | dmaengine_terminate_sync(dtc->chan); |
Viresh Kumar | 9704efa | 2011-07-29 16:21:57 +0530 | [diff] [blame] | 930 | |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 931 | kfree(dtc); |
| 932 | } |
| 933 | |
Andy Shevchenko | e03e93a | 2013-03-04 11:09:27 +0200 | [diff] [blame] | 934 | static int dmatest_add_threads(struct dmatest_info *info, |
| 935 | struct dmatest_chan *dtc, enum dma_transaction_type type) |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 936 | { |
Andy Shevchenko | 15b8a8e | 2013-03-04 11:09:29 +0200 | [diff] [blame] | 937 | struct dmatest_params *params = &info->params; |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 938 | struct dmatest_thread *thread; |
| 939 | struct dma_chan *chan = dtc->chan; |
| 940 | char *op; |
| 941 | unsigned int i; |
| 942 | |
| 943 | if (type == DMA_MEMCPY) |
| 944 | op = "copy"; |
Sinan Kaya | 61b5f54 | 2017-06-29 22:30:58 -0400 | [diff] [blame] | 945 | else if (type == DMA_MEMSET) |
| 946 | op = "set"; |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 947 | else if (type == DMA_XOR) |
| 948 | op = "xor"; |
Dan Williams | 58691d6 | 2009-08-29 19:09:27 -0700 | [diff] [blame] | 949 | else if (type == DMA_PQ) |
| 950 | op = "pq"; |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 951 | else |
| 952 | return -EINVAL; |
| 953 | |
Andy Shevchenko | 15b8a8e | 2013-03-04 11:09:29 +0200 | [diff] [blame] | 954 | for (i = 0; i < params->threads_per_chan; i++) { |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 955 | thread = kzalloc(sizeof(struct dmatest_thread), GFP_KERNEL); |
| 956 | if (!thread) { |
Dan Williams | 0adff80 | 2013-11-06 16:30:00 -0800 | [diff] [blame] | 957 | pr_warn("No memory for %s-%s%u\n", |
| 958 | dma_chan_name(chan), op, i); |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 959 | break; |
| 960 | } |
Andy Shevchenko | e03e93a | 2013-03-04 11:09:27 +0200 | [diff] [blame] | 961 | thread->info = info; |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 962 | thread->chan = dtc->chan; |
| 963 | thread->type = type; |
Adam Wallis | 6f6a23a | 2017-11-27 10:45:01 -0500 | [diff] [blame] | 964 | thread->test_done.wait = &thread->done_wait; |
| 965 | init_waitqueue_head(&thread->done_wait); |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 966 | smp_wmb(); |
Dan Williams | 2d88ce7 | 2013-11-06 16:30:09 -0800 | [diff] [blame] | 967 | thread->task = kthread_create(dmatest_func, thread, "%s-%s%u", |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 968 | dma_chan_name(chan), op, i); |
| 969 | if (IS_ERR(thread->task)) { |
Dan Williams | 2d88ce7 | 2013-11-06 16:30:09 -0800 | [diff] [blame] | 970 | pr_warn("Failed to create thread %s-%s%u\n", |
Dan Williams | 0adff80 | 2013-11-06 16:30:00 -0800 | [diff] [blame] | 971 | dma_chan_name(chan), op, i); |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 972 | kfree(thread); |
| 973 | break; |
| 974 | } |
| 975 | |
| 976 | /* srcbuf and dstbuf are allocated by the thread itself */ |
Dan Williams | 2d88ce7 | 2013-11-06 16:30:09 -0800 | [diff] [blame] | 977 | get_task_struct(thread->task); |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 978 | list_add_tail(&thread->node, &dtc->threads); |
Seraj Alijan | d53513d | 2018-12-10 08:52:31 +0000 | [diff] [blame] | 979 | thread->pending = true; |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 980 | } |
| 981 | |
| 982 | return i; |
| 983 | } |
| 984 | |
Andy Shevchenko | e03e93a | 2013-03-04 11:09:27 +0200 | [diff] [blame] | 985 | static int dmatest_add_channel(struct dmatest_info *info, |
| 986 | struct dma_chan *chan) |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 987 | { |
| 988 | struct dmatest_chan *dtc; |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 989 | struct dma_device *dma_dev = chan->device; |
| 990 | unsigned int thread_count = 0; |
Kulikov Vasiliy | b9033e6 | 2010-07-17 19:19:48 +0400 | [diff] [blame] | 991 | int cnt; |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 992 | |
Andrew Morton | 6fdb8bd | 2008-09-19 04:16:23 -0700 | [diff] [blame] | 993 | dtc = kmalloc(sizeof(struct dmatest_chan), GFP_KERNEL); |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 994 | if (!dtc) { |
Dan Williams | 0adff80 | 2013-11-06 16:30:00 -0800 | [diff] [blame] | 995 | pr_warn("No memory for %s\n", dma_chan_name(chan)); |
Dan Williams | 33df8ca | 2009-01-06 11:38:15 -0700 | [diff] [blame] | 996 | return -ENOMEM; |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 997 | } |
| 998 | |
| 999 | dtc->chan = chan; |
| 1000 | INIT_LIST_HEAD(&dtc->threads); |
| 1001 | |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 1002 | if (dma_has_cap(DMA_MEMCPY, dma_dev->cap_mask)) { |
Kedareswara rao Appana | a0d4cb4 | 2016-06-09 21:10:14 +0530 | [diff] [blame] | 1003 | if (dmatest == 0) { |
| 1004 | cnt = dmatest_add_threads(info, dtc, DMA_MEMCPY); |
| 1005 | thread_count += cnt > 0 ? cnt : 0; |
| 1006 | } |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 1007 | } |
Kedareswara rao Appana | a0d4cb4 | 2016-06-09 21:10:14 +0530 | [diff] [blame] | 1008 | |
Sinan Kaya | 61b5f54 | 2017-06-29 22:30:58 -0400 | [diff] [blame] | 1009 | if (dma_has_cap(DMA_MEMSET, dma_dev->cap_mask)) { |
Kedareswara rao Appana | a0d4cb4 | 2016-06-09 21:10:14 +0530 | [diff] [blame] | 1010 | if (dmatest == 1) { |
Dave Jiang | c678fa6 | 2017-08-21 10:23:13 -0700 | [diff] [blame] | 1011 | cnt = dmatest_add_threads(info, dtc, DMA_MEMSET); |
Kedareswara rao Appana | a0d4cb4 | 2016-06-09 21:10:14 +0530 | [diff] [blame] | 1012 | thread_count += cnt > 0 ? cnt : 0; |
| 1013 | } |
| 1014 | } |
| 1015 | |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 1016 | if (dma_has_cap(DMA_XOR, dma_dev->cap_mask)) { |
Andy Shevchenko | e03e93a | 2013-03-04 11:09:27 +0200 | [diff] [blame] | 1017 | cnt = dmatest_add_threads(info, dtc, DMA_XOR); |
Nicolas Ferre | f1aef8b | 2009-07-06 18:19:44 +0200 | [diff] [blame] | 1018 | thread_count += cnt > 0 ? cnt : 0; |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 1019 | } |
Dan Williams | 58691d6 | 2009-08-29 19:09:27 -0700 | [diff] [blame] | 1020 | if (dma_has_cap(DMA_PQ, dma_dev->cap_mask)) { |
Andy Shevchenko | e03e93a | 2013-03-04 11:09:27 +0200 | [diff] [blame] | 1021 | cnt = dmatest_add_threads(info, dtc, DMA_PQ); |
Dr. David Alan Gilbert | d07a74a | 2011-08-25 16:13:55 -0700 | [diff] [blame] | 1022 | thread_count += cnt > 0 ? cnt : 0; |
Dan Williams | 58691d6 | 2009-08-29 19:09:27 -0700 | [diff] [blame] | 1023 | } |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 1024 | |
Seraj Alijan | d53513d | 2018-12-10 08:52:31 +0000 | [diff] [blame] | 1025 | pr_info("Added %u threads using %s\n", |
Dan Williams | b54d5cb | 2009-03-25 09:13:25 -0700 | [diff] [blame] | 1026 | thread_count, dma_chan_name(chan)); |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 1027 | |
Andy Shevchenko | 838cc70 | 2013-03-04 11:09:28 +0200 | [diff] [blame] | 1028 | list_add_tail(&dtc->node, &info->channels); |
| 1029 | info->nr_channels++; |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 1030 | |
Dan Williams | 33df8ca | 2009-01-06 11:38:15 -0700 | [diff] [blame] | 1031 | return 0; |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 1032 | } |
| 1033 | |
Dan Williams | 7dd6025 | 2009-01-06 11:38:19 -0700 | [diff] [blame] | 1034 | static bool filter(struct dma_chan *chan, void *param) |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 1035 | { |
Andy Shevchenko | 15b8a8e | 2013-03-04 11:09:29 +0200 | [diff] [blame] | 1036 | struct dmatest_params *params = param; |
Andy Shevchenko | e03e93a | 2013-03-04 11:09:27 +0200 | [diff] [blame] | 1037 | |
Andy Shevchenko | 15b8a8e | 2013-03-04 11:09:29 +0200 | [diff] [blame] | 1038 | if (!dmatest_match_channel(params, chan) || |
| 1039 | !dmatest_match_device(params, chan->device)) |
Dan Williams | 7dd6025 | 2009-01-06 11:38:19 -0700 | [diff] [blame] | 1040 | return false; |
Dan Williams | 33df8ca | 2009-01-06 11:38:15 -0700 | [diff] [blame] | 1041 | else |
Dan Williams | 7dd6025 | 2009-01-06 11:38:19 -0700 | [diff] [blame] | 1042 | return true; |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 1043 | } |
| 1044 | |
Dan Williams | a9e5549 | 2013-11-06 16:30:02 -0800 | [diff] [blame] | 1045 | static void request_channels(struct dmatest_info *info, |
| 1046 | enum dma_transaction_type type) |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 1047 | { |
Dan Williams | 33df8ca | 2009-01-06 11:38:15 -0700 | [diff] [blame] | 1048 | dma_cap_mask_t mask; |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 1049 | |
Dan Williams | 33df8ca | 2009-01-06 11:38:15 -0700 | [diff] [blame] | 1050 | dma_cap_zero(mask); |
Dan Williams | a9e5549 | 2013-11-06 16:30:02 -0800 | [diff] [blame] | 1051 | dma_cap_set(type, mask); |
Dan Williams | 33df8ca | 2009-01-06 11:38:15 -0700 | [diff] [blame] | 1052 | for (;;) { |
Dan Williams | a9e5549 | 2013-11-06 16:30:02 -0800 | [diff] [blame] | 1053 | struct dmatest_params *params = &info->params; |
| 1054 | struct dma_chan *chan; |
| 1055 | |
Andy Shevchenko | 15b8a8e | 2013-03-04 11:09:29 +0200 | [diff] [blame] | 1056 | chan = dma_request_channel(mask, filter, params); |
Dan Williams | 33df8ca | 2009-01-06 11:38:15 -0700 | [diff] [blame] | 1057 | if (chan) { |
Dan Williams | a9e5549 | 2013-11-06 16:30:02 -0800 | [diff] [blame] | 1058 | if (dmatest_add_channel(info, chan)) { |
Dan Williams | 33df8ca | 2009-01-06 11:38:15 -0700 | [diff] [blame] | 1059 | dma_release_channel(chan); |
| 1060 | break; /* add_channel failed, punt */ |
| 1061 | } |
| 1062 | } else |
| 1063 | break; /* no more channels available */ |
Andy Shevchenko | 15b8a8e | 2013-03-04 11:09:29 +0200 | [diff] [blame] | 1064 | if (params->max_channels && |
| 1065 | info->nr_channels >= params->max_channels) |
Dan Williams | 33df8ca | 2009-01-06 11:38:15 -0700 | [diff] [blame] | 1066 | break; /* we have all we need */ |
| 1067 | } |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 1068 | } |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 1069 | |
Seraj Alijan | d53513d | 2018-12-10 08:52:31 +0000 | [diff] [blame] | 1070 | static void add_threaded_test(struct dmatest_info *info) |
Andy Shevchenko | 851b7e1 | 2013-03-04 11:09:30 +0200 | [diff] [blame] | 1071 | { |
| 1072 | struct dmatest_params *params = &info->params; |
Andy Shevchenko | 851b7e1 | 2013-03-04 11:09:30 +0200 | [diff] [blame] | 1073 | |
Andy Shevchenko | 851b7e1 | 2013-03-04 11:09:30 +0200 | [diff] [blame] | 1074 | /* Copy test parameters */ |
Andy Shevchenko | a6c268d | 2013-07-23 18:36:46 +0300 | [diff] [blame] | 1075 | params->buf_size = test_buf_size; |
| 1076 | strlcpy(params->channel, strim(test_channel), sizeof(params->channel)); |
| 1077 | strlcpy(params->device, strim(test_device), sizeof(params->device)); |
| 1078 | params->threads_per_chan = threads_per_chan; |
| 1079 | params->max_channels = max_channels; |
| 1080 | params->iterations = iterations; |
| 1081 | params->xor_sources = xor_sources; |
| 1082 | params->pq_sources = pq_sources; |
| 1083 | params->timeout = timeout; |
Dan Williams | e3b9c34 | 2013-11-06 16:30:05 -0800 | [diff] [blame] | 1084 | params->noverify = noverify; |
Yang Shunyong | 2e67a08 | 2018-02-02 17:51:09 +0800 | [diff] [blame] | 1085 | params->norandom = norandom; |
Seraj Alijan | a875abf | 2018-12-10 08:52:37 +0000 | [diff] [blame] | 1086 | params->alignment = alignment; |
Seraj Alijan | 13396a1 | 2018-12-10 08:52:39 +0000 | [diff] [blame] | 1087 | params->transfer_size = transfer_size; |
Peter Ujfalusi | fb9816f | 2019-07-31 10:14:38 +0300 | [diff] [blame] | 1088 | params->polled = polled; |
Dan Williams | a310d03 | 2013-11-06 16:30:01 -0800 | [diff] [blame] | 1089 | |
Dan Williams | a9e5549 | 2013-11-06 16:30:02 -0800 | [diff] [blame] | 1090 | request_channels(info, DMA_MEMCPY); |
Sinan Kaya | 61b5f54 | 2017-06-29 22:30:58 -0400 | [diff] [blame] | 1091 | request_channels(info, DMA_MEMSET); |
Dan Williams | a9e5549 | 2013-11-06 16:30:02 -0800 | [diff] [blame] | 1092 | request_channels(info, DMA_XOR); |
| 1093 | request_channels(info, DMA_PQ); |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 1094 | } |
| 1095 | |
Seraj Alijan | d53513d | 2018-12-10 08:52:31 +0000 | [diff] [blame] | 1096 | static void run_pending_tests(struct dmatest_info *info) |
| 1097 | { |
| 1098 | struct dmatest_chan *dtc; |
| 1099 | unsigned int thread_count = 0; |
| 1100 | |
| 1101 | list_for_each_entry(dtc, &info->channels, node) { |
| 1102 | struct dmatest_thread *thread; |
| 1103 | |
| 1104 | thread_count = 0; |
| 1105 | list_for_each_entry(thread, &dtc->threads, node) { |
| 1106 | wake_up_process(thread->task); |
| 1107 | thread_count++; |
| 1108 | } |
| 1109 | pr_info("Started %u threads using %s\n", |
| 1110 | thread_count, dma_chan_name(dtc->chan)); |
| 1111 | } |
| 1112 | } |
| 1113 | |
Dan Williams | a310d03 | 2013-11-06 16:30:01 -0800 | [diff] [blame] | 1114 | static void stop_threaded_test(struct dmatest_info *info) |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 1115 | { |
| 1116 | struct dmatest_chan *dtc, *_dtc; |
| 1117 | struct dma_chan *chan; |
| 1118 | |
| 1119 | list_for_each_entry_safe(dtc, _dtc, &info->channels, node) { |
| 1120 | list_del(&dtc->node); |
| 1121 | chan = dtc->chan; |
| 1122 | dmatest_cleanup_channel(dtc); |
Dan Williams | 0adff80 | 2013-11-06 16:30:00 -0800 | [diff] [blame] | 1123 | pr_debug("dropped channel %s\n", dma_chan_name(chan)); |
Andy Shevchenko | e03e93a | 2013-03-04 11:09:27 +0200 | [diff] [blame] | 1124 | dma_release_channel(chan); |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 1125 | } |
Dan Williams | 33df8ca | 2009-01-06 11:38:15 -0700 | [diff] [blame] | 1126 | |
Dan Williams | 7cbd487 | 2009-03-04 16:06:03 -0700 | [diff] [blame] | 1127 | info->nr_channels = 0; |
Dan Williams | 33df8ca | 2009-01-06 11:38:15 -0700 | [diff] [blame] | 1128 | } |
Andy Shevchenko | 838cc70 | 2013-03-04 11:09:28 +0200 | [diff] [blame] | 1129 | |
Seraj Alijan | d53513d | 2018-12-10 08:52:31 +0000 | [diff] [blame] | 1130 | static void start_threaded_tests(struct dmatest_info *info) |
Dan Williams | 7cbd487 | 2009-03-04 16:06:03 -0700 | [diff] [blame] | 1131 | { |
Dan Williams | a310d03 | 2013-11-06 16:30:01 -0800 | [diff] [blame] | 1132 | /* we might be called early to set run=, defer running until all |
| 1133 | * parameters have been evaluated |
| 1134 | */ |
| 1135 | if (!info->did_init) |
Dan Williams | a9e5549 | 2013-11-06 16:30:02 -0800 | [diff] [blame] | 1136 | return; |
Andy Shevchenko | 851b7e1 | 2013-03-04 11:09:30 +0200 | [diff] [blame] | 1137 | |
Seraj Alijan | d53513d | 2018-12-10 08:52:31 +0000 | [diff] [blame] | 1138 | run_pending_tests(info); |
Andy Shevchenko | bcc567e | 2013-05-23 14:29:53 +0300 | [diff] [blame] | 1139 | } |
| 1140 | |
Dan Williams | a310d03 | 2013-11-06 16:30:01 -0800 | [diff] [blame] | 1141 | static int dmatest_run_get(char *val, const struct kernel_param *kp) |
Andy Shevchenko | bcc567e | 2013-05-23 14:29:53 +0300 | [diff] [blame] | 1142 | { |
Dan Williams | a310d03 | 2013-11-06 16:30:01 -0800 | [diff] [blame] | 1143 | struct dmatest_info *info = &test_info; |
Andy Shevchenko | 851b7e1 | 2013-03-04 11:09:30 +0200 | [diff] [blame] | 1144 | |
| 1145 | mutex_lock(&info->lock); |
Dan Williams | a310d03 | 2013-11-06 16:30:01 -0800 | [diff] [blame] | 1146 | if (is_threaded_test_run(info)) { |
| 1147 | dmatest_run = true; |
Andy Shevchenko | 3e5ccd8 | 2013-03-04 11:09:31 +0200 | [diff] [blame] | 1148 | } else { |
Seraj Alijan | d53513d | 2018-12-10 08:52:31 +0000 | [diff] [blame] | 1149 | if (!is_threaded_test_pending(info)) |
| 1150 | stop_threaded_test(info); |
Dan Williams | a310d03 | 2013-11-06 16:30:01 -0800 | [diff] [blame] | 1151 | dmatest_run = false; |
Andy Shevchenko | 3e5ccd8 | 2013-03-04 11:09:31 +0200 | [diff] [blame] | 1152 | } |
Dan Williams | a310d03 | 2013-11-06 16:30:01 -0800 | [diff] [blame] | 1153 | mutex_unlock(&info->lock); |
| 1154 | |
| 1155 | return param_get_bool(val, kp); |
| 1156 | } |
| 1157 | |
| 1158 | static int dmatest_run_set(const char *val, const struct kernel_param *kp) |
| 1159 | { |
| 1160 | struct dmatest_info *info = &test_info; |
| 1161 | int ret; |
| 1162 | |
| 1163 | mutex_lock(&info->lock); |
| 1164 | ret = param_set_bool(val, kp); |
| 1165 | if (ret) { |
| 1166 | mutex_unlock(&info->lock); |
| 1167 | return ret; |
Seraj Alijan | d53513d | 2018-12-10 08:52:31 +0000 | [diff] [blame] | 1168 | } else if (dmatest_run) { |
| 1169 | if (is_threaded_test_pending(info)) |
| 1170 | start_threaded_tests(info); |
| 1171 | else |
| 1172 | pr_info("Could not start test, no channels configured\n"); |
| 1173 | } else { |
| 1174 | stop_threaded_test(info); |
Dan Williams | a310d03 | 2013-11-06 16:30:01 -0800 | [diff] [blame] | 1175 | } |
| 1176 | |
Andy Shevchenko | 851b7e1 | 2013-03-04 11:09:30 +0200 | [diff] [blame] | 1177 | mutex_unlock(&info->lock); |
Andy Shevchenko | 851b7e1 | 2013-03-04 11:09:30 +0200 | [diff] [blame] | 1178 | |
Dan Williams | a310d03 | 2013-11-06 16:30:01 -0800 | [diff] [blame] | 1179 | return ret; |
Andy Shevchenko | 851b7e1 | 2013-03-04 11:09:30 +0200 | [diff] [blame] | 1180 | } |
| 1181 | |
Seraj Alijan | d53513d | 2018-12-10 08:52:31 +0000 | [diff] [blame] | 1182 | static int dmatest_chan_set(const char *val, const struct kernel_param *kp) |
| 1183 | { |
| 1184 | struct dmatest_info *info = &test_info; |
| 1185 | struct dmatest_chan *dtc; |
| 1186 | char chan_reset_val[20]; |
| 1187 | int ret = 0; |
| 1188 | |
| 1189 | mutex_lock(&info->lock); |
| 1190 | ret = param_set_copystring(val, kp); |
| 1191 | if (ret) { |
| 1192 | mutex_unlock(&info->lock); |
| 1193 | return ret; |
| 1194 | } |
| 1195 | /*Clear any previously run threads */ |
| 1196 | if (!is_threaded_test_run(info) && !is_threaded_test_pending(info)) |
| 1197 | stop_threaded_test(info); |
| 1198 | /* Reject channels that are already registered */ |
| 1199 | if (is_threaded_test_pending(info)) { |
| 1200 | list_for_each_entry(dtc, &info->channels, node) { |
| 1201 | if (strcmp(dma_chan_name(dtc->chan), |
| 1202 | strim(test_channel)) == 0) { |
| 1203 | dtc = list_last_entry(&info->channels, |
| 1204 | struct dmatest_chan, |
| 1205 | node); |
| 1206 | strlcpy(chan_reset_val, |
| 1207 | dma_chan_name(dtc->chan), |
| 1208 | sizeof(chan_reset_val)); |
| 1209 | ret = -EBUSY; |
| 1210 | goto add_chan_err; |
| 1211 | } |
| 1212 | } |
| 1213 | } |
| 1214 | |
| 1215 | add_threaded_test(info); |
| 1216 | |
| 1217 | /* Check if channel was added successfully */ |
| 1218 | dtc = list_last_entry(&info->channels, struct dmatest_chan, node); |
| 1219 | |
| 1220 | if (dtc->chan) { |
| 1221 | /* |
| 1222 | * if new channel was not successfully added, revert the |
| 1223 | * "test_channel" string to the name of the last successfully |
| 1224 | * added channel. exception for when users issues empty string |
| 1225 | * to channel parameter. |
| 1226 | */ |
| 1227 | if ((strcmp(dma_chan_name(dtc->chan), strim(test_channel)) != 0) |
| 1228 | && (strcmp("", strim(test_channel)) != 0)) { |
| 1229 | ret = -EINVAL; |
| 1230 | strlcpy(chan_reset_val, dma_chan_name(dtc->chan), |
| 1231 | sizeof(chan_reset_val)); |
| 1232 | goto add_chan_err; |
| 1233 | } |
| 1234 | |
| 1235 | } else { |
| 1236 | /* Clear test_channel if no channels were added successfully */ |
| 1237 | strlcpy(chan_reset_val, "", sizeof(chan_reset_val)); |
| 1238 | ret = -EBUSY; |
| 1239 | goto add_chan_err; |
| 1240 | } |
| 1241 | |
| 1242 | mutex_unlock(&info->lock); |
| 1243 | |
| 1244 | return ret; |
| 1245 | |
| 1246 | add_chan_err: |
| 1247 | param_set_copystring(chan_reset_val, kp); |
| 1248 | mutex_unlock(&info->lock); |
| 1249 | |
| 1250 | return ret; |
| 1251 | } |
| 1252 | |
| 1253 | static int dmatest_chan_get(char *val, const struct kernel_param *kp) |
| 1254 | { |
| 1255 | struct dmatest_info *info = &test_info; |
| 1256 | |
| 1257 | mutex_lock(&info->lock); |
| 1258 | if (!is_threaded_test_run(info) && !is_threaded_test_pending(info)) { |
| 1259 | stop_threaded_test(info); |
| 1260 | strlcpy(test_channel, "", sizeof(test_channel)); |
| 1261 | } |
| 1262 | mutex_unlock(&info->lock); |
| 1263 | |
| 1264 | return param_get_string(val, kp); |
| 1265 | } |
| 1266 | |
| 1267 | static int dmatest_test_list_get(char *val, const struct kernel_param *kp) |
| 1268 | { |
| 1269 | struct dmatest_info *info = &test_info; |
| 1270 | struct dmatest_chan *dtc; |
| 1271 | unsigned int thread_count = 0; |
| 1272 | |
| 1273 | list_for_each_entry(dtc, &info->channels, node) { |
| 1274 | struct dmatest_thread *thread; |
| 1275 | |
| 1276 | thread_count = 0; |
| 1277 | list_for_each_entry(thread, &dtc->threads, node) { |
| 1278 | thread_count++; |
| 1279 | } |
| 1280 | pr_info("%u threads using %s\n", |
| 1281 | thread_count, dma_chan_name(dtc->chan)); |
| 1282 | } |
| 1283 | |
| 1284 | return 0; |
| 1285 | } |
| 1286 | |
Andy Shevchenko | e03e93a | 2013-03-04 11:09:27 +0200 | [diff] [blame] | 1287 | static int __init dmatest_init(void) |
| 1288 | { |
| 1289 | struct dmatest_info *info = &test_info; |
Dan Williams | 2d88ce7 | 2013-11-06 16:30:09 -0800 | [diff] [blame] | 1290 | struct dmatest_params *params = &info->params; |
Andy Shevchenko | e03e93a | 2013-03-04 11:09:27 +0200 | [diff] [blame] | 1291 | |
Dan Williams | a310d03 | 2013-11-06 16:30:01 -0800 | [diff] [blame] | 1292 | if (dmatest_run) { |
| 1293 | mutex_lock(&info->lock); |
Seraj Alijan | d53513d | 2018-12-10 08:52:31 +0000 | [diff] [blame] | 1294 | add_threaded_test(info); |
| 1295 | run_pending_tests(info); |
Dan Williams | a310d03 | 2013-11-06 16:30:01 -0800 | [diff] [blame] | 1296 | mutex_unlock(&info->lock); |
| 1297 | } |
Andy Shevchenko | e03e93a | 2013-03-04 11:09:27 +0200 | [diff] [blame] | 1298 | |
Dan Williams | 2d88ce7 | 2013-11-06 16:30:09 -0800 | [diff] [blame] | 1299 | if (params->iterations && wait) |
| 1300 | wait_event(thread_wait, !is_threaded_test_run(info)); |
Andy Shevchenko | 838cc70 | 2013-03-04 11:09:28 +0200 | [diff] [blame] | 1301 | |
Dan Williams | a310d03 | 2013-11-06 16:30:01 -0800 | [diff] [blame] | 1302 | /* module parameters are stable, inittime tests are started, |
| 1303 | * let userspace take over 'run' control |
| 1304 | */ |
| 1305 | info->did_init = true; |
Andy Shevchenko | 95019c8 | 2013-03-04 11:09:33 +0200 | [diff] [blame] | 1306 | |
Andy Shevchenko | 851b7e1 | 2013-03-04 11:09:30 +0200 | [diff] [blame] | 1307 | return 0; |
Andy Shevchenko | e03e93a | 2013-03-04 11:09:27 +0200 | [diff] [blame] | 1308 | } |
| 1309 | /* when compiled-in wait for drivers to load first */ |
| 1310 | late_initcall(dmatest_init); |
| 1311 | |
| 1312 | static void __exit dmatest_exit(void) |
| 1313 | { |
| 1314 | struct dmatest_info *info = &test_info; |
| 1315 | |
Dan Williams | a310d03 | 2013-11-06 16:30:01 -0800 | [diff] [blame] | 1316 | mutex_lock(&info->lock); |
Andy Shevchenko | e03e93a | 2013-03-04 11:09:27 +0200 | [diff] [blame] | 1317 | stop_threaded_test(info); |
Dan Williams | a310d03 | 2013-11-06 16:30:01 -0800 | [diff] [blame] | 1318 | mutex_unlock(&info->lock); |
Andy Shevchenko | e03e93a | 2013-03-04 11:09:27 +0200 | [diff] [blame] | 1319 | } |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 1320 | module_exit(dmatest_exit); |
| 1321 | |
Jean Delvare | e05503e | 2011-05-18 16:49:24 +0200 | [diff] [blame] | 1322 | MODULE_AUTHOR("Haavard Skinnemoen (Atmel)"); |
Haavard Skinnemoen | 4a776f0 | 2008-07-08 11:58:45 -0700 | [diff] [blame] | 1323 | MODULE_LICENSE("GPL v2"); |