ntb_transport.c 52.9 KB
Newer Older
1 2 3 4 5 6 7
/*
 * This file is provided under a dual BSD/GPLv2 license.  When using or
 *   redistributing this file, you may do so under either license.
 *
 *   GPL LICENSE SUMMARY
 *
 *   Copyright(c) 2012 Intel Corporation. All rights reserved.
8
 *   Copyright (C) 2015 EMC Corporation. All Rights Reserved.
9 10 11 12 13 14 15 16
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of version 2 of the GNU General Public License as
 *   published by the Free Software Foundation.
 *
 *   BSD LICENSE
 *
 *   Copyright(c) 2012 Intel Corporation. All rights reserved.
17
 *   Copyright (C) 2015 EMC Corporation. All Rights Reserved.
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
 *
 *   Redistribution and use in source and binary forms, with or without
 *   modification, are permitted provided that the following conditions
 *   are met:
 *
 *     * Redistributions of source code must retain the above copyright
 *       notice, this list of conditions and the following disclaimer.
 *     * Redistributions in binary form must reproduce the above copy
 *       notice, this list of conditions and the following disclaimer in
 *       the documentation and/or other materials provided with the
 *       distribution.
 *     * Neither the name of Intel Corporation nor the names of its
 *       contributors may be used to endorse or promote products derived
 *       from this software without specific prior written permission.
 *
 *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
45
 * PCIe NTB Transport Linux driver
46 47 48 49 50 51
 *
 * Contact Information:
 * Jon Mason <jon.mason@intel.com>
 */
#include <linux/debugfs.h>
#include <linux/delay.h>
52
#include <linux/dmaengine.h>
53 54 55 56 57 58 59 60
#include <linux/dma-mapping.h>
#include <linux/errno.h>
#include <linux/export.h>
#include <linux/interrupt.h>
#include <linux/module.h>
#include <linux/pci.h>
#include <linux/slab.h>
#include <linux/types.h>
61
#include <linux/uaccess.h>
62 63
#include "linux/ntb.h"
#include "linux/ntb_transport.h"
64

65 66 67 68 69 70 71 72 73 74 75 76 77
#define NTB_TRANSPORT_VERSION	4
#define NTB_TRANSPORT_VER	"4"
#define NTB_TRANSPORT_NAME	"ntb_transport"
#define NTB_TRANSPORT_DESC	"Software Queue-Pair Transport over NTB"

MODULE_DESCRIPTION(NTB_TRANSPORT_DESC);
MODULE_VERSION(NTB_TRANSPORT_VER);
MODULE_LICENSE("Dual BSD/GPL");
MODULE_AUTHOR("Intel Corporation");

static unsigned long max_mw_size;
module_param(max_mw_size, ulong, 0644);
MODULE_PARM_DESC(max_mw_size, "Limit size of large memory windows");
78

79
static unsigned int transport_mtu = 0x10000;
80 81 82
module_param(transport_mtu, uint, 0644);
MODULE_PARM_DESC(transport_mtu, "Maximum size of NTB transport packets");

J
Jon Mason 已提交
83
static unsigned char max_num_clients;
84 85 86
module_param(max_num_clients, byte, 0644);
MODULE_PARM_DESC(max_num_clients, "Maximum number of NTB transport clients");

87 88 89 90
static unsigned int copy_bytes = 1024;
module_param(copy_bytes, uint, 0644);
MODULE_PARM_DESC(copy_bytes, "Threshold under which NTB will use the CPU to copy instead of DMA");

91 92 93 94
static bool use_dma;
module_param(use_dma, bool, 0644);
MODULE_PARM_DESC(use_dma, "Use DMA engine to perform large data copy");

95 96
static struct dentry *nt_debugfs_dir;

97 98 99
struct ntb_queue_entry {
	/* ntb_queue list reference */
	struct list_head entry;
100
	/* pointers to data to be transferred */
101 102 103 104
	void *cb_data;
	void *buf;
	unsigned int len;
	unsigned int flags;
105 106 107 108 109 110 111

	struct ntb_transport_qp *qp;
	union {
		struct ntb_payload_header __iomem *tx_hdr;
		struct ntb_payload_header *rx_hdr;
	};
	unsigned int index;
112 113
};

J
Jon Mason 已提交
114 115 116 117
struct ntb_rx_info {
	unsigned int entry;
};

118
struct ntb_transport_qp {
119 120
	struct ntb_transport_ctx *transport;
	struct ntb_dev *ndev;
121
	void *cb_data;
122 123
	struct dma_chan *tx_dma_chan;
	struct dma_chan *rx_dma_chan;
124 125

	bool client_ready;
126
	bool link_is_up;
127
	bool active;
128

129
	u8 qp_num;	/* Only 64 QP's are allowed.  0-63 */
130
	u64 qp_bit;
131

J
Jon Mason 已提交
132
	struct ntb_rx_info __iomem *rx_info;
J
Jon Mason 已提交
133 134
	struct ntb_rx_info *remote_rx_info;

J
Jon Mason 已提交
135 136
	void (*tx_handler)(struct ntb_transport_qp *qp, void *qp_data,
			   void *data, int len);
137 138
	struct list_head tx_free_q;
	spinlock_t ntb_tx_free_q_lock;
J
Jon Mason 已提交
139
	void __iomem *tx_mw;
140
	dma_addr_t tx_mw_phys;
J
Jon Mason 已提交
141 142
	unsigned int tx_index;
	unsigned int tx_max_entry;
143
	unsigned int tx_max_frame;
144

J
Jon Mason 已提交
145 146
	void (*rx_handler)(struct ntb_transport_qp *qp, void *qp_data,
			   void *data, int len);
147
	struct list_head rx_post_q;
148 149
	struct list_head rx_pend_q;
	struct list_head rx_free_q;
150 151
	/* ntb_rx_q_lock: synchronize access to rx_XXXX_q */
	spinlock_t ntb_rx_q_lock;
J
Jon Mason 已提交
152 153 154
	void *rx_buff;
	unsigned int rx_index;
	unsigned int rx_max_entry;
155
	unsigned int rx_max_frame;
156
	dma_cookie_t last_cookie;
157
	struct tasklet_struct rxc_db_work;
158

J
Jon Mason 已提交
159
	void (*event_handler)(void *data, int status);
160
	struct delayed_work link_work;
161
	struct work_struct link_cleanup;
162 163 164 165 166 167 168 169 170 171 172

	struct dentry *debugfs_dir;
	struct dentry *debugfs_stats;

	/* Stats */
	u64 rx_bytes;
	u64 rx_pkts;
	u64 rx_ring_empty;
	u64 rx_err_no_buf;
	u64 rx_err_oflow;
	u64 rx_err_ver;
173 174
	u64 rx_memcpy;
	u64 rx_async;
175
	u64 dma_rx_prep_err;
176 177 178
	u64 tx_bytes;
	u64 tx_pkts;
	u64 tx_ring_full;
179 180 181
	u64 tx_err_no_buf;
	u64 tx_memcpy;
	u64 tx_async;
182
	u64 dma_tx_prep_err;
183 184 185
};

struct ntb_transport_mw {
186 187 188 189 190 191 192
	phys_addr_t phys_addr;
	resource_size_t phys_size;
	resource_size_t xlat_align;
	resource_size_t xlat_align_size;
	void __iomem *vbase;
	size_t xlat_size;
	size_t buff_size;
193 194 195 196 197 198
	void *virt_addr;
	dma_addr_t dma_addr;
};

struct ntb_transport_client_dev {
	struct list_head entry;
199
	struct ntb_transport_ctx *nt;
200 201 202
	struct device dev;
};

203
struct ntb_transport_ctx {
204 205 206
	struct list_head entry;
	struct list_head client_devs;

207 208 209 210 211 212 213 214 215 216
	struct ntb_dev *ndev;

	struct ntb_transport_mw *mw_vec;
	struct ntb_transport_qp *qp_vec;
	unsigned int mw_count;
	unsigned int qp_count;
	u64 qp_bitmap;
	u64 qp_bitmap_free;

	bool link_is_up;
217
	struct delayed_work link_work;
218
	struct work_struct link_cleanup;
219 220

	struct dentry *debugfs_node_dir;
221 222 223
};

enum {
224 225
	DESC_DONE_FLAG = BIT(0),
	LINK_DOWN_FLAG = BIT(1),
226 227 228
};

struct ntb_payload_header {
J
Jon Mason 已提交
229
	unsigned int ver;
230 231 232 233 234 235 236
	unsigned int len;
	unsigned int flags;
};

enum {
	VERSION = 0,
	QP_LINKS,
J
Jon Mason 已提交
237 238 239 240 241 242
	NUM_QPS,
	NUM_MWS,
	MW0_SZ_HIGH,
	MW0_SZ_LOW,
	MW1_SZ_HIGH,
	MW1_SZ_LOW,
243 244 245
	MAX_SPAD,
};

246 247 248 249 250 251 252
#define dev_client_dev(__dev) \
	container_of((__dev), struct ntb_transport_client_dev, dev)

#define drv_client(__drv) \
	container_of((__drv), struct ntb_transport_client, driver)

#define QP_TO_MW(nt, qp)	((qp) % nt->mw_count)
253 254
#define NTB_QP_DEF_NUM_ENTRIES	100
#define NTB_LINK_DOWN_TIMEOUT	10
255 256
#define DMA_RETRIES		20
#define DMA_OUT_RESOURCE_TO	50
257

258 259 260 261 262 263
static void ntb_transport_rxc_db(unsigned long data);
static const struct ntb_ctx_ops ntb_transport_ops;
static struct ntb_client ntb_transport_client;

static int ntb_transport_bus_match(struct device *dev,
				   struct device_driver *drv)
264 265 266 267
{
	return !strncmp(dev_name(dev), drv->name, strlen(drv->name));
}

268
static int ntb_transport_bus_probe(struct device *dev)
269
{
270
	const struct ntb_transport_client *client;
271 272 273
	int rc = -EINVAL;

	get_device(dev);
274 275 276

	client = drv_client(dev->driver);
	rc = client->probe(dev);
277 278 279 280 281 282
	if (rc)
		put_device(dev);

	return rc;
}

283
static int ntb_transport_bus_remove(struct device *dev)
284
{
285
	const struct ntb_transport_client *client;
286

287 288
	client = drv_client(dev->driver);
	client->remove(dev);
289 290 291 292 293 294

	put_device(dev);

	return 0;
}

