blob: b99dc9e0ffb2395bbf46636ea7c232ca892b2687 [file] [log] [blame]
Steve Wisecfdda9d2010-04-21 15:30:06 -07001/*
2 * Copyright (c) 2009-2010 Chelsio, Inc. All rights reserved.
3 *
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
31 */
32#include <linux/module.h>
33#include <linux/moduleparam.h>
34#include <linux/debugfs.h>
Vipul Pandyae5725682012-05-21 17:31:13 +053035#include <linux/vmalloc.h>
Hariprasad Shenaida388972014-07-17 22:31:03 +053036#include <linux/math64.h>
Steve Wisecfdda9d2010-04-21 15:30:06 -070037
38#include <rdma/ib_verbs.h>
39
40#include "iw_cxgb4.h"
41
42#define DRV_VERSION "0.1"
43
44MODULE_AUTHOR("Steve Wise");
Vipul Pandyaf079af72013-03-14 05:08:58 +000045MODULE_DESCRIPTION("Chelsio T4/T5 RDMA Driver");
Steve Wisecfdda9d2010-04-21 15:30:06 -070046MODULE_LICENSE("Dual BSD/GPL");
47MODULE_VERSION(DRV_VERSION);
48
Vipul Pandya80ccdd62013-03-14 05:09:00 +000049static int allow_db_fc_on_t5;
50module_param(allow_db_fc_on_t5, int, 0644);
51MODULE_PARM_DESC(allow_db_fc_on_t5,
52 "Allow DB Flow Control on T5 (default = 0)");
53
54static int allow_db_coalescing_on_t5;
55module_param(allow_db_coalescing_on_t5, int, 0644);
56MODULE_PARM_DESC(allow_db_coalescing_on_t5,
57 "Allow DB Coalescing on T5 (default = 0)");
58
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +053059int c4iw_wr_log = 0;
60module_param(c4iw_wr_log, int, 0444);
61MODULE_PARM_DESC(c4iw_wr_log, "Enables logging of work request timing data.");
62
Steve Wise65d4c012014-08-29 11:19:29 -050063static int c4iw_wr_log_size_order = 12;
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +053064module_param(c4iw_wr_log_size_order, int, 0444);
65MODULE_PARM_DESC(c4iw_wr_log_size_order,
66 "Number of entries (log2) in the work request timing log.");
67
Vipul Pandya2c974782012-05-18 15:29:28 +053068struct uld_ctx {
69 struct list_head entry;
70 struct cxgb4_lld_info lldi;
71 struct c4iw_dev *dev;
72};
73
Steve Wise2f25e9a2011-05-09 22:06:23 -070074static LIST_HEAD(uld_ctx_list);
Steve Wisecfdda9d2010-04-21 15:30:06 -070075static DEFINE_MUTEX(dev_mutex);
76
Steve Wise05eb2382014-03-14 21:52:08 +053077#define DB_FC_RESUME_SIZE 64
78#define DB_FC_RESUME_DELAY 1
79#define DB_FC_DRAIN_THRESH 0
80
Steve Wisecfdda9d2010-04-21 15:30:06 -070081static struct dentry *c4iw_debugfs_root;
82
Steve Wise9e8d1fa32010-09-10 11:15:20 -050083struct c4iw_debugfs_data {
Steve Wisecfdda9d2010-04-21 15:30:06 -070084 struct c4iw_dev *devp;
85 char *buf;
86 int bufsize;
87 int pos;
88};
89
Steve Wise9e8d1fa32010-09-10 11:15:20 -050090static int count_idrs(int id, void *p, void *data)
Steve Wisecfdda9d2010-04-21 15:30:06 -070091{
Steve Wisecfdda9d2010-04-21 15:30:06 -070092 int *countp = data;
93
Steve Wisecfdda9d2010-04-21 15:30:06 -070094 *countp = *countp + 1;
95 return 0;
96}
97
Steve Wise9e8d1fa32010-09-10 11:15:20 -050098static ssize_t debugfs_read(struct file *file, char __user *buf, size_t count,
99 loff_t *ppos)
100{
101 struct c4iw_debugfs_data *d = file->private_data;
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500102
Steve Wise31609772010-09-29 18:21:33 +0000103 return simple_read_from_buffer(buf, count, ppos, d->buf, d->pos);
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500104}
105
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +0530106void c4iw_log_wr_stats(struct t4_wq *wq, struct t4_cqe *cqe)
107{
108 struct wr_log_entry le;
109 int idx;
110
111 if (!wq->rdev->wr_log)
112 return;
113
114 idx = (atomic_inc_return(&wq->rdev->wr_log_idx) - 1) &
115 (wq->rdev->wr_log_size - 1);
116 le.poll_sge_ts = cxgb4_read_sge_timestamp(wq->rdev->lldi.ports[0]);
117 getnstimeofday(&le.poll_host_ts);
118 le.valid = 1;
119 le.cqe_sge_ts = CQE_TS(cqe);
120 if (SQ_TYPE(cqe)) {
121 le.qid = wq->sq.qid;
122 le.opcode = CQE_OPCODE(cqe);
123 le.post_host_ts = wq->sq.sw_sq[wq->sq.cidx].host_ts;
124 le.post_sge_ts = wq->sq.sw_sq[wq->sq.cidx].sge_ts;
125 le.wr_id = CQE_WRID_SQ_IDX(cqe);
126 } else {
127 le.qid = wq->rq.qid;
128 le.opcode = FW_RI_RECEIVE;
129 le.post_host_ts = wq->rq.sw_rq[wq->rq.cidx].host_ts;
130 le.post_sge_ts = wq->rq.sw_rq[wq->rq.cidx].sge_ts;
131 le.wr_id = CQE_WRID_MSN(cqe);
132 }
133 wq->rdev->wr_log[idx] = le;
134}
135
136static int wr_log_show(struct seq_file *seq, void *v)
137{
138 struct c4iw_dev *dev = seq->private;
139 struct timespec prev_ts = {0, 0};
140 struct wr_log_entry *lep;
141 int prev_ts_set = 0;
142 int idx, end;
143
Hariprasad S6198dd82015-04-22 01:44:59 +0530144#define ts2ns(ts) div64_u64((ts) * dev->rdev.lldi.cclk_ps, 1000)
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +0530145
146 idx = atomic_read(&dev->rdev.wr_log_idx) &
147 (dev->rdev.wr_log_size - 1);
148 end = idx - 1;
149 if (end < 0)
150 end = dev->rdev.wr_log_size - 1;
151 lep = &dev->rdev.wr_log[idx];
152 while (idx != end) {
153 if (lep->valid) {
154 if (!prev_ts_set) {
155 prev_ts_set = 1;
156 prev_ts = lep->poll_host_ts;
157 }
158 seq_printf(seq, "%04u: sec %lu nsec %lu qid %u opcode "
159 "%u %s 0x%x host_wr_delta sec %lu nsec %lu "
160 "post_sge_ts 0x%llx cqe_sge_ts 0x%llx "
161 "poll_sge_ts 0x%llx post_poll_delta_ns %llu "
162 "cqe_poll_delta_ns %llu\n",
163 idx,
164 timespec_sub(lep->poll_host_ts,
165 prev_ts).tv_sec,
166 timespec_sub(lep->poll_host_ts,
167 prev_ts).tv_nsec,
168 lep->qid, lep->opcode,
169 lep->opcode == FW_RI_RECEIVE ?
170 "msn" : "wrid",
171 lep->wr_id,
172 timespec_sub(lep->poll_host_ts,
173 lep->post_host_ts).tv_sec,
174 timespec_sub(lep->poll_host_ts,
175 lep->post_host_ts).tv_nsec,
176 lep->post_sge_ts, lep->cqe_sge_ts,
177 lep->poll_sge_ts,
178 ts2ns(lep->poll_sge_ts - lep->post_sge_ts),
179 ts2ns(lep->poll_sge_ts - lep->cqe_sge_ts));
180 prev_ts = lep->poll_host_ts;
181 }
182 idx++;
183 if (idx > (dev->rdev.wr_log_size - 1))
184 idx = 0;
185 lep = &dev->rdev.wr_log[idx];
186 }
187#undef ts2ns
188 return 0;
189}
190
191static int wr_log_open(struct inode *inode, struct file *file)
192{
193 return single_open(file, wr_log_show, inode->i_private);
194}
195
196static ssize_t wr_log_clear(struct file *file, const char __user *buf,
197 size_t count, loff_t *pos)
198{
199 struct c4iw_dev *dev = ((struct seq_file *)file->private_data)->private;
200 int i;
201
202 if (dev->rdev.wr_log)
203 for (i = 0; i < dev->rdev.wr_log_size; i++)
204 dev->rdev.wr_log[i].valid = 0;
205 return count;
206}
207
208static const struct file_operations wr_log_debugfs_fops = {
209 .owner = THIS_MODULE,
210 .open = wr_log_open,
211 .release = single_release,
212 .read = seq_read,
213 .llseek = seq_lseek,
214 .write = wr_log_clear,
215};
216
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500217static int dump_qp(int id, void *p, void *data)
Steve Wisecfdda9d2010-04-21 15:30:06 -0700218{
219 struct c4iw_qp *qp = p;
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500220 struct c4iw_debugfs_data *qpd = data;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700221 int space;
222 int cc;
223
224 if (id != qp->wq.sq.qid)
225 return 0;
226
227 space = qpd->bufsize - qpd->pos - 1;
228 if (space == 0)
229 return 1;
230
Vipul Pandya830662f2013-07-04 16:10:47 +0530231 if (qp->ep) {
232 if (qp->ep->com.local_addr.ss_family == AF_INET) {
233 struct sockaddr_in *lsin = (struct sockaddr_in *)
Steve Wise170003c2016-02-26 09:18:03 -0600234 &qp->ep->com.cm_id->local_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +0530235 struct sockaddr_in *rsin = (struct sockaddr_in *)
Steve Wise170003c2016-02-26 09:18:03 -0600236 &qp->ep->com.cm_id->remote_addr;
Steve Wise9eccfe12014-03-26 17:08:09 -0500237 struct sockaddr_in *mapped_lsin = (struct sockaddr_in *)
Steve Wise170003c2016-02-26 09:18:03 -0600238 &qp->ep->com.cm_id->m_local_addr;
Steve Wise9eccfe12014-03-26 17:08:09 -0500239 struct sockaddr_in *mapped_rsin = (struct sockaddr_in *)
Steve Wise170003c2016-02-26 09:18:03 -0600240 &qp->ep->com.cm_id->m_remote_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +0530241
242 cc = snprintf(qpd->buf + qpd->pos, space,
243 "rc qp sq id %u rq id %u state %u "
244 "onchip %u ep tid %u state %u "
Steve Wise9eccfe12014-03-26 17:08:09 -0500245 "%pI4:%u/%u->%pI4:%u/%u\n",
Vipul Pandya830662f2013-07-04 16:10:47 +0530246 qp->wq.sq.qid, qp->wq.rq.qid,
247 (int)qp->attr.state,
248 qp->wq.sq.flags & T4_SQ_ONCHIP,
249 qp->ep->hwtid, (int)qp->ep->com.state,
250 &lsin->sin_addr, ntohs(lsin->sin_port),
Steve Wise9eccfe12014-03-26 17:08:09 -0500251 ntohs(mapped_lsin->sin_port),
252 &rsin->sin_addr, ntohs(rsin->sin_port),
253 ntohs(mapped_rsin->sin_port));
Vipul Pandya830662f2013-07-04 16:10:47 +0530254 } else {
255 struct sockaddr_in6 *lsin6 = (struct sockaddr_in6 *)
Steve Wise170003c2016-02-26 09:18:03 -0600256 &qp->ep->com.cm_id->local_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +0530257 struct sockaddr_in6 *rsin6 = (struct sockaddr_in6 *)
Steve Wise170003c2016-02-26 09:18:03 -0600258 &qp->ep->com.cm_id->remote_addr;
Steve Wise9eccfe12014-03-26 17:08:09 -0500259 struct sockaddr_in6 *mapped_lsin6 =
260 (struct sockaddr_in6 *)
Steve Wise170003c2016-02-26 09:18:03 -0600261 &qp->ep->com.cm_id->m_local_addr;
Steve Wise9eccfe12014-03-26 17:08:09 -0500262 struct sockaddr_in6 *mapped_rsin6 =
263 (struct sockaddr_in6 *)
Steve Wise170003c2016-02-26 09:18:03 -0600264 &qp->ep->com.cm_id->m_remote_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +0530265
266 cc = snprintf(qpd->buf + qpd->pos, space,
267 "rc qp sq id %u rq id %u state %u "
268 "onchip %u ep tid %u state %u "
Steve Wise9eccfe12014-03-26 17:08:09 -0500269 "%pI6:%u/%u->%pI6:%u/%u\n",
Vipul Pandya830662f2013-07-04 16:10:47 +0530270 qp->wq.sq.qid, qp->wq.rq.qid,
271 (int)qp->attr.state,
272 qp->wq.sq.flags & T4_SQ_ONCHIP,
273 qp->ep->hwtid, (int)qp->ep->com.state,
274 &lsin6->sin6_addr,
275 ntohs(lsin6->sin6_port),
Steve Wise9eccfe12014-03-26 17:08:09 -0500276 ntohs(mapped_lsin6->sin6_port),
Vipul Pandya830662f2013-07-04 16:10:47 +0530277 &rsin6->sin6_addr,
Steve Wise9eccfe12014-03-26 17:08:09 -0500278 ntohs(rsin6->sin6_port),
279 ntohs(mapped_rsin6->sin6_port));
Vipul Pandya830662f2013-07-04 16:10:47 +0530280 }
281 } else
Steve Wisedb5d0402011-03-11 22:29:50 +0000282 cc = snprintf(qpd->buf + qpd->pos, space,
283 "qp sq id %u rq id %u state %u onchip %u\n",
284 qp->wq.sq.qid, qp->wq.rq.qid,
285 (int)qp->attr.state,
286 qp->wq.sq.flags & T4_SQ_ONCHIP);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700287 if (cc < space)
288 qpd->pos += cc;
289 return 0;
290}
291
292static int qp_release(struct inode *inode, struct file *file)
293{
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500294 struct c4iw_debugfs_data *qpd = file->private_data;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700295 if (!qpd) {
296 printk(KERN_INFO "%s null qpd?\n", __func__);
297 return 0;
298 }
Vipul Pandyad716a2a2012-05-18 15:29:31 +0530299 vfree(qpd->buf);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700300 kfree(qpd);
301 return 0;
302}
303
304static int qp_open(struct inode *inode, struct file *file)
305{
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500306 struct c4iw_debugfs_data *qpd;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700307 int count = 1;
308
309 qpd = kmalloc(sizeof *qpd, GFP_KERNEL);
Hariprasad S4275a5b2016-01-12 16:33:22 +0530310 if (!qpd)
311 return -ENOMEM;
312
Steve Wisecfdda9d2010-04-21 15:30:06 -0700313 qpd->devp = inode->i_private;
314 qpd->pos = 0;
315
316 spin_lock_irq(&qpd->devp->lock);
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500317 idr_for_each(&qpd->devp->qpidr, count_idrs, &count);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700318 spin_unlock_irq(&qpd->devp->lock);
319
Hariprasad S68cebca2016-06-10 01:05:12 +0530320 qpd->bufsize = count * 180;
Vipul Pandyad716a2a2012-05-18 15:29:31 +0530321 qpd->buf = vmalloc(qpd->bufsize);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700322 if (!qpd->buf) {
Hariprasad S4275a5b2016-01-12 16:33:22 +0530323 kfree(qpd);
324 return -ENOMEM;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700325 }
326
327 spin_lock_irq(&qpd->devp->lock);
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500328 idr_for_each(&qpd->devp->qpidr, dump_qp, qpd);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700329 spin_unlock_irq(&qpd->devp->lock);
330
331 qpd->buf[qpd->pos++] = 0;
332 file->private_data = qpd;
Hariprasad S4275a5b2016-01-12 16:33:22 +0530333 return 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700334}
335
Steve Wisecfdda9d2010-04-21 15:30:06 -0700336static const struct file_operations qp_debugfs_fops = {
337 .owner = THIS_MODULE,
338 .open = qp_open,
339 .release = qp_release,
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500340 .read = debugfs_read,
Steve Wise8bbac892010-09-29 14:11:12 +0000341 .llseek = default_llseek,
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500342};
343
344static int dump_stag(int id, void *p, void *data)
345{
346 struct c4iw_debugfs_data *stagd = data;
347 int space;
348 int cc;
Hariprasad Shenai031cf472014-07-14 21:34:53 +0530349 struct fw_ri_tpte tpte;
350 int ret;
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500351
352 space = stagd->bufsize - stagd->pos - 1;
353 if (space == 0)
354 return 1;
355
Hariprasad Shenai031cf472014-07-14 21:34:53 +0530356 ret = cxgb4_read_tpte(stagd->devp->rdev.lldi.ports[0], (u32)id<<8,
357 (__be32 *)&tpte);
358 if (ret) {
359 dev_err(&stagd->devp->rdev.lldi.pdev->dev,
360 "%s cxgb4_read_tpte err %d\n", __func__, ret);
361 return ret;
362 }
363 cc = snprintf(stagd->buf + stagd->pos, space,
364 "stag: idx 0x%x valid %d key 0x%x state %d pdid %d "
365 "perm 0x%x ps %d len 0x%llx va 0x%llx\n",
366 (u32)id<<8,
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +0530367 FW_RI_TPTE_VALID_G(ntohl(tpte.valid_to_pdid)),
368 FW_RI_TPTE_STAGKEY_G(ntohl(tpte.valid_to_pdid)),
369 FW_RI_TPTE_STAGSTATE_G(ntohl(tpte.valid_to_pdid)),
370 FW_RI_TPTE_PDID_G(ntohl(tpte.valid_to_pdid)),
371 FW_RI_TPTE_PERM_G(ntohl(tpte.locread_to_qpid)),
372 FW_RI_TPTE_PS_G(ntohl(tpte.locread_to_qpid)),
Hariprasad Shenai031cf472014-07-14 21:34:53 +0530373 ((u64)ntohl(tpte.len_hi) << 32) | ntohl(tpte.len_lo),
374 ((u64)ntohl(tpte.va_hi) << 32) | ntohl(tpte.va_lo_fbo));
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500375 if (cc < space)
376 stagd->pos += cc;
377 return 0;
378}
379
380static int stag_release(struct inode *inode, struct file *file)
381{
382 struct c4iw_debugfs_data *stagd = file->private_data;
383 if (!stagd) {
384 printk(KERN_INFO "%s null stagd?\n", __func__);
385 return 0;
386 }
Hariprasad Shenai031cf472014-07-14 21:34:53 +0530387 vfree(stagd->buf);
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500388 kfree(stagd);
389 return 0;
390}
391
392static int stag_open(struct inode *inode, struct file *file)
393{
394 struct c4iw_debugfs_data *stagd;
395 int ret = 0;
396 int count = 1;
397
398 stagd = kmalloc(sizeof *stagd, GFP_KERNEL);
399 if (!stagd) {
400 ret = -ENOMEM;
401 goto out;
402 }
403 stagd->devp = inode->i_private;
404 stagd->pos = 0;
405
406 spin_lock_irq(&stagd->devp->lock);
407 idr_for_each(&stagd->devp->mmidr, count_idrs, &count);
408 spin_unlock_irq(&stagd->devp->lock);
409
Hariprasad Shenai031cf472014-07-14 21:34:53 +0530410 stagd->bufsize = count * 256;
411 stagd->buf = vmalloc(stagd->bufsize);
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500412 if (!stagd->buf) {
413 ret = -ENOMEM;
414 goto err1;
415 }
416
417 spin_lock_irq(&stagd->devp->lock);
418 idr_for_each(&stagd->devp->mmidr, dump_stag, stagd);
419 spin_unlock_irq(&stagd->devp->lock);
420
421 stagd->buf[stagd->pos++] = 0;
422 file->private_data = stagd;
423 goto out;
424err1:
425 kfree(stagd);
426out:
427 return ret;
428}
429
430static const struct file_operations stag_debugfs_fops = {
431 .owner = THIS_MODULE,
432 .open = stag_open,
433 .release = stag_release,
434 .read = debugfs_read,
Steve Wise8bbac892010-09-29 14:11:12 +0000435 .llseek = default_llseek,
Steve Wisecfdda9d2010-04-21 15:30:06 -0700436};
437
Steve Wise05eb2382014-03-14 21:52:08 +0530438static char *db_state_str[] = {"NORMAL", "FLOW_CONTROL", "RECOVERY", "STOPPED"};
Vipul Pandya422eea02012-05-18 15:29:30 +0530439
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530440static int stats_show(struct seq_file *seq, void *v)
441{
442 struct c4iw_dev *dev = seq->private;
443
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530444 seq_printf(seq, " Object: %10s %10s %10s %10s\n", "Total", "Current",
445 "Max", "Fail");
446 seq_printf(seq, " PDID: %10llu %10llu %10llu %10llu\n",
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530447 dev->rdev.stats.pd.total, dev->rdev.stats.pd.cur,
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530448 dev->rdev.stats.pd.max, dev->rdev.stats.pd.fail);
449 seq_printf(seq, " QID: %10llu %10llu %10llu %10llu\n",
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530450 dev->rdev.stats.qid.total, dev->rdev.stats.qid.cur,
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530451 dev->rdev.stats.qid.max, dev->rdev.stats.qid.fail);
452 seq_printf(seq, " TPTMEM: %10llu %10llu %10llu %10llu\n",
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530453 dev->rdev.stats.stag.total, dev->rdev.stats.stag.cur,
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530454 dev->rdev.stats.stag.max, dev->rdev.stats.stag.fail);
455 seq_printf(seq, " PBLMEM: %10llu %10llu %10llu %10llu\n",
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530456 dev->rdev.stats.pbl.total, dev->rdev.stats.pbl.cur,
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530457 dev->rdev.stats.pbl.max, dev->rdev.stats.pbl.fail);
458 seq_printf(seq, " RQTMEM: %10llu %10llu %10llu %10llu\n",
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530459 dev->rdev.stats.rqt.total, dev->rdev.stats.rqt.cur,
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530460 dev->rdev.stats.rqt.max, dev->rdev.stats.rqt.fail);
461 seq_printf(seq, " OCQPMEM: %10llu %10llu %10llu %10llu\n",
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530462 dev->rdev.stats.ocqp.total, dev->rdev.stats.ocqp.cur,
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530463 dev->rdev.stats.ocqp.max, dev->rdev.stats.ocqp.fail);
Vipul Pandya2c974782012-05-18 15:29:28 +0530464 seq_printf(seq, " DB FULL: %10llu\n", dev->rdev.stats.db_full);
465 seq_printf(seq, " DB EMPTY: %10llu\n", dev->rdev.stats.db_empty);
466 seq_printf(seq, " DB DROP: %10llu\n", dev->rdev.stats.db_drop);
Steve Wise05eb2382014-03-14 21:52:08 +0530467 seq_printf(seq, " DB State: %s Transitions %llu FC Interruptions %llu\n",
Vipul Pandya422eea02012-05-18 15:29:30 +0530468 db_state_str[dev->db_state],
Steve Wise05eb2382014-03-14 21:52:08 +0530469 dev->rdev.stats.db_state_transitions,
470 dev->rdev.stats.db_fc_interruptions);
Vipul Pandya1cab7752012-12-10 09:30:55 +0000471 seq_printf(seq, "TCAM_FULL: %10llu\n", dev->rdev.stats.tcam_full);
Vipul Pandya793dad92012-12-10 09:30:56 +0000472 seq_printf(seq, "ACT_OFLD_CONN_FAILS: %10llu\n",
473 dev->rdev.stats.act_ofld_conn_fails);
474 seq_printf(seq, "PAS_OFLD_CONN_FAILS: %10llu\n",
475 dev->rdev.stats.pas_ofld_conn_fails);
Hariprasad S179d03b2015-05-05 03:55:24 +0530476 seq_printf(seq, "NEG_ADV_RCVD: %10llu\n", dev->rdev.stats.neg_adv);
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +0530477 seq_printf(seq, "AVAILABLE IRD: %10u\n", dev->avail_ird);
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530478 return 0;
479}
480
481static int stats_open(struct inode *inode, struct file *file)
482{
483 return single_open(file, stats_show, inode->i_private);
484}
485
486static ssize_t stats_clear(struct file *file, const char __user *buf,
487 size_t count, loff_t *pos)
488{
489 struct c4iw_dev *dev = ((struct seq_file *)file->private_data)->private;
490
491 mutex_lock(&dev->rdev.stats.lock);
492 dev->rdev.stats.pd.max = 0;
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530493 dev->rdev.stats.pd.fail = 0;
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530494 dev->rdev.stats.qid.max = 0;
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530495 dev->rdev.stats.qid.fail = 0;
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530496 dev->rdev.stats.stag.max = 0;
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530497 dev->rdev.stats.stag.fail = 0;
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530498 dev->rdev.stats.pbl.max = 0;
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530499 dev->rdev.stats.pbl.fail = 0;
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530500 dev->rdev.stats.rqt.max = 0;
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530501 dev->rdev.stats.rqt.fail = 0;
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530502 dev->rdev.stats.ocqp.max = 0;
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530503 dev->rdev.stats.ocqp.fail = 0;
Vipul Pandya2c974782012-05-18 15:29:28 +0530504 dev->rdev.stats.db_full = 0;
505 dev->rdev.stats.db_empty = 0;
506 dev->rdev.stats.db_drop = 0;
Vipul Pandya422eea02012-05-18 15:29:30 +0530507 dev->rdev.stats.db_state_transitions = 0;
Vipul Pandya793dad92012-12-10 09:30:56 +0000508 dev->rdev.stats.tcam_full = 0;
509 dev->rdev.stats.act_ofld_conn_fails = 0;
510 dev->rdev.stats.pas_ofld_conn_fails = 0;
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530511 mutex_unlock(&dev->rdev.stats.lock);
512 return count;
513}
514
515static const struct file_operations stats_debugfs_fops = {
516 .owner = THIS_MODULE,
517 .open = stats_open,
518 .release = single_release,
519 .read = seq_read,
520 .llseek = seq_lseek,
521 .write = stats_clear,
522};
523
Vipul Pandya793dad92012-12-10 09:30:56 +0000524static int dump_ep(int id, void *p, void *data)
525{
526 struct c4iw_ep *ep = p;
527 struct c4iw_debugfs_data *epd = data;
528 int space;
529 int cc;
530
531 space = epd->bufsize - epd->pos - 1;
532 if (space == 0)
533 return 1;
534
Vipul Pandya830662f2013-07-04 16:10:47 +0530535 if (ep->com.local_addr.ss_family == AF_INET) {
536 struct sockaddr_in *lsin = (struct sockaddr_in *)
Steve Wise170003c2016-02-26 09:18:03 -0600537 &ep->com.cm_id->local_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +0530538 struct sockaddr_in *rsin = (struct sockaddr_in *)
Steve Wise170003c2016-02-26 09:18:03 -0600539 &ep->com.cm_id->remote_addr;
Steve Wise9eccfe12014-03-26 17:08:09 -0500540 struct sockaddr_in *mapped_lsin = (struct sockaddr_in *)
Steve Wise170003c2016-02-26 09:18:03 -0600541 &ep->com.cm_id->m_local_addr;
Steve Wise9eccfe12014-03-26 17:08:09 -0500542 struct sockaddr_in *mapped_rsin = (struct sockaddr_in *)
Steve Wise170003c2016-02-26 09:18:03 -0600543 &ep->com.cm_id->m_remote_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +0530544
545 cc = snprintf(epd->buf + epd->pos, space,
546 "ep %p cm_id %p qp %p state %d flags 0x%lx "
547 "history 0x%lx hwtid %d atid %d "
Hariprasad S179d03b2015-05-05 03:55:24 +0530548 "conn_na %u abort_na %u "
Steve Wise9eccfe12014-03-26 17:08:09 -0500549 "%pI4:%d/%d <-> %pI4:%d/%d\n",
Vipul Pandya830662f2013-07-04 16:10:47 +0530550 ep, ep->com.cm_id, ep->com.qp,
551 (int)ep->com.state, ep->com.flags,
552 ep->com.history, ep->hwtid, ep->atid,
Hariprasad S179d03b2015-05-05 03:55:24 +0530553 ep->stats.connect_neg_adv,
554 ep->stats.abort_neg_adv,
Vipul Pandya830662f2013-07-04 16:10:47 +0530555 &lsin->sin_addr, ntohs(lsin->sin_port),
Steve Wise9eccfe12014-03-26 17:08:09 -0500556 ntohs(mapped_lsin->sin_port),
557 &rsin->sin_addr, ntohs(rsin->sin_port),
558 ntohs(mapped_rsin->sin_port));
Vipul Pandya830662f2013-07-04 16:10:47 +0530559 } else {
560 struct sockaddr_in6 *lsin6 = (struct sockaddr_in6 *)
Steve Wise170003c2016-02-26 09:18:03 -0600561 &ep->com.cm_id->local_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +0530562 struct sockaddr_in6 *rsin6 = (struct sockaddr_in6 *)
Steve Wise170003c2016-02-26 09:18:03 -0600563 &ep->com.cm_id->remote_addr;
Steve Wise9eccfe12014-03-26 17:08:09 -0500564 struct sockaddr_in6 *mapped_lsin6 = (struct sockaddr_in6 *)
Steve Wise170003c2016-02-26 09:18:03 -0600565 &ep->com.cm_id->m_local_addr;
Steve Wise9eccfe12014-03-26 17:08:09 -0500566 struct sockaddr_in6 *mapped_rsin6 = (struct sockaddr_in6 *)
Steve Wise170003c2016-02-26 09:18:03 -0600567 &ep->com.cm_id->m_remote_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +0530568
569 cc = snprintf(epd->buf + epd->pos, space,
570 "ep %p cm_id %p qp %p state %d flags 0x%lx "
571 "history 0x%lx hwtid %d atid %d "
Hariprasad S179d03b2015-05-05 03:55:24 +0530572 "conn_na %u abort_na %u "
Steve Wise9eccfe12014-03-26 17:08:09 -0500573 "%pI6:%d/%d <-> %pI6:%d/%d\n",
Vipul Pandya830662f2013-07-04 16:10:47 +0530574 ep, ep->com.cm_id, ep->com.qp,
575 (int)ep->com.state, ep->com.flags,
576 ep->com.history, ep->hwtid, ep->atid,
Hariprasad S179d03b2015-05-05 03:55:24 +0530577 ep->stats.connect_neg_adv,
578 ep->stats.abort_neg_adv,
Vipul Pandya830662f2013-07-04 16:10:47 +0530579 &lsin6->sin6_addr, ntohs(lsin6->sin6_port),
Steve Wise9eccfe12014-03-26 17:08:09 -0500580 ntohs(mapped_lsin6->sin6_port),
581 &rsin6->sin6_addr, ntohs(rsin6->sin6_port),
582 ntohs(mapped_rsin6->sin6_port));
Vipul Pandya830662f2013-07-04 16:10:47 +0530583 }
Vipul Pandya793dad92012-12-10 09:30:56 +0000584 if (cc < space)
585 epd->pos += cc;
586 return 0;
587}
588
589static int dump_listen_ep(int id, void *p, void *data)
590{
591 struct c4iw_listen_ep *ep = p;
592 struct c4iw_debugfs_data *epd = data;
593 int space;
594 int cc;
595
596 space = epd->bufsize - epd->pos - 1;
597 if (space == 0)
598 return 1;
599
Vipul Pandya830662f2013-07-04 16:10:47 +0530600 if (ep->com.local_addr.ss_family == AF_INET) {
601 struct sockaddr_in *lsin = (struct sockaddr_in *)
Steve Wise170003c2016-02-26 09:18:03 -0600602 &ep->com.cm_id->local_addr;
Steve Wise9eccfe12014-03-26 17:08:09 -0500603 struct sockaddr_in *mapped_lsin = (struct sockaddr_in *)
Steve Wise170003c2016-02-26 09:18:03 -0600604 &ep->com.cm_id->m_local_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +0530605
606 cc = snprintf(epd->buf + epd->pos, space,
607 "ep %p cm_id %p state %d flags 0x%lx stid %d "
Steve Wise9eccfe12014-03-26 17:08:09 -0500608 "backlog %d %pI4:%d/%d\n",
Vipul Pandya830662f2013-07-04 16:10:47 +0530609 ep, ep->com.cm_id, (int)ep->com.state,
610 ep->com.flags, ep->stid, ep->backlog,
Steve Wise9eccfe12014-03-26 17:08:09 -0500611 &lsin->sin_addr, ntohs(lsin->sin_port),
612 ntohs(mapped_lsin->sin_port));
Vipul Pandya830662f2013-07-04 16:10:47 +0530613 } else {
614 struct sockaddr_in6 *lsin6 = (struct sockaddr_in6 *)
Steve Wise170003c2016-02-26 09:18:03 -0600615 &ep->com.cm_id->local_addr;
Steve Wise9eccfe12014-03-26 17:08:09 -0500616 struct sockaddr_in6 *mapped_lsin6 = (struct sockaddr_in6 *)
Steve Wise170003c2016-02-26 09:18:03 -0600617 &ep->com.cm_id->m_local_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +0530618
619 cc = snprintf(epd->buf + epd->pos, space,
620 "ep %p cm_id %p state %d flags 0x%lx stid %d "
Steve Wise9eccfe12014-03-26 17:08:09 -0500621 "backlog %d %pI6:%d/%d\n",
Vipul Pandya830662f2013-07-04 16:10:47 +0530622 ep, ep->com.cm_id, (int)ep->com.state,
623 ep->com.flags, ep->stid, ep->backlog,
Steve Wise9eccfe12014-03-26 17:08:09 -0500624 &lsin6->sin6_addr, ntohs(lsin6->sin6_port),
625 ntohs(mapped_lsin6->sin6_port));
Vipul Pandya830662f2013-07-04 16:10:47 +0530626 }
Vipul Pandya793dad92012-12-10 09:30:56 +0000627 if (cc < space)
628 epd->pos += cc;
629 return 0;
630}
631
632static int ep_release(struct inode *inode, struct file *file)
633{
634 struct c4iw_debugfs_data *epd = file->private_data;
635 if (!epd) {
636 pr_info("%s null qpd?\n", __func__);
637 return 0;
638 }
639 vfree(epd->buf);
640 kfree(epd);
641 return 0;
642}
643
644static int ep_open(struct inode *inode, struct file *file)
645{
646 struct c4iw_debugfs_data *epd;
647 int ret = 0;
648 int count = 1;
649
650 epd = kmalloc(sizeof(*epd), GFP_KERNEL);
651 if (!epd) {
652 ret = -ENOMEM;
653 goto out;
654 }
655 epd->devp = inode->i_private;
656 epd->pos = 0;
657
658 spin_lock_irq(&epd->devp->lock);
659 idr_for_each(&epd->devp->hwtid_idr, count_idrs, &count);
660 idr_for_each(&epd->devp->atid_idr, count_idrs, &count);
661 idr_for_each(&epd->devp->stid_idr, count_idrs, &count);
662 spin_unlock_irq(&epd->devp->lock);
663
Pramod Kumar63a71ba2014-11-21 09:36:35 -0600664 epd->bufsize = count * 240;
Vipul Pandya793dad92012-12-10 09:30:56 +0000665 epd->buf = vmalloc(epd->bufsize);
666 if (!epd->buf) {
667 ret = -ENOMEM;
668 goto err1;
669 }
670
671 spin_lock_irq(&epd->devp->lock);
672 idr_for_each(&epd->devp->hwtid_idr, dump_ep, epd);
673 idr_for_each(&epd->devp->atid_idr, dump_ep, epd);
674 idr_for_each(&epd->devp->stid_idr, dump_listen_ep, epd);
675 spin_unlock_irq(&epd->devp->lock);
676
677 file->private_data = epd;
678 goto out;
679err1:
680 kfree(epd);
681out:
682 return ret;
683}
684
685static const struct file_operations ep_debugfs_fops = {
686 .owner = THIS_MODULE,
687 .open = ep_open,
688 .release = ep_release,
689 .read = debugfs_read,
690};
691
Steve Wisecfdda9d2010-04-21 15:30:06 -0700692static int setup_debugfs(struct c4iw_dev *devp)
693{
Steve Wisecfdda9d2010-04-21 15:30:06 -0700694 if (!devp->debugfs_root)
695 return -1;
696
David Howellse59b4e92015-01-21 20:03:40 +0000697 debugfs_create_file_size("qps", S_IWUSR, devp->debugfs_root,
698 (void *)devp, &qp_debugfs_fops, 4096);
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500699
David Howellse59b4e92015-01-21 20:03:40 +0000700 debugfs_create_file_size("stags", S_IWUSR, devp->debugfs_root,
701 (void *)devp, &stag_debugfs_fops, 4096);
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530702
David Howellse59b4e92015-01-21 20:03:40 +0000703 debugfs_create_file_size("stats", S_IWUSR, devp->debugfs_root,
704 (void *)devp, &stats_debugfs_fops, 4096);
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530705
David Howellse59b4e92015-01-21 20:03:40 +0000706 debugfs_create_file_size("eps", S_IWUSR, devp->debugfs_root,
707 (void *)devp, &ep_debugfs_fops, 4096);
Vipul Pandya793dad92012-12-10 09:30:56 +0000708
David Howellse59b4e92015-01-21 20:03:40 +0000709 if (c4iw_wr_log)
710 debugfs_create_file_size("wr_log", S_IWUSR, devp->debugfs_root,
711 (void *)devp, &wr_log_debugfs_fops, 4096);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700712 return 0;
713}
714
715void c4iw_release_dev_ucontext(struct c4iw_rdev *rdev,
716 struct c4iw_dev_ucontext *uctx)
717{
718 struct list_head *pos, *nxt;
719 struct c4iw_qid_list *entry;
720
721 mutex_lock(&uctx->lock);
722 list_for_each_safe(pos, nxt, &uctx->qpids) {
723 entry = list_entry(pos, struct c4iw_qid_list, entry);
724 list_del_init(&entry->entry);
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530725 if (!(entry->qid & rdev->qpmask)) {
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530726 c4iw_put_resource(&rdev->resource.qid_table,
727 entry->qid);
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530728 mutex_lock(&rdev->stats.lock);
729 rdev->stats.qid.cur -= rdev->qpmask + 1;
730 mutex_unlock(&rdev->stats.lock);
731 }
Steve Wisecfdda9d2010-04-21 15:30:06 -0700732 kfree(entry);
733 }
734
735 list_for_each_safe(pos, nxt, &uctx->qpids) {
736 entry = list_entry(pos, struct c4iw_qid_list, entry);
737 list_del_init(&entry->entry);
738 kfree(entry);
739 }
740 mutex_unlock(&uctx->lock);
741}
742
743void c4iw_init_dev_ucontext(struct c4iw_rdev *rdev,
744 struct c4iw_dev_ucontext *uctx)
745{
746 INIT_LIST_HEAD(&uctx->qpids);
747 INIT_LIST_HEAD(&uctx->cqids);
748 mutex_init(&uctx->lock);
749}
750
751/* Caller takes care of locking if needed */
752static int c4iw_rdev_open(struct c4iw_rdev *rdev)
753{
754 int err;
755
756 c4iw_init_dev_ucontext(rdev, &rdev->uctx);
757
758 /*
Hariprasad S4a75a862015-04-22 01:45:01 +0530759 * This implementation assumes udb_density == ucq_density! Eventually
760 * we might need to support this but for now fail the open. Also the
761 * cqid and qpid range must match for now.
762 */
763 if (rdev->lldi.udb_density != rdev->lldi.ucq_density) {
764 pr_err(MOD "%s: unsupported udb/ucq densities %u/%u\n",
765 pci_name(rdev->lldi.pdev), rdev->lldi.udb_density,
766 rdev->lldi.ucq_density);
Hariprasad S4275a5b2016-01-12 16:33:22 +0530767 return -EINVAL;
Hariprasad S4a75a862015-04-22 01:45:01 +0530768 }
769 if (rdev->lldi.vr->qp.start != rdev->lldi.vr->cq.start ||
770 rdev->lldi.vr->qp.size != rdev->lldi.vr->cq.size) {
771 pr_err(MOD "%s: unsupported qp and cq id ranges "
772 "qp start %u size %u cq start %u size %u\n",
773 pci_name(rdev->lldi.pdev), rdev->lldi.vr->qp.start,
774 rdev->lldi.vr->qp.size, rdev->lldi.vr->cq.size,
775 rdev->lldi.vr->cq.size);
Hariprasad S4275a5b2016-01-12 16:33:22 +0530776 return -EINVAL;
Hariprasad S4a75a862015-04-22 01:45:01 +0530777 }
778
Steve Wisecfdda9d2010-04-21 15:30:06 -0700779 rdev->qpmask = rdev->lldi.udb_density - 1;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700780 rdev->cqmask = rdev->lldi.ucq_density - 1;
781 PDBG("%s dev %s stag start 0x%0x size 0x%0x num stags %d "
Steve Wise93fb72e2010-06-23 15:46:55 +0000782 "pbl start 0x%0x size 0x%0x rq start 0x%0x size 0x%0x "
783 "qp qid start %u size %u cq qid start %u size %u\n",
Steve Wisecfdda9d2010-04-21 15:30:06 -0700784 __func__, pci_name(rdev->lldi.pdev), rdev->lldi.vr->stag.start,
785 rdev->lldi.vr->stag.size, c4iw_num_stags(rdev),
786 rdev->lldi.vr->pbl.start,
787 rdev->lldi.vr->pbl.size, rdev->lldi.vr->rq.start,
Steve Wise93fb72e2010-06-23 15:46:55 +0000788 rdev->lldi.vr->rq.size,
789 rdev->lldi.vr->qp.start,
790 rdev->lldi.vr->qp.size,
791 rdev->lldi.vr->cq.start,
792 rdev->lldi.vr->cq.size);
Arnd Bergmann30213762016-02-01 17:42:02 +0100793 PDBG("udb %pR db_reg %p gts_reg %p "
Hariprasad S74217d42015-06-09 18:23:12 +0530794 "qpmask 0x%x cqmask 0x%x\n",
Arnd Bergmann30213762016-02-01 17:42:02 +0100795 &rdev->lldi.pdev->resource[2],
Hariprasad S74217d42015-06-09 18:23:12 +0530796 rdev->lldi.db_reg, rdev->lldi.gts_reg,
797 rdev->qpmask, rdev->cqmask);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700798
Hariprasad S4275a5b2016-01-12 16:33:22 +0530799 if (c4iw_num_stags(rdev) == 0)
800 return -EINVAL;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700801
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530802 rdev->stats.pd.total = T4_MAX_NUM_PD;
803 rdev->stats.stag.total = rdev->lldi.vr->stag.size;
804 rdev->stats.pbl.total = rdev->lldi.vr->pbl.size;
805 rdev->stats.rqt.total = rdev->lldi.vr->rq.size;
806 rdev->stats.ocqp.total = rdev->lldi.vr->ocq.size;
807 rdev->stats.qid.total = rdev->lldi.vr->qp.size;
808
Steve Wisecfdda9d2010-04-21 15:30:06 -0700809 err = c4iw_init_resource(rdev, c4iw_num_stags(rdev), T4_MAX_NUM_PD);
810 if (err) {
811 printk(KERN_ERR MOD "error %d initializing resources\n", err);
Hariprasad S4275a5b2016-01-12 16:33:22 +0530812 return err;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700813 }
814 err = c4iw_pblpool_create(rdev);
815 if (err) {
816 printk(KERN_ERR MOD "error %d initializing pbl pool\n", err);
Hariprasad S4275a5b2016-01-12 16:33:22 +0530817 goto destroy_resource;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700818 }
819 err = c4iw_rqtpool_create(rdev);
820 if (err) {
821 printk(KERN_ERR MOD "error %d initializing rqt pool\n", err);
Hariprasad S4275a5b2016-01-12 16:33:22 +0530822 goto destroy_pblpool;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700823 }
Steve Wisec6d7b262010-09-13 11:23:57 -0500824 err = c4iw_ocqp_pool_create(rdev);
825 if (err) {
826 printk(KERN_ERR MOD "error %d initializing ocqp pool\n", err);
Hariprasad S4275a5b2016-01-12 16:33:22 +0530827 goto destroy_rqtpool;
Steve Wisec6d7b262010-09-13 11:23:57 -0500828 }
Steve Wise05eb2382014-03-14 21:52:08 +0530829 rdev->status_page = (struct t4_dev_status_page *)
830 __get_free_page(GFP_KERNEL);
Wei Yongjun15f7e3c2016-09-17 00:41:37 +0000831 if (!rdev->status_page) {
832 err = -ENOMEM;
Hariprasad S82b1df12016-01-12 16:33:21 +0530833 goto destroy_ocqp_pool;
Wei Yongjun15f7e3c2016-09-17 00:41:37 +0000834 }
Hariprasad Sc5dfb002015-12-11 13:02:01 +0530835 rdev->status_page->qp_start = rdev->lldi.vr->qp.start;
836 rdev->status_page->qp_size = rdev->lldi.vr->qp.size;
837 rdev->status_page->cq_start = rdev->lldi.vr->cq.start;
838 rdev->status_page->cq_size = rdev->lldi.vr->cq.size;
David S. Miller8fd90bb2014-07-22 00:44:59 -0700839
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +0530840 if (c4iw_wr_log) {
841 rdev->wr_log = kzalloc((1 << c4iw_wr_log_size_order) *
842 sizeof(*rdev->wr_log), GFP_KERNEL);
843 if (rdev->wr_log) {
844 rdev->wr_log_size = 1 << c4iw_wr_log_size_order;
845 atomic_set(&rdev->wr_log_idx, 0);
846 } else {
847 pr_err(MOD "error allocating wr_log. Logging disabled\n");
848 }
849 }
David S. Miller8fd90bb2014-07-22 00:44:59 -0700850
Steve Wise6b54d542014-07-08 10:20:35 -0500851 rdev->status_page->db_off = 0;
David S. Miller8fd90bb2014-07-22 00:44:59 -0700852
Steve Wisecfdda9d2010-04-21 15:30:06 -0700853 return 0;
Hariprasad S82b1df12016-01-12 16:33:21 +0530854destroy_ocqp_pool:
855 c4iw_ocqp_pool_destroy(rdev);
Hariprasad S4275a5b2016-01-12 16:33:22 +0530856destroy_rqtpool:
Steve Wisec6d7b262010-09-13 11:23:57 -0500857 c4iw_rqtpool_destroy(rdev);
Hariprasad S4275a5b2016-01-12 16:33:22 +0530858destroy_pblpool:
Steve Wisecfdda9d2010-04-21 15:30:06 -0700859 c4iw_pblpool_destroy(rdev);
Hariprasad S4275a5b2016-01-12 16:33:22 +0530860destroy_resource:
Steve Wisecfdda9d2010-04-21 15:30:06 -0700861 c4iw_destroy_resource(&rdev->resource);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700862 return err;
863}
864
865static void c4iw_rdev_close(struct c4iw_rdev *rdev)
866{
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +0530867 kfree(rdev->wr_log);
Steve Wise05eb2382014-03-14 21:52:08 +0530868 free_page((unsigned long)rdev->status_page);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700869 c4iw_pblpool_destroy(rdev);
870 c4iw_rqtpool_destroy(rdev);
871 c4iw_destroy_resource(&rdev->resource);
872}
873
Steve Wise9efe10a2011-10-06 09:32:44 -0700874static void c4iw_dealloc(struct uld_ctx *ctx)
Steve Wisecfdda9d2010-04-21 15:30:06 -0700875{
Steve Wise2f25e9a2011-05-09 22:06:23 -0700876 c4iw_rdev_close(&ctx->dev->rdev);
Steve Wise37eb8162016-09-01 06:44:52 -0700877 WARN_ON_ONCE(!idr_is_empty(&ctx->dev->cqidr));
Steve Wise2f25e9a2011-05-09 22:06:23 -0700878 idr_destroy(&ctx->dev->cqidr);
Steve Wise37eb8162016-09-01 06:44:52 -0700879 WARN_ON_ONCE(!idr_is_empty(&ctx->dev->qpidr));
Steve Wise2f25e9a2011-05-09 22:06:23 -0700880 idr_destroy(&ctx->dev->qpidr);
Steve Wise37eb8162016-09-01 06:44:52 -0700881 WARN_ON_ONCE(!idr_is_empty(&ctx->dev->mmidr));
Steve Wise2f25e9a2011-05-09 22:06:23 -0700882 idr_destroy(&ctx->dev->mmidr);
Steve Wise37eb8162016-09-01 06:44:52 -0700883 wait_event(ctx->dev->wait, idr_is_empty(&ctx->dev->hwtid_idr));
Vipul Pandya793dad92012-12-10 09:30:56 +0000884 idr_destroy(&ctx->dev->hwtid_idr);
885 idr_destroy(&ctx->dev->stid_idr);
886 idr_destroy(&ctx->dev->atid_idr);
Steve Wisefa658a92014-04-09 09:38:25 -0500887 if (ctx->dev->rdev.bar2_kva)
888 iounmap(ctx->dev->rdev.bar2_kva);
889 if (ctx->dev->rdev.oc_mw_kva)
890 iounmap(ctx->dev->rdev.oc_mw_kva);
Steve Wise2f25e9a2011-05-09 22:06:23 -0700891 ib_dealloc_device(&ctx->dev->ibdev);
892 ctx->dev = NULL;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700893}
894
Steve Wise9efe10a2011-10-06 09:32:44 -0700895static void c4iw_remove(struct uld_ctx *ctx)
896{
897 PDBG("%s c4iw_dev %p\n", __func__, ctx->dev);
898 c4iw_unregister_device(ctx->dev);
899 c4iw_dealloc(ctx);
900}
901
902static int rdma_supported(const struct cxgb4_lld_info *infop)
903{
904 return infop->vr->stag.size > 0 && infop->vr->pbl.size > 0 &&
905 infop->vr->rq.size > 0 && infop->vr->qp.size > 0 &&
Vipul Pandyaf079af72013-03-14 05:08:58 +0000906 infop->vr->cq.size > 0;
Steve Wise9efe10a2011-10-06 09:32:44 -0700907}
908
Steve Wisecfdda9d2010-04-21 15:30:06 -0700909static struct c4iw_dev *c4iw_alloc(const struct cxgb4_lld_info *infop)
910{
911 struct c4iw_dev *devp;
912 int ret;
913
Steve Wise9efe10a2011-10-06 09:32:44 -0700914 if (!rdma_supported(infop)) {
915 printk(KERN_INFO MOD "%s: RDMA not supported on this device.\n",
916 pci_name(infop->pdev));
917 return ERR_PTR(-ENOSYS);
918 }
Vipul Pandyaf079af72013-03-14 05:08:58 +0000919 if (!ocqp_supported(infop))
920 pr_info("%s: On-Chip Queues not supported on this device.\n",
921 pci_name(infop->pdev));
Vipul Pandya80ccdd62013-03-14 05:09:00 +0000922
Steve Wisecfdda9d2010-04-21 15:30:06 -0700923 devp = (struct c4iw_dev *)ib_alloc_device(sizeof(*devp));
924 if (!devp) {
925 printk(KERN_ERR MOD "Cannot allocate ib device\n");
Steve Wisebbe9a0a2011-05-09 22:06:22 -0700926 return ERR_PTR(-ENOMEM);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700927 }
928 devp->rdev.lldi = *infop;
929
Hariprasad Shenai04e10e22014-07-14 21:34:51 +0530930 /* init various hw-queue params based on lld info */
931 PDBG("%s: Ing. padding boundary is %d, egrsstatuspagesize = %d\n",
932 __func__, devp->rdev.lldi.sge_ingpadboundary,
933 devp->rdev.lldi.sge_egrstatuspagesize);
934
935 devp->rdev.hw_queue.t4_eq_status_entries =
936 devp->rdev.lldi.sge_ingpadboundary > 64 ? 2 : 1;
Hariprasad Shenai66eb19a2014-07-21 20:55:15 +0530937 devp->rdev.hw_queue.t4_max_eq_size = 65520;
938 devp->rdev.hw_queue.t4_max_iq_size = 65520;
939 devp->rdev.hw_queue.t4_max_rq_size = 8192 -
940 devp->rdev.hw_queue.t4_eq_status_entries - 1;
Hariprasad Shenai04e10e22014-07-14 21:34:51 +0530941 devp->rdev.hw_queue.t4_max_sq_size =
Hariprasad Shenai66eb19a2014-07-21 20:55:15 +0530942 devp->rdev.hw_queue.t4_max_eq_size -
943 devp->rdev.hw_queue.t4_eq_status_entries - 1;
Hariprasad Shenai04e10e22014-07-14 21:34:51 +0530944 devp->rdev.hw_queue.t4_max_qp_depth =
Hariprasad Shenai66eb19a2014-07-21 20:55:15 +0530945 devp->rdev.hw_queue.t4_max_rq_size;
Hariprasad Shenai04e10e22014-07-14 21:34:51 +0530946 devp->rdev.hw_queue.t4_max_cq_depth =
Hariprasad Shenai66eb19a2014-07-21 20:55:15 +0530947 devp->rdev.hw_queue.t4_max_iq_size - 2;
Hariprasad Shenai04e10e22014-07-14 21:34:51 +0530948 devp->rdev.hw_queue.t4_stat_len =
949 devp->rdev.lldi.sge_egrstatuspagesize;
950
Steve Wisefa658a92014-04-09 09:38:25 -0500951 /*
Hariprasad S963cab52015-09-23 17:19:27 +0530952 * For T5/T6 devices, we map all of BAR2 with WC.
Steve Wisefa658a92014-04-09 09:38:25 -0500953 * For T4 devices with onchip qp mem, we map only that part
954 * of BAR2 with WC.
955 */
956 devp->rdev.bar2_pa = pci_resource_start(devp->rdev.lldi.pdev, 2);
Hariprasad S963cab52015-09-23 17:19:27 +0530957 if (!is_t4(devp->rdev.lldi.adapter_type)) {
Steve Wisefa658a92014-04-09 09:38:25 -0500958 devp->rdev.bar2_kva = ioremap_wc(devp->rdev.bar2_pa,
959 pci_resource_len(devp->rdev.lldi.pdev, 2));
960 if (!devp->rdev.bar2_kva) {
961 pr_err(MOD "Unable to ioremap BAR2\n");
Christoph Jaeger65b302a2014-04-21 17:02:42 +0200962 ib_dealloc_device(&devp->ibdev);
Steve Wisefa658a92014-04-09 09:38:25 -0500963 return ERR_PTR(-EINVAL);
964 }
965 } else if (ocqp_supported(infop)) {
966 devp->rdev.oc_mw_pa =
967 pci_resource_start(devp->rdev.lldi.pdev, 2) +
968 pci_resource_len(devp->rdev.lldi.pdev, 2) -
969 roundup_pow_of_two(devp->rdev.lldi.vr->ocq.size);
970 devp->rdev.oc_mw_kva = ioremap_wc(devp->rdev.oc_mw_pa,
971 devp->rdev.lldi.vr->ocq.size);
972 if (!devp->rdev.oc_mw_kva) {
973 pr_err(MOD "Unable to ioremap onchip mem\n");
Christoph Jaeger65b302a2014-04-21 17:02:42 +0200974 ib_dealloc_device(&devp->ibdev);
Steve Wisefa658a92014-04-09 09:38:25 -0500975 return ERR_PTR(-EINVAL);
976 }
977 }
Steve Wisec6d7b262010-09-13 11:23:57 -0500978
Steve Wise2f25e9a2011-05-09 22:06:23 -0700979 PDBG(KERN_INFO MOD "ocq memory: "
Steve Wisec6d7b262010-09-13 11:23:57 -0500980 "hw_start 0x%x size %u mw_pa 0x%lx mw_kva %p\n",
981 devp->rdev.lldi.vr->ocq.start, devp->rdev.lldi.vr->ocq.size,
982 devp->rdev.oc_mw_pa, devp->rdev.oc_mw_kva);
983
Steve Wisecfdda9d2010-04-21 15:30:06 -0700984 ret = c4iw_rdev_open(&devp->rdev);
985 if (ret) {
Steve Wisecfdda9d2010-04-21 15:30:06 -0700986 printk(KERN_ERR MOD "Unable to open CXIO rdev err %d\n", ret);
987 ib_dealloc_device(&devp->ibdev);
Steve Wisebbe9a0a2011-05-09 22:06:22 -0700988 return ERR_PTR(ret);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700989 }
990
991 idr_init(&devp->cqidr);
992 idr_init(&devp->qpidr);
993 idr_init(&devp->mmidr);
Vipul Pandya793dad92012-12-10 09:30:56 +0000994 idr_init(&devp->hwtid_idr);
995 idr_init(&devp->stid_idr);
996 idr_init(&devp->atid_idr);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700997 spin_lock_init(&devp->lock);
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530998 mutex_init(&devp->rdev.stats.lock);
Vipul Pandya2c974782012-05-18 15:29:28 +0530999 mutex_init(&devp->db_mutex);
Steve Wise05eb2382014-03-14 21:52:08 +05301000 INIT_LIST_HEAD(&devp->db_fc_list);
Steve Wise37eb8162016-09-01 06:44:52 -07001001 init_waitqueue_head(&devp->wait);
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05301002 devp->avail_ird = devp->rdev.lldi.max_ird_adapter;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001003
Steve Wisecfdda9d2010-04-21 15:30:06 -07001004 if (c4iw_debugfs_root) {
1005 devp->debugfs_root = debugfs_create_dir(
1006 pci_name(devp->rdev.lldi.pdev),
1007 c4iw_debugfs_root);
1008 setup_debugfs(devp);
1009 }
Steve Wise9eccfe12014-03-26 17:08:09 -05001010
Steve Wise9eccfe12014-03-26 17:08:09 -05001011
Steve Wisecfdda9d2010-04-21 15:30:06 -07001012 return devp;
1013}
1014
1015static void *c4iw_uld_add(const struct cxgb4_lld_info *infop)
1016{
Steve Wise2f25e9a2011-05-09 22:06:23 -07001017 struct uld_ctx *ctx;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001018 static int vers_printed;
1019 int i;
1020
1021 if (!vers_printed++)
Vipul Pandyaf079af72013-03-14 05:08:58 +00001022 pr_info("Chelsio T4/T5 RDMA Driver - version %s\n",
1023 DRV_VERSION);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001024
Steve Wise2f25e9a2011-05-09 22:06:23 -07001025 ctx = kzalloc(sizeof *ctx, GFP_KERNEL);
1026 if (!ctx) {
1027 ctx = ERR_PTR(-ENOMEM);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001028 goto out;
Steve Wise2f25e9a2011-05-09 22:06:23 -07001029 }
1030 ctx->lldi = *infop;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001031
1032 PDBG("%s found device %s nchan %u nrxq %u ntxq %u nports %u\n",
Steve Wise2f25e9a2011-05-09 22:06:23 -07001033 __func__, pci_name(ctx->lldi.pdev),
1034 ctx->lldi.nchan, ctx->lldi.nrxq,
1035 ctx->lldi.ntxq, ctx->lldi.nports);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001036
Steve Wise2f25e9a2011-05-09 22:06:23 -07001037 mutex_lock(&dev_mutex);
1038 list_add_tail(&ctx->entry, &uld_ctx_list);
1039 mutex_unlock(&dev_mutex);
1040
1041 for (i = 0; i < ctx->lldi.nrxq; i++)
1042 PDBG("rxqid[%u] %u\n", i, ctx->lldi.rxq_ids[i]);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001043out:
Steve Wise2f25e9a2011-05-09 22:06:23 -07001044 return ctx;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001045}
1046
Vipul Pandya1cab7752012-12-10 09:30:55 +00001047static inline struct sk_buff *copy_gl_to_skb_pkt(const struct pkt_gl *gl,
1048 const __be64 *rsp,
1049 u32 pktshift)
1050{
1051 struct sk_buff *skb;
1052
1053 /*
1054 * Allocate space for cpl_pass_accept_req which will be synthesized by
1055 * driver. Once the driver synthesizes the request the skb will go
1056 * through the regular cpl_pass_accept_req processing.
1057 * The math here assumes sizeof cpl_pass_accept_req >= sizeof
1058 * cpl_rx_pkt.
1059 */
1060 skb = alloc_skb(gl->tot_len + sizeof(struct cpl_pass_accept_req) +
1061 sizeof(struct rss_header) - pktshift, GFP_ATOMIC);
1062 if (unlikely(!skb))
1063 return NULL;
1064
1065 __skb_put(skb, gl->tot_len + sizeof(struct cpl_pass_accept_req) +
1066 sizeof(struct rss_header) - pktshift);
1067
1068 /*
1069 * This skb will contain:
1070 * rss_header from the rspq descriptor (1 flit)
1071 * cpl_rx_pkt struct from the rspq descriptor (2 flits)
1072 * space for the difference between the size of an
1073 * rx_pkt and pass_accept_req cpl (1 flit)
1074 * the packet data from the gl
1075 */
1076 skb_copy_to_linear_data(skb, rsp, sizeof(struct cpl_pass_accept_req) +
1077 sizeof(struct rss_header));
1078 skb_copy_to_linear_data_offset(skb, sizeof(struct rss_header) +
1079 sizeof(struct cpl_pass_accept_req),
1080 gl->va + pktshift,
1081 gl->tot_len - pktshift);
1082 return skb;
1083}
1084
1085static inline int recv_rx_pkt(struct c4iw_dev *dev, const struct pkt_gl *gl,
1086 const __be64 *rsp)
1087{
1088 unsigned int opcode = *(u8 *)rsp;
1089 struct sk_buff *skb;
1090
1091 if (opcode != CPL_RX_PKT)
1092 goto out;
1093
1094 skb = copy_gl_to_skb_pkt(gl , rsp, dev->rdev.lldi.sge_pktshift);
1095 if (skb == NULL)
1096 goto out;
1097
1098 if (c4iw_handlers[opcode] == NULL) {
1099 pr_info("%s no handler opcode 0x%x...\n", __func__,
1100 opcode);
1101 kfree_skb(skb);
1102 goto out;
1103 }
1104 c4iw_handlers[opcode](dev, skb);
1105 return 1;
1106out:
1107 return 0;
1108}
1109
Steve Wisecfdda9d2010-04-21 15:30:06 -07001110static int c4iw_uld_rx_handler(void *handle, const __be64 *rsp,
1111 const struct pkt_gl *gl)
1112{
Steve Wise2f25e9a2011-05-09 22:06:23 -07001113 struct uld_ctx *ctx = handle;
1114 struct c4iw_dev *dev = ctx->dev;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001115 struct sk_buff *skb;
Vipul Pandya1cab7752012-12-10 09:30:55 +00001116 u8 opcode;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001117
1118 if (gl == NULL) {
1119 /* omit RSS and rsp_ctrl at end of descriptor */
1120 unsigned int len = 64 - sizeof(struct rsp_ctrl) - 8;
1121
1122 skb = alloc_skb(256, GFP_ATOMIC);
1123 if (!skb)
1124 goto nomem;
1125 __skb_put(skb, len);
1126 skb_copy_to_linear_data(skb, &rsp[1], len);
1127 } else if (gl == CXGB4_MSG_AN) {
1128 const struct rsp_ctrl *rc = (void *)rsp;
1129
1130 u32 qid = be32_to_cpu(rc->pldbuflen_qid);
1131 c4iw_ev_handler(dev, qid);
1132 return 0;
Vipul Pandya1cab7752012-12-10 09:30:55 +00001133 } else if (unlikely(*(u8 *)rsp != *(u8 *)gl->va)) {
1134 if (recv_rx_pkt(dev, gl, rsp))
1135 return 0;
1136
1137 pr_info("%s: unexpected FL contents at %p, " \
1138 "RSS %#llx, FL %#llx, len %u\n",
1139 pci_name(ctx->lldi.pdev), gl->va,
1140 (unsigned long long)be64_to_cpu(*rsp),
Vipul Pandyaef5d6352013-01-07 13:12:00 +00001141 (unsigned long long)be64_to_cpu(
1142 *(__force __be64 *)gl->va),
Vipul Pandya1cab7752012-12-10 09:30:55 +00001143 gl->tot_len);
1144
1145 return 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001146 } else {
Steve Wiseda411ba2010-10-18 15:16:45 +00001147 skb = cxgb4_pktgl_to_skb(gl, 128, 128);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001148 if (unlikely(!skb))
1149 goto nomem;
1150 }
1151
Vipul Pandya1cab7752012-12-10 09:30:55 +00001152 opcode = *(u8 *)rsp;
Steve Wisedbb084c2014-03-21 20:40:30 +05301153 if (c4iw_handlers[opcode]) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07001154 c4iw_handlers[opcode](dev, skb);
Steve Wisedbb084c2014-03-21 20:40:30 +05301155 } else {
Vipul Pandya1cab7752012-12-10 09:30:55 +00001156 pr_info("%s no handler opcode 0x%x...\n", __func__,
Steve Wisecfdda9d2010-04-21 15:30:06 -07001157 opcode);
Steve Wisedbb084c2014-03-21 20:40:30 +05301158 kfree_skb(skb);
1159 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001160
1161 return 0;
1162nomem:
1163 return -1;
1164}
1165
1166static int c4iw_uld_state_change(void *handle, enum cxgb4_state new_state)
1167{
Steve Wise2f25e9a2011-05-09 22:06:23 -07001168 struct uld_ctx *ctx = handle;
Steve Wise1c01c532010-05-20 16:57:32 -05001169
Steve Wisecfdda9d2010-04-21 15:30:06 -07001170 PDBG("%s new_state %u\n", __func__, new_state);
Steve Wise1c01c532010-05-20 16:57:32 -05001171 switch (new_state) {
1172 case CXGB4_STATE_UP:
Steve Wise2f25e9a2011-05-09 22:06:23 -07001173 printk(KERN_INFO MOD "%s: Up\n", pci_name(ctx->lldi.pdev));
1174 if (!ctx->dev) {
Steve Wise9efe10a2011-10-06 09:32:44 -07001175 int ret;
Steve Wise2f25e9a2011-05-09 22:06:23 -07001176
1177 ctx->dev = c4iw_alloc(&ctx->lldi);
Steve Wise9efe10a2011-10-06 09:32:44 -07001178 if (IS_ERR(ctx->dev)) {
1179 printk(KERN_ERR MOD
1180 "%s: initialization failed: %ld\n",
1181 pci_name(ctx->lldi.pdev),
1182 PTR_ERR(ctx->dev));
1183 ctx->dev = NULL;
1184 break;
1185 }
1186 ret = c4iw_register_device(ctx->dev);
1187 if (ret) {
Steve Wise1c01c532010-05-20 16:57:32 -05001188 printk(KERN_ERR MOD
1189 "%s: RDMA registration failed: %d\n",
Steve Wise2f25e9a2011-05-09 22:06:23 -07001190 pci_name(ctx->lldi.pdev), ret);
Steve Wise9efe10a2011-10-06 09:32:44 -07001191 c4iw_dealloc(ctx);
1192 }
Steve Wise1c01c532010-05-20 16:57:32 -05001193 }
1194 break;
1195 case CXGB4_STATE_DOWN:
1196 printk(KERN_INFO MOD "%s: Down\n",
Steve Wise2f25e9a2011-05-09 22:06:23 -07001197 pci_name(ctx->lldi.pdev));
1198 if (ctx->dev)
1199 c4iw_remove(ctx);
Steve Wise1c01c532010-05-20 16:57:32 -05001200 break;
1201 case CXGB4_STATE_START_RECOVERY:
1202 printk(KERN_INFO MOD "%s: Fatal Error\n",
Steve Wise2f25e9a2011-05-09 22:06:23 -07001203 pci_name(ctx->lldi.pdev));
1204 if (ctx->dev) {
Steve Wise767fbe82011-03-11 22:30:53 +00001205 struct ib_event event;
1206
Steve Wise2f25e9a2011-05-09 22:06:23 -07001207 ctx->dev->rdev.flags |= T4_FATAL_ERROR;
Steve Wise767fbe82011-03-11 22:30:53 +00001208 memset(&event, 0, sizeof event);
1209 event.event = IB_EVENT_DEVICE_FATAL;
Steve Wise2f25e9a2011-05-09 22:06:23 -07001210 event.device = &ctx->dev->ibdev;
Steve Wise767fbe82011-03-11 22:30:53 +00001211 ib_dispatch_event(&event);
Steve Wise2f25e9a2011-05-09 22:06:23 -07001212 c4iw_remove(ctx);
Steve Wise767fbe82011-03-11 22:30:53 +00001213 }
Steve Wise1c01c532010-05-20 16:57:32 -05001214 break;
1215 case CXGB4_STATE_DETACH:
1216 printk(KERN_INFO MOD "%s: Detach\n",
Steve Wise2f25e9a2011-05-09 22:06:23 -07001217 pci_name(ctx->lldi.pdev));
1218 if (ctx->dev)
1219 c4iw_remove(ctx);
Steve Wise1c01c532010-05-20 16:57:32 -05001220 break;
1221 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001222 return 0;
1223}
1224
Vipul Pandya2c974782012-05-18 15:29:28 +05301225static int disable_qp_db(int id, void *p, void *data)
1226{
1227 struct c4iw_qp *qp = p;
1228
1229 t4_disable_wq_db(&qp->wq);
1230 return 0;
1231}
1232
1233static void stop_queues(struct uld_ctx *ctx)
1234{
Steve Wise05eb2382014-03-14 21:52:08 +05301235 unsigned long flags;
1236
1237 spin_lock_irqsave(&ctx->dev->lock, flags);
1238 ctx->dev->rdev.stats.db_state_transitions++;
1239 ctx->dev->db_state = STOPPED;
1240 if (ctx->dev->rdev.flags & T4_STATUS_PAGE_DISABLED)
Vipul Pandya422eea02012-05-18 15:29:30 +05301241 idr_for_each(&ctx->dev->qpidr, disable_qp_db, NULL);
Steve Wise05eb2382014-03-14 21:52:08 +05301242 else
1243 ctx->dev->rdev.status_page->db_off = 1;
1244 spin_unlock_irqrestore(&ctx->dev->lock, flags);
Vipul Pandya2c974782012-05-18 15:29:28 +05301245}
1246
1247static int enable_qp_db(int id, void *p, void *data)
1248{
1249 struct c4iw_qp *qp = p;
1250
1251 t4_enable_wq_db(&qp->wq);
1252 return 0;
1253}
1254
Steve Wise05eb2382014-03-14 21:52:08 +05301255static void resume_rc_qp(struct c4iw_qp *qp)
1256{
1257 spin_lock(&qp->lock);
Hariprasad S963cab52015-09-23 17:19:27 +05301258 t4_ring_sq_db(&qp->wq, qp->wq.sq.wq_pidx_inc, NULL);
Steve Wise05eb2382014-03-14 21:52:08 +05301259 qp->wq.sq.wq_pidx_inc = 0;
Hariprasad S963cab52015-09-23 17:19:27 +05301260 t4_ring_rq_db(&qp->wq, qp->wq.rq.wq_pidx_inc, NULL);
Steve Wise05eb2382014-03-14 21:52:08 +05301261 qp->wq.rq.wq_pidx_inc = 0;
1262 spin_unlock(&qp->lock);
1263}
1264
1265static void resume_a_chunk(struct uld_ctx *ctx)
1266{
1267 int i;
1268 struct c4iw_qp *qp;
1269
1270 for (i = 0; i < DB_FC_RESUME_SIZE; i++) {
1271 qp = list_first_entry(&ctx->dev->db_fc_list, struct c4iw_qp,
1272 db_fc_entry);
1273 list_del_init(&qp->db_fc_entry);
1274 resume_rc_qp(qp);
1275 if (list_empty(&ctx->dev->db_fc_list))
1276 break;
1277 }
1278}
1279
Vipul Pandya2c974782012-05-18 15:29:28 +05301280static void resume_queues(struct uld_ctx *ctx)
1281{
1282 spin_lock_irq(&ctx->dev->lock);
Steve Wise05eb2382014-03-14 21:52:08 +05301283 if (ctx->dev->db_state != STOPPED)
1284 goto out;
1285 ctx->dev->db_state = FLOW_CONTROL;
1286 while (1) {
1287 if (list_empty(&ctx->dev->db_fc_list)) {
1288 WARN_ON(ctx->dev->db_state != FLOW_CONTROL);
1289 ctx->dev->db_state = NORMAL;
1290 ctx->dev->rdev.stats.db_state_transitions++;
1291 if (ctx->dev->rdev.flags & T4_STATUS_PAGE_DISABLED) {
1292 idr_for_each(&ctx->dev->qpidr, enable_qp_db,
1293 NULL);
1294 } else {
1295 ctx->dev->rdev.status_page->db_off = 0;
1296 }
1297 break;
1298 } else {
1299 if (cxgb4_dbfifo_count(ctx->dev->rdev.lldi.ports[0], 1)
1300 < (ctx->dev->rdev.lldi.dbfifo_int_thresh <<
1301 DB_FC_DRAIN_THRESH)) {
1302 resume_a_chunk(ctx);
1303 }
1304 if (!list_empty(&ctx->dev->db_fc_list)) {
1305 spin_unlock_irq(&ctx->dev->lock);
1306 if (DB_FC_RESUME_DELAY) {
1307 set_current_state(TASK_UNINTERRUPTIBLE);
1308 schedule_timeout(DB_FC_RESUME_DELAY);
1309 }
1310 spin_lock_irq(&ctx->dev->lock);
1311 if (ctx->dev->db_state != FLOW_CONTROL)
1312 break;
1313 }
1314 }
Vipul Pandya422eea02012-05-18 15:29:30 +05301315 }
Steve Wise05eb2382014-03-14 21:52:08 +05301316out:
1317 if (ctx->dev->db_state != NORMAL)
1318 ctx->dev->rdev.stats.db_fc_interruptions++;
Vipul Pandya2c974782012-05-18 15:29:28 +05301319 spin_unlock_irq(&ctx->dev->lock);
1320}
1321
Vipul Pandya422eea02012-05-18 15:29:30 +05301322struct qp_list {
1323 unsigned idx;
1324 struct c4iw_qp **qps;
1325};
1326
1327static int add_and_ref_qp(int id, void *p, void *data)
1328{
1329 struct qp_list *qp_listp = data;
1330 struct c4iw_qp *qp = p;
1331
1332 c4iw_qp_add_ref(&qp->ibqp);
1333 qp_listp->qps[qp_listp->idx++] = qp;
1334 return 0;
1335}
1336
1337static int count_qps(int id, void *p, void *data)
1338{
1339 unsigned *countp = data;
1340 (*countp)++;
1341 return 0;
1342}
1343
Steve Wise05eb2382014-03-14 21:52:08 +05301344static void deref_qps(struct qp_list *qp_list)
Vipul Pandya422eea02012-05-18 15:29:30 +05301345{
1346 int idx;
1347
Steve Wise05eb2382014-03-14 21:52:08 +05301348 for (idx = 0; idx < qp_list->idx; idx++)
1349 c4iw_qp_rem_ref(&qp_list->qps[idx]->ibqp);
Vipul Pandya422eea02012-05-18 15:29:30 +05301350}
1351
1352static void recover_lost_dbs(struct uld_ctx *ctx, struct qp_list *qp_list)
1353{
1354 int idx;
1355 int ret;
1356
1357 for (idx = 0; idx < qp_list->idx; idx++) {
1358 struct c4iw_qp *qp = qp_list->qps[idx];
1359
Steve Wise05eb2382014-03-14 21:52:08 +05301360 spin_lock_irq(&qp->rhp->lock);
1361 spin_lock(&qp->lock);
Vipul Pandya422eea02012-05-18 15:29:30 +05301362 ret = cxgb4_sync_txq_pidx(qp->rhp->rdev.lldi.ports[0],
1363 qp->wq.sq.qid,
1364 t4_sq_host_wq_pidx(&qp->wq),
1365 t4_sq_wq_size(&qp->wq));
1366 if (ret) {
Joe Perchesf4f01b52015-05-08 15:58:07 -07001367 pr_err(MOD "%s: Fatal error - "
Vipul Pandya422eea02012-05-18 15:29:30 +05301368 "DB overflow recovery failed - "
1369 "error syncing SQ qid %u\n",
1370 pci_name(ctx->lldi.pdev), qp->wq.sq.qid);
Steve Wise05eb2382014-03-14 21:52:08 +05301371 spin_unlock(&qp->lock);
1372 spin_unlock_irq(&qp->rhp->lock);
Vipul Pandya422eea02012-05-18 15:29:30 +05301373 return;
1374 }
Steve Wise05eb2382014-03-14 21:52:08 +05301375 qp->wq.sq.wq_pidx_inc = 0;
Vipul Pandya422eea02012-05-18 15:29:30 +05301376
1377 ret = cxgb4_sync_txq_pidx(qp->rhp->rdev.lldi.ports[0],
1378 qp->wq.rq.qid,
1379 t4_rq_host_wq_pidx(&qp->wq),
1380 t4_rq_wq_size(&qp->wq));
1381
1382 if (ret) {
Joe Perchesf4f01b52015-05-08 15:58:07 -07001383 pr_err(MOD "%s: Fatal error - "
Vipul Pandya422eea02012-05-18 15:29:30 +05301384 "DB overflow recovery failed - "
1385 "error syncing RQ qid %u\n",
1386 pci_name(ctx->lldi.pdev), qp->wq.rq.qid);
Steve Wise05eb2382014-03-14 21:52:08 +05301387 spin_unlock(&qp->lock);
1388 spin_unlock_irq(&qp->rhp->lock);
Vipul Pandya422eea02012-05-18 15:29:30 +05301389 return;
1390 }
Steve Wise05eb2382014-03-14 21:52:08 +05301391 qp->wq.rq.wq_pidx_inc = 0;
1392 spin_unlock(&qp->lock);
1393 spin_unlock_irq(&qp->rhp->lock);
Vipul Pandya422eea02012-05-18 15:29:30 +05301394
1395 /* Wait for the dbfifo to drain */
1396 while (cxgb4_dbfifo_count(qp->rhp->rdev.lldi.ports[0], 1) > 0) {
1397 set_current_state(TASK_UNINTERRUPTIBLE);
1398 schedule_timeout(usecs_to_jiffies(10));
1399 }
1400 }
1401}
1402
1403static void recover_queues(struct uld_ctx *ctx)
1404{
1405 int count = 0;
1406 struct qp_list qp_list;
1407 int ret;
1408
Vipul Pandya422eea02012-05-18 15:29:30 +05301409 /* slow everybody down */
1410 set_current_state(TASK_UNINTERRUPTIBLE);
1411 schedule_timeout(usecs_to_jiffies(1000));
1412
Vipul Pandya422eea02012-05-18 15:29:30 +05301413 /* flush the SGE contexts */
1414 ret = cxgb4_flush_eq_cache(ctx->dev->rdev.lldi.ports[0]);
1415 if (ret) {
1416 printk(KERN_ERR MOD "%s: Fatal error - DB overflow recovery failed\n",
1417 pci_name(ctx->lldi.pdev));
Steve Wise05eb2382014-03-14 21:52:08 +05301418 return;
Vipul Pandya422eea02012-05-18 15:29:30 +05301419 }
1420
1421 /* Count active queues so we can build a list of queues to recover */
1422 spin_lock_irq(&ctx->dev->lock);
Steve Wise05eb2382014-03-14 21:52:08 +05301423 WARN_ON(ctx->dev->db_state != STOPPED);
1424 ctx->dev->db_state = RECOVERY;
Vipul Pandya422eea02012-05-18 15:29:30 +05301425 idr_for_each(&ctx->dev->qpidr, count_qps, &count);
1426
1427 qp_list.qps = kzalloc(count * sizeof *qp_list.qps, GFP_ATOMIC);
1428 if (!qp_list.qps) {
1429 printk(KERN_ERR MOD "%s: Fatal error - DB overflow recovery failed\n",
1430 pci_name(ctx->lldi.pdev));
1431 spin_unlock_irq(&ctx->dev->lock);
Steve Wise05eb2382014-03-14 21:52:08 +05301432 return;
Vipul Pandya422eea02012-05-18 15:29:30 +05301433 }
1434 qp_list.idx = 0;
1435
1436 /* add and ref each qp so it doesn't get freed */
1437 idr_for_each(&ctx->dev->qpidr, add_and_ref_qp, &qp_list);
1438
1439 spin_unlock_irq(&ctx->dev->lock);
1440
1441 /* now traverse the list in a safe context to recover the db state*/
1442 recover_lost_dbs(ctx, &qp_list);
1443
1444 /* we're almost done! deref the qps and clean up */
Steve Wise05eb2382014-03-14 21:52:08 +05301445 deref_qps(&qp_list);
Vipul Pandya422eea02012-05-18 15:29:30 +05301446 kfree(qp_list.qps);
1447
Vipul Pandya422eea02012-05-18 15:29:30 +05301448 spin_lock_irq(&ctx->dev->lock);
Steve Wise05eb2382014-03-14 21:52:08 +05301449 WARN_ON(ctx->dev->db_state != RECOVERY);
1450 ctx->dev->db_state = STOPPED;
Vipul Pandya422eea02012-05-18 15:29:30 +05301451 spin_unlock_irq(&ctx->dev->lock);
Vipul Pandya422eea02012-05-18 15:29:30 +05301452}
1453
Vipul Pandya2c974782012-05-18 15:29:28 +05301454static int c4iw_uld_control(void *handle, enum cxgb4_control control, ...)
1455{
1456 struct uld_ctx *ctx = handle;
1457
1458 switch (control) {
1459 case CXGB4_CONTROL_DB_FULL:
1460 stop_queues(ctx);
Vipul Pandya2c974782012-05-18 15:29:28 +05301461 ctx->dev->rdev.stats.db_full++;
Vipul Pandya2c974782012-05-18 15:29:28 +05301462 break;
1463 case CXGB4_CONTROL_DB_EMPTY:
1464 resume_queues(ctx);
1465 mutex_lock(&ctx->dev->rdev.stats.lock);
1466 ctx->dev->rdev.stats.db_empty++;
1467 mutex_unlock(&ctx->dev->rdev.stats.lock);
1468 break;
1469 case CXGB4_CONTROL_DB_DROP:
Vipul Pandya422eea02012-05-18 15:29:30 +05301470 recover_queues(ctx);
Vipul Pandya2c974782012-05-18 15:29:28 +05301471 mutex_lock(&ctx->dev->rdev.stats.lock);
1472 ctx->dev->rdev.stats.db_drop++;
1473 mutex_unlock(&ctx->dev->rdev.stats.lock);
1474 break;
1475 default:
1476 printk(KERN_WARNING MOD "%s: unknown control cmd %u\n",
1477 pci_name(ctx->lldi.pdev), control);
1478 break;
1479 }
1480 return 0;
1481}
1482
Steve Wisecfdda9d2010-04-21 15:30:06 -07001483static struct cxgb4_uld_info c4iw_uld_info = {
1484 .name = DRV_NAME,
Hariprasad Shenai0fbc81b2016-09-17 08:12:39 +05301485 .nrxq = MAX_ULD_QSETS,
1486 .rxq_size = 511,
1487 .ciq = true,
1488 .lro = false,
Steve Wisecfdda9d2010-04-21 15:30:06 -07001489 .add = c4iw_uld_add,
1490 .rx_handler = c4iw_uld_rx_handler,
1491 .state_change = c4iw_uld_state_change,
Vipul Pandya2c974782012-05-18 15:29:28 +05301492 .control = c4iw_uld_control,
Steve Wisecfdda9d2010-04-21 15:30:06 -07001493};
1494
1495static int __init c4iw_init_module(void)
1496{
1497 int err;
1498
1499 err = c4iw_cm_init();
1500 if (err)
1501 return err;
1502
1503 c4iw_debugfs_root = debugfs_create_dir(DRV_NAME, NULL);
1504 if (!c4iw_debugfs_root)
1505 printk(KERN_WARNING MOD
1506 "could not create debugfs entry, continuing\n");
1507
1508 cxgb4_register_uld(CXGB4_ULD_RDMA, &c4iw_uld_info);
1509
1510 return 0;
1511}
1512
1513static void __exit c4iw_exit_module(void)
1514{
Steve Wise2f25e9a2011-05-09 22:06:23 -07001515 struct uld_ctx *ctx, *tmp;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001516
Steve Wisecfdda9d2010-04-21 15:30:06 -07001517 mutex_lock(&dev_mutex);
Steve Wise2f25e9a2011-05-09 22:06:23 -07001518 list_for_each_entry_safe(ctx, tmp, &uld_ctx_list, entry) {
1519 if (ctx->dev)
1520 c4iw_remove(ctx);
1521 kfree(ctx);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001522 }
1523 mutex_unlock(&dev_mutex);
Steve Wisefd388ce2010-05-20 16:57:27 -05001524 cxgb4_unregister_uld(CXGB4_ULD_RDMA);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001525 c4iw_cm_term();
1526 debugfs_remove_recursive(c4iw_debugfs_root);
1527}
1528
1529module_init(c4iw_init_module);
1530module_exit(c4iw_exit_module);