iwch.c 7.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
/*
 * Copyright (c) 2006 Chelsio, Inc. All rights reserved.
 *
 * This software is available to you under a choice of one of two
 * licenses.  You may choose to be licensed under the terms of the GNU
 * General Public License (GPL) Version 2, available from the file
 * COPYING in the main directory of this source tree, or the
 * OpenIB.org BSD license below:
 *
 *     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
 *        copyright notice, this list of conditions and the following
 *        disclaimer in the documentation and/or other materials
 *        provided with the distribution.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */
#include <linux/module.h>
#include <linux/moduleparam.h>

#include <rdma/ib_verbs.h>

#include "cxgb3_offload.h"
#include "iwch_provider.h"
39
#include <rdma/cxgb3-abi.h>
40 41 42 43 44 45 46 47 48 49 50
#include "iwch.h"
#include "iwch_cm.h"

#define DRV_VERSION "1.1"

MODULE_AUTHOR("Boyd Faulkner, Steve Wise");
MODULE_DESCRIPTION("Chelsio T3 RDMA Driver");
MODULE_LICENSE("Dual BSD/GPL");

static void open_rnic_dev(struct t3cdev *);
static void close_rnic_dev(struct t3cdev *);
51
static void iwch_event_handler(struct t3cdev *, u32, u32);
52 53 54 55 56 57

struct cxgb3_client t3c_client = {
	.name = "iw_cxgb3",
	.add = open_rnic_dev,
	.remove = close_rnic_dev,
	.handlers = t3c_handlers,
58
	.redirect = iwch_ep_redirect,
59
	.event_handler = iwch_event_handler
60 61 62 63 64
};

static LIST_HEAD(dev_list);
static DEFINE_MUTEX(dev_mutex);

65 66
static void disable_dbs(struct iwch_dev *rnicp)
{
M
Matthew Wilcox 已提交
67 68 69 70 71 72 73
	unsigned long index;
	struct iwch_qp *qhp;

	xa_lock_irq(&rnicp->qps);
	xa_for_each(&rnicp->qps, index, qhp)
		cxio_disable_wq_db(&qhp->wq);
	xa_unlock_irq(&rnicp->qps);
74 75 76 77
}

static void enable_dbs(struct iwch_dev *rnicp, int ring_db)
{
M
Matthew Wilcox 已提交
78 79 80 81 82 83 84 85 86 87 88
	unsigned long index;
	struct iwch_qp *qhp;

	xa_lock_irq(&rnicp->qps);
	xa_for_each(&rnicp->qps, index, qhp) {
		if (ring_db)
			ring_doorbell(qhp->rhp->rdev.ctrl_qp.doorbell,
					qhp->wq.qpid);
		cxio_enable_wq_db(&qhp->wq);
	}
	xa_unlock_irq(&rnicp->qps);
89 90 91 92 93 94 95 96 97
}

static void iwch_db_drop_task(struct work_struct *work)
{
	struct iwch_dev *rnicp = container_of(work, struct iwch_dev,
					      db_drop_task.work);
	enable_dbs(rnicp, 1);
}

98 99
static void rnic_init(struct iwch_dev *rnicp)
{
J
Joe Perches 已提交
100
	pr_debug("%s iwch_dev %p\n", __func__,  rnicp);
M
Matthew Wilcox 已提交
101
	xa_init_flags(&rnicp->cqs, XA_FLAGS_LOCK_IRQ);
M
Matthew Wilcox 已提交
102
	xa_init_flags(&rnicp->qps, XA_FLAGS_LOCK_IRQ);
M
Matthew Wilcox 已提交
103
	xa_init_flags(&rnicp->mrs, XA_FLAGS_LOCK_IRQ);
104
	INIT_DELAYED_WORK(&rnicp->db_drop_task, iwch_db_drop_task);
105 106

	rnicp->attr.max_qps = T3_MAX_NUM_QP - 32;
107
	rnicp->attr.max_wrs = T3_MAX_QP_DEPTH;
108 109 110
	rnicp->attr.max_sge_per_wr = T3_MAX_SGE;
	rnicp->attr.max_sge_per_rdma_write_wr = T3_MAX_SGE;
	rnicp->attr.max_cqs = T3_MAX_NUM_CQ - 1;
111
	rnicp->attr.max_cqes_per_cq = T3_MAX_CQ_DEPTH;
112 113 114
	rnicp->attr.max_mem_regs = cxio_num_stags(&rnicp->rdev);
	rnicp->attr.max_phys_buf_entries = T3_MAX_PBL_SIZE;
	rnicp->attr.max_pds = T3_MAX_NUM_PD - 1;
115
	rnicp->attr.mem_pgsizes_bitmask = T3_PAGESIZE_MASK;
116
	rnicp->attr.max_mr_size = T3_MAX_MR_SIZE;
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
	rnicp->attr.can_resize_wq = 0;
	rnicp->attr.max_rdma_reads_per_qp = 8;
	rnicp->attr.max_rdma_read_resources =
	    rnicp->attr.max_rdma_reads_per_qp * rnicp->attr.max_qps;
	rnicp->attr.max_rdma_read_qp_depth = 8;	/* IRD */
	rnicp->attr.max_rdma_read_depth =
	    rnicp->attr.max_rdma_read_qp_depth * rnicp->attr.max_qps;
	rnicp->attr.rq_overflow_handled = 0;
	rnicp->attr.can_modify_ird = 0;
	rnicp->attr.can_modify_ord = 0;
	rnicp->attr.max_mem_windows = rnicp->attr.max_mem_regs - 1;
	rnicp->attr.stag0_value = 1;
	rnicp->attr.zbva_support = 1;
	rnicp->attr.local_invalidate_fence = 1;
	rnicp->attr.cq_overflow_detection = 1;
	return;
}