295 296 297 298 299
static struct bus_type ntb_transport_bus = {
	.name = "ntb_transport",
	.match = ntb_transport_bus_match,
	.probe = ntb_transport_bus_probe,
	.remove = ntb_transport_bus_remove,
300 301 302 303
};

static LIST_HEAD(ntb_transport_list);

304
static int ntb_bus_init(struct ntb_transport_ctx *nt)
305
{
306
	list_add_tail(&nt->entry, &ntb_transport_list);
307 308 309
	return 0;
}

310
static void ntb_bus_remove(struct ntb_transport_ctx *nt)
311 312 313 314 315 316 317 318 319 320 321 322 323
{
	struct ntb_transport_client_dev *client_dev, *cd;

	list_for_each_entry_safe(client_dev, cd, &nt->client_devs, entry) {
		dev_err(client_dev->dev.parent, "%s still attached to bus, removing\n",
			dev_name(&client_dev->dev));
		list_del(&client_dev->entry);
		device_unregister(&client_dev->dev);
	}

	list_del(&nt->entry);
}

324
static void ntb_transport_client_release(struct device *dev)
325 326 327
{
	struct ntb_transport_client_dev *client_dev;

328
	client_dev = dev_client_dev(dev);
329 330 331 332
	kfree(client_dev);
}

/**
333
 * ntb_transport_unregister_client_dev - Unregister NTB client device
334 335 336 337
 * @device_name: Name of NTB client device
 *
 * Unregister an NTB client device with the NTB transport layer
 */
338
void ntb_transport_unregister_client_dev(char *device_name)
339 340
{
	struct ntb_transport_client_dev *client, *cd;
341
	struct ntb_transport_ctx *nt;
342 343 344 345 346 347 348 349 350

	list_for_each_entry(nt, &ntb_transport_list, entry)
		list_for_each_entry_safe(client, cd, &nt->client_devs, entry)
			if (!strncmp(dev_name(&client->dev), device_name,
				     strlen(device_name))) {
				list_del(&client->entry);
				device_unregister(&client->dev);
			}
}
351
EXPORT_SYMBOL_GPL(ntb_transport_unregister_client_dev);
352 353

/**
354
 * ntb_transport_register_client_dev - Register NTB client device
355 356 357 358
 * @device_name: Name of NTB client device
 *
 * Register an NTB client device with the NTB transport layer
 */
359
int ntb_transport_register_client_dev(char *device_name)
360 361
{
	struct ntb_transport_client_dev *client_dev;
362
	struct ntb_transport_ctx *nt;
363
	int node;
J
Jon Mason 已提交
364
	int rc, i = 0;
365

366 367 368
	if (list_empty(&ntb_transport_list))
		return -ENODEV;

369 370 371
	list_for_each_entry(nt, &ntb_transport_list, entry) {
		struct device *dev;

372 373 374 375
		node = dev_to_node(&nt->ndev->dev);

		client_dev = kzalloc_node(sizeof(*client_dev),
					  GFP_KERNEL, node);
376 377 378 379 380 381 382 383
		if (!client_dev) {
			rc = -ENOMEM;
			goto err;
		}

		dev = &client_dev->dev;

		/* setup and register client devices */
J
Jon Mason 已提交
384
		dev_set_name(dev, "%s%d", device_name, i);
385 386 387
		dev->bus = &ntb_transport_bus;
		dev->release = ntb_transport_client_release;
		dev->parent = &nt->ndev->dev;
388 389 390 391 392 393 394 395

		rc = device_register(dev);
		if (rc) {
			kfree(client_dev);
			goto err;
		}

		list_add_tail(&client_dev->entry, &nt->client_devs);
J
Jon Mason 已提交
396
		i++;
397 398 399 400 401
	}

	return 0;

err:
402
	ntb_transport_unregister_client_dev(device_name);
403 404 405

	return rc;
}
406
EXPORT_SYMBOL_GPL(ntb_transport_register_client_dev);
407 408

/**
409
 * ntb_transport_register_client - Register NTB client driver
410 411 412 413 414 415
 * @drv: NTB client driver to be registered
 *
 * Register an NTB client driver with the NTB transport layer
 *
 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
 */
416
int ntb_transport_register_client(struct ntb_transport_client *drv)
417
{
418
	drv->driver.bus = &ntb_transport_bus;
419

420 421 422
	if (list_empty(&ntb_transport_list))
		return -ENODEV;

423 424
	return driver_register(&drv->driver);
}
425
EXPORT_SYMBOL_GPL(ntb_transport_register_client);
426 427

/**
428
 * ntb_transport_unregister_client - Unregister NTB client driver
429 430 431 432 433 434
 * @drv: NTB client driver to be unregistered
 *
 * Unregister an NTB client driver with the NTB transport layer
 *
 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
 */
435
void ntb_transport_unregister_client(struct ntb_transport_client *drv)
436 437 438
{
	driver_unregister(&drv->driver);
}
439
EXPORT_SYMBOL_GPL(ntb_transport_unregister_client);
440 441 442 443 444

static ssize_t debugfs_read(struct file *filp, char __user *ubuf, size_t count,
			    loff_t *offp)
{
	struct ntb_transport_qp *qp;
445
	char *buf;
446 447
	ssize_t ret, out_offset, out_count;

448 449 450 451 452
	qp = filp->private_data;

	if (!qp || !qp->link_is_up)
		return 0;

453
	out_count = 1000;
454 455 456 457

	buf = kmalloc(out_count, GFP_KERNEL);
	if (!buf)
		return -ENOMEM;
458 459 460

	out_offset = 0;
	out_offset += snprintf(buf + out_offset, out_count - out_offset,
D
Dave Jiang 已提交
461
			       "\nNTB QP stats:\n\n");
462 463 464 465
	out_offset += snprintf(buf + out_offset, out_count - out_offset,
			       "rx_bytes - \t%llu\n", qp->rx_bytes);
	out_offset += snprintf(buf + out_offset, out_count - out_offset,
			       "rx_pkts - \t%llu\n", qp->rx_pkts);
466 467 468 469
	out_offset += snprintf(buf + out_offset, out_count - out_offset,
			       "rx_memcpy - \t%llu\n", qp->rx_memcpy);
	out_offset += snprintf(buf + out_offset, out_count - out_offset,
			       "rx_async - \t%llu\n", qp->rx_async);
470 471 472 473 474 475 476 477 478
	out_offset += snprintf(buf + out_offset, out_count - out_offset,
			       "rx_ring_empty - %llu\n", qp->rx_ring_empty);
	out_offset += snprintf(buf + out_offset, out_count - out_offset,
			       "rx_err_no_buf - %llu\n", qp->rx_err_no_buf);
	out_offset += snprintf(buf + out_offset, out_count - out_offset,
			       "rx_err_oflow - \t%llu\n", qp->rx_err_oflow);
	out_offset += snprintf(buf + out_offset, out_count - out_offset,
			       "rx_err_ver - \t%llu\n", qp->rx_err_ver);
	out_offset += snprintf(buf + out_offset, out_count - out_offset,
D
Dave Jiang 已提交
479
			       "rx_buff - \t0x%p\n", qp->rx_buff);
480
	out_offset += snprintf(buf + out_offset, out_count - out_offset,
J
Jon Mason 已提交
481
			       "rx_index - \t%u\n", qp->rx_index);
482
	out_offset += snprintf(buf + out_offset, out_count - out_offset,
D
Dave Jiang 已提交
483
			       "rx_max_entry - \t%u\n\n", qp->rx_max_entry);
484 485 486 487 488

	out_offset += snprintf(buf + out_offset, out_count - out_offset,
			       "tx_bytes - \t%llu\n", qp->tx_bytes);
	out_offset += snprintf(buf + out_offset, out_count - out_offset,
			       "tx_pkts - \t%llu\n", qp->tx_pkts);
489 490 491 492
	out_offset += snprintf(buf + out_offset, out_count - out_offset,
			       "tx_memcpy - \t%llu\n", qp->tx_memcpy);
	out_offset += snprintf(buf + out_offset, out_count - out_offset,
			       "tx_async - \t%llu\n", qp->tx_async);
493 494
	out_offset += snprintf(buf + out_offset, out_count - out_offset,
			       "tx_ring_full - \t%llu\n", qp->tx_ring_full);
495 496
	out_offset += snprintf(buf + out_offset, out_count - out_offset,
			       "tx_err_no_buf - %llu\n", qp->tx_err_no_buf);
497
	out_offset += snprintf(buf + out_offset, out_count - out_offset,
D
Dave Jiang 已提交
498
			       "tx_mw - \t0x%p\n", qp->tx_mw);
499
	out_offset += snprintf(buf + out_offset, out_count - out_offset,
D
Dave Jiang 已提交
500
			       "tx_index (H) - \t%u\n", qp->tx_index);
501
	out_offset += snprintf(buf + out_offset, out_count - out_offset,
D
Dave Jiang 已提交
502
			       "RRI (T) - \t%u\n",
503
			       qp->remote_rx_info->entry);
D
Dave Jiang 已提交
504 505
	out_offset += snprintf(buf + out_offset, out_count - out_offset,
			       "tx_max_entry - \t%u\n", qp->tx_max_entry);
506 507 508
	out_offset += snprintf(buf + out_offset, out_count - out_offset,
			       "free tx - \t%u\n",
			       ntb_transport_tx_free_entry(qp));
509 510 511 512 513 514
	out_offset += snprintf(buf + out_offset, out_count - out_offset,
			       "DMA tx prep err - \t%llu\n",
			       qp->dma_tx_prep_err);
	out_offset += snprintf(buf + out_offset, out_count - out_offset,
			       "DMA rx prep err - \t%llu\n",
			       qp->dma_rx_prep_err);
515 516

	out_offset += snprintf(buf + out_offset, out_count - out_offset,
D
Dave Jiang 已提交
517 518
			       "\n");
	out_offset += snprintf(buf + out_offset, out_count - out_offset,
519 520 521 522 523
			       "Using TX DMA - \t%s\n",
			       qp->tx_dma_chan ? "Yes" : "No");
	out_offset += snprintf(buf + out_offset, out_count - out_offset,
			       "Using RX DMA - \t%s\n",
			       qp->rx_dma_chan ? "Yes" : "No");
D
Dave Jiang 已提交
524 525
	out_offset += snprintf(buf + out_offset, out_count - out_offset,
			       "QP Link - \t%s\n",
526
			       qp->link_is_up ? "Up" : "Down");
D
Dave Jiang 已提交
527 528 529
	out_offset += snprintf(buf + out_offset, out_count - out_offset,
			       "\n");

530 531
	if (out_offset > out_count)
		out_offset = out_count;
532 533

	ret = simple_read_from_buffer(ubuf, count, offp, buf, out_offset);
534
	kfree(buf);
535 536 537 538 539
	return ret;
}

