Merge tag 'block-6.0-2022-08-19' of git://git.kernel.dk/linux-block
[linux-block.git] / drivers / ntb / test / ntb_tool.c
CommitLineData
578b881b
AH
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 EMC Corporation. All Rights Reserved.
7f46c8b3 8 * Copyright (C) 2017 T-Platforms All Rights Reserved.
578b881b
AH
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of version 2 of the GNU General Public License as
12 * published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
18 *
19 * BSD LICENSE
20 *
21 * Copyright (C) 2015 EMC Corporation. All Rights Reserved.
7f46c8b3 22 * Copyright (C) 2017 T-Platforms All Rights Reserved.
578b881b
AH
23 *
24 * Redistribution and use in source and binary forms, with or without
25 * modification, are permitted provided that the following conditions
26 * are met:
27 *
28 * * Redistributions of source code must retain the above copyright
29 * notice, this list of conditions and the following disclaimer.
30 * * Redistributions in binary form must reproduce the above copy
31 * notice, this list of conditions and the following disclaimer in
32 * the documentation and/or other materials provided with the
33 * distribution.
34 * * Neither the name of Intel Corporation nor the names of its
35 * contributors may be used to endorse or promote products derived
36 * from this software without specific prior written permission.
37 *
38 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
39 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
40 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
41 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
42 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
43 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
44 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
45 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
46 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
47 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
48 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
49 *
50 * PCIe NTB Debugging Tool Linux driver
578b881b
AH
51 */
52
53/*
54 * How to use this tool, by example.
55 *
56 * Assuming $DBG_DIR is something like:
57 * '/sys/kernel/debug/ntb_tool/0000:00:03.0'
7f46c8b3
SS
58 * Suppose aside from local device there is at least one remote device
59 * connected to NTB with index 0.
60 *-----------------------------------------------------------------------------
61 * Eg: check local/peer device information.
62 *
63 * # Get local device port number
64 * root@self# cat $DBG_DIR/port
65 *
66 * # Check local device functionality
67 * root@self# ls $DBG_DIR
68 * db msg1 msg_sts peer4/ port
69 * db_event msg2 peer0/ peer5/ spad0
70 * db_mask msg3 peer1/ peer_db spad1
71 * link msg_event peer2/ peer_db_mask spad2
72 * msg0 msg_mask peer3/ peer_spad spad3
73 * # As one can see it supports:
74 * # 1) four inbound message registers
75 * # 2) four inbound scratchpads
76 * # 3) up to six peer devices
77 *
78 * # Check peer device port number
79 * root@self# cat $DBG_DIR/peer0/port
578b881b 80 *
7f46c8b3
SS
81 * # Check peer device(s) functionality to be used
82 * root@self# ls $DBG_DIR/peer0
83 * link mw_trans0 mw_trans6 port
84 * link_event mw_trans1 mw_trans7 spad0
85 * msg0 mw_trans2 peer_mw_trans0 spad1
86 * msg1 mw_trans3 peer_mw_trans1 spad2
87 * msg2 mw_trans4 peer_mw_trans2 spad3
88 * msg3 mw_trans5 peer_mw_trans3
89 * # As one can see we got:
90 * # 1) four outbound message registers
91 * # 2) four outbound scratchpads
92 * # 3) eight inbound memory windows
93 * # 4) four outbound memory windows
94 *-----------------------------------------------------------------------------
95 * Eg: NTB link tests
578b881b 96 *
7f46c8b3
SS
97 * # Set local link up/down
98 * root@self# echo Y > $DBG_DIR/link
99 * root@self# echo N > $DBG_DIR/link
bfcaa396 100 *
7f46c8b3
SS
101 * # Check if link with peer device is up/down:
102 * root@self# cat $DBG_DIR/peer0/link
bfcaa396 103 *
7f46c8b3
SS
104 * # Block until the link is up/down
105 * root@self# echo Y > $DBG_DIR/peer0/link_event
106 * root@self# echo N > $DBG_DIR/peer0/link_event
107 *-----------------------------------------------------------------------------
108 * Eg: Doorbell registers tests (some functionality might be absent)
578b881b 109 *
7f46c8b3
SS
110 * # Set/clear/get local doorbell
111 * root@self# echo 's 1' > $DBG_DIR/db
112 * root@self# echo 'c 1' > $DBG_DIR/db
113 * root@self# cat $DBG_DIR/db
114 *
115 * # Set/clear/get local doorbell mask
116 * root@self# echo 's 1' > $DBG_DIR/db_mask
117 * root@self# echo 'c 1' > $DBG_DIR/db_mask
118 * root@self# cat $DBG_DIR/db_mask
119 *
120 * # Ring/clear/get peer doorbell
578b881b 121 * root@peer# echo 's 1' > $DBG_DIR/peer_db
7f46c8b3
SS
122 * root@peer# echo 'c 1' > $DBG_DIR/peer_db
123 * root@peer# cat $DBG_DIR/peer_db
124 *
125 * # Set/clear/get peer doorbell mask
126 * root@self# echo 's 1' > $DBG_DIR/peer_db_mask
127 * root@self# echo 'c 1' > $DBG_DIR/peer_db_mask
128 * root@self# cat $DBG_DIR/peer_db_mask
129 *
130 * # Block until local doorbell is set with specified value
131 * root@self# echo 1 > $DBG_DIR/db_event
132 *-----------------------------------------------------------------------------
133 * Eg: Message registers tests (functionality might be absent)
578b881b 134 *
7f46c8b3
SS
135 * # Set/clear/get in/out message registers status
136 * root@self# echo 's 1' > $DBG_DIR/msg_sts
137 * root@self# echo 'c 1' > $DBG_DIR/msg_sts
138 * root@self# cat $DBG_DIR/msg_sts
578b881b 139 *
7f46c8b3
SS
140 * # Set/clear in/out message registers mask
141 * root@self# echo 's 1' > $DBG_DIR/msg_mask
142 * root@self# echo 'c 1' > $DBG_DIR/msg_mask
578b881b 143 *
7f46c8b3
SS
144 * # Get inbound message register #0 value and source of port index
145 * root@self# cat $DBG_DIR/msg0
578b881b 146 *
7f46c8b3
SS
147 * # Send some data to peer over outbound message register #0
148 * root@self# echo 0x01020304 > $DBG_DIR/peer0/msg0
149 *-----------------------------------------------------------------------------
150 * Eg: Scratchpad registers tests (functionality might be absent)
578b881b 151 *
7f46c8b3
SS
152 * # Write/read to/from local scratchpad register #0
153 * root@peer# echo 0x01020304 > $DBG_DIR/spad0
154 * root@peer# cat $DBG_DIR/spad0
578b881b 155 *
7f46c8b3
SS
156 * # Write/read to/from peer scratchpad register #0
157 * root@peer# echo 0x01020304 > $DBG_DIR/peer0/spad0
158 * root@peer# cat $DBG_DIR/peer0/spad0
159 *-----------------------------------------------------------------------------
160 * Eg: Memory windows tests
717146a2 161 *
7f46c8b3
SS
162 * # Create inbound memory window buffer of specified size/get its base address
163 * root@peer# echo 16384 > $DBG_DIR/peer0/mw_trans0
164 * root@peer# cat $DBG_DIR/peer0/mw_trans0
717146a2 165 *
7f46c8b3
SS
166 * # Write/read data to/from inbound memory window
167 * root@peer# echo Hello > $DBG_DIR/peer0/mw0
168 * root@peer# head -c 7 $DBG_DIR/peer0/mw0
717146a2 169 *
7f46c8b3
SS
170 * # Map outbound memory window/check it settings (on peer device)
171 * root@peer# echo 0xADD0BA5E:16384 > $DBG_DIR/peer0/peer_mw_trans0
172 * root@peer# cat $DBG_DIR/peer0/peer_mw_trans0
173 *
174 * # Write/read data to/from outbound memory window (on peer device)
175 * root@peer# echo olleH > $DBG_DIR/peer0/peer_mw0
176 * root@peer# head -c 7 $DBG_DIR/peer0/peer_mw0
578b881b
AH
177 */
178
179#include <linux/init.h>
180#include <linux/kernel.h>
181#include <linux/module.h>
182
183#include <linux/debugfs.h>
184#include <linux/dma-mapping.h>
185#include <linux/pci.h>
186#include <linux/slab.h>
8b71d285 187#include <linux/uaccess.h>
578b881b
AH
188
189#include <linux/ntb.h>
190
7f46c8b3
SS
191#define DRIVER_NAME "ntb_tool"
192#define DRIVER_VERSION "2.0"
578b881b 193
0ed08f82 194MODULE_LICENSE("Dual BSD/GPL");
578b881b 195MODULE_VERSION(DRIVER_VERSION);
7f46c8b3
SS
196MODULE_AUTHOR("Allen Hubbe <Allen.Hubbe@emc.com>");
197MODULE_DESCRIPTION("PCIe NTB Debugging Tool");
578b881b 198
7f46c8b3
SS
199/*
200 * Inbound and outbound memory windows descriptor. Union members selection
201 * depends on the MW type the structure describes. mm_base/dma_base are the
202 * virtual and DMA address of an inbound MW. io_base/tr_base are the MMIO
203 * mapped virtual and xlat addresses of an outbound MW respectively.
204 */
8b71d285 205struct tool_mw {
7f46c8b3
SS
206 int widx;
207 int pidx;
717146a2 208 struct tool_ctx *tc;
7f46c8b3
SS
209 union {
210 u8 *mm_base;
211 u8 __iomem *io_base;
212 };
213 union {
214 dma_addr_t dma_base;
215 u64 tr_base;
216 };
8b71d285 217 resource_size_t size;
7f46c8b3
SS
218 struct dentry *dbgfs_file;
219};
220
221/*
222 * Wrapper structure is used to distinguish the outbound MW peers reference
223 * within the corresponding DebugFS directory IO operation.
224 */
225struct tool_mw_wrap {
226 int pidx;
227 struct tool_mw *mw;
228};
229
230struct tool_msg {
231 int midx;
232 int pidx;
233 struct tool_ctx *tc;
234};
235
236struct tool_spad {
237 int sidx;
238 int pidx;
239 struct tool_ctx *tc;
240};
241
242struct tool_peer {
243 int pidx;
244 struct tool_ctx *tc;
245 int inmw_cnt;
246 struct tool_mw *inmws;
247 int outmw_cnt;
248 struct tool_mw_wrap *outmws;
249 int outmsg_cnt;
250 struct tool_msg *outmsgs;
251 int outspad_cnt;
252 struct tool_spad *outspads;
253 struct dentry *dbgfs_dir;
8b71d285
LG
254};
255
578b881b
AH
256struct tool_ctx {
257 struct ntb_dev *ntb;
bfcaa396 258 wait_queue_head_t link_wq;
7f46c8b3
SS
259 wait_queue_head_t db_wq;
260 wait_queue_head_t msg_wq;
261 int outmw_cnt;
262 struct tool_mw *outmws;
263 int peer_cnt;
264 struct tool_peer *peers;
265 int inmsg_cnt;
266 struct tool_msg *inmsgs;
267 int inspad_cnt;
268 struct tool_spad *inspads;
269 struct dentry *dbgfs_dir;
578b881b
AH
270};
271
578b881b
AH
272#define TOOL_FOPS_RDWR(__name, __read, __write) \
273 const struct file_operations __name = { \
274 .owner = THIS_MODULE, \
275 .open = simple_open, \
276 .read = __read, \
277 .write = __write, \
278 }
279
7f46c8b3
SS
280#define TOOL_BUF_LEN 32
281
282static struct dentry *tool_dbgfs_topdir;
283
284/*==============================================================================
285 * NTB events handlers
286 *==============================================================================
287 */
288
578b881b
AH
289static void tool_link_event(void *ctx)
290{
291 struct tool_ctx *tc = ctx;
292 enum ntb_speed speed;
293 enum ntb_width width;
294 int up;
295
296 up = ntb_link_is_up(tc->ntb, &speed, &width);
297
298 dev_dbg(&tc->ntb->dev, "link is %s speed %d width %d\n",
299 up ? "up" : "down", speed, width);
8b71d285 300
bfcaa396 301 wake_up(&tc->link_wq);
578b881b
AH
302}
303
304static void tool_db_event(void *ctx, int vec)
305{
306 struct tool_ctx *tc = ctx;
307 u64 db_bits, db_mask;
308
309 db_mask = ntb_db_vector_mask(tc->ntb, vec);
310 db_bits = ntb_db_read(tc->ntb);
311
312 dev_dbg(&tc->ntb->dev, "doorbell vec %d mask %#llx bits %#llx\n",
313 vec, db_mask, db_bits);
7f46c8b3
SS
314
315 wake_up(&tc->db_wq);
316}
317
318static void tool_msg_event(void *ctx)
319{
320 struct tool_ctx *tc = ctx;
321 u64 msg_sts;
322
323 msg_sts = ntb_msg_read_sts(tc->ntb);
324
325 dev_dbg(&tc->ntb->dev, "message bits %#llx\n", msg_sts);
326
327 wake_up(&tc->msg_wq);
578b881b
AH
328}
329
330static const struct ntb_ctx_ops tool_ops = {
331 .link_event = tool_link_event,
332 .db_event = tool_db_event,
7f46c8b3 333 .msg_event = tool_msg_event
578b881b
AH
334};
335
7f46c8b3
SS
336/*==============================================================================
337 * Common read/write methods
338 *==============================================================================
339 */
340
341static ssize_t tool_fn_read(struct tool_ctx *tc, char __user *ubuf,
342 size_t size, loff_t *offp,
343 u64 (*fn_read)(struct ntb_dev *))
578b881b
AH
344{
345 size_t buf_size;
7f46c8b3
SS
346 char buf[TOOL_BUF_LEN];
347 ssize_t pos;
578b881b 348
7f46c8b3 349 if (!fn_read)
578b881b
AH
350 return -EINVAL;
351
7f46c8b3 352 buf_size = min(size, sizeof(buf));
578b881b 353
7f46c8b3 354 pos = scnprintf(buf, buf_size, "%#llx\n", fn_read(tc->ntb));
578b881b 355
7f46c8b3 356 return simple_read_from_buffer(ubuf, size, offp, buf, pos);
578b881b
AH
357}
358
7f46c8b3
SS
359static ssize_t tool_fn_write(struct tool_ctx *tc,
360 const char __user *ubuf,
361 size_t size, loff_t *offp,
362 int (*fn_set)(struct ntb_dev *, u64),
363 int (*fn_clear)(struct ntb_dev *, u64))
578b881b 364{
578b881b 365 char *buf, cmd;
7f46c8b3
SS
366 ssize_t ret;
367 u64 bits;
578b881b
AH
368 int n;
369
45e1058b
DC
370 if (*offp)
371 return 0;
372
578b881b
AH
373 buf = kmalloc(size + 1, GFP_KERNEL);
374 if (!buf)
375 return -ENOMEM;
376
45e1058b 377 if (copy_from_user(buf, ubuf, size)) {
578b881b 378 kfree(buf);
45e1058b 379 return -EFAULT;
578b881b
AH
380 }
381
382 buf[size] = 0;
383
7f46c8b3 384 n = sscanf(buf, "%c %lli", &cmd, &bits);
578b881b
AH
385
386 kfree(buf);
387
388 if (n != 2) {
7f46c8b3 389 ret = -EINVAL;
578b881b 390 } else if (cmd == 's') {
7f46c8b3
SS
391 if (!fn_set)
392 ret = -EINVAL;
578b881b 393 else
7f46c8b3 394 ret = fn_set(tc->ntb, bits);
578b881b 395 } else if (cmd == 'c') {
7f46c8b3
SS
396 if (!fn_clear)
397 ret = -EINVAL;
578b881b 398 else
7f46c8b3 399 ret = fn_clear(tc->ntb, bits);
578b881b 400 } else {
7f46c8b3 401 ret = -EINVAL;
578b881b
AH
402 }
403
7f46c8b3 404 return ret ? : size;
578b881b
AH
405}
406
7f46c8b3
SS
407/*==============================================================================
408 * Port read/write methods
409 *==============================================================================
410 */
625f0802 411
7f46c8b3
SS
412static ssize_t tool_port_read(struct file *filep, char __user *ubuf,
413 size_t size, loff_t *offp)
414{
415 struct tool_ctx *tc = filep->private_data;
416 char buf[TOOL_BUF_LEN];
417 int pos;
578b881b 418
7f46c8b3 419 pos = scnprintf(buf, sizeof(buf), "%d\n", ntb_port_number(tc->ntb));
578b881b 420
7f46c8b3
SS
421 return simple_read_from_buffer(ubuf, size, offp, buf, pos);
422}
578b881b 423
7f46c8b3
SS
424static TOOL_FOPS_RDWR(tool_port_fops,
425 tool_port_read,
426 NULL);
578b881b 427
7f46c8b3
SS
428static ssize_t tool_peer_port_read(struct file *filep, char __user *ubuf,
429 size_t size, loff_t *offp)
430{
431 struct tool_peer *peer = filep->private_data;
432 struct tool_ctx *tc = peer->tc;
433 char buf[TOOL_BUF_LEN];
434 int pos;
578b881b 435
7f46c8b3
SS
436 pos = scnprintf(buf, sizeof(buf), "%d\n",
437 ntb_peer_port_number(tc->ntb, peer->pidx));
578b881b 438
7f46c8b3 439 return simple_read_from_buffer(ubuf, size, offp, buf, pos);
578b881b
AH
440}
441
7f46c8b3
SS
442static TOOL_FOPS_RDWR(tool_peer_port_fops,
443 tool_peer_port_read,
444 NULL);
445
446static int tool_init_peers(struct tool_ctx *tc)
578b881b 447{
7f46c8b3 448 int pidx;
578b881b 449
7f46c8b3
SS
450 tc->peer_cnt = ntb_peer_port_count(tc->ntb);
451 tc->peers = devm_kcalloc(&tc->ntb->dev, tc->peer_cnt,
452 sizeof(*tc->peers), GFP_KERNEL);
453 if (tc->peers == NULL)
578b881b
AH
454 return -ENOMEM;
455
7f46c8b3
SS
456 for (pidx = 0; pidx < tc->peer_cnt; pidx++) {
457 tc->peers[pidx].pidx = pidx;
458 tc->peers[pidx].tc = tc;
578b881b
AH
459 }
460
7f46c8b3 461 return 0;
578b881b
AH
462}
463
7f46c8b3
SS
464/*==============================================================================
465 * Link state read/write methods
466 *==============================================================================
467 */
578b881b 468
7f46c8b3
SS
469static ssize_t tool_link_write(struct file *filep, const char __user *ubuf,
470 size_t size, loff_t *offp)
578b881b
AH
471{
472 struct tool_ctx *tc = filep->private_data;
7f46c8b3
SS
473 bool val;
474 int ret;
578b881b 475
7f46c8b3
SS
476 ret = kstrtobool_from_user(ubuf, size, &val);
477 if (ret)
478 return ret;
578b881b 479
7f46c8b3
SS
480 if (val)
481 ret = ntb_link_enable(tc->ntb, NTB_SPEED_AUTO, NTB_WIDTH_AUTO);
482 else
483 ret = ntb_link_disable(tc->ntb);
578b881b 484
7f46c8b3
SS
485 if (ret)
486 return ret;
578b881b 487
7f46c8b3 488 return size;
578b881b
AH
489}
490
7f46c8b3
SS
491static TOOL_FOPS_RDWR(tool_link_fops,
492 NULL,
493 tool_link_write);
494
495static ssize_t tool_peer_link_read(struct file *filep, char __user *ubuf,
496 size_t size, loff_t *offp)
578b881b 497{
7f46c8b3
SS
498 struct tool_peer *peer = filep->private_data;
499 struct tool_ctx *tc = peer->tc;
500 char buf[3];
578b881b 501
7f46c8b3
SS
502 if (ntb_link_is_up(tc->ntb, NULL, NULL) & BIT(peer->pidx))
503 buf[0] = 'Y';
504 else
505 buf[0] = 'N';
506 buf[1] = '\n';
507 buf[2] = '\0';
508
912e1281 509 return simple_read_from_buffer(ubuf, size, offp, buf, 2);
578b881b
AH
510}
511
7f46c8b3
SS
512static TOOL_FOPS_RDWR(tool_peer_link_fops,
513 tool_peer_link_read,
514 NULL);
578b881b 515
7f46c8b3
SS
516static ssize_t tool_peer_link_event_write(struct file *filep,
517 const char __user *ubuf,
518 size_t size, loff_t *offp)
578b881b 519{
7f46c8b3
SS
520 struct tool_peer *peer = filep->private_data;
521 struct tool_ctx *tc = peer->tc;
522 u64 link_msk;
523 bool val;
524 int ret;
578b881b 525
7f46c8b3
SS
526 ret = kstrtobool_from_user(ubuf, size, &val);
527 if (ret)
528 return ret;
578b881b 529
7f46c8b3
SS
530 link_msk = BIT_ULL_MASK(peer->pidx);
531
532 if (wait_event_interruptible(tc->link_wq,
533 !!(ntb_link_is_up(tc->ntb, NULL, NULL) & link_msk) == val))
534 return -ERESTART;
578b881b 535
7f46c8b3 536 return size;
578b881b
AH
537}
538
7f46c8b3
SS
539static TOOL_FOPS_RDWR(tool_peer_link_event_fops,
540 NULL,
541 tool_peer_link_event_write);
578b881b 542
7f46c8b3
SS
543/*==============================================================================
544 * Memory windows read/write/setting methods
545 *==============================================================================
546 */
547
548static ssize_t tool_mw_read(struct file *filep, char __user *ubuf,
549 size_t size, loff_t *offp)
578b881b 550{
7f46c8b3
SS
551 struct tool_mw *inmw = filep->private_data;
552
553 if (inmw->mm_base == NULL)
554 return -ENXIO;
578b881b 555
7f46c8b3
SS
556 return simple_read_from_buffer(ubuf, size, offp,
557 inmw->mm_base, inmw->size);
578b881b
AH
558}
559
7f46c8b3
SS
560static ssize_t tool_mw_write(struct file *filep, const char __user *ubuf,
561 size_t size, loff_t *offp)
578b881b 562{
7f46c8b3
SS
563 struct tool_mw *inmw = filep->private_data;
564
565 if (inmw->mm_base == NULL)
566 return -ENXIO;
578b881b 567
7f46c8b3
SS
568 return simple_write_to_buffer(inmw->mm_base, inmw->size, offp,
569 ubuf, size);
578b881b
AH
570}
571
7f46c8b3
SS
572static TOOL_FOPS_RDWR(tool_mw_fops,
573 tool_mw_read,
574 tool_mw_write);
578b881b 575
7f46c8b3
SS
576static int tool_setup_mw(struct tool_ctx *tc, int pidx, int widx,
577 size_t req_size)
578b881b 578{
7f46c8b3
SS
579 resource_size_t size, addr_align, size_align;
580 struct tool_mw *inmw = &tc->peers[pidx].inmws[widx];
581 char buf[TOOL_BUF_LEN];
582 int ret;
578b881b 583
7f46c8b3
SS
584 if (inmw->mm_base != NULL)
585 return 0;
578b881b 586
7f46c8b3
SS
587 ret = ntb_mw_get_align(tc->ntb, pidx, widx, &addr_align,
588 &size_align, &size);
589 if (ret)
590 return ret;
591
592 inmw->size = min_t(resource_size_t, req_size, size);
593 inmw->size = round_up(inmw->size, addr_align);
594 inmw->size = round_up(inmw->size, size_align);
433efe72 595 inmw->mm_base = dma_alloc_coherent(&tc->ntb->pdev->dev, inmw->size,
7f46c8b3
SS
596 &inmw->dma_base, GFP_KERNEL);
597 if (!inmw->mm_base)
598 return -ENOMEM;
578b881b 599
7f46c8b3
SS
600 if (!IS_ALIGNED(inmw->dma_base, addr_align)) {
601 ret = -ENOMEM;
602 goto err_free_dma;
603 }
578b881b 604
7f46c8b3
SS
605 ret = ntb_mw_set_trans(tc->ntb, pidx, widx, inmw->dma_base, inmw->size);
606 if (ret)
607 goto err_free_dma;
578b881b 608
7f46c8b3
SS
609 snprintf(buf, sizeof(buf), "mw%d", widx);
610 inmw->dbgfs_file = debugfs_create_file(buf, 0600,
611 tc->peers[pidx].dbgfs_dir, inmw,
612 &tool_mw_fops);
d67288a3 613
7f46c8b3 614 return 0;
578b881b 615
7f46c8b3 616err_free_dma:
433efe72 617 dma_free_coherent(&tc->ntb->pdev->dev, inmw->size, inmw->mm_base,
7f46c8b3
SS
618 inmw->dma_base);
619 inmw->mm_base = NULL;
620 inmw->dma_base = 0;
621 inmw->size = 0;
d67288a3 622
7f46c8b3 623 return ret;
578b881b
AH
624}
625
7f46c8b3 626static void tool_free_mw(struct tool_ctx *tc, int pidx, int widx)
578b881b 627{
7f46c8b3 628 struct tool_mw *inmw = &tc->peers[pidx].inmws[widx];
578b881b 629
7f46c8b3 630 debugfs_remove(inmw->dbgfs_file);
bfcaa396 631
7f46c8b3
SS
632 if (inmw->mm_base != NULL) {
633 ntb_mw_clear_trans(tc->ntb, pidx, widx);
433efe72 634 dma_free_coherent(&tc->ntb->pdev->dev, inmw->size,
7f46c8b3
SS
635 inmw->mm_base, inmw->dma_base);
636 }
bfcaa396 637
7f46c8b3
SS
638 inmw->mm_base = NULL;
639 inmw->dma_base = 0;
640 inmw->size = 0;
641 inmw->dbgfs_file = NULL;
bfcaa396
LG
642}
643
7f46c8b3
SS
644static ssize_t tool_mw_trans_read(struct file *filep, char __user *ubuf,
645 size_t size, loff_t *offp)
bfcaa396 646{
7f46c8b3
SS
647 struct tool_mw *inmw = filep->private_data;
648 resource_size_t addr_align;
649 resource_size_t size_align;
650 resource_size_t size_max;
651 ssize_t ret, off = 0;
bfcaa396 652 size_t buf_size;
7f46c8b3 653 char *buf;
bfcaa396 654
7f46c8b3 655 buf_size = min_t(size_t, size, 512);
bfcaa396 656
7f46c8b3
SS
657 buf = kmalloc(buf_size, GFP_KERNEL);
658 if (!buf)
659 return -ENOMEM;
bfcaa396 660
7f46c8b3
SS
661 ret = ntb_mw_get_align(inmw->tc->ntb, inmw->pidx, inmw->widx,
662 &addr_align, &size_align, &size_max);
663 if (ret)
2e2bc5a9 664 goto err;
bfcaa396 665
7f46c8b3
SS
666 off += scnprintf(buf + off, buf_size - off,
667 "Inbound MW \t%d\n",
668 inmw->widx);
bfcaa396 669
7f46c8b3
SS
670 off += scnprintf(buf + off, buf_size - off,
671 "Port \t%d (%d)\n",
672 ntb_peer_port_number(inmw->tc->ntb, inmw->pidx),
673 inmw->pidx);
bfcaa396 674
7f46c8b3
SS
675 off += scnprintf(buf + off, buf_size - off,
676 "Window Address \t0x%pK\n", inmw->mm_base);
bfcaa396 677
7f46c8b3
SS
678 off += scnprintf(buf + off, buf_size - off,
679 "DMA Address \t%pad\n",
680 &inmw->dma_base);
bfcaa396 681
7f46c8b3 682 off += scnprintf(buf + off, buf_size - off,
2ef97a6c 683 "Window Size \t%pap\n",
7f46c8b3 684 &inmw->size);
bfcaa396 685
7f46c8b3 686 off += scnprintf(buf + off, buf_size - off,
2ef97a6c 687 "Alignment \t%pap\n",
7f46c8b3 688 &addr_align);
bfcaa396 689
7f46c8b3 690 off += scnprintf(buf + off, buf_size - off,
2ef97a6c 691 "Size Alignment \t%pap\n",
7f46c8b3
SS
692 &size_align);
693
694 off += scnprintf(buf + off, buf_size - off,
2ef97a6c 695 "Size Max \t%pap\n",
7f46c8b3 696 &size_max);
bfcaa396 697
7f46c8b3 698 ret = simple_read_from_buffer(ubuf, size, offp, buf, off);
2e2bc5a9
CIK
699
700err:
7f46c8b3 701 kfree(buf);
bfcaa396 702
7f46c8b3
SS
703 return ret;
704}
705
706static ssize_t tool_mw_trans_write(struct file *filep, const char __user *ubuf,
707 size_t size, loff_t *offp)
708{
709 struct tool_mw *inmw = filep->private_data;
710 unsigned int val;
711 int ret;
712
713 ret = kstrtouint_from_user(ubuf, size, 0, &val);
714 if (ret)
715 return ret;
716
717 tool_free_mw(inmw->tc, inmw->pidx, inmw->widx);
718 if (val) {
719 ret = tool_setup_mw(inmw->tc, inmw->pidx, inmw->widx, val);
720 if (ret)
721 return ret;
722 }
bfcaa396
LG
723
724 return size;
725}
726
7f46c8b3
SS
727static TOOL_FOPS_RDWR(tool_mw_trans_fops,
728 tool_mw_trans_read,
729 tool_mw_trans_write);
8b71d285 730
7f46c8b3
SS
731static ssize_t tool_peer_mw_read(struct file *filep, char __user *ubuf,
732 size_t size, loff_t *offp)
8b71d285 733{
7f46c8b3 734 struct tool_mw *outmw = filep->private_data;
8b71d285 735 loff_t pos = *offp;
7f46c8b3 736 ssize_t ret;
8b71d285
LG
737 void *buf;
738
7f46c8b3 739 if (outmw->io_base == NULL)
8b71d285 740 return -EIO;
7f46c8b3
SS
741
742 if (pos >= outmw->size || !size)
8b71d285 743 return 0;
7f46c8b3
SS
744
745 if (size > outmw->size - pos)
746 size = outmw->size - pos;
8b71d285
LG
747
748 buf = kmalloc(size, GFP_KERNEL);
749 if (!buf)
750 return -ENOMEM;
751
7f46c8b3
SS
752 memcpy_fromio(buf, outmw->io_base + pos, size);
753 ret = copy_to_user(ubuf, buf, size);
754 if (ret == size) {
755 ret = -EFAULT;
8b71d285
LG
756 goto err_free;
757 }
758
7f46c8b3 759 size -= ret;
8b71d285 760 *offp = pos + size;
7f46c8b3 761 ret = size;
8b71d285
LG
762
763err_free:
764 kfree(buf);
765
7f46c8b3 766 return ret;
8b71d285
LG
767}
768
7f46c8b3
SS
769static ssize_t tool_peer_mw_write(struct file *filep, const char __user *ubuf,
770 size_t size, loff_t *offp)
8b71d285 771{
7f46c8b3
SS
772 struct tool_mw *outmw = filep->private_data;
773 ssize_t ret;
8b71d285
LG
774 loff_t pos = *offp;
775 void *buf;
776
7f46c8b3
SS
777 if (outmw->io_base == NULL)
778 return -EIO;
779
780 if (pos >= outmw->size || !size)
8b71d285 781 return 0;
7f46c8b3
SS
782 if (size > outmw->size - pos)
783 size = outmw->size - pos;
8b71d285
LG
784
785 buf = kmalloc(size, GFP_KERNEL);
786 if (!buf)
787 return -ENOMEM;
788
7f46c8b3
SS
789 ret = copy_from_user(buf, ubuf, size);
790 if (ret == size) {
791 ret = -EFAULT;
8b71d285
LG
792 goto err_free;
793 }
794
7f46c8b3 795 size -= ret;
8b71d285 796 *offp = pos + size;
7f46c8b3 797 ret = size;
8b71d285 798
7f46c8b3 799 memcpy_toio(outmw->io_base + pos, buf, size);
8b71d285
LG
800
801err_free:
802 kfree(buf);
803
7f46c8b3 804 return ret;
8b71d285
LG
805}
806
807static TOOL_FOPS_RDWR(tool_peer_mw_fops,
808 tool_peer_mw_read,
809 tool_peer_mw_write);
810
7f46c8b3
SS
811static int tool_setup_peer_mw(struct tool_ctx *tc, int pidx, int widx,
812 u64 req_addr, size_t req_size)
717146a2 813{
7f46c8b3
SS
814 struct tool_mw *outmw = &tc->outmws[widx];
815 resource_size_t map_size;
816 phys_addr_t map_base;
817 char buf[TOOL_BUF_LEN];
818 int ret;
717146a2 819
7f46c8b3 820 if (outmw->io_base != NULL)
717146a2
LG
821 return 0;
822
7f46c8b3
SS
823 ret = ntb_peer_mw_get_addr(tc->ntb, widx, &map_base, &map_size);
824 if (ret)
825 return ret;
717146a2 826
7f46c8b3
SS
827 ret = ntb_peer_mw_set_trans(tc->ntb, pidx, widx, req_addr, req_size);
828 if (ret)
829 return ret;
717146a2 830
7f46c8b3
SS
831 outmw->io_base = ioremap_wc(map_base, map_size);
832 if (outmw->io_base == NULL) {
833 ret = -EFAULT;
834 goto err_clear_trans;
835 }
717146a2 836
7f46c8b3
SS
837 outmw->tr_base = req_addr;
838 outmw->size = req_size;
839 outmw->pidx = pidx;
717146a2 840
7f46c8b3
SS
841 snprintf(buf, sizeof(buf), "peer_mw%d", widx);
842 outmw->dbgfs_file = debugfs_create_file(buf, 0600,
843 tc->peers[pidx].dbgfs_dir, outmw,
844 &tool_peer_mw_fops);
717146a2
LG
845
846 return 0;
847
7f46c8b3
SS
848err_clear_trans:
849 ntb_peer_mw_clear_trans(tc->ntb, pidx, widx);
850
851 return ret;
717146a2
LG
852}
853
7f46c8b3 854static void tool_free_peer_mw(struct tool_ctx *tc, int widx)
717146a2 855{
7f46c8b3 856 struct tool_mw *outmw = &tc->outmws[widx];
717146a2 857
7f46c8b3 858 debugfs_remove(outmw->dbgfs_file);
717146a2 859
7f46c8b3
SS
860 if (outmw->io_base != NULL) {
861 iounmap(tc->outmws[widx].io_base);
862 ntb_peer_mw_clear_trans(tc->ntb, outmw->pidx, widx);
863 }
717146a2 864
7f46c8b3
SS
865 outmw->io_base = NULL;
866 outmw->tr_base = 0;
867 outmw->size = 0;
868 outmw->pidx = -1;
869 outmw->dbgfs_file = NULL;
717146a2
LG
870}
871
7f46c8b3
SS
872static ssize_t tool_peer_mw_trans_read(struct file *filep, char __user *ubuf,
873 size_t size, loff_t *offp)
717146a2 874{
7f46c8b3
SS
875 struct tool_mw_wrap *outmw_wrap = filep->private_data;
876 struct tool_mw *outmw = outmw_wrap->mw;
877 resource_size_t map_size;
878 phys_addr_t map_base;
879 ssize_t off = 0;
717146a2 880 size_t buf_size;
7f46c8b3
SS
881 char *buf;
882 int ret;
717146a2 883
7f46c8b3
SS
884 ret = ntb_peer_mw_get_addr(outmw->tc->ntb, outmw->widx,
885 &map_base, &map_size);
886 if (ret)
887 return ret;
717146a2
LG
888
889 buf_size = min_t(size_t, size, 512);
890
891 buf = kmalloc(buf_size, GFP_KERNEL);
892 if (!buf)
893 return -ENOMEM;
894
717146a2 895 off += scnprintf(buf + off, buf_size - off,
7f46c8b3 896 "Outbound MW: \t%d\n", outmw->widx);
717146a2 897
7f46c8b3
SS
898 if (outmw->io_base != NULL) {
899 off += scnprintf(buf + off, buf_size - off,
900 "Port attached \t%d (%d)\n",
901 ntb_peer_port_number(outmw->tc->ntb, outmw->pidx),
902 outmw->pidx);
903 } else {
904 off += scnprintf(buf + off, buf_size - off,
905 "Port attached \t-1 (-1)\n");
906 }
717146a2
LG
907
908 off += scnprintf(buf + off, buf_size - off,
7f46c8b3 909 "Virtual address \t0x%pK\n", outmw->io_base);
717146a2
LG
910
911 off += scnprintf(buf + off, buf_size - off,
2ef97a6c 912 "Phys Address \t%pap\n", &map_base);
717146a2 913
443b9a14 914 off += scnprintf(buf + off, buf_size - off,
2ef97a6c 915 "Mapping Size \t%pap\n", &map_size);
443b9a14 916
717146a2 917 off += scnprintf(buf + off, buf_size - off,
7f46c8b3 918 "Translation Address \t0x%016llx\n", outmw->tr_base);
717146a2
LG
919
920 off += scnprintf(buf + off, buf_size - off,
2ef97a6c 921 "Window Size \t%pap\n", &outmw->size);
717146a2
LG
922
923 ret = simple_read_from_buffer(ubuf, size, offp, buf, off);
924 kfree(buf);
7f46c8b3 925
717146a2
LG
926 return ret;
927}
928
929static ssize_t tool_peer_mw_trans_write(struct file *filep,
930 const char __user *ubuf,
931 size_t size, loff_t *offp)
932{
7f46c8b3
SS
933 struct tool_mw_wrap *outmw_wrap = filep->private_data;
934 struct tool_mw *outmw = outmw_wrap->mw;
935 size_t buf_size, wsize;
936 char buf[TOOL_BUF_LEN];
937 int ret, n;
938 u64 addr;
717146a2
LG
939
940 buf_size = min(size, (sizeof(buf) - 1));
941 if (copy_from_user(buf, ubuf, buf_size))
942 return -EFAULT;
943
944 buf[buf_size] = '\0';
945
7f46c8b3
SS
946 n = sscanf(buf, "%lli:%zi", &addr, &wsize);
947 if (n != 2)
948 return -EINVAL;
717146a2 949
7f46c8b3
SS
950 tool_free_peer_mw(outmw->tc, outmw->widx);
951 if (wsize) {
952 ret = tool_setup_peer_mw(outmw->tc, outmw_wrap->pidx,
953 outmw->widx, addr, wsize);
954 if (ret)
955 return ret;
956 }
717146a2
LG
957
958 return size;
959}
960
961static TOOL_FOPS_RDWR(tool_peer_mw_trans_fops,
962 tool_peer_mw_trans_read,
963 tool_peer_mw_trans_write);
964
7f46c8b3 965static int tool_init_mws(struct tool_ctx *tc)
717146a2 966{
7f46c8b3
SS
967 int widx, pidx;
968
969 /* Initialize outbound memory windows */
970 tc->outmw_cnt = ntb_peer_mw_count(tc->ntb);
971 tc->outmws = devm_kcalloc(&tc->ntb->dev, tc->outmw_cnt,
972 sizeof(*tc->outmws), GFP_KERNEL);
973 if (tc->outmws == NULL)
974 return -ENOMEM;
975
976 for (widx = 0; widx < tc->outmw_cnt; widx++) {
977 tc->outmws[widx].widx = widx;
978 tc->outmws[widx].pidx = -1;
979 tc->outmws[widx].tc = tc;
980 }
981
982 /* Initialize inbound memory windows and outbound MWs wrapper */
983 for (pidx = 0; pidx < tc->peer_cnt; pidx++) {
984 tc->peers[pidx].inmw_cnt = ntb_mw_count(tc->ntb, pidx);
985 tc->peers[pidx].inmws =
986 devm_kcalloc(&tc->ntb->dev, tc->peers[pidx].inmw_cnt,
987 sizeof(*tc->peers[pidx].inmws), GFP_KERNEL);
988 if (tc->peers[pidx].inmws == NULL)
989 return -ENOMEM;
990
991 for (widx = 0; widx < tc->peers[pidx].inmw_cnt; widx++) {
992 tc->peers[pidx].inmws[widx].widx = widx;
993 tc->peers[pidx].inmws[widx].pidx = pidx;
994 tc->peers[pidx].inmws[widx].tc = tc;
995 }
996
997 tc->peers[pidx].outmw_cnt = ntb_peer_mw_count(tc->ntb);
998 tc->peers[pidx].outmws =
999 devm_kcalloc(&tc->ntb->dev, tc->peers[pidx].outmw_cnt,
1000 sizeof(*tc->peers[pidx].outmws), GFP_KERNEL);
1001
1002 for (widx = 0; widx < tc->peers[pidx].outmw_cnt; widx++) {
1003 tc->peers[pidx].outmws[widx].pidx = pidx;
1004 tc->peers[pidx].outmws[widx].mw = &tc->outmws[widx];
1005 }
1006 }
717146a2
LG
1007
1008 return 0;
1009}
1010
7f46c8b3 1011static void tool_clear_mws(struct tool_ctx *tc)
717146a2 1012{
7f46c8b3 1013 int widx, pidx;
717146a2 1014
7f46c8b3
SS
1015 /* Free outbound memory windows */
1016 for (widx = 0; widx < tc->outmw_cnt; widx++)
1017 tool_free_peer_mw(tc, widx);
717146a2 1018
7f46c8b3
SS
1019 /* Free outbound memory windows */
1020 for (pidx = 0; pidx < tc->peer_cnt; pidx++)
1021 for (widx = 0; widx < tc->peers[pidx].inmw_cnt; widx++)
1022 tool_free_mw(tc, pidx, widx);
1023}
717146a2 1024
7f46c8b3
SS
1025/*==============================================================================
1026 * Doorbell read/write methods
1027 *==============================================================================
1028 */
1029
1030static ssize_t tool_db_read(struct file *filep, char __user *ubuf,
1031 size_t size, loff_t *offp)
1032{
1033 struct tool_ctx *tc = filep->private_data;
1034
1035 return tool_fn_read(tc, ubuf, size, offp, tc->ntb->ops->db_read);
717146a2
LG
1036}
1037
7f46c8b3
SS
1038static ssize_t tool_db_write(struct file *filep, const char __user *ubuf,
1039 size_t size, loff_t *offp)
578b881b 1040{
7f46c8b3 1041 struct tool_ctx *tc = filep->private_data;
8b71d285 1042
7f46c8b3
SS
1043 return tool_fn_write(tc, ubuf, size, offp, tc->ntb->ops->db_set,
1044 tc->ntb->ops->db_clear);
1045}
1046
1047static TOOL_FOPS_RDWR(tool_db_fops,
1048 tool_db_read,
1049 tool_db_write);
1050
1051static ssize_t tool_db_valid_mask_read(struct file *filep, char __user *ubuf,
1052 size_t size, loff_t *offp)
1053{
1054 struct tool_ctx *tc = filep->private_data;
1055
1056 return tool_fn_read(tc, ubuf, size, offp, tc->ntb->ops->db_valid_mask);
1057}
1058
1059static TOOL_FOPS_RDWR(tool_db_valid_mask_fops,
1060 tool_db_valid_mask_read,
1061 NULL);
1062
1063static ssize_t tool_db_mask_read(struct file *filep, char __user *ubuf,
1064 size_t size, loff_t *offp)
1065{
1066 struct tool_ctx *tc = filep->private_data;
1067
1068 return tool_fn_read(tc, ubuf, size, offp, tc->ntb->ops->db_read_mask);
1069}
1070
1071static ssize_t tool_db_mask_write(struct file *filep, const char __user *ubuf,
1072 size_t size, loff_t *offp)
1073{
1074 struct tool_ctx *tc = filep->private_data;
1075
1076 return tool_fn_write(tc, ubuf, size, offp, tc->ntb->ops->db_set_mask,
1077 tc->ntb->ops->db_clear_mask);
1078}
1079
1080static TOOL_FOPS_RDWR(tool_db_mask_fops,
1081 tool_db_mask_read,
1082 tool_db_mask_write);
1083
1084static ssize_t tool_peer_db_read(struct file *filep, char __user *ubuf,
1085 size_t size, loff_t *offp)
1086{
1087 struct tool_ctx *tc = filep->private_data;
1088
1089 return tool_fn_read(tc, ubuf, size, offp, tc->ntb->ops->peer_db_read);
1090}
1091
1092static ssize_t tool_peer_db_write(struct file *filep, const char __user *ubuf,
1093 size_t size, loff_t *offp)
1094{
1095 struct tool_ctx *tc = filep->private_data;
1096
1097 return tool_fn_write(tc, ubuf, size, offp, tc->ntb->ops->peer_db_set,
1098 tc->ntb->ops->peer_db_clear);
1099}
1100
1101static TOOL_FOPS_RDWR(tool_peer_db_fops,
1102 tool_peer_db_read,
1103 tool_peer_db_write);
1104
1105static ssize_t tool_peer_db_mask_read(struct file *filep, char __user *ubuf,
1106 size_t size, loff_t *offp)
1107{
1108 struct tool_ctx *tc = filep->private_data;
1109
1110 return tool_fn_read(tc, ubuf, size, offp,
1111 tc->ntb->ops->peer_db_read_mask);
1112}
1113
1114static ssize_t tool_peer_db_mask_write(struct file *filep,
1115 const char __user *ubuf,
1116 size_t size, loff_t *offp)
1117{
1118 struct tool_ctx *tc = filep->private_data;
1119
1120 return tool_fn_write(tc, ubuf, size, offp,
1121 tc->ntb->ops->peer_db_set_mask,
1122 tc->ntb->ops->peer_db_clear_mask);
1123}
1124
1125static TOOL_FOPS_RDWR(tool_peer_db_mask_fops,
1126 tool_peer_db_mask_read,
1127 tool_peer_db_mask_write);
1128
1129static ssize_t tool_db_event_write(struct file *filep,
1130 const char __user *ubuf,
1131 size_t size, loff_t *offp)
1132{
1133 struct tool_ctx *tc = filep->private_data;
1134 u64 val;
1135 int ret;
1136
1137 ret = kstrtou64_from_user(ubuf, size, 0, &val);
1138 if (ret)
1139 return ret;
1140
1141 if (wait_event_interruptible(tc->db_wq, ntb_db_read(tc->ntb) == val))
1142 return -ERESTART;
1143
1144 return size;
1145}
1146
1147static TOOL_FOPS_RDWR(tool_db_event_fops,
1148 NULL,
1149 tool_db_event_write);
1150
1151/*==============================================================================
1152 * Scratchpads read/write methods
1153 *==============================================================================
1154 */
1155
1156static ssize_t tool_spad_read(struct file *filep, char __user *ubuf,
1157 size_t size, loff_t *offp)
1158{
1159 struct tool_spad *spad = filep->private_data;
1160 char buf[TOOL_BUF_LEN];
1161 ssize_t pos;
1162
1163 if (!spad->tc->ntb->ops->spad_read)
1164 return -EINVAL;
1165
1166 pos = scnprintf(buf, sizeof(buf), "%#x\n",
1167 ntb_spad_read(spad->tc->ntb, spad->sidx));
1168
1169 return simple_read_from_buffer(ubuf, size, offp, buf, pos);
1170}
1171
1172static ssize_t tool_spad_write(struct file *filep, const char __user *ubuf,
1173 size_t size, loff_t *offp)
1174{
1175 struct tool_spad *spad = filep->private_data;
1176 u32 val;
1177 int ret;
1178
1179 if (!spad->tc->ntb->ops->spad_write) {
1180 dev_dbg(&spad->tc->ntb->dev, "no spad write fn\n");
1181 return -EINVAL;
578b881b
AH
1182 }
1183
7f46c8b3
SS
1184 ret = kstrtou32_from_user(ubuf, size, 0, &val);
1185 if (ret)
1186 return ret;
578b881b 1187
7f46c8b3 1188 ret = ntb_spad_write(spad->tc->ntb, spad->sidx, val);
578b881b 1189
7f46c8b3
SS
1190 return ret ?: size;
1191}
578b881b 1192
7f46c8b3
SS
1193static TOOL_FOPS_RDWR(tool_spad_fops,
1194 tool_spad_read,
1195 tool_spad_write);
1196
1197static ssize_t tool_peer_spad_read(struct file *filep, char __user *ubuf,
1198 size_t size, loff_t *offp)
1199{
1200 struct tool_spad *spad = filep->private_data;
1201 char buf[TOOL_BUF_LEN];
1202 ssize_t pos;
578b881b 1203
7f46c8b3
SS
1204 if (!spad->tc->ntb->ops->peer_spad_read)
1205 return -EINVAL;
578b881b 1206
7f46c8b3
SS
1207 pos = scnprintf(buf, sizeof(buf), "%#x\n",
1208 ntb_peer_spad_read(spad->tc->ntb, spad->pidx, spad->sidx));
578b881b 1209
7f46c8b3
SS
1210 return simple_read_from_buffer(ubuf, size, offp, buf, pos);
1211}
8b71d285 1212
7f46c8b3
SS
1213static ssize_t tool_peer_spad_write(struct file *filep, const char __user *ubuf,
1214 size_t size, loff_t *offp)
1215{
1216 struct tool_spad *spad = filep->private_data;
1217 u32 val;
1218 int ret;
1219
1220 if (!spad->tc->ntb->ops->peer_spad_write) {
1221 dev_dbg(&spad->tc->ntb->dev, "no spad write fn\n");
1222 return -EINVAL;
1223 }
1224
1225 ret = kstrtou32_from_user(ubuf, size, 0, &val);
1226 if (ret)
1227 return ret;
bfcaa396 1228
7f46c8b3 1229 ret = ntb_peer_spad_write(spad->tc->ntb, spad->pidx, spad->sidx, val);
bfcaa396 1230
7f46c8b3
SS
1231 return ret ?: size;
1232}
1233
1234static TOOL_FOPS_RDWR(tool_peer_spad_fops,
1235 tool_peer_spad_read,
1236 tool_peer_spad_write);
8b71d285 1237
7f46c8b3
SS
1238static int tool_init_spads(struct tool_ctx *tc)
1239{
1240 int sidx, pidx;
8b71d285 1241
7f46c8b3
SS
1242 /* Initialize inbound scratchpad structures */
1243 tc->inspad_cnt = ntb_spad_count(tc->ntb);
1244 tc->inspads = devm_kcalloc(&tc->ntb->dev, tc->inspad_cnt,
1245 sizeof(*tc->inspads), GFP_KERNEL);
1246 if (tc->inspads == NULL)
1247 return -ENOMEM;
1248
1249 for (sidx = 0; sidx < tc->inspad_cnt; sidx++) {
1250 tc->inspads[sidx].sidx = sidx;
1251 tc->inspads[sidx].pidx = -1;
1252 tc->inspads[sidx].tc = tc;
8b71d285 1253 }
7f46c8b3
SS
1254
1255 /* Initialize outbound scratchpad structures */
1256 for (pidx = 0; pidx < tc->peer_cnt; pidx++) {
1257 tc->peers[pidx].outspad_cnt = ntb_spad_count(tc->ntb);
1258 tc->peers[pidx].outspads =
1259 devm_kcalloc(&tc->ntb->dev, tc->peers[pidx].outspad_cnt,
1260 sizeof(*tc->peers[pidx].outspads), GFP_KERNEL);
1261 if (tc->peers[pidx].outspads == NULL)
1262 return -ENOMEM;
1263
1264 for (sidx = 0; sidx < tc->peers[pidx].outspad_cnt; sidx++) {
1265 tc->peers[pidx].outspads[sidx].sidx = sidx;
1266 tc->peers[pidx].outspads[sidx].pidx = pidx;
1267 tc->peers[pidx].outspads[sidx].tc = tc;
1268 }
1269 }
1270
1271 return 0;
578b881b
AH
1272}
1273
7f46c8b3
SS
1274/*==============================================================================
1275 * Messages read/write methods
1276 *==============================================================================
1277 */
1278
1279static ssize_t tool_inmsg_read(struct file *filep, char __user *ubuf,
1280 size_t size, loff_t *offp)
578b881b 1281{
7f46c8b3
SS
1282 struct tool_msg *msg = filep->private_data;
1283 char buf[TOOL_BUF_LEN];
1284 ssize_t pos;
1285 u32 data;
1286 int pidx;
1287
1288 data = ntb_msg_read(msg->tc->ntb, &pidx, msg->midx);
1289
1290 pos = scnprintf(buf, sizeof(buf), "0x%08x<-%d\n", data, pidx);
1291
1292 return simple_read_from_buffer(ubuf, size, offp, buf, pos);
1293}
1294
1295static TOOL_FOPS_RDWR(tool_inmsg_fops,
1296 tool_inmsg_read,
1297 NULL);
1298
1299static ssize_t tool_outmsg_write(struct file *filep,
1300 const char __user *ubuf,
1301 size_t size, loff_t *offp)
1302{
1303 struct tool_msg *msg = filep->private_data;
1304 u32 val;
1305 int ret;
1306
1307 ret = kstrtou32_from_user(ubuf, size, 0, &val);
1308 if (ret)
1309 return ret;
1310
1311 ret = ntb_peer_msg_write(msg->tc->ntb, msg->pidx, msg->midx, val);
1312
1313 return ret ? : size;
1314}
1315
1316static TOOL_FOPS_RDWR(tool_outmsg_fops,
1317 NULL,
1318 tool_outmsg_write);
1319
1320static ssize_t tool_msg_sts_read(struct file *filep, char __user *ubuf,
1321 size_t size, loff_t *offp)
1322{
1323 struct tool_ctx *tc = filep->private_data;
1324
1325 return tool_fn_read(tc, ubuf, size, offp, tc->ntb->ops->msg_read_sts);
1326}
1327
1328static ssize_t tool_msg_sts_write(struct file *filep, const char __user *ubuf,
1329 size_t size, loff_t *offp)
1330{
1331 struct tool_ctx *tc = filep->private_data;
1332
1333 return tool_fn_write(tc, ubuf, size, offp, NULL,
1334 tc->ntb->ops->msg_clear_sts);
1335}
1336
1337static TOOL_FOPS_RDWR(tool_msg_sts_fops,
1338 tool_msg_sts_read,
1339 tool_msg_sts_write);
1340
1341static ssize_t tool_msg_inbits_read(struct file *filep, char __user *ubuf,
1342 size_t size, loff_t *offp)
1343{
1344 struct tool_ctx *tc = filep->private_data;
1345
1346 return tool_fn_read(tc, ubuf, size, offp, tc->ntb->ops->msg_inbits);
1347}
1348
1349static TOOL_FOPS_RDWR(tool_msg_inbits_fops,
1350 tool_msg_inbits_read,
1351 NULL);
1352
1353static ssize_t tool_msg_outbits_read(struct file *filep, char __user *ubuf,
1354 size_t size, loff_t *offp)
1355{
1356 struct tool_ctx *tc = filep->private_data;
1357
1358 return tool_fn_read(tc, ubuf, size, offp, tc->ntb->ops->msg_outbits);
1359}
1360
1361static TOOL_FOPS_RDWR(tool_msg_outbits_fops,
1362 tool_msg_outbits_read,
1363 NULL);
1364
1365static ssize_t tool_msg_mask_write(struct file *filep, const char __user *ubuf,
1366 size_t size, loff_t *offp)
1367{
1368 struct tool_ctx *tc = filep->private_data;
1369
1370 return tool_fn_write(tc, ubuf, size, offp,
1371 tc->ntb->ops->msg_set_mask,
1372 tc->ntb->ops->msg_clear_mask);
1373}
1374
1375static TOOL_FOPS_RDWR(tool_msg_mask_fops,
1376 NULL,
1377 tool_msg_mask_write);
1378
1379static ssize_t tool_msg_event_write(struct file *filep,
1380 const char __user *ubuf,
1381 size_t size, loff_t *offp)
1382{
1383 struct tool_ctx *tc = filep->private_data;
1384 u64 val;
1385 int ret;
1386
1387 ret = kstrtou64_from_user(ubuf, size, 0, &val);
1388 if (ret)
1389 return ret;
1390
1391 if (wait_event_interruptible(tc->msg_wq,
1392 ntb_msg_read_sts(tc->ntb) == val))
1393 return -ERESTART;
578b881b 1394
7f46c8b3
SS
1395 return size;
1396}
1397
1398static TOOL_FOPS_RDWR(tool_msg_event_fops,
1399 NULL,
1400 tool_msg_event_write);
1401
1402static int tool_init_msgs(struct tool_ctx *tc)
1403{
1404 int midx, pidx;
1405
1406 /* Initialize inbound message structures */
1407 tc->inmsg_cnt = ntb_msg_count(tc->ntb);
1408 tc->inmsgs = devm_kcalloc(&tc->ntb->dev, tc->inmsg_cnt,
1409 sizeof(*tc->inmsgs), GFP_KERNEL);
1410 if (tc->inmsgs == NULL)
1411 return -ENOMEM;
1412
1413 for (midx = 0; midx < tc->inmsg_cnt; midx++) {
1414 tc->inmsgs[midx].midx = midx;
1415 tc->inmsgs[midx].pidx = -1;
1416 tc->inmsgs[midx].tc = tc;
443b9a14
SS
1417 }
1418
7f46c8b3
SS
1419 /* Initialize outbound message structures */
1420 for (pidx = 0; pidx < tc->peer_cnt; pidx++) {
1421 tc->peers[pidx].outmsg_cnt = ntb_msg_count(tc->ntb);
1422 tc->peers[pidx].outmsgs =
1423 devm_kcalloc(&tc->ntb->dev, tc->peers[pidx].outmsg_cnt,
1424 sizeof(*tc->peers[pidx].outmsgs), GFP_KERNEL);
1425 if (tc->peers[pidx].outmsgs == NULL)
1426 return -ENOMEM;
1427
1428 for (midx = 0; midx < tc->peers[pidx].outmsg_cnt; midx++) {
1429 tc->peers[pidx].outmsgs[midx].midx = midx;
1430 tc->peers[pidx].outmsgs[midx].pidx = pidx;
1431 tc->peers[pidx].outmsgs[midx].tc = tc;
1432 }
d67288a3
SS
1433 }
1434
7f46c8b3
SS
1435 return 0;
1436}
1437
1438/*==============================================================================
1439 * Initialization methods
1440 *==============================================================================
1441 */
1442
1443static struct tool_ctx *tool_create_data(struct ntb_dev *ntb)
1444{
1445 struct tool_ctx *tc;
1446
1447 tc = devm_kzalloc(&ntb->dev, sizeof(*tc), GFP_KERNEL);
1448 if (tc == NULL)
1449 return ERR_PTR(-ENOMEM);
1450
1451 tc->ntb = ntb;
1452 init_waitqueue_head(&tc->link_wq);
1453 init_waitqueue_head(&tc->db_wq);
1454 init_waitqueue_head(&tc->msg_wq);
1455
578b881b
AH
1456 if (ntb_db_is_unsafe(ntb))
1457 dev_dbg(&ntb->dev, "doorbell is unsafe\n");
1458
1459 if (ntb_spad_is_unsafe(ntb))
1460 dev_dbg(&ntb->dev, "scratchpad is unsafe\n");
1461
7f46c8b3
SS
1462 return tc;
1463}
1464
1465static void tool_clear_data(struct tool_ctx *tc)
1466{
1467 wake_up(&tc->link_wq);
1468 wake_up(&tc->db_wq);
1469 wake_up(&tc->msg_wq);
1470}
1471
1472static int tool_init_ntb(struct tool_ctx *tc)
1473{
1474 return ntb_set_ctx(tc->ntb, tc, &tool_ops);
1475}
1476
1477static void tool_clear_ntb(struct tool_ctx *tc)
1478{
1479 ntb_clear_ctx(tc->ntb);
1480 ntb_link_disable(tc->ntb);
1481}
1e530119 1482
7f46c8b3
SS
1483static void tool_setup_dbgfs(struct tool_ctx *tc)
1484{
1485 int pidx, widx, sidx, midx;
1486 char buf[TOOL_BUF_LEN];
1487
1488 /* This modules is useless without dbgfs... */
1489 if (!tool_dbgfs_topdir) {
1490 tc->dbgfs_dir = NULL;
1491 return;
578b881b
AH
1492 }
1493
7f46c8b3
SS
1494 tc->dbgfs_dir = debugfs_create_dir(dev_name(&tc->ntb->dev),
1495 tool_dbgfs_topdir);
1496 if (!tc->dbgfs_dir)
1497 return;
1498
1499 debugfs_create_file("port", 0600, tc->dbgfs_dir,
1500 tc, &tool_port_fops);
1501
1502 debugfs_create_file("link", 0600, tc->dbgfs_dir,
1503 tc, &tool_link_fops);
1504
1505 debugfs_create_file("db", 0600, tc->dbgfs_dir,
1506 tc, &tool_db_fops);
1507
1508 debugfs_create_file("db_valid_mask", 0600, tc->dbgfs_dir,
1509 tc, &tool_db_valid_mask_fops);
1510
1511 debugfs_create_file("db_mask", 0600, tc->dbgfs_dir,
1512 tc, &tool_db_mask_fops);
1513
1514 debugfs_create_file("db_event", 0600, tc->dbgfs_dir,
1515 tc, &tool_db_event_fops);
717146a2 1516
7f46c8b3
SS
1517 debugfs_create_file("peer_db", 0600, tc->dbgfs_dir,
1518 tc, &tool_peer_db_fops);
1519
1520 debugfs_create_file("peer_db_mask", 0600, tc->dbgfs_dir,
1521 tc, &tool_peer_db_mask_fops);
1522
1523 if (tc->inspad_cnt != 0) {
1524 for (sidx = 0; sidx < tc->inspad_cnt; sidx++) {
1525 snprintf(buf, sizeof(buf), "spad%d", sidx);
1526
1527 debugfs_create_file(buf, 0600, tc->dbgfs_dir,
1528 &tc->inspads[sidx], &tool_spad_fops);
1529 }
717146a2 1530 }
578b881b 1531
7f46c8b3
SS
1532 if (tc->inmsg_cnt != 0) {
1533 for (midx = 0; midx < tc->inmsg_cnt; midx++) {
1534 snprintf(buf, sizeof(buf), "msg%d", midx);
1535 debugfs_create_file(buf, 0600, tc->dbgfs_dir,
1536 &tc->inmsgs[midx], &tool_inmsg_fops);
1537 }
1538
1539 debugfs_create_file("msg_sts", 0600, tc->dbgfs_dir,
1540 tc, &tool_msg_sts_fops);
1541
1542 debugfs_create_file("msg_inbits", 0600, tc->dbgfs_dir,
1543 tc, &tool_msg_inbits_fops);
1544
1545 debugfs_create_file("msg_outbits", 0600, tc->dbgfs_dir,
1546 tc, &tool_msg_outbits_fops);
1547
1548 debugfs_create_file("msg_mask", 0600, tc->dbgfs_dir,
1549 tc, &tool_msg_mask_fops);
1550
1551 debugfs_create_file("msg_event", 0600, tc->dbgfs_dir,
1552 tc, &tool_msg_event_fops);
1553 }
1554
1555 for (pidx = 0; pidx < tc->peer_cnt; pidx++) {
1556 snprintf(buf, sizeof(buf), "peer%d", pidx);
1557 tc->peers[pidx].dbgfs_dir =
1558 debugfs_create_dir(buf, tc->dbgfs_dir);
1559
1560 debugfs_create_file("port", 0600,
1561 tc->peers[pidx].dbgfs_dir,
1562 &tc->peers[pidx], &tool_peer_port_fops);
1563
1564 debugfs_create_file("link", 0200,
1565 tc->peers[pidx].dbgfs_dir,
1566 &tc->peers[pidx], &tool_peer_link_fops);
1567
1568 debugfs_create_file("link_event", 0200,
1569 tc->peers[pidx].dbgfs_dir,
1570 &tc->peers[pidx], &tool_peer_link_event_fops);
1571
1572 for (widx = 0; widx < tc->peers[pidx].inmw_cnt; widx++) {
1573 snprintf(buf, sizeof(buf), "mw_trans%d", widx);
1574 debugfs_create_file(buf, 0600,
1575 tc->peers[pidx].dbgfs_dir,
1576 &tc->peers[pidx].inmws[widx],
1577 &tool_mw_trans_fops);
1578 }
1579
1580 for (widx = 0; widx < tc->peers[pidx].outmw_cnt; widx++) {
1581 snprintf(buf, sizeof(buf), "peer_mw_trans%d", widx);
1582 debugfs_create_file(buf, 0600,
1583 tc->peers[pidx].dbgfs_dir,
1584 &tc->peers[pidx].outmws[widx],
1585 &tool_peer_mw_trans_fops);
1586 }
1587
1588 for (sidx = 0; sidx < tc->peers[pidx].outspad_cnt; sidx++) {
1589 snprintf(buf, sizeof(buf), "spad%d", sidx);
1590
1591 debugfs_create_file(buf, 0600,
1592 tc->peers[pidx].dbgfs_dir,
1593 &tc->peers[pidx].outspads[sidx],
1594 &tool_peer_spad_fops);
1595 }
1596
1597 for (midx = 0; midx < tc->peers[pidx].outmsg_cnt; midx++) {
1598 snprintf(buf, sizeof(buf), "msg%d", midx);
1599 debugfs_create_file(buf, 0600,
1600 tc->peers[pidx].dbgfs_dir,
1601 &tc->peers[pidx].outmsgs[midx],
1602 &tool_outmsg_fops);
1603 }
1604 }
1605}
1606
1607static void tool_clear_dbgfs(struct tool_ctx *tc)
1608{
1609 debugfs_remove_recursive(tc->dbgfs_dir);
1610}
1611
1612static int tool_probe(struct ntb_client *self, struct ntb_dev *ntb)
1613{
1614 struct tool_ctx *tc;
1615 int ret;
578b881b 1616
7f46c8b3
SS
1617 tc = tool_create_data(ntb);
1618 if (IS_ERR(tc))
1619 return PTR_ERR(tc);
578b881b 1620
7f46c8b3
SS
1621 ret = tool_init_peers(tc);
1622 if (ret != 0)
1623 goto err_clear_data;
1624
1625 ret = tool_init_mws(tc);
1626 if (ret != 0)
1627 goto err_clear_data;
1628
1629 ret = tool_init_spads(tc);
1630 if (ret != 0)
1631 goto err_clear_mws;
1632
1633 ret = tool_init_msgs(tc);
1634 if (ret != 0)
1635 goto err_clear_mws;
1636
1637 ret = tool_init_ntb(tc);
1638 if (ret != 0)
1639 goto err_clear_mws;
1640
1641 tool_setup_dbgfs(tc);
578b881b
AH
1642
1643 return 0;
1644
7f46c8b3
SS
1645err_clear_mws:
1646 tool_clear_mws(tc);
1647
1648err_clear_data:
1649 tool_clear_data(tc);
1650
1651 return ret;
578b881b
AH
1652}
1653
1654static void tool_remove(struct ntb_client *self, struct ntb_dev *ntb)
1655{
1656 struct tool_ctx *tc = ntb->ctx;
1657
7f46c8b3
SS
1658 tool_clear_dbgfs(tc);
1659
1660 tool_clear_ntb(tc);
8b71d285 1661
7f46c8b3 1662 tool_clear_mws(tc);
578b881b 1663
7f46c8b3 1664 tool_clear_data(tc);
578b881b
AH
1665}
1666
1667static struct ntb_client tool_client = {
1668 .ops = {
1669 .probe = tool_probe,
1670 .remove = tool_remove,
7f46c8b3 1671 }
578b881b
AH
1672};
1673
1674static int __init tool_init(void)
1675{
7f46c8b3 1676 int ret;
578b881b
AH
1677
1678 if (debugfs_initialized())
7f46c8b3 1679 tool_dbgfs_topdir = debugfs_create_dir(KBUILD_MODNAME, NULL);
578b881b 1680
7f46c8b3
SS
1681 ret = ntb_register_client(&tool_client);
1682 if (ret)
1683 debugfs_remove_recursive(tool_dbgfs_topdir);
578b881b 1684
7f46c8b3 1685 return ret;
578b881b
AH
1686}
1687module_init(tool_init);
1688
1689static void __exit tool_exit(void)
1690{
1691 ntb_unregister_client(&tool_client);
7f46c8b3 1692 debugfs_remove_recursive(tool_dbgfs_topdir);
578b881b
AH
1693}
1694module_exit(tool_exit);