static void open_rnic_dev(struct t3cdev *tdev)
{
	struct iwch_dev *rnicp;

J
Joe Perches 已提交
139
	pr_debug("%s t3cdev %p\n", __func__,  tdev);
140
	pr_info_once("Chelsio T3 RDMA Driver - version %s\n", DRV_VERSION);
141
	rnicp = ib_alloc_device(iwch_dev, ibdev);
142
	if (!rnicp) {
143
		pr_err("Cannot allocate ib device\n");
144 145 146 147 148 149 150 151 152
		return;
	}
	rnicp->rdev.ulp = rnicp;
	rnicp->rdev.t3cdev_p = tdev;

	mutex_lock(&dev_mutex);

	if (cxio_rdev_open(&rnicp->rdev)) {
		mutex_unlock(&dev_mutex);
153
		pr_err("Unable to open CXIO rdev\n");
154 155 156 157 158 159 160 161 162 163
		ib_dealloc_device(&rnicp->ibdev);
		return;
	}

	rnic_init(rnicp);

	list_add_tail(&rnicp->entry, &dev_list);
	mutex_unlock(&dev_mutex);

	if (iwch_register_device(rnicp)) {
164
		pr_err("Unable to register device\n");
165 166
		close_rnic_dev(tdev);
	}
167 168
	pr_info("Initialized device %s\n",
		pci_name(rnicp->rdev.rnic_info.pdev));
169 170 171 172 173 174
	return;
}

static void close_rnic_dev(struct t3cdev *tdev)
{
	struct iwch_dev *dev, *tmp;
J
Joe Perches 已提交
175
	pr_debug("%s t3cdev %p\n", __func__,  tdev);
176 177 178
	mutex_lock(&dev_mutex);
	list_for_each_entry_safe(dev, tmp, &dev_list, entry) {
		if (dev->rdev.t3cdev_p == tdev) {
179
			dev->rdev.flags = CXIO_ERROR_FATAL;
180
			synchronize_net();
181
			cancel_delayed_work_sync(&dev->db_drop_task);
182 183 184
			list_del(&dev->entry);
			iwch_unregister_device(dev);
			cxio_rdev_close(&dev->rdev);
M
Matthew Wilcox 已提交
185
			WARN_ON(!xa_empty(&dev->cqs));
M
Matthew Wilcox 已提交
186
			WARN_ON(!xa_empty(&dev->qps));
M
Matthew Wilcox 已提交
187
			WARN_ON(!xa_empty(&dev->mrs));
188 189 190 191 192 193 194
			ib_dealloc_device(&dev->ibdev);
			break;
		}
	}
	mutex_unlock(&dev_mutex);
}

195
static void iwch_event_handler(struct t3cdev *tdev, u32 evt, u32 port_id)
196 197
{
	struct cxio_rdev *rdev = tdev->ulp;
198
	struct iwch_dev *rnicp;
S
Steve Wise 已提交
199
	struct ib_event event;
200 201
	u32 portnum = port_id + 1;
	int dispatch = 0;
202

203 204 205
	if (!rdev)
		return;
	rnicp = rdev_to_iwch_dev(rdev);
206 207
	switch (evt) {
	case OFFLOAD_STATUS_DOWN: {
208
		rdev->flags = CXIO_ERROR_FATAL;
209
		synchronize_net();
S
Steve Wise 已提交
210
		event.event  = IB_EVENT_DEVICE_FATAL;
211
		dispatch = 1;
212 213 214 215
		break;
		}
	case OFFLOAD_PORT_DOWN: {
		event.event  = IB_EVENT_PORT_ERR;
216
		dispatch = 1;
217 218 219 220
		break;
		}
	case OFFLOAD_PORT_UP: {
		event.event  = IB_EVENT_PORT_ACTIVE;
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
		dispatch = 1;
		break;
		}
	case OFFLOAD_DB_FULL: {
		disable_dbs(rnicp);
		break;
		}
	case OFFLOAD_DB_EMPTY: {
		enable_dbs(rnicp, 1);
		break;
		}
	case OFFLOAD_DB_DROP: {
		unsigned long delay = 1000;
		unsigned short r;

		disable_dbs(rnicp);
		get_random_bytes(&r, 2);
		delay += r & 1023;

		/*
		 * delay is between 1000-2023 usecs.
		 */
		schedule_delayed_work(&rnicp->db_drop_task,
			usecs_to_jiffies(delay));
245 246
		break;
		}
S
Steve Wise 已提交
247
	}
248

249 250 251 252 253
	if (dispatch) {
		event.device = &rnicp->ibdev;
		event.element.port_num = portnum;
		ib_dispatch_event(&event);
	}
254

S
Steve Wise 已提交
255
	return;
256 257
}

258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
static int __init iwch_init_module(void)
{
	int err;

	err = cxio_hal_init();
	if (err)
		return err;
	err = iwch_cm_init();
	if (err)
		return err;
	cxio_register_ev_cb(iwch_ev_dispatch);
	cxgb3_register_client(&t3c_client);
	return 0;
}

static void __exit iwch_exit_module(void)
{
	cxgb3_unregister_client(&t3c_client);
	cxio_unregister_ev_cb(iwch_ev_dispatch);
	iwch_cm_term();
	cxio_hal_exit();
}

module_init(iwch_init_module);
module_exit(iwch_exit_module);