static const struct file_operations ntb_qp_debugfs_stats = {
	.owner = THIS_MODULE,
J
Jon Mason 已提交
540
	.open = simple_open,
541 542 543 544 545 546 547 548 549 550 551 552 553 554
	.read = debugfs_read,
};

static void ntb_list_add(spinlock_t *lock, struct list_head *entry,
			 struct list_head *list)
{
	unsigned long flags;

	spin_lock_irqsave(lock, flags);
	list_add_tail(entry, list);
	spin_unlock_irqrestore(lock, flags);
}

static struct ntb_queue_entry *ntb_list_rm(spinlock_t *lock,
J
Jon Mason 已提交
555
					   struct list_head *list)
556 557 558 559 560 561 562 563 564 565 566
{
	struct ntb_queue_entry *entry;
	unsigned long flags;

	spin_lock_irqsave(lock, flags);
	if (list_empty(list)) {
		entry = NULL;
		goto out;
	}
	entry = list_first_entry(list, struct ntb_queue_entry, entry);
	list_del(&entry->entry);
567

568 569 570 571 572 573
out:
	spin_unlock_irqrestore(lock, flags);

	return entry;
}

574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594
static struct ntb_queue_entry *ntb_list_mv(spinlock_t *lock,
					   struct list_head *list,
					   struct list_head *to_list)
{
	struct ntb_queue_entry *entry;
	unsigned long flags;

	spin_lock_irqsave(lock, flags);

	if (list_empty(list)) {
		entry = NULL;
	} else {
		entry = list_first_entry(list, struct ntb_queue_entry, entry);
		list_move_tail(&entry->entry, to_list);
	}

	spin_unlock_irqrestore(lock, flags);

	return entry;
}

595 596
static int ntb_transport_setup_qp_mw(struct ntb_transport_ctx *nt,
				     unsigned int qp_num)
597
{
598 599
	struct ntb_transport_qp *qp = &nt->qp_vec[qp_num];
	struct ntb_transport_mw *mw;
600
	unsigned int rx_size, num_qps_mw;
601
	unsigned int mw_num, mw_count, qp_count;
J
Jon Mason 已提交
602
	unsigned int i;
603

604 605
	mw_count = nt->mw_count;
	qp_count = nt->qp_count;
J
Jon Mason 已提交
606

607 608 609 610 611
	mw_num = QP_TO_MW(nt, qp_num);
	mw = &nt->mw_vec[mw_num];

	if (!mw->virt_addr)
		return -ENOMEM;
612

613 614
	if (qp_count % mw_count && mw_num + 1 < qp_count / mw_count)
		num_qps_mw = qp_count / mw_count + 1;
615
	else
616
		num_qps_mw = qp_count / mw_count;
617

618
	rx_size = (unsigned int)mw->xlat_size / num_qps_mw;
619
	qp->rx_buff = mw->virt_addr + rx_size * (qp_num / mw_count);
J
Jon Mason 已提交
620 621
	rx_size -= sizeof(struct ntb_rx_info);

622 623
	qp->remote_rx_info = qp->rx_buff + rx_size;

624 625
	/* Due to housekeeping, there must be atleast 2 buffs */
	qp->rx_max_frame = min(transport_mtu, rx_size / 2);
J
Jon Mason 已提交
626 627 628
	qp->rx_max_entry = rx_size / qp->rx_max_frame;
	qp->rx_index = 0;

629
	qp->remote_rx_info->entry = qp->rx_max_entry - 1;
630

631
	/* setup the hdr offsets with 0's */
J
Jon Mason 已提交
632
	for (i = 0; i < qp->rx_max_entry; i++) {
633 634
		void *offset = (qp->rx_buff + qp->rx_max_frame * (i + 1) -
				sizeof(struct ntb_payload_header));
635
		memset(offset, 0, sizeof(struct ntb_payload_header));
J
Jon Mason 已提交
636
	}
637 638 639

	qp->rx_pkts = 0;
	qp->tx_pkts = 0;
J
Jon Mason 已提交
640
	qp->tx_index = 0;
641 642

	return 0;
643 644
}

645
static void ntb_free_mw(struct ntb_transport_ctx *nt, int num_mw)
J
Jon Mason 已提交
646
{
647 648
	struct ntb_transport_mw *mw = &nt->mw_vec[num_mw];
	struct pci_dev *pdev = nt->ndev->pdev;
J
Jon Mason 已提交
649 650 651 652

	if (!mw->virt_addr)
		return;

653 654 655 656 657
	ntb_mw_clear_trans(nt->ndev, num_mw);
	dma_free_coherent(&pdev->dev, mw->buff_size,
			  mw->virt_addr, mw->dma_addr);
	mw->xlat_size = 0;
	mw->buff_size = 0;
J
Jon Mason 已提交
658 659 660
	mw->virt_addr = NULL;
}

661
static int ntb_set_mw(struct ntb_transport_ctx *nt, int num_mw,
662
		      resource_size_t size)
663
{
664 665
	struct ntb_transport_mw *mw = &nt->mw_vec[num_mw];
	struct pci_dev *pdev = nt->ndev->pdev;
666
	size_t xlat_size, buff_size;
667 668
	int rc;

669 670 671
	if (!size)
		return -EINVAL;

672 673
	xlat_size = round_up(size, mw->xlat_align_size);
	buff_size = round_up(size, mw->xlat_align);
674

J
Jon Mason 已提交
675
	/* No need to re-setup */
676
	if (mw->xlat_size == xlat_size)
J
Jon Mason 已提交
677 678
		return 0;

679
	if (mw->buff_size)
J
Jon Mason 已提交
680 681
		ntb_free_mw(nt, num_mw);

682 683 684
	/* Alloc memory for receiving data.  Must be aligned */
	mw->xlat_size = xlat_size;
	mw->buff_size = buff_size;
685

686 687
	mw->virt_addr = dma_alloc_coherent(&pdev->dev, buff_size,
					   &mw->dma_addr, GFP_KERNEL);
688
	if (!mw->virt_addr) {
689 690
		mw->xlat_size = 0;
		mw->buff_size = 0;
691
		dev_err(&pdev->dev, "Unable to alloc MW buff of size %zu\n",
692
			buff_size);
693 694 695
		return -ENOMEM;
	}

696 697 698 699 700 701
	/*
	 * we must ensure that the memory address allocated is BAR size
	 * aligned in order for the XLAT register to take the value. This
	 * is a requirement of the hardware. It is recommended to setup CMA
	 * for BAR sizes equal or greater than 4MB.
	 */
702 703
	if (!IS_ALIGNED(mw->dma_addr, mw->xlat_align)) {
		dev_err(&pdev->dev, "DMA memory %pad is not aligned\n",
704 705 706 707 708
			&mw->dma_addr);
		ntb_free_mw(nt, num_mw);
		return -ENOMEM;
	}

709
	/* Notify HW the memory location of the receive buffer */
710 711 712 713 714 715
	rc = ntb_mw_set_trans(nt->ndev, num_mw, mw->dma_addr, mw->xlat_size);
	if (rc) {
		dev_err(&pdev->dev, "Unable to set mw%d translation", num_mw);
		ntb_free_mw(nt, num_mw);
		return -EIO;
	}
716 717 718 719

	return 0;
}

720 721 722
static void ntb_qp_link_down_reset(struct ntb_transport_qp *qp)
{
	qp->link_is_up = false;
723
	qp->active = false;
724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740

	qp->tx_index = 0;
	qp->rx_index = 0;
	qp->rx_bytes = 0;
	qp->rx_pkts = 0;
	qp->rx_ring_empty = 0;
	qp->rx_err_no_buf = 0;
	qp->rx_err_oflow = 0;
	qp->rx_err_ver = 0;
	qp->rx_memcpy = 0;
	qp->rx_async = 0;
	qp->tx_bytes = 0;
	qp->tx_pkts = 0;
	qp->tx_ring_full = 0;
	qp->tx_err_no_buf = 0;
	qp->tx_memcpy = 0;
	qp->tx_async = 0;
741 742
	qp->dma_tx_prep_err = 0;
	qp->dma_rx_prep_err = 0;
743 744
}

J
Jon Mason 已提交
745
static void ntb_qp_link_cleanup(struct ntb_transport_qp *qp)
746
{
747 748
	struct ntb_transport_ctx *nt = qp->transport;
	struct pci_dev *pdev = nt->ndev->pdev;
749

750
	dev_info(&pdev->dev, "qp %d: Link Cleanup\n", qp->qp_num);
751 752 753

	cancel_delayed_work_sync(&qp->link_work);
	ntb_qp_link_down_reset(qp);
754 755 756

	if (qp->event_handler)
		qp->event_handler(qp->cb_data, qp->link_is_up);
J
Jon Mason 已提交
757 758 759 760 761 762 763
}

static void ntb_qp_link_cleanup_work(struct work_struct *work)
{
	struct ntb_transport_qp *qp = container_of(work,
						   struct ntb_transport_qp,
						   link_cleanup);
764
	struct ntb_transport_ctx *nt = qp->transport;
J
Jon Mason 已提交
765 766

	ntb_qp_link_cleanup(qp);
767

768
	if (nt->link_is_up)
769 770 771 772
		schedule_delayed_work(&qp->link_work,
				      msecs_to_jiffies(NTB_LINK_DOWN_TIMEOUT));
}

773 774 775 776 777
static void ntb_qp_link_down(struct ntb_transport_qp *qp)
{
	schedule_work(&qp->link_cleanup);
}

778
static void ntb_transport_link_cleanup(struct ntb_transport_ctx *nt)
779
{
780 781
	struct ntb_transport_qp *qp;
	u64 qp_bitmap_alloc;
782 783
	int i;

784 785
	qp_bitmap_alloc = nt->qp_bitmap & ~nt->qp_bitmap_free;

J
Jon Mason 已提交
786
	/* Pass along the info to any clients */
787 788 789 790 791 792 793
	for (i = 0; i < nt->qp_count; i++)
		if (qp_bitmap_alloc & BIT_ULL(i)) {
			qp = &nt->qp_vec[i];
			ntb_qp_link_cleanup(qp);
			cancel_work_sync(&qp->link_cleanup);
			cancel_delayed_work_sync(&qp->link_work);
		}
J
Jon Mason 已提交
794

795
	if (!nt->link_is_up)
796 797 798 799 800 801 802
		cancel_delayed_work_sync(&nt->link_work);

	/* The scratchpad registers keep the values if the remote side
	 * goes down, blast them now to give them a sane value the next
	 * time they are accessed
	 */
	for (i = 0; i < MAX_SPAD; i++)
803
		ntb_spad_write(nt->ndev, i, 0);
804 805
}

