Dave Jiang | 8a7b6a7 | 2016-01-13 13:29:48 -0700 | [diff] [blame] | 1 | /* |
| 2 | * This file is provided under a dual BSD/GPLv2 license. When using or |
| 3 | * redistributing this file, you may do so under either license. |
| 4 | * |
| 5 | * GPL LICENSE SUMMARY |
| 6 | * |
| 7 | * Copyright(c) 2015 Intel Corporation. All rights reserved. |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of version 2 of the GNU General Public License as |
| 11 | * published by the Free Software Foundation. |
| 12 | * |
| 13 | * BSD LICENSE |
| 14 | * |
| 15 | * Copyright(c) 2015 Intel Corporation. All rights reserved. |
| 16 | * |
| 17 | * Redistribution and use in source and binary forms, with or without |
| 18 | * modification, are permitted provided that the following conditions |
| 19 | * are met: |
| 20 | * |
| 21 | * * Redistributions of source code must retain the above copyright |
| 22 | * notice, this list of conditions and the following disclaimer. |
| 23 | * * Redistributions in binary form must reproduce the above copy |
| 24 | * notice, this list of conditions and the following disclaimer in |
| 25 | * the documentation and/or other materials provided with the |
| 26 | * distribution. |
| 27 | * * Neither the name of Intel Corporation nor the names of its |
| 28 | * contributors may be used to endorse or promote products derived |
| 29 | * from this software without specific prior written permission. |
| 30 | * |
| 31 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 32 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 33 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 34 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 35 | * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 36 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 37 | * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 38 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 39 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 40 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 41 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 42 | * |
| 43 | * PCIe NTB Perf Linux driver |
| 44 | */ |
| 45 | |
| 46 | #include <linux/init.h> |
| 47 | #include <linux/kernel.h> |
| 48 | #include <linux/module.h> |
| 49 | #include <linux/kthread.h> |
| 50 | #include <linux/time.h> |
| 51 | #include <linux/timer.h> |
| 52 | #include <linux/dma-mapping.h> |
| 53 | #include <linux/pci.h> |
| 54 | #include <linux/slab.h> |
| 55 | #include <linux/spinlock.h> |
| 56 | #include <linux/debugfs.h> |
| 57 | #include <linux/dmaengine.h> |
| 58 | #include <linux/delay.h> |
| 59 | #include <linux/sizes.h> |
| 60 | #include <linux/ntb.h> |
| 61 | |
| 62 | #define DRIVER_NAME "ntb_perf" |
| 63 | #define DRIVER_DESCRIPTION "PCIe NTB Performance Measurement Tool" |
| 64 | |
| 65 | #define DRIVER_LICENSE "Dual BSD/GPL" |
| 66 | #define DRIVER_VERSION "1.0" |
| 67 | #define DRIVER_AUTHOR "Dave Jiang <dave.jiang@intel.com>" |
| 68 | |
| 69 | #define PERF_LINK_DOWN_TIMEOUT 10 |
| 70 | #define PERF_VERSION 0xffff0001 |
| 71 | #define MAX_THREADS 32 |
| 72 | #define MAX_TEST_SIZE SZ_1M |
| 73 | #define MAX_SRCS 32 |
| 74 | #define DMA_OUT_RESOURCE_TO 50 |
| 75 | #define DMA_RETRIES 20 |
| 76 | #define SZ_4G (1ULL << 32) |
| 77 | #define MAX_SEG_ORDER 20 /* no larger than 1M for kmalloc buffer */ |
| 78 | |
| 79 | MODULE_LICENSE(DRIVER_LICENSE); |
| 80 | MODULE_VERSION(DRIVER_VERSION); |
| 81 | MODULE_AUTHOR(DRIVER_AUTHOR); |
| 82 | MODULE_DESCRIPTION(DRIVER_DESCRIPTION); |
| 83 | |
| 84 | static struct dentry *perf_debugfs_dir; |
| 85 | |
| 86 | static unsigned int seg_order = 19; /* 512K */ |
| 87 | module_param(seg_order, uint, 0644); |
| 88 | MODULE_PARM_DESC(seg_order, "size order [n^2] of buffer segment for testing"); |
| 89 | |
| 90 | static unsigned int run_order = 32; /* 4G */ |
| 91 | module_param(run_order, uint, 0644); |
| 92 | MODULE_PARM_DESC(run_order, "size order [n^2] of total data to transfer"); |
| 93 | |
| 94 | static bool use_dma; /* default to 0 */ |
| 95 | module_param(use_dma, bool, 0644); |
| 96 | MODULE_PARM_DESC(use_dma, "Using DMA engine to measure performance"); |
| 97 | |
| 98 | struct perf_mw { |
| 99 | phys_addr_t phys_addr; |
| 100 | resource_size_t phys_size; |
| 101 | resource_size_t xlat_align; |
| 102 | resource_size_t xlat_align_size; |
| 103 | void __iomem *vbase; |
| 104 | size_t xlat_size; |
| 105 | size_t buf_size; |
| 106 | void *virt_addr; |
| 107 | dma_addr_t dma_addr; |
| 108 | }; |
| 109 | |
| 110 | struct perf_ctx; |
| 111 | |
| 112 | struct pthr_ctx { |
| 113 | struct task_struct *thread; |
| 114 | struct perf_ctx *perf; |
| 115 | atomic_t dma_sync; |
| 116 | struct dma_chan *dma_chan; |
| 117 | int dma_prep_err; |
| 118 | int src_idx; |
| 119 | void *srcs[MAX_SRCS]; |
| 120 | }; |
| 121 | |
| 122 | struct perf_ctx { |
| 123 | struct ntb_dev *ntb; |
| 124 | spinlock_t db_lock; |
| 125 | struct perf_mw mw; |
| 126 | bool link_is_up; |
| 127 | struct work_struct link_cleanup; |
| 128 | struct delayed_work link_work; |
| 129 | struct dentry *debugfs_node_dir; |
| 130 | struct dentry *debugfs_run; |
| 131 | struct dentry *debugfs_threads; |
| 132 | u8 perf_threads; |
| 133 | bool run; |
| 134 | struct pthr_ctx pthr_ctx[MAX_THREADS]; |
| 135 | atomic_t tsync; |
| 136 | }; |
| 137 | |
| 138 | enum { |
| 139 | VERSION = 0, |
| 140 | MW_SZ_HIGH, |
| 141 | MW_SZ_LOW, |
| 142 | SPAD_MSG, |
| 143 | SPAD_ACK, |
| 144 | MAX_SPAD |
| 145 | }; |
| 146 | |
| 147 | static void perf_link_event(void *ctx) |
| 148 | { |
| 149 | struct perf_ctx *perf = ctx; |
| 150 | |
| 151 | if (ntb_link_is_up(perf->ntb, NULL, NULL) == 1) |
| 152 | schedule_delayed_work(&perf->link_work, 2*HZ); |
| 153 | else |
| 154 | schedule_work(&perf->link_cleanup); |
| 155 | } |
| 156 | |
| 157 | static void perf_db_event(void *ctx, int vec) |
| 158 | { |
| 159 | struct perf_ctx *perf = ctx; |
| 160 | u64 db_bits, db_mask; |
| 161 | |
| 162 | db_mask = ntb_db_vector_mask(perf->ntb, vec); |
| 163 | db_bits = ntb_db_read(perf->ntb); |
| 164 | |
| 165 | dev_dbg(&perf->ntb->dev, "doorbell vec %d mask %#llx bits %#llx\n", |
| 166 | vec, db_mask, db_bits); |
| 167 | } |
| 168 | |
| 169 | static const struct ntb_ctx_ops perf_ops = { |
| 170 | .link_event = perf_link_event, |
| 171 | .db_event = perf_db_event, |
| 172 | }; |
| 173 | |
| 174 | static void perf_copy_callback(void *data) |
| 175 | { |
| 176 | struct pthr_ctx *pctx = data; |
| 177 | |
| 178 | atomic_dec(&pctx->dma_sync); |
| 179 | } |
| 180 | |
Arnd Bergmann | 1985a88 | 2016-01-26 10:31:45 +0100 | [diff] [blame^] | 181 | static ssize_t perf_copy(struct pthr_ctx *pctx, char __iomem *dst, |
Dave Jiang | 8a7b6a7 | 2016-01-13 13:29:48 -0700 | [diff] [blame] | 182 | char *src, size_t size) |
| 183 | { |
| 184 | struct perf_ctx *perf = pctx->perf; |
| 185 | struct dma_async_tx_descriptor *txd; |
| 186 | struct dma_chan *chan = pctx->dma_chan; |
| 187 | struct dma_device *device; |
| 188 | struct dmaengine_unmap_data *unmap; |
| 189 | dma_cookie_t cookie; |
| 190 | size_t src_off, dst_off; |
| 191 | struct perf_mw *mw = &perf->mw; |
Arnd Bergmann | 1985a88 | 2016-01-26 10:31:45 +0100 | [diff] [blame^] | 192 | void __iomem *vbase; |
| 193 | void __iomem *dst_vaddr; |
Dave Jiang | 8a7b6a7 | 2016-01-13 13:29:48 -0700 | [diff] [blame] | 194 | dma_addr_t dst_phys; |
| 195 | int retries = 0; |
| 196 | |
| 197 | if (!use_dma) { |
| 198 | memcpy_toio(dst, src, size); |
| 199 | return size; |
| 200 | } |
| 201 | |
| 202 | if (!chan) { |
| 203 | dev_err(&perf->ntb->dev, "DMA engine does not exist\n"); |
| 204 | return -EINVAL; |
| 205 | } |
| 206 | |
| 207 | device = chan->device; |
Arnd Bergmann | 1985a88 | 2016-01-26 10:31:45 +0100 | [diff] [blame^] | 208 | src_off = (uintptr_t)src & ~PAGE_MASK; |
| 209 | dst_off = (uintptr_t __force)dst & ~PAGE_MASK; |
Dave Jiang | 8a7b6a7 | 2016-01-13 13:29:48 -0700 | [diff] [blame] | 210 | |
| 211 | if (!is_dma_copy_aligned(device, src_off, dst_off, size)) |
| 212 | return -ENODEV; |
| 213 | |
Arnd Bergmann | 1985a88 | 2016-01-26 10:31:45 +0100 | [diff] [blame^] | 214 | vbase = mw->vbase; |
| 215 | dst_vaddr = dst; |
Dave Jiang | 8a7b6a7 | 2016-01-13 13:29:48 -0700 | [diff] [blame] | 216 | dst_phys = mw->phys_addr + (dst_vaddr - vbase); |
| 217 | |
| 218 | unmap = dmaengine_get_unmap_data(device->dev, 1, GFP_NOWAIT); |
| 219 | if (!unmap) |
| 220 | return -ENOMEM; |
| 221 | |
| 222 | unmap->len = size; |
| 223 | unmap->addr[0] = dma_map_page(device->dev, virt_to_page(src), |
| 224 | src_off, size, DMA_TO_DEVICE); |
| 225 | if (dma_mapping_error(device->dev, unmap->addr[0])) |
| 226 | goto err_get_unmap; |
| 227 | |
| 228 | unmap->to_cnt = 1; |
| 229 | |
| 230 | do { |
| 231 | txd = device->device_prep_dma_memcpy(chan, dst_phys, |
| 232 | unmap->addr[0], |
| 233 | size, DMA_PREP_INTERRUPT); |
| 234 | if (!txd) { |
| 235 | set_current_state(TASK_INTERRUPTIBLE); |
| 236 | schedule_timeout(DMA_OUT_RESOURCE_TO); |
| 237 | } |
| 238 | } while (!txd && (++retries < DMA_RETRIES)); |
| 239 | |
| 240 | if (!txd) { |
| 241 | pctx->dma_prep_err++; |
| 242 | goto err_get_unmap; |
| 243 | } |
| 244 | |
| 245 | txd->callback = perf_copy_callback; |
| 246 | txd->callback_param = pctx; |
| 247 | dma_set_unmap(txd, unmap); |
| 248 | |
| 249 | cookie = dmaengine_submit(txd); |
| 250 | if (dma_submit_error(cookie)) |
| 251 | goto err_set_unmap; |
| 252 | |
| 253 | atomic_inc(&pctx->dma_sync); |
| 254 | dma_async_issue_pending(chan); |
| 255 | |
| 256 | return size; |
| 257 | |
| 258 | err_set_unmap: |
| 259 | dmaengine_unmap_put(unmap); |
| 260 | err_get_unmap: |
| 261 | dmaengine_unmap_put(unmap); |
| 262 | return 0; |
| 263 | } |
| 264 | |
Arnd Bergmann | 1985a88 | 2016-01-26 10:31:45 +0100 | [diff] [blame^] | 265 | static int perf_move_data(struct pthr_ctx *pctx, char __iomem *dst, char *src, |
Dave Jiang | 8a7b6a7 | 2016-01-13 13:29:48 -0700 | [diff] [blame] | 266 | u64 buf_size, u64 win_size, u64 total) |
| 267 | { |
| 268 | int chunks, total_chunks, i; |
| 269 | int copied_chunks = 0; |
| 270 | u64 copied = 0, result; |
Arnd Bergmann | 1985a88 | 2016-01-26 10:31:45 +0100 | [diff] [blame^] | 271 | char __iomem *tmp = dst; |
Dave Jiang | 8a7b6a7 | 2016-01-13 13:29:48 -0700 | [diff] [blame] | 272 | u64 perf, diff_us; |
| 273 | ktime_t kstart, kstop, kdiff; |
| 274 | |
| 275 | chunks = div64_u64(win_size, buf_size); |
| 276 | total_chunks = div64_u64(total, buf_size); |
| 277 | kstart = ktime_get(); |
| 278 | |
| 279 | for (i = 0; i < total_chunks; i++) { |
| 280 | result = perf_copy(pctx, tmp, src, buf_size); |
| 281 | copied += result; |
| 282 | copied_chunks++; |
| 283 | if (copied_chunks == chunks) { |
| 284 | tmp = dst; |
| 285 | copied_chunks = 0; |
| 286 | } else |
| 287 | tmp += buf_size; |
| 288 | |
| 289 | /* Probably should schedule every 4GB to prevent soft hang. */ |
| 290 | if (((copied % SZ_4G) == 0) && !use_dma) { |
| 291 | set_current_state(TASK_INTERRUPTIBLE); |
| 292 | schedule_timeout(1); |
| 293 | } |
| 294 | } |
| 295 | |
| 296 | if (use_dma) { |
| 297 | pr_info("%s: All DMA descriptors submitted\n", current->comm); |
| 298 | while (atomic_read(&pctx->dma_sync) != 0) |
| 299 | msleep(20); |
| 300 | } |
| 301 | |
| 302 | kstop = ktime_get(); |
| 303 | kdiff = ktime_sub(kstop, kstart); |
| 304 | diff_us = ktime_to_us(kdiff); |
| 305 | |
| 306 | pr_info("%s: copied %llu bytes\n", current->comm, copied); |
| 307 | |
| 308 | pr_info("%s: lasted %llu usecs\n", current->comm, diff_us); |
| 309 | |
| 310 | perf = div64_u64(copied, diff_us); |
| 311 | |
| 312 | pr_info("%s: MBytes/s: %llu\n", current->comm, perf); |
| 313 | |
| 314 | return 0; |
| 315 | } |
| 316 | |
| 317 | static bool perf_dma_filter_fn(struct dma_chan *chan, void *node) |
| 318 | { |
| 319 | return dev_to_node(&chan->dev->device) == (int)(unsigned long)node; |
| 320 | } |
| 321 | |
| 322 | static int ntb_perf_thread(void *data) |
| 323 | { |
| 324 | struct pthr_ctx *pctx = data; |
| 325 | struct perf_ctx *perf = pctx->perf; |
| 326 | struct pci_dev *pdev = perf->ntb->pdev; |
| 327 | struct perf_mw *mw = &perf->mw; |
Arnd Bergmann | 1985a88 | 2016-01-26 10:31:45 +0100 | [diff] [blame^] | 328 | char __iomem *dst; |
Dave Jiang | 8a7b6a7 | 2016-01-13 13:29:48 -0700 | [diff] [blame] | 329 | u64 win_size, buf_size, total; |
| 330 | void *src; |
| 331 | int rc, node, i; |
| 332 | struct dma_chan *dma_chan = NULL; |
| 333 | |
| 334 | pr_info("kthread %s starting...\n", current->comm); |
| 335 | |
| 336 | node = dev_to_node(&pdev->dev); |
| 337 | |
| 338 | if (use_dma && !pctx->dma_chan) { |
| 339 | dma_cap_mask_t dma_mask; |
| 340 | |
| 341 | dma_cap_zero(dma_mask); |
| 342 | dma_cap_set(DMA_MEMCPY, dma_mask); |
| 343 | dma_chan = dma_request_channel(dma_mask, perf_dma_filter_fn, |
| 344 | (void *)(unsigned long)node); |
| 345 | if (!dma_chan) { |
| 346 | pr_warn("%s: cannot acquire DMA channel, quitting\n", |
| 347 | current->comm); |
| 348 | return -ENODEV; |
| 349 | } |
| 350 | pctx->dma_chan = dma_chan; |
| 351 | } |
| 352 | |
| 353 | for (i = 0; i < MAX_SRCS; i++) { |
| 354 | pctx->srcs[i] = kmalloc_node(MAX_TEST_SIZE, GFP_KERNEL, node); |
| 355 | if (!pctx->srcs[i]) { |
| 356 | rc = -ENOMEM; |
| 357 | goto err; |
| 358 | } |
| 359 | } |
| 360 | |
| 361 | win_size = mw->phys_size; |
| 362 | buf_size = 1ULL << seg_order; |
| 363 | total = 1ULL << run_order; |
| 364 | |
| 365 | if (buf_size > MAX_TEST_SIZE) |
| 366 | buf_size = MAX_TEST_SIZE; |
| 367 | |
Arnd Bergmann | 1985a88 | 2016-01-26 10:31:45 +0100 | [diff] [blame^] | 368 | dst = (char __iomem *)mw->vbase; |
Dave Jiang | 8a7b6a7 | 2016-01-13 13:29:48 -0700 | [diff] [blame] | 369 | |
| 370 | atomic_inc(&perf->tsync); |
| 371 | while (atomic_read(&perf->tsync) != perf->perf_threads) |
| 372 | schedule(); |
| 373 | |
| 374 | src = pctx->srcs[pctx->src_idx]; |
| 375 | pctx->src_idx = (pctx->src_idx + 1) & (MAX_SRCS - 1); |
| 376 | |
| 377 | rc = perf_move_data(pctx, dst, src, buf_size, win_size, total); |
| 378 | |
| 379 | atomic_dec(&perf->tsync); |
| 380 | |
| 381 | if (rc < 0) { |
| 382 | pr_err("%s: failed\n", current->comm); |
| 383 | rc = -ENXIO; |
| 384 | goto err; |
| 385 | } |
| 386 | |
| 387 | for (i = 0; i < MAX_SRCS; i++) { |
| 388 | kfree(pctx->srcs[i]); |
| 389 | pctx->srcs[i] = NULL; |
| 390 | } |
| 391 | |
| 392 | return 0; |
| 393 | |
| 394 | err: |
| 395 | for (i = 0; i < MAX_SRCS; i++) { |
| 396 | kfree(pctx->srcs[i]); |
| 397 | pctx->srcs[i] = NULL; |
| 398 | } |
| 399 | |
| 400 | if (dma_chan) { |
| 401 | dma_release_channel(dma_chan); |
| 402 | pctx->dma_chan = NULL; |
| 403 | } |
| 404 | |
| 405 | return rc; |
| 406 | } |
| 407 | |
| 408 | static void perf_free_mw(struct perf_ctx *perf) |
| 409 | { |
| 410 | struct perf_mw *mw = &perf->mw; |
| 411 | struct pci_dev *pdev = perf->ntb->pdev; |
| 412 | |
| 413 | if (!mw->virt_addr) |
| 414 | return; |
| 415 | |
| 416 | ntb_mw_clear_trans(perf->ntb, 0); |
| 417 | dma_free_coherent(&pdev->dev, mw->buf_size, |
| 418 | mw->virt_addr, mw->dma_addr); |
| 419 | mw->xlat_size = 0; |
| 420 | mw->buf_size = 0; |
| 421 | mw->virt_addr = NULL; |
| 422 | } |
| 423 | |
| 424 | static int perf_set_mw(struct perf_ctx *perf, resource_size_t size) |
| 425 | { |
| 426 | struct perf_mw *mw = &perf->mw; |
| 427 | size_t xlat_size, buf_size; |
| 428 | |
| 429 | if (!size) |
| 430 | return -EINVAL; |
| 431 | |
| 432 | xlat_size = round_up(size, mw->xlat_align_size); |
| 433 | buf_size = round_up(size, mw->xlat_align); |
| 434 | |
| 435 | if (mw->xlat_size == xlat_size) |
| 436 | return 0; |
| 437 | |
| 438 | if (mw->buf_size) |
| 439 | perf_free_mw(perf); |
| 440 | |
| 441 | mw->xlat_size = xlat_size; |
| 442 | mw->buf_size = buf_size; |
| 443 | |
| 444 | mw->virt_addr = dma_alloc_coherent(&perf->ntb->pdev->dev, buf_size, |
| 445 | &mw->dma_addr, GFP_KERNEL); |
| 446 | if (!mw->virt_addr) { |
| 447 | mw->xlat_size = 0; |
| 448 | mw->buf_size = 0; |
| 449 | } |
| 450 | |
| 451 | return 0; |
| 452 | } |
| 453 | |
| 454 | static void perf_link_work(struct work_struct *work) |
| 455 | { |
| 456 | struct perf_ctx *perf = |
| 457 | container_of(work, struct perf_ctx, link_work.work); |
| 458 | struct ntb_dev *ndev = perf->ntb; |
| 459 | struct pci_dev *pdev = ndev->pdev; |
| 460 | u32 val; |
| 461 | u64 size; |
| 462 | int rc; |
| 463 | |
| 464 | dev_dbg(&perf->ntb->pdev->dev, "%s called\n", __func__); |
| 465 | |
| 466 | size = perf->mw.phys_size; |
| 467 | ntb_peer_spad_write(ndev, MW_SZ_HIGH, upper_32_bits(size)); |
| 468 | ntb_peer_spad_write(ndev, MW_SZ_LOW, lower_32_bits(size)); |
| 469 | ntb_peer_spad_write(ndev, VERSION, PERF_VERSION); |
| 470 | |
| 471 | /* now read what peer wrote */ |
| 472 | val = ntb_spad_read(ndev, VERSION); |
| 473 | if (val != PERF_VERSION) { |
| 474 | dev_dbg(&pdev->dev, "Remote version = %#x\n", val); |
| 475 | goto out; |
| 476 | } |
| 477 | |
| 478 | val = ntb_spad_read(ndev, MW_SZ_HIGH); |
| 479 | size = (u64)val << 32; |
| 480 | |
| 481 | val = ntb_spad_read(ndev, MW_SZ_LOW); |
| 482 | size |= val; |
| 483 | |
| 484 | dev_dbg(&pdev->dev, "Remote MW size = %#llx\n", size); |
| 485 | |
| 486 | rc = perf_set_mw(perf, size); |
| 487 | if (rc) |
| 488 | goto out1; |
| 489 | |
| 490 | perf->link_is_up = true; |
| 491 | |
| 492 | return; |
| 493 | |
| 494 | out1: |
| 495 | perf_free_mw(perf); |
| 496 | |
| 497 | out: |
| 498 | if (ntb_link_is_up(ndev, NULL, NULL) == 1) |
| 499 | schedule_delayed_work(&perf->link_work, |
| 500 | msecs_to_jiffies(PERF_LINK_DOWN_TIMEOUT)); |
| 501 | } |
| 502 | |
| 503 | static void perf_link_cleanup(struct work_struct *work) |
| 504 | { |
| 505 | struct perf_ctx *perf = container_of(work, |
| 506 | struct perf_ctx, |
| 507 | link_cleanup); |
| 508 | |
| 509 | dev_dbg(&perf->ntb->pdev->dev, "%s called\n", __func__); |
| 510 | |
| 511 | if (!perf->link_is_up) |
| 512 | cancel_delayed_work_sync(&perf->link_work); |
| 513 | } |
| 514 | |
| 515 | static int perf_setup_mw(struct ntb_dev *ntb, struct perf_ctx *perf) |
| 516 | { |
| 517 | struct perf_mw *mw; |
| 518 | int rc; |
| 519 | |
| 520 | mw = &perf->mw; |
| 521 | |
| 522 | rc = ntb_mw_get_range(ntb, 0, &mw->phys_addr, &mw->phys_size, |
| 523 | &mw->xlat_align, &mw->xlat_align_size); |
| 524 | if (rc) |
| 525 | return rc; |
| 526 | |
| 527 | perf->mw.vbase = ioremap_wc(mw->phys_addr, mw->phys_size); |
| 528 | if (!mw->vbase) |
| 529 | return -ENOMEM; |
| 530 | |
| 531 | return 0; |
| 532 | } |
| 533 | |
| 534 | static ssize_t debugfs_run_read(struct file *filp, char __user *ubuf, |
| 535 | size_t count, loff_t *offp) |
| 536 | { |
| 537 | struct perf_ctx *perf = filp->private_data; |
| 538 | char *buf; |
| 539 | ssize_t ret, out_offset; |
| 540 | |
| 541 | if (!perf) |
| 542 | return 0; |
| 543 | |
| 544 | buf = kmalloc(64, GFP_KERNEL); |
| 545 | out_offset = snprintf(buf, 64, "%d\n", perf->run); |
| 546 | ret = simple_read_from_buffer(ubuf, count, offp, buf, out_offset); |
| 547 | kfree(buf); |
| 548 | |
| 549 | return ret; |
| 550 | } |
| 551 | |
| 552 | static ssize_t debugfs_run_write(struct file *filp, const char __user *ubuf, |
| 553 | size_t count, loff_t *offp) |
| 554 | { |
| 555 | struct perf_ctx *perf = filp->private_data; |
| 556 | int node, i; |
| 557 | |
| 558 | if (!perf->link_is_up) |
| 559 | return 0; |
| 560 | |
| 561 | if (perf->perf_threads == 0) |
| 562 | return 0; |
| 563 | |
| 564 | if (atomic_read(&perf->tsync) == 0) |
| 565 | perf->run = false; |
| 566 | |
| 567 | if (perf->run) { |
| 568 | /* lets stop the threads */ |
| 569 | perf->run = false; |
| 570 | for (i = 0; i < MAX_THREADS; i++) { |
| 571 | if (perf->pthr_ctx[i].thread) { |
| 572 | kthread_stop(perf->pthr_ctx[i].thread); |
| 573 | perf->pthr_ctx[i].thread = NULL; |
| 574 | } else |
| 575 | break; |
| 576 | } |
| 577 | } else { |
| 578 | perf->run = true; |
| 579 | |
| 580 | if (perf->perf_threads > MAX_THREADS) { |
| 581 | perf->perf_threads = MAX_THREADS; |
| 582 | pr_info("Reset total threads to: %u\n", MAX_THREADS); |
| 583 | } |
| 584 | |
| 585 | /* no greater than 1M */ |
| 586 | if (seg_order > MAX_SEG_ORDER) { |
| 587 | seg_order = MAX_SEG_ORDER; |
| 588 | pr_info("Fix seg_order to %u\n", seg_order); |
| 589 | } |
| 590 | |
| 591 | if (run_order < seg_order) { |
| 592 | run_order = seg_order; |
| 593 | pr_info("Fix run_order to %u\n", run_order); |
| 594 | } |
| 595 | |
| 596 | node = dev_to_node(&perf->ntb->pdev->dev); |
| 597 | /* launch kernel thread */ |
| 598 | for (i = 0; i < perf->perf_threads; i++) { |
| 599 | struct pthr_ctx *pctx; |
| 600 | |
| 601 | pctx = &perf->pthr_ctx[i]; |
| 602 | atomic_set(&pctx->dma_sync, 0); |
| 603 | pctx->perf = perf; |
| 604 | pctx->thread = |
| 605 | kthread_create_on_node(ntb_perf_thread, |
| 606 | (void *)pctx, |
| 607 | node, "ntb_perf %d", i); |
| 608 | if (pctx->thread) |
| 609 | wake_up_process(pctx->thread); |
| 610 | else { |
| 611 | perf->run = false; |
| 612 | for (i = 0; i < MAX_THREADS; i++) { |
| 613 | if (pctx->thread) { |
| 614 | kthread_stop(pctx->thread); |
| 615 | pctx->thread = NULL; |
| 616 | } |
| 617 | } |
| 618 | } |
| 619 | |
| 620 | if (perf->run == false) |
| 621 | return -ENXIO; |
| 622 | } |
| 623 | |
| 624 | } |
| 625 | |
| 626 | return count; |
| 627 | } |
| 628 | |
| 629 | static const struct file_operations ntb_perf_debugfs_run = { |
| 630 | .owner = THIS_MODULE, |
| 631 | .open = simple_open, |
| 632 | .read = debugfs_run_read, |
| 633 | .write = debugfs_run_write, |
| 634 | }; |
| 635 | |
| 636 | static int perf_debugfs_setup(struct perf_ctx *perf) |
| 637 | { |
| 638 | struct pci_dev *pdev = perf->ntb->pdev; |
| 639 | |
| 640 | if (!debugfs_initialized()) |
| 641 | return -ENODEV; |
| 642 | |
| 643 | if (!perf_debugfs_dir) { |
| 644 | perf_debugfs_dir = debugfs_create_dir(KBUILD_MODNAME, NULL); |
| 645 | if (!perf_debugfs_dir) |
| 646 | return -ENODEV; |
| 647 | } |
| 648 | |
| 649 | perf->debugfs_node_dir = debugfs_create_dir(pci_name(pdev), |
| 650 | perf_debugfs_dir); |
| 651 | if (!perf->debugfs_node_dir) |
| 652 | return -ENODEV; |
| 653 | |
| 654 | perf->debugfs_run = debugfs_create_file("run", S_IRUSR | S_IWUSR, |
| 655 | perf->debugfs_node_dir, perf, |
| 656 | &ntb_perf_debugfs_run); |
| 657 | if (!perf->debugfs_run) |
| 658 | return -ENODEV; |
| 659 | |
| 660 | perf->debugfs_threads = debugfs_create_u8("threads", S_IRUSR | S_IWUSR, |
| 661 | perf->debugfs_node_dir, |
| 662 | &perf->perf_threads); |
| 663 | if (!perf->debugfs_threads) |
| 664 | return -ENODEV; |
| 665 | |
| 666 | return 0; |
| 667 | } |
| 668 | |
| 669 | static int perf_probe(struct ntb_client *client, struct ntb_dev *ntb) |
| 670 | { |
| 671 | struct pci_dev *pdev = ntb->pdev; |
| 672 | struct perf_ctx *perf; |
| 673 | int node; |
| 674 | int rc = 0; |
| 675 | |
| 676 | node = dev_to_node(&pdev->dev); |
| 677 | |
| 678 | perf = kzalloc_node(sizeof(*perf), GFP_KERNEL, node); |
| 679 | if (!perf) { |
| 680 | rc = -ENOMEM; |
| 681 | goto err_perf; |
| 682 | } |
| 683 | |
| 684 | perf->ntb = ntb; |
| 685 | perf->perf_threads = 1; |
| 686 | atomic_set(&perf->tsync, 0); |
| 687 | perf->run = false; |
| 688 | spin_lock_init(&perf->db_lock); |
| 689 | perf_setup_mw(ntb, perf); |
| 690 | INIT_DELAYED_WORK(&perf->link_work, perf_link_work); |
| 691 | INIT_WORK(&perf->link_cleanup, perf_link_cleanup); |
| 692 | |
| 693 | rc = ntb_set_ctx(ntb, perf, &perf_ops); |
| 694 | if (rc) |
| 695 | goto err_ctx; |
| 696 | |
| 697 | perf->link_is_up = false; |
| 698 | ntb_link_enable(ntb, NTB_SPEED_AUTO, NTB_WIDTH_AUTO); |
| 699 | ntb_link_event(ntb); |
| 700 | |
| 701 | rc = perf_debugfs_setup(perf); |
| 702 | if (rc) |
| 703 | goto err_ctx; |
| 704 | |
| 705 | return 0; |
| 706 | |
| 707 | err_ctx: |
| 708 | cancel_delayed_work_sync(&perf->link_work); |
| 709 | cancel_work_sync(&perf->link_cleanup); |
| 710 | kfree(perf); |
| 711 | err_perf: |
| 712 | return rc; |
| 713 | } |
| 714 | |
| 715 | static void perf_remove(struct ntb_client *client, struct ntb_dev *ntb) |
| 716 | { |
| 717 | struct perf_ctx *perf = ntb->ctx; |
| 718 | int i; |
| 719 | |
| 720 | dev_dbg(&perf->ntb->dev, "%s called\n", __func__); |
| 721 | |
| 722 | cancel_delayed_work_sync(&perf->link_work); |
| 723 | cancel_work_sync(&perf->link_cleanup); |
| 724 | |
| 725 | ntb_clear_ctx(ntb); |
| 726 | ntb_link_disable(ntb); |
| 727 | |
| 728 | debugfs_remove_recursive(perf_debugfs_dir); |
| 729 | perf_debugfs_dir = NULL; |
| 730 | |
| 731 | if (use_dma) { |
| 732 | for (i = 0; i < MAX_THREADS; i++) { |
| 733 | struct pthr_ctx *pctx = &perf->pthr_ctx[i]; |
| 734 | |
| 735 | if (pctx->dma_chan) |
| 736 | dma_release_channel(pctx->dma_chan); |
| 737 | } |
| 738 | } |
| 739 | |
| 740 | kfree(perf); |
| 741 | } |
| 742 | |
| 743 | static struct ntb_client perf_client = { |
| 744 | .ops = { |
| 745 | .probe = perf_probe, |
| 746 | .remove = perf_remove, |
| 747 | }, |
| 748 | }; |
| 749 | module_ntb_client(perf_client); |