J
Jon Mason 已提交
806 807
static void ntb_transport_link_cleanup_work(struct work_struct *work)
{
808 809
	struct ntb_transport_ctx *nt =
		container_of(work, struct ntb_transport_ctx, link_cleanup);
J
Jon Mason 已提交
810 811 812 813

	ntb_transport_link_cleanup(nt);
}

814
static void ntb_transport_event_callback(void *data)
815
{
816
	struct ntb_transport_ctx *nt = data;
817

818
	if (ntb_link_is_up(nt->ndev, NULL, NULL) == 1)
819
		schedule_delayed_work(&nt->link_work, 0);
820
	else
821
		schedule_work(&nt->link_cleanup);
822 823 824 825
}

static void ntb_transport_link_work(struct work_struct *work)
{
826 827 828 829 830
	struct ntb_transport_ctx *nt =
		container_of(work, struct ntb_transport_ctx, link_work.work);
	struct ntb_dev *ndev = nt->ndev;
	struct pci_dev *pdev = ndev->pdev;
	resource_size_t size;
831
	u32 val;
832
	int rc = 0, i, spad;
833

J
Jon Mason 已提交
834
	/* send the local info, in the opposite order of the way we read it */
835 836
	for (i = 0; i < nt->mw_count; i++) {
		size = nt->mw_vec[i].phys_size;
837

838 839
		if (max_mw_size && size > max_mw_size)
			size = max_mw_size;
840

841
		spad = MW0_SZ_HIGH + (i * 2);
A
Arnd Bergmann 已提交
842
		ntb_peer_spad_write(ndev, spad, upper_32_bits(size));
843

844
		spad = MW0_SZ_LOW + (i * 2);
A
Arnd Bergmann 已提交
845
		ntb_peer_spad_write(ndev, spad, lower_32_bits(size));
846 847
	}

848
	ntb_peer_spad_write(ndev, NUM_MWS, nt->mw_count);
849

850
	ntb_peer_spad_write(ndev, NUM_QPS, nt->qp_count);
851

852
	ntb_peer_spad_write(ndev, VERSION, NTB_TRANSPORT_VERSION);
853

854
	/* Query the remote side for its info */
855
	val = ntb_spad_read(ndev, VERSION);
856 857
	dev_dbg(&pdev->dev, "Remote version = %d\n", val);
	if (val != NTB_TRANSPORT_VERSION)
858 859
		goto out;

860
	val = ntb_spad_read(ndev, NUM_QPS);
861
	dev_dbg(&pdev->dev, "Remote max number of qps = %d\n", val);
862
	if (val != nt->qp_count)
863 864
		goto out;

865
	val = ntb_spad_read(ndev, NUM_MWS);
J
Jon Mason 已提交
866
	dev_dbg(&pdev->dev, "Remote number of mws = %d\n", val);
867 868
	if (val != nt->mw_count)
		goto out;
869

870
	for (i = 0; i < nt->mw_count; i++) {
J
Jon Mason 已提交
871
		u64 val64;
872

873
		val = ntb_spad_read(ndev, MW0_SZ_HIGH + (i * 2));
874
		val64 = (u64)val << 32;
J
Jon Mason 已提交
875

876
		val = ntb_spad_read(ndev, MW0_SZ_LOW + (i * 2));
J
Jon Mason 已提交
877 878
		val64 |= val;

879
		dev_dbg(&pdev->dev, "Remote MW%d size = %#llx\n", i, val64);
J
Jon Mason 已提交
880 881 882 883 884

		rc = ntb_set_mw(nt, i, val64);
		if (rc)
			goto out1;
	}
885

886
	nt->link_is_up = true;
887

888 889
	for (i = 0; i < nt->qp_count; i++) {
		struct ntb_transport_qp *qp = &nt->qp_vec[i];
890 891 892

		ntb_transport_setup_qp_mw(nt, i);

893
		if (qp->client_ready)
894 895 896 897 898
			schedule_delayed_work(&qp->link_work, 0);
	}

	return;

J
Jon Mason 已提交
899
out1:
900
	for (i = 0; i < nt->mw_count; i++)
J
Jon Mason 已提交
901
		ntb_free_mw(nt, i);
902 903 904 905 906 907 908

	/* if there's an actual failure, we should just bail */
	if (rc < 0) {
		ntb_link_disable(ndev);
		return;
	}

909
out:
910
	if (ntb_link_is_up(ndev, NULL, NULL) == 1)
911 912 913 914 915 916 917 918 919
		schedule_delayed_work(&nt->link_work,
				      msecs_to_jiffies(NTB_LINK_DOWN_TIMEOUT));
}

static void ntb_qp_link_work(struct work_struct *work)
{
	struct ntb_transport_qp *qp = container_of(work,
						   struct ntb_transport_qp,
						   link_work.work);
920 921 922
	struct pci_dev *pdev = qp->ndev->pdev;
	struct ntb_transport_ctx *nt = qp->transport;
	int val;
923

924
	WARN_ON(!nt->link_is_up);
925

926
	val = ntb_spad_read(nt->ndev, QP_LINKS);
927

928
	ntb_peer_spad_write(nt->ndev, QP_LINKS, val | BIT(qp->qp_num));
929 930

	/* query remote spad for qp ready bits */
931
	ntb_peer_spad_read(nt->ndev, QP_LINKS);
A
Allen Hubbe 已提交
932
	dev_dbg_ratelimited(&pdev->dev, "Remote QP link status = %x\n", val);
933 934

	/* See if the remote side is up */
935
	if (val & BIT(qp->qp_num)) {
936
		dev_info(&pdev->dev, "qp %d: Link Up\n", qp->qp_num);
937
		qp->link_is_up = true;
938
		qp->active = true;
939

940
		if (qp->event_handler)
941
			qp->event_handler(qp->cb_data, qp->link_is_up);
942

943 944
		if (qp->active)
			tasklet_schedule(&qp->rxc_db_work);
945
	} else if (nt->link_is_up)
946 947 948 949
		schedule_delayed_work(&qp->link_work,
				      msecs_to_jiffies(NTB_LINK_DOWN_TIMEOUT));
}

950
static int ntb_transport_init_queue(struct ntb_transport_ctx *nt,
J
Jon Mason 已提交
951
				    unsigned int qp_num)
952 953
{
	struct ntb_transport_qp *qp;
954 955
	phys_addr_t mw_base;
	resource_size_t mw_size;
956
	unsigned int num_qps_mw, tx_size;
957
	unsigned int mw_num, mw_count, qp_count;
958
	u64 qp_offset;
J
Jon Mason 已提交
959

960 961
	mw_count = nt->mw_count;
	qp_count = nt->qp_count;
962

963 964 965
	mw_num = QP_TO_MW(nt, qp_num);

	qp = &nt->qp_vec[qp_num];
966 967 968
	qp->qp_num = qp_num;
	qp->transport = nt;
	qp->ndev = nt->ndev;
969
	qp->client_ready = false;
970
	qp->event_handler = NULL;
971
	ntb_qp_link_down_reset(qp);
972

973 974
	if (qp_count % mw_count && mw_num + 1 < qp_count / mw_count)
		num_qps_mw = qp_count / mw_count + 1;
975
	else
976 977 978 979
		num_qps_mw = qp_count / mw_count;

	mw_base = nt->mw_vec[mw_num].phys_addr;
	mw_size = nt->mw_vec[mw_num].phys_size;
980

981
	tx_size = (unsigned int)mw_size / num_qps_mw;
982
	qp_offset = tx_size * (qp_num / mw_count);
983 984

	qp->tx_mw = nt->mw_vec[mw_num].vbase + qp_offset;
985 986 987
	if (!qp->tx_mw)
		return -EINVAL;

988
	qp->tx_mw_phys = mw_base + qp_offset;
989 990 991
	if (!qp->tx_mw_phys)
		return -EINVAL;

J
Jon Mason 已提交
992
	tx_size -= sizeof(struct ntb_rx_info);
993
	qp->rx_info = qp->tx_mw + tx_size;
J
Jon Mason 已提交
994

995 996
	/* Due to housekeeping, there must be atleast 2 buffs */
	qp->tx_max_frame = min(transport_mtu, tx_size / 2);
J
Jon Mason 已提交
997
	qp->tx_max_entry = tx_size / qp->tx_max_frame;
998

999
	if (nt->debugfs_node_dir) {
1000 1001 1002 1003
		char debugfs_name[4];

		snprintf(debugfs_name, 4, "qp%d", qp_num);
		qp->debugfs_dir = debugfs_create_dir(debugfs_name,
1004
						     nt->debugfs_node_dir);
1005 1006 1007 1008

		qp->debugfs_stats = debugfs_create_file("stats", S_IRUSR,
							qp->debugfs_dir, qp,
							&ntb_qp_debugfs_stats);
1009 1010 1011
	} else {
		qp->debugfs_dir = NULL;
		qp->debugfs_stats = NULL;
1012 1013 1014
	}

	INIT_DELAYED_WORK(&qp->link_work, ntb_qp_link_work);
J
Jon Mason 已提交
1015
	INIT_WORK(&qp->link_cleanup, ntb_qp_link_cleanup_work);
1016

1017
	spin_lock_init(&qp->ntb_rx_q_lock);
1018 1019
	spin_lock_init(&qp->ntb_tx_free_q_lock);

1020
	INIT_LIST_HEAD(&qp->rx_post_q);
1021 1022 1023
	INIT_LIST_HEAD(&qp->rx_pend_q);
	INIT_LIST_HEAD(&qp->rx_free_q);
	INIT_LIST_HEAD(&qp->tx_free_q);
1024

1025 1026 1027
	tasklet_init(&qp->rxc_db_work, ntb_transport_rxc_db,
		     (unsigned long)qp);

1028
	return 0;
1029 1030
}

1031
static int ntb_transport_probe(struct ntb_client *self, struct ntb_dev *ndev)
1032
{
1033 1034 1035 1036
	struct ntb_transport_ctx *nt;
	struct ntb_transport_mw *mw;
	unsigned int mw_count, qp_count;
	u64 qp_bitmap;
1037
	int node;
1038 1039
	int rc, i;

1040 1041 1042 1043 1044 1045 1046
	if (ntb_db_is_unsafe(ndev))
		dev_dbg(&ndev->dev,
			"doorbell is unsafe, proceed anyway...\n");
	if (ntb_spad_is_unsafe(ndev))
		dev_dbg(&ndev->dev,
			"scratchpad is unsafe, proceed anyway...\n");

1047 1048 1049
	node = dev_to_node(&ndev->dev);

	nt = kzalloc_node(sizeof(*nt), GFP_KERNEL, node);
1050 1051 1052
	if (!nt)
		return -ENOMEM;

1053 1054 1055 1056 1057 1058
	nt->ndev = ndev;

	mw_count = ntb_mw_count(ndev);

	nt->mw_count = mw_count;

1059 1060
	nt->mw_vec = kzalloc_node(mw_count * sizeof(*nt->mw_vec),
				  GFP_KERNEL, node);
1061 1062
	if (!nt->mw_vec) {
		rc = -ENOMEM;
1063 1064 1065
		goto err;
	}

1066 1067 1068 1069 1070 1071 1072 1073
	for (i = 0; i < mw_count; i++) {
		mw = &nt->mw_vec[i];

		rc = ntb_mw_get_range(ndev, i, &mw->phys_addr, &mw->phys_size,
				      &mw->xlat_align, &mw->xlat_align_size);
		if (rc)
			goto err1;

1074
		mw->vbase = ioremap_wc(mw->phys_addr, mw->phys_size);
1075 1076 1077 1078 1079 1080 1081 1082 1083
		if (!mw->vbase) {
			rc = -ENOMEM;
			goto err1;
		}

		mw->buff_size = 0;
		mw->xlat_size = 0;
		mw->virt_addr = NULL;
		mw->dma_addr = 0;
J
Jon Mason 已提交
1084 1085
	}

1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098
	qp_bitmap = ntb_db_valid_mask(ndev);

	qp_count = ilog2(qp_bitmap);
	if (max_num_clients && max_num_clients < qp_count)
		qp_count = max_num_clients;
	else if (mw_count < qp_count)
		qp_count = mw_count;

	qp_bitmap &= BIT_ULL(qp_count) - 1;

	nt->qp_count = qp_count;
	nt->qp_bitmap = qp_bitmap;
	nt->qp_bitmap_free = qp_bitmap;
1099

1100 1101
	nt->qp_vec = kzalloc_node(qp_count * sizeof(*nt->qp_vec),
				  GFP_KERNEL, node);
1102
	if (!nt->qp_vec) {
1103
		rc = -ENOMEM;
1104
		goto err1;
1105 1106
	}

1107 1108 1109 1110 1111 1112
	if (nt_debugfs_dir) {
		nt->debugfs_node_dir =
			debugfs_create_dir(pci_name(ndev->pdev),
					   nt_debugfs_dir);
	}

1113
	for (i = 0; i < qp_count; i++) {
1114 1115
		rc = ntb_transport_init_queue(nt, i);
		if (rc)
1116
			goto err2;
1117
	}
1118 1119

	INIT_DELAYED_WORK(&nt->link_work, ntb_transport_link_work);
J
Jon Mason 已提交
1120
	INIT_WORK(&nt->link_cleanup, ntb_transport_link_cleanup_work);
1121

1122
	rc = ntb_set_ctx(ndev, nt, &ntb_transport_ops);
1123
	if (rc)
1124
		goto err2;
1125 1126 1127 1128

	INIT_LIST_HEAD(&nt->client_devs);
	rc = ntb_bus_init(nt);
	if (rc)
1129
		goto err3;
1130

1131 1132 1133
	nt->link_is_up = false;
	ntb_link_enable(ndev, NTB_SPEED_AUTO, NTB_WIDTH_AUTO);
	ntb_link_event(ndev);
1134 1135 1136

	return 0;

J
Jon Mason 已提交
1137
err3:
1138
	ntb_clear_ctx(ndev);
J
Jon Mason 已提交
1139
err2:
1140
	kfree(nt->qp_vec);
1141
err1:
1142 1143 1144 1145
	while (i--) {
		mw = &nt->mw_vec[i];
		iounmap(mw->vbase);
	}
1146
	kfree(nt->mw_vec);
1147 1148 1149 1150 1151
err:
	kfree(nt);
	return rc;
}

1152
static void ntb_transport_free(struct ntb_client *self, struct ntb_dev *ndev)
1153
{
1154 1155 1156
	struct ntb_transport_ctx *nt = ndev->ctx;
	struct ntb_transport_qp *qp;
	u64 qp_bitmap_alloc;
1157 1158
	int i;

J
Jon Mason 已提交
1159
	ntb_transport_link_cleanup(nt);
1160 1161 1162 1163
	cancel_work_sync(&nt->link_cleanup);
	cancel_delayed_work_sync(&nt->link_work);

	qp_bitmap_alloc = nt->qp_bitmap & ~nt->qp_bitmap_free;
1164 1165

	/* verify that all the qp's are freed */
1166 1167 1168 1169 1170
	for (i = 0; i < nt->qp_count; i++) {
		qp = &nt->qp_vec[i];
		if (qp_bitmap_alloc & BIT_ULL(i))
			ntb_transport_free_queue(qp);
		debugfs_remove_recursive(qp->debugfs_dir);
1171
	}
1172

1173 1174
	ntb_link_disable(ndev);
	ntb_clear_ctx(ndev);
1175

1176
	ntb_bus_remove(nt);
1177

1178
	for (i = nt->mw_count; i--; ) {
J
Jon Mason 已提交
1179
		ntb_free_mw(nt, i);
1180 1181
		iounmap(nt->mw_vec[i].vbase);
	}
1182

1183 1184
	kfree(nt->qp_vec);
	kfree(nt->mw_vec);
1185 1186 1187
	kfree(nt);
}

1188
static void ntb_complete_rxc(struct ntb_transport_qp *qp)
1189
{
1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217
	struct ntb_queue_entry *entry;
	void *cb_data;
	unsigned int len;
	unsigned long irqflags;

	spin_lock_irqsave(&qp->ntb_rx_q_lock, irqflags);

	while (!list_empty(&qp->rx_post_q)) {
		entry = list_first_entry(&qp->rx_post_q,
					 struct ntb_queue_entry, entry);
		if (!(entry->flags & DESC_DONE_FLAG))
			break;

		entry->rx_hdr->flags = 0;
		iowrite32(entry->index, &qp->rx_info->entry);

		cb_data = entry->cb_data;
		len = entry->len;

		list_move_tail(&entry->entry, &qp->rx_free_q);

		spin_unlock_irqrestore(&qp->ntb_rx_q_lock, irqflags);

		if (qp->rx_handler && qp->client_ready)
			qp->rx_handler(qp, qp->cb_data, cb_data, len);

		spin_lock_irqsave(&qp->ntb_rx_q_lock, irqflags);
	}
1218

1219 1220
	spin_unlock_irqrestore(&qp->ntb_rx_q_lock, irqflags);
}
1221

1222 1223 1224
static void ntb_rx_copy_callback(void *data)
{
	struct ntb_queue_entry *entry = data;
1225

1226
	entry->flags |= DESC_DONE_FLAG;
1227

1228
	ntb_complete_rxc(entry->qp);
1229 1230
}

1231 1232 1233 1234 1235 1236 1237
static void ntb_memcpy_rx(struct ntb_queue_entry *entry, void *offset)
{
	void *buf = entry->buf;
	size_t len = entry->len;

	memcpy(buf, offset, len);

1238 1239 1240
	/* Ensure that the data is fully copied out before clearing the flag */
	wmb();

1241 1242 1243
	ntb_rx_copy_callback(entry);
}

1244
static void ntb_async_rx(struct ntb_queue_entry *entry, void *offset)
1245 1246 1247
{
	struct dma_async_tx_descriptor *txd;
	struct ntb_transport_qp *qp = entry->qp;
1248
	struct dma_chan *chan = qp->rx_dma_chan;
1249
	struct dma_device *device;
1250
	size_t pay_off, buff_off, len;
1251
	struct dmaengine_unmap_data *unmap;
1252 1253
	dma_cookie_t cookie;
	void *buf = entry->buf;
1254
	int retries = 0;
1255

1256
	len = entry->len;
1257 1258 1259 1260

	if (!chan)
		goto err;

J
Jon Mason 已提交
1261
	if (len < copy_bytes)
1262
		goto err;
1263 1264

	device = chan->device;
1265 1266
	pay_off = (size_t)offset & ~PAGE_MASK;
	buff_off = (size_t)buf & ~PAGE_MASK;
1267 1268

	if (!is_dma_copy_aligned(device, pay_off, buff_off, len))
1269
		goto err;
1270

1271 1272
	unmap = dmaengine_get_unmap_data(device->dev, 2, GFP_NOWAIT);
	if (!unmap)
1273
		goto err;
1274

1275 1276 1277 1278 1279 1280 1281
	unmap->len = len;
	unmap->addr[0] = dma_map_page(device->dev, virt_to_page(offset),
				      pay_off, len, DMA_TO_DEVICE);
	if (dma_mapping_error(device->dev, unmap->addr[0]))
		goto err_get_unmap;

	unmap->to_cnt = 1;
1282

1283 1284 1285 1286 1287 1288 1289
	unmap->addr[1] = dma_map_page(device->dev, virt_to_page(buf),
				      buff_off, len, DMA_FROM_DEVICE);
	if (dma_mapping_error(device->dev, unmap->addr[1]))
		goto err_get_unmap;

	unmap->from_cnt = 1;

1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302
	for (retries = 0; retries < DMA_RETRIES; retries++) {
		txd = device->device_prep_dma_memcpy(chan, unmap->addr[1],
						     unmap->addr[0], len,
						     DMA_PREP_INTERRUPT);
		if (txd)
			break;

		set_current_state(TASK_INTERRUPTIBLE);
		schedule_timeout(DMA_OUT_RESOURCE_TO);
	}

	if (!txd) {
		qp->dma_rx_prep_err++;
1303
		goto err_get_unmap;
1304
	}
1305 1306 1307

	txd->callback = ntb_rx_copy_callback;
	txd->callback_param = entry;
1308
	dma_set_unmap(txd, unmap);
1309 1310 1311

	cookie = dmaengine_submit(txd);
	if (dma_submit_error(cookie))
1312 1313 1314
		goto err_set_unmap;

	dmaengine_unmap_put(unmap);
1315 1316 1317 1318 1319 1320 1321

	qp->last_cookie = cookie;

	qp->rx_async++;

	return;

1322 1323 1324 1325
err_set_unmap:
	dmaengine_unmap_put(unmap);
err_get_unmap:
	dmaengine_unmap_put(unmap);
1326 1327 1328 1329 1330
err:
	ntb_memcpy_rx(entry, offset);
	qp->rx_memcpy++;
}

1331 1332 1333 1334 1335 1336
static int ntb_process_rxc(struct ntb_transport_qp *qp)
{
	struct ntb_payload_header *hdr;
	struct ntb_queue_entry *entry;
	void *offset;

J
Jon Mason 已提交
1337 1338 1339
	offset = qp->rx_buff + qp->rx_max_frame * qp->rx_index;
	hdr = offset + qp->rx_max_frame - sizeof(struct ntb_payload_header);

1340 1341
	dev_dbg(&qp->ndev->pdev->dev, "qp %d: RX ver %u len %d flags %x\n",
		qp->qp_num, hdr->ver, hdr->len, hdr->flags);
1342 1343

	if (!(hdr->flags & DESC_DONE_FLAG)) {
1344
		dev_dbg(&qp->ndev->pdev->dev, "done flag not set\n");
1345 1346 1347 1348
		qp->rx_ring_empty++;
		return -EAGAIN;
	}

1349 1350 1351 1352
	if (hdr->flags & LINK_DOWN_FLAG) {
		dev_dbg(&qp->ndev->pdev->dev, "link down flag set\n");
		ntb_qp_link_down(qp);
		hdr->flags = 0;
1353
		return -EAGAIN;
1354 1355 1356 1357 1358 1359
	}

	if (hdr->ver != (u32)qp->rx_pkts) {
		dev_dbg(&qp->ndev->pdev->dev,
			"version mismatch, expected %llu - got %u\n",
			qp->rx_pkts, hdr->ver);
1360 1361 1362 1363
		qp->rx_err_ver++;
		return -EIO;
	}

1364
	entry = ntb_list_mv(&qp->ntb_rx_q_lock, &qp->rx_pend_q, &qp->rx_post_q);
1365 1366 1367
	if (!entry) {
		dev_dbg(&qp->ndev->pdev->dev, "no receive buffer\n");
		qp->rx_err_no_buf++;
1368
		return -EAGAIN;
1369 1370
	}

1371 1372 1373
	entry->rx_hdr = hdr;
	entry->index = qp->rx_index;

1374
	if (hdr->len > entry->len) {
1375 1376
		dev_dbg(&qp->ndev->pdev->dev,
			"receive buffer overflow! Wanted %d got %d\n",
1377
			hdr->len, entry->len);
1378
		qp->rx_err_oflow++;
1379

1380 1381
		entry->len = -EIO;
		entry->flags |= DESC_DONE_FLAG;
1382

1383 1384 1385 1386 1387
		ntb_complete_rxc(qp);
	} else {
		dev_dbg(&qp->ndev->pdev->dev,
			"RX OK index %u ver %u size %d into buf size %d\n",
			qp->rx_index, hdr->ver, hdr->len, entry->len);
1388

1389 1390
		qp->rx_bytes += hdr->len;
		qp->rx_pkts++;
1391

1392
		entry->len = hdr->len;
1393

1394 1395
		ntb_async_rx(entry, offset);
	}
1396

1397 1398 1399 1400
	qp->rx_index++;
	qp->rx_index %= qp->rx_max_entry;

	return 0;
1401 1402
}

1403
static void ntb_transport_rxc_db(unsigned long data)
1404
{
1405
	struct ntb_transport_qp *qp = (void *)data;
J
Jon Mason 已提交
1406
	int rc, i;
1407

1408 1409
	dev_dbg(&qp->ndev->pdev->dev, "%s: doorbell %d received\n",
		__func__, qp->qp_num);
1410

J
Jon Mason 已提交
1411 1412 1413 1414
	/* Limit the number of packets processed in a single interrupt to
	 * provide fairness to others
	 */
	for (i = 0; i < qp->rx_max_entry; i++) {
1415
		rc = ntb_process_rxc(qp);
J
Jon Mason 已提交
1416 1417 1418
		if (rc)
			break;
	}
1419

1420 1421
	if (i && qp->rx_dma_chan)
		dma_async_issue_pending(qp->rx_dma_chan);
1422

1423 1424
	if (i == qp->rx_max_entry) {
		/* there is more work to do */
1425 1426
		if (qp->active)
			tasklet_schedule(&qp->rxc_db_work);
1427 1428 1429 1430 1431 1432 1433 1434 1435 1436
	} else if (ntb_db_read(qp->ndev) & BIT_ULL(qp->qp_num)) {
		/* the doorbell bit is set: clear it */
		ntb_db_clear(qp->ndev, BIT_ULL(qp->qp_num));
		/* ntb_db_read ensures ntb_db_clear write is committed */
		ntb_db_read(qp->ndev);

		/* an interrupt may have arrived between finishing
		 * ntb_process_rxc and clearing the doorbell bit:
		 * there might be some more work to do.
		 */
1437 1438
		if (qp->active)
			tasklet_schedule(&qp->rxc_db_work);
1439
	}
1440 1441
}

1442
static void ntb_tx_copy_callback(void *data)
1443
{
1444 1445 1446
	struct ntb_queue_entry *entry = data;
	struct ntb_transport_qp *qp = entry->qp;
	struct ntb_payload_header __iomem *hdr = entry->tx_hdr;
1447

J
Jon Mason 已提交
1448
	iowrite32(entry->flags | DESC_DONE_FLAG, &hdr->flags);
1449

1450
	ntb_peer_db_set(qp->ndev, BIT_ULL(qp->qp_num));
1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466

	/* The entry length can only be zero if the packet is intended to be a
	 * "link down" or similar.  Since no payload is being sent in these
	 * cases, there is nothing to add to the completion queue.
	 */
	if (entry->len > 0) {
		qp->tx_bytes += entry->len;

		if (qp->tx_handler)
			qp->tx_handler(qp, qp->cb_data, entry->cb_data,
				       entry->len);
	}

	ntb_list_add(&qp->ntb_tx_free_q_lock, &entry->entry, &qp->tx_free_q);
}

1467
static void ntb_memcpy_tx(struct ntb_queue_entry *entry, void __iomem *offset)
1468
{
1469 1470 1471 1472 1473 1474 1475
#ifdef ARCH_HAS_NOCACHE_UACCESS
	/*
	 * Using non-temporal mov to improve performance on non-cached
	 * writes, even though we aren't actually copying from user space.
	 */
	__copy_from_user_inatomic_nocache(offset, entry->buf, entry->len);
#else
1476
	memcpy_toio(offset, entry->buf, entry->len);
1477
#endif
1478

1479 1480 1481
	/* Ensure that the data is fully copied out before setting the flags */
	wmb();

1482 1483 1484 1485 1486 1487 1488 1489
	ntb_tx_copy_callback(entry);
}

static void ntb_async_tx(struct ntb_transport_qp *qp,
			 struct ntb_queue_entry *entry)
{
	struct ntb_payload_header __iomem *hdr;
	struct dma_async_tx_descriptor *txd;
1490
	struct dma_chan *chan = qp->tx_dma_chan;
1491 1492
	struct dma_device *device;
	size_t dest_off, buff_off;
1493 1494
	struct dmaengine_unmap_data *unmap;
	dma_addr_t dest;
1495
	dma_cookie_t cookie;
J
Jon Mason 已提交
1496
	void __iomem *offset;
1497 1498
	size_t len = entry->len;
	void *buf = entry->buf;
1499
	int retries = 0;
1500

J
Jon Mason 已提交
1501
	offset = qp->tx_mw + qp->tx_max_frame * qp->tx_index;
1502 1503
	hdr = offset + qp->tx_max_frame - sizeof(struct ntb_payload_header);
	entry->tx_hdr = hdr;
1504

1505
	iowrite32(entry->len, &hdr->len);
1506
	iowrite32((u32)qp->tx_pkts, &hdr->ver);
1507 1508 1509 1510 1511 1512 1513 1514 1515

	if (!chan)
		goto err;

	if (len < copy_bytes)
		goto err;

	device = chan->device;
	dest = qp->tx_mw_phys + qp->tx_max_frame * qp->tx_index;
1516 1517
	buff_off = (size_t)buf & ~PAGE_MASK;
	dest_off = (size_t)dest & ~PAGE_MASK;
1518 1519 1520 1521

	if (!is_dma_copy_aligned(device, buff_off, dest_off, len))
		goto err;

1522 1523
	unmap = dmaengine_get_unmap_data(device->dev, 1, GFP_NOWAIT);
	if (!unmap)
1524 1525
		goto err;

1526 1527 1528 1529 1530 1531 1532 1533
	unmap->len = len;
	unmap->addr[0] = dma_map_page(device->dev, virt_to_page(buf),
				      buff_off, len, DMA_TO_DEVICE);
	if (dma_mapping_error(device->dev, unmap->addr[0]))
		goto err_get_unmap;

	unmap->to_cnt = 1;

1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545
	for (retries = 0; retries < DMA_RETRIES; retries++) {
		txd = device->device_prep_dma_memcpy(chan, dest, unmap->addr[0],
						     len, DMA_PREP_INTERRUPT);
		if (txd)
			break;

		set_current_state(TASK_INTERRUPTIBLE);
		schedule_timeout(DMA_OUT_RESOURCE_TO);
	}

	if (!txd) {
		qp->dma_tx_prep_err++;
1546
		goto err_get_unmap;
1547
	}
1548 1549 1550

	txd->callback = ntb_tx_copy_callback;
	txd->callback_param = entry;
1551
	dma_set_unmap(txd, unmap);
1552 1553 1554

	cookie = dmaengine_submit(txd);
	if (dma_submit_error(cookie))
1555 1556 1557
		goto err_set_unmap;

	dmaengine_unmap_put(unmap);
1558 1559 1560 1561 1562

	dma_async_issue_pending(chan);
	qp->tx_async++;

	return;
1563 1564 1565 1566
err_set_unmap:
	dmaengine_unmap_put(unmap);
err_get_unmap:
	dmaengine_unmap_put(unmap);
1567 1568 1569 1570 1571 1572 1573 1574
err:
	ntb_memcpy_tx(entry, offset);
	qp->tx_memcpy++;
}

static int ntb_process_tx(struct ntb_transport_qp *qp,
			  struct ntb_queue_entry *entry)
{
J
Jon Mason 已提交
1575
	if (qp->tx_index == qp->remote_rx_info->entry) {
1576 1577 1578 1579
		qp->tx_ring_full++;
		return -EAGAIN;
	}

1580
	if (entry->len > qp->tx_max_frame - sizeof(struct ntb_payload_header)) {
1581
		if (qp->tx_handler)
J
Jon Mason 已提交
1582
			qp->tx_handler(qp, qp->cb_data, NULL, -EIO);
1583 1584 1585 1586 1587 1588

		ntb_list_add(&qp->ntb_tx_free_q_lock, &entry->entry,
			     &qp->tx_free_q);
		return 0;
	}

1589
	ntb_async_tx(qp, entry);
1590

J
Jon Mason 已提交
1591 1592
	qp->tx_index++;
	qp->tx_index %= qp->tx_max_entry;
1593 1594 1595 1596 1597 1598 1599 1600

	qp->tx_pkts++;

	return 0;
}

static void ntb_send_link_down(struct ntb_transport_qp *qp)
{
1601
	struct pci_dev *pdev = qp->ndev->pdev;
1602 1603 1604
	struct ntb_queue_entry *entry;
	int i, rc;

1605
	if (!qp->link_is_up)
1606 1607
		return;

1608
	dev_info(&pdev->dev, "qp %d: Send Link Down\n", qp->qp_num);
1609 1610

	for (i = 0; i < NTB_LINK_DOWN_TIMEOUT; i++) {
J
Jon Mason 已提交
1611
		entry = ntb_list_rm(&qp->ntb_tx_free_q_lock, &qp->tx_free_q);
1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628
		if (entry)
			break;
		msleep(100);
	}

	if (!entry)
		return;

	entry->cb_data = NULL;
	entry->buf = NULL;
	entry->len = 0;
	entry->flags = LINK_DOWN_FLAG;

	rc = ntb_process_tx(qp, entry);
	if (rc)
		dev_err(&pdev->dev, "ntb: QP%d unable to send linkdown msg\n",
			qp->qp_num);
1629 1630

	ntb_qp_link_down_reset(qp);
1631 1632
}

1633 1634 1635 1636 1637
static bool ntb_dma_filter_fn(struct dma_chan *chan, void *node)
{
	return dev_to_node(&chan->dev->device) == (int)(unsigned long)node;
}

1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652
/**
 * ntb_transport_create_queue - Create a new NTB transport layer queue
 * @rx_handler: receive callback function
 * @tx_handler: transmit callback function
 * @event_handler: event callback function
 *
 * Create a new NTB transport layer queue and provide the queue with a callback
 * routine for both transmit and receive.  The receive callback routine will be
 * used to pass up data when the transport has received it on the queue.   The
 * transmit callback routine will be called when the transport has completed the
 * transmission of the data on the queue and the data is ready to be freed.
 *
 * RETURNS: pointer to newly created ntb_queue, NULL on error.
 */
struct ntb_transport_qp *
1653
ntb_transport_create_queue(void *data, struct device *client_dev,
1654 1655
			   const struct ntb_queue_handlers *handlers)
{
1656 1657 1658
	struct ntb_dev *ndev;
	struct pci_dev *pdev;
	struct ntb_transport_ctx *nt;
1659 1660
	struct ntb_queue_entry *entry;
	struct ntb_transport_qp *qp;
1661
	u64 qp_bit;
1662
	unsigned int free_queue;
1663 1664
	dma_cap_mask_t dma_mask;
	int node;
1665
	int i;
1666

1667 1668 1669
	ndev = dev_ntb(client_dev->parent);
	pdev = ndev->pdev;
	nt = ndev->ctx;
1670

1671 1672
	node = dev_to_node(&ndev->dev);

1673 1674 1675 1676 1677 1678 1679
	free_queue = ffs(nt->qp_bitmap);
	if (!free_queue)
		goto err;

	/* decrement free_queue to make it zero based */
	free_queue--;

1680 1681 1682 1683
	qp = &nt->qp_vec[free_queue];
	qp_bit = BIT_ULL(qp->qp_num);

	nt->qp_bitmap_free &= ~qp_bit;
1684 1685 1686 1687 1688 1689

	qp->cb_data = data;
	qp->rx_handler = handlers->rx_handler;
	qp->tx_handler = handlers->tx_handler;
	qp->event_handler = handlers->event_handler;

1690 1691 1692
	dma_cap_zero(dma_mask);
	dma_cap_set(DMA_MEMCPY, dma_mask);

1693
	if (use_dma) {
1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704
		qp->tx_dma_chan =
			dma_request_channel(dma_mask, ntb_dma_filter_fn,
					    (void *)(unsigned long)node);
		if (!qp->tx_dma_chan)
			dev_info(&pdev->dev, "Unable to allocate TX DMA channel\n");

		qp->rx_dma_chan =
			dma_request_channel(dma_mask, ntb_dma_filter_fn,
					    (void *)(unsigned long)node);
		if (!qp->rx_dma_chan)
			dev_info(&pdev->dev, "Unable to allocate RX DMA channel\n");
1705
	} else {
1706 1707
		qp->tx_dma_chan = NULL;
		qp->rx_dma_chan = NULL;
1708
	}
1709 1710 1711 1712 1713 1714

	dev_dbg(&pdev->dev, "Using %s memcpy for TX\n",
		qp->tx_dma_chan ? "DMA" : "CPU");

	dev_dbg(&pdev->dev, "Using %s memcpy for RX\n",
		qp->rx_dma_chan ? "DMA" : "CPU");
1715

1716
	for (i = 0; i < NTB_QP_DEF_NUM_ENTRIES; i++) {
1717
		entry = kzalloc_node(sizeof(*entry), GFP_ATOMIC, node);
1718 1719 1720
		if (!entry)
			goto err1;

1721
		entry->qp = qp;
1722
		ntb_list_add(&qp->ntb_rx_q_lock, &entry->entry,
J
Jon Mason 已提交
1723
			     &qp->rx_free_q);
1724 1725 1726
	}

	for (i = 0; i < NTB_QP_DEF_NUM_ENTRIES; i++) {
1727
		entry = kzalloc_node(sizeof(*entry), GFP_ATOMIC, node);
1728 1729 1730
		if (!entry)
			goto err2;

1731
		entry->qp = qp;
1732
		ntb_list_add(&qp->ntb_tx_free_q_lock, &entry->entry,
J
Jon Mason 已提交
1733
			     &qp->tx_free_q);
1734 1735
	}

1736 1737
	ntb_db_clear(qp->ndev, qp_bit);
	ntb_db_clear_mask(qp->ndev, qp_bit);
1738 1739 1740 1741 1742 1743

	dev_info(&pdev->dev, "NTB Transport QP %d created\n", qp->qp_num);

	return qp;

err2:
J
Jon Mason 已提交
1744
	while ((entry = ntb_list_rm(&qp->ntb_tx_free_q_lock, &qp->tx_free_q)))
1745 1746
		kfree(entry);
err1:
1747
	while ((entry = ntb_list_rm(&qp->ntb_rx_q_lock, &qp->rx_free_q)))
1748
		kfree(entry);
1749 1750 1751 1752
	if (qp->tx_dma_chan)
		dma_release_channel(qp->tx_dma_chan);
	if (qp->rx_dma_chan)
		dma_release_channel(qp->rx_dma_chan);
1753
	nt->qp_bitmap_free |= qp_bit;
1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766
err:
	return NULL;
}
EXPORT_SYMBOL_GPL(ntb_transport_create_queue);

/**
 * ntb_transport_free_queue - Frees NTB transport queue
 * @qp: NTB queue to be freed
 *
 * Frees NTB transport queue
 */
void ntb_transport_free_queue(struct ntb_transport_qp *qp)
{
1767
	struct pci_dev *pdev;
1768
	struct ntb_queue_entry *entry;
1769
	u64 qp_bit;
1770 1771 1772 1773

	if (!qp)
		return;

1774
	pdev = qp->ndev->pdev;
1775

1776 1777
	qp->active = false;

1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794
	if (qp->tx_dma_chan) {
		struct dma_chan *chan = qp->tx_dma_chan;
		/* Putting the dma_chan to NULL will force any new traffic to be
		 * processed by the CPU instead of the DAM engine
		 */
		qp->tx_dma_chan = NULL;

		/* Try to be nice and wait for any queued DMA engine
		 * transactions to process before smashing it with a rock
		 */
		dma_sync_wait(chan, qp->last_cookie);
		dmaengine_terminate_all(chan);
		dma_release_channel(chan);
	}

	if (qp->rx_dma_chan) {
		struct dma_chan *chan = qp->rx_dma_chan;
1795 1796 1797
		/* Putting the dma_chan to NULL will force any new traffic to be
		 * processed by the CPU instead of the DAM engine
		 */
1798
		qp->rx_dma_chan = NULL;
1799 1800 1801 1802 1803 1804

		/* Try to be nice and wait for any queued DMA engine
		 * transactions to process before smashing it with a rock
		 */
		dma_sync_wait(chan, qp->last_cookie);
		dmaengine_terminate_all(chan);
1805
		dma_release_channel(chan);
1806
	}
1807

1808 1809 1810
	qp_bit = BIT_ULL(qp->qp_num);

	ntb_db_set_mask(qp->ndev, qp_bit);
1811
	tasklet_kill(&qp->rxc_db_work);
1812

1813 1814
	cancel_delayed_work_sync(&qp->link_work);

1815 1816 1817 1818 1819
	qp->cb_data = NULL;
	qp->rx_handler = NULL;
	qp->tx_handler = NULL;
	qp->event_handler = NULL;

1820
	while ((entry = ntb_list_rm(&qp->ntb_rx_q_lock, &qp->rx_free_q)))
1821 1822
		kfree(entry);

1823 1824 1825 1826 1827 1828 1829
	while ((entry = ntb_list_rm(&qp->ntb_rx_q_lock, &qp->rx_pend_q))) {
		dev_warn(&pdev->dev, "Freeing item from non-empty rx_pend_q\n");
		kfree(entry);
	}

	while ((entry = ntb_list_rm(&qp->ntb_rx_q_lock, &qp->rx_post_q))) {
		dev_warn(&pdev->dev, "Freeing item from non-empty rx_post_q\n");
1830 1831 1832
		kfree(entry);
	}

J
Jon Mason 已提交
1833
	while ((entry = ntb_list_rm(&qp->ntb_tx_free_q_lock, &qp->tx_free_q)))
1834 1835
		kfree(entry);

A
Allen Hubbe 已提交
1836
	qp->transport->qp_bitmap_free |= qp_bit;
1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856

	dev_info(&pdev->dev, "NTB Transport QP %d freed\n", qp->qp_num);
}
EXPORT_SYMBOL_GPL(ntb_transport_free_queue);

/**
 * ntb_transport_rx_remove - Dequeues enqueued rx packet
 * @qp: NTB queue to be freed
 * @len: pointer to variable to write enqueued buffers length
 *
 * Dequeues unused buffers from receive queue.  Should only be used during
 * shutdown of qp.
 *
 * RETURNS: NULL error value on error, or void* for success.
 */
void *ntb_transport_rx_remove(struct ntb_transport_qp *qp, unsigned int *len)
{
	struct ntb_queue_entry *entry;
	void *buf;

1857
	if (!qp || qp->client_ready)
1858 1859
		return NULL;

1860
	entry = ntb_list_rm(&qp->ntb_rx_q_lock, &qp->rx_pend_q);
1861 1862 1863 1864 1865 1866
	if (!entry)
		return NULL;

	buf = entry->cb_data;
	*len = entry->len;

1867
	ntb_list_add(&qp->ntb_rx_q_lock, &entry->entry, &qp->rx_free_q);
1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892

	return buf;
}
EXPORT_SYMBOL_GPL(ntb_transport_rx_remove);

/**
 * ntb_transport_rx_enqueue - Enqueue a new NTB queue entry
 * @qp: NTB transport layer queue the entry is to be enqueued on
 * @cb: per buffer pointer for callback function to use
 * @data: pointer to data buffer that incoming packets will be copied into
 * @len: length of the data buffer
 *
 * Enqueue a new receive buffer onto the transport queue into which a NTB
 * payload can be received into.
 *
 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
 */
int ntb_transport_rx_enqueue(struct ntb_transport_qp *qp, void *cb, void *data,
			     unsigned int len)
{
	struct ntb_queue_entry *entry;

	if (!qp)
		return -EINVAL;

1893
	entry = ntb_list_rm(&qp->ntb_rx_q_lock, &qp->rx_free_q);
1894 1895 1896 1897 1898 1899
	if (!entry)
		return -ENOMEM;

	entry->cb_data = cb;
	entry->buf = data;
	entry->len = len;
1900 1901 1902
	entry->flags = 0;

	ntb_list_add(&qp->ntb_rx_q_lock, &entry->entry, &qp->rx_pend_q);
1903

1904 1905
	if (qp->active)
		tasklet_schedule(&qp->rxc_db_work);
1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918

	return 0;
}
EXPORT_SYMBOL_GPL(ntb_transport_rx_enqueue);

/**
 * ntb_transport_tx_enqueue - Enqueue a new NTB queue entry
 * @qp: NTB transport layer queue the entry is to be enqueued on
 * @cb: per buffer pointer for callback function to use
 * @data: pointer to data buffer that will be sent
 * @len: length of the data buffer
 *
 * Enqueue a new transmit buffer onto the transport queue from which a NTB
J
Jon Mason 已提交
1919
 * payload will be transmitted.  This assumes that a lock is being held to
1920 1921 1922 1923 1924 1925 1926 1927 1928 1929
 * serialize access to the qp.
 *
 * RETURNS: An appropriate -ERRNO error value on error, or zero for success.
 */
int ntb_transport_tx_enqueue(struct ntb_transport_qp *qp, void *cb, void *data,
			     unsigned int len)
{
	struct ntb_queue_entry *entry;
	int rc;

1930
	if (!qp || !qp->link_is_up || !len)
1931 1932 1933
		return -EINVAL;

	entry = ntb_list_rm(&qp->ntb_tx_free_q_lock, &qp->tx_free_q);
1934 1935
	if (!entry) {
		qp->tx_err_no_buf++;
1936
		return -EBUSY;
1937
	}
1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963

	entry->cb_data = cb;
	entry->buf = data;
	entry->len = len;
	entry->flags = 0;

	rc = ntb_process_tx(qp, entry);
	if (rc)
		ntb_list_add(&qp->ntb_tx_free_q_lock, &entry->entry,
			     &qp->tx_free_q);

	return rc;
}
EXPORT_SYMBOL_GPL(ntb_transport_tx_enqueue);

/**
 * ntb_transport_link_up - Notify NTB transport of client readiness to use queue
 * @qp: NTB transport layer queue to be enabled
 *
 * Notify NTB transport layer of client readiness to use queue
 */
void ntb_transport_link_up(struct ntb_transport_qp *qp)
{
	if (!qp)
		return;

1964
	qp->client_ready = true;
1965

1966
	if (qp->transport->link_is_up)
1967 1968 1969 1970 1971 1972 1973 1974 1975 1976
		schedule_delayed_work(&qp->link_work, 0);
}
EXPORT_SYMBOL_GPL(ntb_transport_link_up);

/**
 * ntb_transport_link_down - Notify NTB transport to no longer enqueue data
 * @qp: NTB transport layer queue to be disabled
 *
 * Notify NTB transport layer of client's desire to no longer receive data on
 * transport queue specified.  It is the client's responsibility to ensure all
J
Jon Mason 已提交
1977
 * entries on queue are purged or otherwise handled appropriately.
1978 1979 1980
 */
void ntb_transport_link_down(struct ntb_transport_qp *qp)
{
1981
	int val;
1982 1983 1984 1985

	if (!qp)
		return;

1986
	qp->client_ready = false;
1987

1988
	val = ntb_spad_read(qp->ndev, QP_LINKS);
1989

1990 1991
	ntb_peer_spad_write(qp->ndev, QP_LINKS,
			    val & ~BIT(qp->qp_num));
1992

1993
	if (qp->link_is_up)
1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009
		ntb_send_link_down(qp);
	else
		cancel_delayed_work_sync(&qp->link_work);
}
EXPORT_SYMBOL_GPL(ntb_transport_link_down);

/**
 * ntb_transport_link_query - Query transport link state
 * @qp: NTB transport layer queue to be queried
 *
 * Query connectivity to the remote system of the NTB transport queue
 *
 * RETURNS: true for link up or false for link down
 */
bool ntb_transport_link_query(struct ntb_transport_qp *qp)
{
2010 2011 2012
	if (!qp)
		return false;

2013
	return qp->link_is_up;
2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026
}
EXPORT_SYMBOL_GPL(ntb_transport_link_query);

/**
 * ntb_transport_qp_num - Query the qp number
 * @qp: NTB transport layer queue to be queried
 *
 * Query qp number of the NTB transport queue
 *
 * RETURNS: a zero based number specifying the qp number
 */
unsigned char ntb_transport_qp_num(struct ntb_transport_qp *qp)
{
2027 2028 2029
	if (!qp)
		return 0;

2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041
	return qp->qp_num;
}
EXPORT_SYMBOL_GPL(ntb_transport_qp_num);

/**
 * ntb_transport_max_size - Query the max payload size of a qp
 * @qp: NTB transport layer queue to be queried
 *
 * Query the maximum payload size permissible on the given qp
 *
 * RETURNS: the max payload size of a qp
 */
2042
unsigned int ntb_transport_max_size(struct ntb_transport_qp *qp)
2043
{
2044
	unsigned int max_size;
2045
	unsigned int copy_align;
2046
	struct dma_chan *rx_chan, *tx_chan;
2047

2048 2049 2050
	if (!qp)
		return 0;

2051 2052
	rx_chan = qp->rx_dma_chan;
	tx_chan = qp->tx_dma_chan;
2053

2054 2055
	copy_align = max(rx_chan ? rx_chan->device->copy_align : 0,
			 tx_chan ? tx_chan->device->copy_align : 0);
2056

2057
	/* If DMA engine usage is possible, try to find the max size for that */
2058 2059
	max_size = qp->tx_max_frame - sizeof(struct ntb_payload_header);
	max_size = round_down(max_size, 1 << copy_align);
2060

2061
	return max_size;
2062 2063
}
EXPORT_SYMBOL_GPL(ntb_transport_max_size);
2064

2065 2066 2067 2068 2069 2070 2071 2072 2073
unsigned int ntb_transport_tx_free_entry(struct ntb_transport_qp *qp)
{
	unsigned int head = qp->tx_index;
	unsigned int tail = qp->remote_rx_info->entry;

	return tail > head ? tail - head : qp->tx_max_entry + tail - head;
}
EXPORT_SYMBOL_GPL(ntb_transport_tx_free_entry);

2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087
static void ntb_transport_doorbell_callback(void *data, int vector)
{
	struct ntb_transport_ctx *nt = data;
	struct ntb_transport_qp *qp;
	u64 db_bits;
	unsigned int qp_num;

	db_bits = (nt->qp_bitmap & ~nt->qp_bitmap_free &
		   ntb_db_vector_mask(nt->ndev, vector));

	while (db_bits) {
		qp_num = __ffs(db_bits);
		qp = &nt->qp_vec[qp_num];

2088 2089
		if (qp->active)
			tasklet_schedule(&qp->rxc_db_work);
2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110

		db_bits &= ~BIT_ULL(qp_num);
	}
}

static const struct ntb_ctx_ops ntb_transport_ops = {
	.link_event = ntb_transport_event_callback,
	.db_event = ntb_transport_doorbell_callback,
};

static struct ntb_client ntb_transport_client = {
	.ops = {
		.probe = ntb_transport_probe,
		.remove = ntb_transport_free,
	},
};

static int __init ntb_transport_init(void)
{
	int rc;

2111 2112
	pr_info("%s, version %s\n", NTB_TRANSPORT_DESC, NTB_TRANSPORT_VER);

2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141
	if (debugfs_initialized())
		nt_debugfs_dir = debugfs_create_dir(KBUILD_MODNAME, NULL);

	rc = bus_register(&ntb_transport_bus);
	if (rc)
		goto err_bus;

	rc = ntb_register_client(&ntb_transport_client);
	if (rc)
		goto err_client;

	return 0;

err_client:
	bus_unregister(&ntb_transport_bus);
err_bus:
	debugfs_remove_recursive(nt_debugfs_dir);
	return rc;
}
module_init(ntb_transport_init);

static void __exit ntb_transport_exit(void)
{
	debugfs_remove_recursive(nt_debugfs_dir);

	ntb_unregister_client(&ntb_transport_client);
	bus_unregister(&ntb_transport_bus);
}
module_exit(ntb_transport_exit);