blob: 4e4f1a732b019d6ea6bbf67bf637d94cc2d8f197 [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
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530217static struct sockaddr_in zero_sin = {
218 .sin_family = AF_INET,
219};
220
221static struct sockaddr_in6 zero_sin6 = {
222 .sin6_family = AF_INET6,
223};
224
225static void set_ep_sin_addrs(struct c4iw_ep *ep,
226 struct sockaddr_in **lsin,
227 struct sockaddr_in **rsin,
228 struct sockaddr_in **m_lsin,
229 struct sockaddr_in **m_rsin)
230{
231 struct iw_cm_id *id = ep->com.cm_id;
232
233 *lsin = (struct sockaddr_in *)&ep->com.local_addr;
234 *rsin = (struct sockaddr_in *)&ep->com.remote_addr;
235 if (id) {
236 *m_lsin = (struct sockaddr_in *)&id->m_local_addr;
237 *m_rsin = (struct sockaddr_in *)&id->m_remote_addr;
238 } else {
239 *m_lsin = &zero_sin;
240 *m_rsin = &zero_sin;
241 }
242}
243
244static void set_ep_sin6_addrs(struct c4iw_ep *ep,
245 struct sockaddr_in6 **lsin6,
246 struct sockaddr_in6 **rsin6,
247 struct sockaddr_in6 **m_lsin6,
248 struct sockaddr_in6 **m_rsin6)
249{
250 struct iw_cm_id *id = ep->com.cm_id;
251
252 *lsin6 = (struct sockaddr_in6 *)&ep->com.local_addr;
253 *rsin6 = (struct sockaddr_in6 *)&ep->com.remote_addr;
254 if (id) {
255 *m_lsin6 = (struct sockaddr_in6 *)&id->m_local_addr;
256 *m_rsin6 = (struct sockaddr_in6 *)&id->m_remote_addr;
257 } else {
258 *m_lsin6 = &zero_sin6;
259 *m_rsin6 = &zero_sin6;
260 }
261}
262
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500263static int dump_qp(int id, void *p, void *data)
Steve Wisecfdda9d2010-04-21 15:30:06 -0700264{
265 struct c4iw_qp *qp = p;
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500266 struct c4iw_debugfs_data *qpd = data;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700267 int space;
268 int cc;
269
270 if (id != qp->wq.sq.qid)
271 return 0;
272
273 space = qpd->bufsize - qpd->pos - 1;
274 if (space == 0)
275 return 1;
276
Vipul Pandya830662f2013-07-04 16:10:47 +0530277 if (qp->ep) {
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530278 struct c4iw_ep *ep = qp->ep;
Vipul Pandya830662f2013-07-04 16:10:47 +0530279
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530280 if (ep->com.local_addr.ss_family == AF_INET) {
281 struct sockaddr_in *lsin;
282 struct sockaddr_in *rsin;
283 struct sockaddr_in *m_lsin;
284 struct sockaddr_in *m_rsin;
285
286 set_ep_sin_addrs(ep, &lsin, &rsin, &m_lsin, &m_rsin);
Vipul Pandya830662f2013-07-04 16:10:47 +0530287 cc = snprintf(qpd->buf + qpd->pos, space,
288 "rc qp sq id %u rq id %u state %u "
289 "onchip %u ep tid %u state %u "
Steve Wise9eccfe12014-03-26 17:08:09 -0500290 "%pI4:%u/%u->%pI4:%u/%u\n",
Vipul Pandya830662f2013-07-04 16:10:47 +0530291 qp->wq.sq.qid, qp->wq.rq.qid,
292 (int)qp->attr.state,
293 qp->wq.sq.flags & T4_SQ_ONCHIP,
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530294 ep->hwtid, (int)ep->com.state,
Vipul Pandya830662f2013-07-04 16:10:47 +0530295 &lsin->sin_addr, ntohs(lsin->sin_port),
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530296 ntohs(m_lsin->sin_port),
Steve Wise9eccfe12014-03-26 17:08:09 -0500297 &rsin->sin_addr, ntohs(rsin->sin_port),
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530298 ntohs(m_rsin->sin_port));
Vipul Pandya830662f2013-07-04 16:10:47 +0530299 } else {
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530300 struct sockaddr_in6 *lsin6;
301 struct sockaddr_in6 *rsin6;
302 struct sockaddr_in6 *m_lsin6;
303 struct sockaddr_in6 *m_rsin6;
Vipul Pandya830662f2013-07-04 16:10:47 +0530304
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530305 set_ep_sin6_addrs(ep, &lsin6, &rsin6, &m_lsin6,
306 &m_rsin6);
Vipul Pandya830662f2013-07-04 16:10:47 +0530307 cc = snprintf(qpd->buf + qpd->pos, space,
308 "rc qp sq id %u rq id %u state %u "
309 "onchip %u ep tid %u state %u "
Steve Wise9eccfe12014-03-26 17:08:09 -0500310 "%pI6:%u/%u->%pI6:%u/%u\n",
Vipul Pandya830662f2013-07-04 16:10:47 +0530311 qp->wq.sq.qid, qp->wq.rq.qid,
312 (int)qp->attr.state,
313 qp->wq.sq.flags & T4_SQ_ONCHIP,
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530314 ep->hwtid, (int)ep->com.state,
Vipul Pandya830662f2013-07-04 16:10:47 +0530315 &lsin6->sin6_addr,
316 ntohs(lsin6->sin6_port),
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530317 ntohs(m_lsin6->sin6_port),
Vipul Pandya830662f2013-07-04 16:10:47 +0530318 &rsin6->sin6_addr,
Steve Wise9eccfe12014-03-26 17:08:09 -0500319 ntohs(rsin6->sin6_port),
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530320 ntohs(m_rsin6->sin6_port));
Vipul Pandya830662f2013-07-04 16:10:47 +0530321 }
322 } else
Steve Wisedb5d0402011-03-11 22:29:50 +0000323 cc = snprintf(qpd->buf + qpd->pos, space,
324 "qp sq id %u rq id %u state %u onchip %u\n",
325 qp->wq.sq.qid, qp->wq.rq.qid,
326 (int)qp->attr.state,
327 qp->wq.sq.flags & T4_SQ_ONCHIP);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700328 if (cc < space)
329 qpd->pos += cc;
330 return 0;
331}
332
333static int qp_release(struct inode *inode, struct file *file)
334{
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500335 struct c4iw_debugfs_data *qpd = file->private_data;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700336 if (!qpd) {
337 printk(KERN_INFO "%s null qpd?\n", __func__);
338 return 0;
339 }
Vipul Pandyad716a2a2012-05-18 15:29:31 +0530340 vfree(qpd->buf);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700341 kfree(qpd);
342 return 0;
343}
344
345static int qp_open(struct inode *inode, struct file *file)
346{
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500347 struct c4iw_debugfs_data *qpd;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700348 int count = 1;
349
350 qpd = kmalloc(sizeof *qpd, GFP_KERNEL);
Hariprasad S4275a5b2016-01-12 16:33:22 +0530351 if (!qpd)
352 return -ENOMEM;
353
Steve Wisecfdda9d2010-04-21 15:30:06 -0700354 qpd->devp = inode->i_private;
355 qpd->pos = 0;
356
357 spin_lock_irq(&qpd->devp->lock);
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500358 idr_for_each(&qpd->devp->qpidr, count_idrs, &count);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700359 spin_unlock_irq(&qpd->devp->lock);
360
Hariprasad S68cebca2016-06-10 01:05:12 +0530361 qpd->bufsize = count * 180;
Vipul Pandyad716a2a2012-05-18 15:29:31 +0530362 qpd->buf = vmalloc(qpd->bufsize);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700363 if (!qpd->buf) {
Hariprasad S4275a5b2016-01-12 16:33:22 +0530364 kfree(qpd);
365 return -ENOMEM;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700366 }
367
368 spin_lock_irq(&qpd->devp->lock);
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500369 idr_for_each(&qpd->devp->qpidr, dump_qp, qpd);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700370 spin_unlock_irq(&qpd->devp->lock);
371
372 qpd->buf[qpd->pos++] = 0;
373 file->private_data = qpd;
Hariprasad S4275a5b2016-01-12 16:33:22 +0530374 return 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700375}
376
Steve Wisecfdda9d2010-04-21 15:30:06 -0700377static const struct file_operations qp_debugfs_fops = {
378 .owner = THIS_MODULE,
379 .open = qp_open,
380 .release = qp_release,
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500381 .read = debugfs_read,
Steve Wise8bbac892010-09-29 14:11:12 +0000382 .llseek = default_llseek,
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500383};
384
385static int dump_stag(int id, void *p, void *data)
386{
387 struct c4iw_debugfs_data *stagd = data;
388 int space;
389 int cc;
Hariprasad Shenai031cf472014-07-14 21:34:53 +0530390 struct fw_ri_tpte tpte;
391 int ret;
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500392
393 space = stagd->bufsize - stagd->pos - 1;
394 if (space == 0)
395 return 1;
396
Hariprasad Shenai031cf472014-07-14 21:34:53 +0530397 ret = cxgb4_read_tpte(stagd->devp->rdev.lldi.ports[0], (u32)id<<8,
398 (__be32 *)&tpte);
399 if (ret) {
400 dev_err(&stagd->devp->rdev.lldi.pdev->dev,
401 "%s cxgb4_read_tpte err %d\n", __func__, ret);
402 return ret;
403 }
404 cc = snprintf(stagd->buf + stagd->pos, space,
405 "stag: idx 0x%x valid %d key 0x%x state %d pdid %d "
406 "perm 0x%x ps %d len 0x%llx va 0x%llx\n",
407 (u32)id<<8,
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +0530408 FW_RI_TPTE_VALID_G(ntohl(tpte.valid_to_pdid)),
409 FW_RI_TPTE_STAGKEY_G(ntohl(tpte.valid_to_pdid)),
410 FW_RI_TPTE_STAGSTATE_G(ntohl(tpte.valid_to_pdid)),
411 FW_RI_TPTE_PDID_G(ntohl(tpte.valid_to_pdid)),
412 FW_RI_TPTE_PERM_G(ntohl(tpte.locread_to_qpid)),
413 FW_RI_TPTE_PS_G(ntohl(tpte.locread_to_qpid)),
Hariprasad Shenai031cf472014-07-14 21:34:53 +0530414 ((u64)ntohl(tpte.len_hi) << 32) | ntohl(tpte.len_lo),
415 ((u64)ntohl(tpte.va_hi) << 32) | ntohl(tpte.va_lo_fbo));
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500416 if (cc < space)
417 stagd->pos += cc;
418 return 0;
419}
420
421static int stag_release(struct inode *inode, struct file *file)
422{
423 struct c4iw_debugfs_data *stagd = file->private_data;
424 if (!stagd) {
425 printk(KERN_INFO "%s null stagd?\n", __func__);
426 return 0;
427 }
Hariprasad Shenai031cf472014-07-14 21:34:53 +0530428 vfree(stagd->buf);
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500429 kfree(stagd);
430 return 0;
431}
432
433static int stag_open(struct inode *inode, struct file *file)
434{
435 struct c4iw_debugfs_data *stagd;
436 int ret = 0;
437 int count = 1;
438
439 stagd = kmalloc(sizeof *stagd, GFP_KERNEL);
440 if (!stagd) {
441 ret = -ENOMEM;
442 goto out;
443 }
444 stagd->devp = inode->i_private;
445 stagd->pos = 0;
446
447 spin_lock_irq(&stagd->devp->lock);
448 idr_for_each(&stagd->devp->mmidr, count_idrs, &count);
449 spin_unlock_irq(&stagd->devp->lock);
450
Hariprasad Shenai031cf472014-07-14 21:34:53 +0530451 stagd->bufsize = count * 256;
452 stagd->buf = vmalloc(stagd->bufsize);
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500453 if (!stagd->buf) {
454 ret = -ENOMEM;
455 goto err1;
456 }
457
458 spin_lock_irq(&stagd->devp->lock);
459 idr_for_each(&stagd->devp->mmidr, dump_stag, stagd);
460 spin_unlock_irq(&stagd->devp->lock);
461
462 stagd->buf[stagd->pos++] = 0;
463 file->private_data = stagd;
464 goto out;
465err1:
466 kfree(stagd);
467out:
468 return ret;
469}
470
471static const struct file_operations stag_debugfs_fops = {
472 .owner = THIS_MODULE,
473 .open = stag_open,
474 .release = stag_release,
475 .read = debugfs_read,
Steve Wise8bbac892010-09-29 14:11:12 +0000476 .llseek = default_llseek,
Steve Wisecfdda9d2010-04-21 15:30:06 -0700477};
478
Steve Wise05eb2382014-03-14 21:52:08 +0530479static char *db_state_str[] = {"NORMAL", "FLOW_CONTROL", "RECOVERY", "STOPPED"};
Vipul Pandya422eea02012-05-18 15:29:30 +0530480
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530481static int stats_show(struct seq_file *seq, void *v)
482{
483 struct c4iw_dev *dev = seq->private;
484
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530485 seq_printf(seq, " Object: %10s %10s %10s %10s\n", "Total", "Current",
486 "Max", "Fail");
487 seq_printf(seq, " PDID: %10llu %10llu %10llu %10llu\n",
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530488 dev->rdev.stats.pd.total, dev->rdev.stats.pd.cur,
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530489 dev->rdev.stats.pd.max, dev->rdev.stats.pd.fail);
490 seq_printf(seq, " QID: %10llu %10llu %10llu %10llu\n",
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530491 dev->rdev.stats.qid.total, dev->rdev.stats.qid.cur,
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530492 dev->rdev.stats.qid.max, dev->rdev.stats.qid.fail);
493 seq_printf(seq, " TPTMEM: %10llu %10llu %10llu %10llu\n",
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530494 dev->rdev.stats.stag.total, dev->rdev.stats.stag.cur,
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530495 dev->rdev.stats.stag.max, dev->rdev.stats.stag.fail);
496 seq_printf(seq, " PBLMEM: %10llu %10llu %10llu %10llu\n",
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530497 dev->rdev.stats.pbl.total, dev->rdev.stats.pbl.cur,
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530498 dev->rdev.stats.pbl.max, dev->rdev.stats.pbl.fail);
499 seq_printf(seq, " RQTMEM: %10llu %10llu %10llu %10llu\n",
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530500 dev->rdev.stats.rqt.total, dev->rdev.stats.rqt.cur,
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530501 dev->rdev.stats.rqt.max, dev->rdev.stats.rqt.fail);
502 seq_printf(seq, " OCQPMEM: %10llu %10llu %10llu %10llu\n",
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530503 dev->rdev.stats.ocqp.total, dev->rdev.stats.ocqp.cur,
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530504 dev->rdev.stats.ocqp.max, dev->rdev.stats.ocqp.fail);
Vipul Pandya2c974782012-05-18 15:29:28 +0530505 seq_printf(seq, " DB FULL: %10llu\n", dev->rdev.stats.db_full);
506 seq_printf(seq, " DB EMPTY: %10llu\n", dev->rdev.stats.db_empty);
507 seq_printf(seq, " DB DROP: %10llu\n", dev->rdev.stats.db_drop);
Steve Wise05eb2382014-03-14 21:52:08 +0530508 seq_printf(seq, " DB State: %s Transitions %llu FC Interruptions %llu\n",
Vipul Pandya422eea02012-05-18 15:29:30 +0530509 db_state_str[dev->db_state],
Steve Wise05eb2382014-03-14 21:52:08 +0530510 dev->rdev.stats.db_state_transitions,
511 dev->rdev.stats.db_fc_interruptions);
Vipul Pandya1cab7752012-12-10 09:30:55 +0000512 seq_printf(seq, "TCAM_FULL: %10llu\n", dev->rdev.stats.tcam_full);
Vipul Pandya793dad92012-12-10 09:30:56 +0000513 seq_printf(seq, "ACT_OFLD_CONN_FAILS: %10llu\n",
514 dev->rdev.stats.act_ofld_conn_fails);
515 seq_printf(seq, "PAS_OFLD_CONN_FAILS: %10llu\n",
516 dev->rdev.stats.pas_ofld_conn_fails);
Hariprasad S179d03b2015-05-05 03:55:24 +0530517 seq_printf(seq, "NEG_ADV_RCVD: %10llu\n", dev->rdev.stats.neg_adv);
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +0530518 seq_printf(seq, "AVAILABLE IRD: %10u\n", dev->avail_ird);
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530519 return 0;
520}
521
522static int stats_open(struct inode *inode, struct file *file)
523{
524 return single_open(file, stats_show, inode->i_private);
525}
526
527static ssize_t stats_clear(struct file *file, const char __user *buf,
528 size_t count, loff_t *pos)
529{
530 struct c4iw_dev *dev = ((struct seq_file *)file->private_data)->private;
531
532 mutex_lock(&dev->rdev.stats.lock);
533 dev->rdev.stats.pd.max = 0;
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530534 dev->rdev.stats.pd.fail = 0;
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530535 dev->rdev.stats.qid.max = 0;
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530536 dev->rdev.stats.qid.fail = 0;
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530537 dev->rdev.stats.stag.max = 0;
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530538 dev->rdev.stats.stag.fail = 0;
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530539 dev->rdev.stats.pbl.max = 0;
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530540 dev->rdev.stats.pbl.fail = 0;
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530541 dev->rdev.stats.rqt.max = 0;
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530542 dev->rdev.stats.rqt.fail = 0;
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530543 dev->rdev.stats.ocqp.max = 0;
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530544 dev->rdev.stats.ocqp.fail = 0;
Vipul Pandya2c974782012-05-18 15:29:28 +0530545 dev->rdev.stats.db_full = 0;
546 dev->rdev.stats.db_empty = 0;
547 dev->rdev.stats.db_drop = 0;
Vipul Pandya422eea02012-05-18 15:29:30 +0530548 dev->rdev.stats.db_state_transitions = 0;
Vipul Pandya793dad92012-12-10 09:30:56 +0000549 dev->rdev.stats.tcam_full = 0;
550 dev->rdev.stats.act_ofld_conn_fails = 0;
551 dev->rdev.stats.pas_ofld_conn_fails = 0;
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530552 mutex_unlock(&dev->rdev.stats.lock);
553 return count;
554}
555
556static const struct file_operations stats_debugfs_fops = {
557 .owner = THIS_MODULE,
558 .open = stats_open,
559 .release = single_release,
560 .read = seq_read,
561 .llseek = seq_lseek,
562 .write = stats_clear,
563};
564
Vipul Pandya793dad92012-12-10 09:30:56 +0000565static int dump_ep(int id, void *p, void *data)
566{
567 struct c4iw_ep *ep = p;
568 struct c4iw_debugfs_data *epd = data;
569 int space;
570 int cc;
571
572 space = epd->bufsize - epd->pos - 1;
573 if (space == 0)
574 return 1;
575
Vipul Pandya830662f2013-07-04 16:10:47 +0530576 if (ep->com.local_addr.ss_family == AF_INET) {
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530577 struct sockaddr_in *lsin;
578 struct sockaddr_in *rsin;
579 struct sockaddr_in *m_lsin;
580 struct sockaddr_in *m_rsin;
Vipul Pandya830662f2013-07-04 16:10:47 +0530581
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530582 set_ep_sin_addrs(ep, &lsin, &rsin, &m_lsin, &m_rsin);
Vipul Pandya830662f2013-07-04 16:10:47 +0530583 cc = snprintf(epd->buf + epd->pos, space,
584 "ep %p cm_id %p qp %p state %d flags 0x%lx "
585 "history 0x%lx hwtid %d atid %d "
Hariprasad S179d03b2015-05-05 03:55:24 +0530586 "conn_na %u abort_na %u "
Steve Wise9eccfe12014-03-26 17:08:09 -0500587 "%pI4:%d/%d <-> %pI4:%d/%d\n",
Vipul Pandya830662f2013-07-04 16:10:47 +0530588 ep, ep->com.cm_id, ep->com.qp,
589 (int)ep->com.state, ep->com.flags,
590 ep->com.history, ep->hwtid, ep->atid,
Hariprasad S179d03b2015-05-05 03:55:24 +0530591 ep->stats.connect_neg_adv,
592 ep->stats.abort_neg_adv,
Vipul Pandya830662f2013-07-04 16:10:47 +0530593 &lsin->sin_addr, ntohs(lsin->sin_port),
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530594 ntohs(m_lsin->sin_port),
Steve Wise9eccfe12014-03-26 17:08:09 -0500595 &rsin->sin_addr, ntohs(rsin->sin_port),
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530596 ntohs(m_rsin->sin_port));
Vipul Pandya830662f2013-07-04 16:10:47 +0530597 } else {
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530598 struct sockaddr_in6 *lsin6;
599 struct sockaddr_in6 *rsin6;
600 struct sockaddr_in6 *m_lsin6;
601 struct sockaddr_in6 *m_rsin6;
Vipul Pandya830662f2013-07-04 16:10:47 +0530602
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530603 set_ep_sin6_addrs(ep, &lsin6, &rsin6, &m_lsin6, &m_rsin6);
Vipul Pandya830662f2013-07-04 16:10:47 +0530604 cc = snprintf(epd->buf + epd->pos, space,
605 "ep %p cm_id %p qp %p state %d flags 0x%lx "
606 "history 0x%lx hwtid %d atid %d "
Hariprasad S179d03b2015-05-05 03:55:24 +0530607 "conn_na %u abort_na %u "
Steve Wise9eccfe12014-03-26 17:08:09 -0500608 "%pI6:%d/%d <-> %pI6:%d/%d\n",
Vipul Pandya830662f2013-07-04 16:10:47 +0530609 ep, ep->com.cm_id, ep->com.qp,
610 (int)ep->com.state, ep->com.flags,
611 ep->com.history, ep->hwtid, ep->atid,
Hariprasad S179d03b2015-05-05 03:55:24 +0530612 ep->stats.connect_neg_adv,
613 ep->stats.abort_neg_adv,
Vipul Pandya830662f2013-07-04 16:10:47 +0530614 &lsin6->sin6_addr, ntohs(lsin6->sin6_port),
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530615 ntohs(m_lsin6->sin6_port),
Steve Wise9eccfe12014-03-26 17:08:09 -0500616 &rsin6->sin6_addr, ntohs(rsin6->sin6_port),
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530617 ntohs(m_rsin6->sin6_port));
Vipul Pandya830662f2013-07-04 16:10:47 +0530618 }
Vipul Pandya793dad92012-12-10 09:30:56 +0000619 if (cc < space)
620 epd->pos += cc;
621 return 0;
622}
623
624static int dump_listen_ep(int id, void *p, void *data)
625{
626 struct c4iw_listen_ep *ep = p;
627 struct c4iw_debugfs_data *epd = data;
628 int space;
629 int cc;
630
631 space = epd->bufsize - epd->pos - 1;
632 if (space == 0)
633 return 1;
634
Vipul Pandya830662f2013-07-04 16:10:47 +0530635 if (ep->com.local_addr.ss_family == AF_INET) {
636 struct sockaddr_in *lsin = (struct sockaddr_in *)
Steve Wise170003c2016-02-26 09:18:03 -0600637 &ep->com.cm_id->local_addr;
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530638 struct sockaddr_in *m_lsin = (struct sockaddr_in *)
Steve Wise170003c2016-02-26 09:18:03 -0600639 &ep->com.cm_id->m_local_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +0530640
641 cc = snprintf(epd->buf + epd->pos, space,
642 "ep %p cm_id %p state %d flags 0x%lx stid %d "
Steve Wise9eccfe12014-03-26 17:08:09 -0500643 "backlog %d %pI4:%d/%d\n",
Vipul Pandya830662f2013-07-04 16:10:47 +0530644 ep, ep->com.cm_id, (int)ep->com.state,
645 ep->com.flags, ep->stid, ep->backlog,
Steve Wise9eccfe12014-03-26 17:08:09 -0500646 &lsin->sin_addr, ntohs(lsin->sin_port),
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530647 ntohs(m_lsin->sin_port));
Vipul Pandya830662f2013-07-04 16:10:47 +0530648 } else {
649 struct sockaddr_in6 *lsin6 = (struct sockaddr_in6 *)
Steve Wise170003c2016-02-26 09:18:03 -0600650 &ep->com.cm_id->local_addr;
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530651 struct sockaddr_in6 *m_lsin6 = (struct sockaddr_in6 *)
Steve Wise170003c2016-02-26 09:18:03 -0600652 &ep->com.cm_id->m_local_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +0530653
654 cc = snprintf(epd->buf + epd->pos, space,
655 "ep %p cm_id %p state %d flags 0x%lx stid %d "
Steve Wise9eccfe12014-03-26 17:08:09 -0500656 "backlog %d %pI6:%d/%d\n",
Vipul Pandya830662f2013-07-04 16:10:47 +0530657 ep, ep->com.cm_id, (int)ep->com.state,
658 ep->com.flags, ep->stid, ep->backlog,
Steve Wise9eccfe12014-03-26 17:08:09 -0500659 &lsin6->sin6_addr, ntohs(lsin6->sin6_port),
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530660 ntohs(m_lsin6->sin6_port));
Vipul Pandya830662f2013-07-04 16:10:47 +0530661 }
Vipul Pandya793dad92012-12-10 09:30:56 +0000662 if (cc < space)
663 epd->pos += cc;
664 return 0;
665}
666
667static int ep_release(struct inode *inode, struct file *file)
668{
669 struct c4iw_debugfs_data *epd = file->private_data;
670 if (!epd) {
671 pr_info("%s null qpd?\n", __func__);
672 return 0;
673 }
674 vfree(epd->buf);
675 kfree(epd);
676 return 0;
677}
678
679static int ep_open(struct inode *inode, struct file *file)
680{
681 struct c4iw_debugfs_data *epd;
682 int ret = 0;
683 int count = 1;
684
685 epd = kmalloc(sizeof(*epd), GFP_KERNEL);
686 if (!epd) {
687 ret = -ENOMEM;
688 goto out;
689 }
690 epd->devp = inode->i_private;
691 epd->pos = 0;
692
693 spin_lock_irq(&epd->devp->lock);
694 idr_for_each(&epd->devp->hwtid_idr, count_idrs, &count);
695 idr_for_each(&epd->devp->atid_idr, count_idrs, &count);
696 idr_for_each(&epd->devp->stid_idr, count_idrs, &count);
697 spin_unlock_irq(&epd->devp->lock);
698
Pramod Kumar63a71ba2014-11-21 09:36:35 -0600699 epd->bufsize = count * 240;
Vipul Pandya793dad92012-12-10 09:30:56 +0000700 epd->buf = vmalloc(epd->bufsize);
701 if (!epd->buf) {
702 ret = -ENOMEM;
703 goto err1;
704 }
705
706 spin_lock_irq(&epd->devp->lock);
707 idr_for_each(&epd->devp->hwtid_idr, dump_ep, epd);
708 idr_for_each(&epd->devp->atid_idr, dump_ep, epd);
709 idr_for_each(&epd->devp->stid_idr, dump_listen_ep, epd);
710 spin_unlock_irq(&epd->devp->lock);
711
712 file->private_data = epd;
713 goto out;
714err1:
715 kfree(epd);
716out:
717 return ret;
718}
719
720static const struct file_operations ep_debugfs_fops = {
721 .owner = THIS_MODULE,
722 .open = ep_open,
723 .release = ep_release,
724 .read = debugfs_read,
725};
726
Steve Wisecfdda9d2010-04-21 15:30:06 -0700727static int setup_debugfs(struct c4iw_dev *devp)
728{
Steve Wisecfdda9d2010-04-21 15:30:06 -0700729 if (!devp->debugfs_root)
730 return -1;
731
David Howellse59b4e92015-01-21 20:03:40 +0000732 debugfs_create_file_size("qps", S_IWUSR, devp->debugfs_root,
733 (void *)devp, &qp_debugfs_fops, 4096);
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500734
David Howellse59b4e92015-01-21 20:03:40 +0000735 debugfs_create_file_size("stags", S_IWUSR, devp->debugfs_root,
736 (void *)devp, &stag_debugfs_fops, 4096);
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530737
David Howellse59b4e92015-01-21 20:03:40 +0000738 debugfs_create_file_size("stats", S_IWUSR, devp->debugfs_root,
739 (void *)devp, &stats_debugfs_fops, 4096);
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530740
David Howellse59b4e92015-01-21 20:03:40 +0000741 debugfs_create_file_size("eps", S_IWUSR, devp->debugfs_root,
742 (void *)devp, &ep_debugfs_fops, 4096);
Vipul Pandya793dad92012-12-10 09:30:56 +0000743
David Howellse59b4e92015-01-21 20:03:40 +0000744 if (c4iw_wr_log)
745 debugfs_create_file_size("wr_log", S_IWUSR, devp->debugfs_root,
746 (void *)devp, &wr_log_debugfs_fops, 4096);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700747 return 0;
748}
749
750void c4iw_release_dev_ucontext(struct c4iw_rdev *rdev,
751 struct c4iw_dev_ucontext *uctx)
752{
753 struct list_head *pos, *nxt;
754 struct c4iw_qid_list *entry;
755
756 mutex_lock(&uctx->lock);
757 list_for_each_safe(pos, nxt, &uctx->qpids) {
758 entry = list_entry(pos, struct c4iw_qid_list, entry);
759 list_del_init(&entry->entry);
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530760 if (!(entry->qid & rdev->qpmask)) {
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530761 c4iw_put_resource(&rdev->resource.qid_table,
762 entry->qid);
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530763 mutex_lock(&rdev->stats.lock);
764 rdev->stats.qid.cur -= rdev->qpmask + 1;
765 mutex_unlock(&rdev->stats.lock);
766 }
Steve Wisecfdda9d2010-04-21 15:30:06 -0700767 kfree(entry);
768 }
769
770 list_for_each_safe(pos, nxt, &uctx->qpids) {
771 entry = list_entry(pos, struct c4iw_qid_list, entry);
772 list_del_init(&entry->entry);
773 kfree(entry);
774 }
775 mutex_unlock(&uctx->lock);
776}
777
778void c4iw_init_dev_ucontext(struct c4iw_rdev *rdev,
779 struct c4iw_dev_ucontext *uctx)
780{
781 INIT_LIST_HEAD(&uctx->qpids);
782 INIT_LIST_HEAD(&uctx->cqids);
783 mutex_init(&uctx->lock);
784}
785
786/* Caller takes care of locking if needed */
787static int c4iw_rdev_open(struct c4iw_rdev *rdev)
788{
789 int err;
790
791 c4iw_init_dev_ucontext(rdev, &rdev->uctx);
792
793 /*
Hariprasad S4a75a862015-04-22 01:45:01 +0530794 * This implementation assumes udb_density == ucq_density! Eventually
795 * we might need to support this but for now fail the open. Also the
796 * cqid and qpid range must match for now.
797 */
798 if (rdev->lldi.udb_density != rdev->lldi.ucq_density) {
799 pr_err(MOD "%s: unsupported udb/ucq densities %u/%u\n",
800 pci_name(rdev->lldi.pdev), rdev->lldi.udb_density,
801 rdev->lldi.ucq_density);
Hariprasad S4275a5b2016-01-12 16:33:22 +0530802 return -EINVAL;
Hariprasad S4a75a862015-04-22 01:45:01 +0530803 }
804 if (rdev->lldi.vr->qp.start != rdev->lldi.vr->cq.start ||
805 rdev->lldi.vr->qp.size != rdev->lldi.vr->cq.size) {
806 pr_err(MOD "%s: unsupported qp and cq id ranges "
807 "qp start %u size %u cq start %u size %u\n",
808 pci_name(rdev->lldi.pdev), rdev->lldi.vr->qp.start,
809 rdev->lldi.vr->qp.size, rdev->lldi.vr->cq.size,
810 rdev->lldi.vr->cq.size);
Hariprasad S4275a5b2016-01-12 16:33:22 +0530811 return -EINVAL;
Hariprasad S4a75a862015-04-22 01:45:01 +0530812 }
813
Steve Wisecfdda9d2010-04-21 15:30:06 -0700814 rdev->qpmask = rdev->lldi.udb_density - 1;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700815 rdev->cqmask = rdev->lldi.ucq_density - 1;
816 PDBG("%s dev %s stag start 0x%0x size 0x%0x num stags %d "
Steve Wise93fb72e2010-06-23 15:46:55 +0000817 "pbl start 0x%0x size 0x%0x rq start 0x%0x size 0x%0x "
818 "qp qid start %u size %u cq qid start %u size %u\n",
Steve Wisecfdda9d2010-04-21 15:30:06 -0700819 __func__, pci_name(rdev->lldi.pdev), rdev->lldi.vr->stag.start,
820 rdev->lldi.vr->stag.size, c4iw_num_stags(rdev),
821 rdev->lldi.vr->pbl.start,
822 rdev->lldi.vr->pbl.size, rdev->lldi.vr->rq.start,
Steve Wise93fb72e2010-06-23 15:46:55 +0000823 rdev->lldi.vr->rq.size,
824 rdev->lldi.vr->qp.start,
825 rdev->lldi.vr->qp.size,
826 rdev->lldi.vr->cq.start,
827 rdev->lldi.vr->cq.size);
Arnd Bergmann30213762016-02-01 17:42:02 +0100828 PDBG("udb %pR db_reg %p gts_reg %p "
Hariprasad S74217d42015-06-09 18:23:12 +0530829 "qpmask 0x%x cqmask 0x%x\n",
Arnd Bergmann30213762016-02-01 17:42:02 +0100830 &rdev->lldi.pdev->resource[2],
Hariprasad S74217d42015-06-09 18:23:12 +0530831 rdev->lldi.db_reg, rdev->lldi.gts_reg,
832 rdev->qpmask, rdev->cqmask);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700833
Hariprasad S4275a5b2016-01-12 16:33:22 +0530834 if (c4iw_num_stags(rdev) == 0)
835 return -EINVAL;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700836
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530837 rdev->stats.pd.total = T4_MAX_NUM_PD;
838 rdev->stats.stag.total = rdev->lldi.vr->stag.size;
839 rdev->stats.pbl.total = rdev->lldi.vr->pbl.size;
840 rdev->stats.rqt.total = rdev->lldi.vr->rq.size;
841 rdev->stats.ocqp.total = rdev->lldi.vr->ocq.size;
842 rdev->stats.qid.total = rdev->lldi.vr->qp.size;
843
Steve Wisecfdda9d2010-04-21 15:30:06 -0700844 err = c4iw_init_resource(rdev, c4iw_num_stags(rdev), T4_MAX_NUM_PD);
845 if (err) {
846 printk(KERN_ERR MOD "error %d initializing resources\n", err);
Hariprasad S4275a5b2016-01-12 16:33:22 +0530847 return err;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700848 }
849 err = c4iw_pblpool_create(rdev);
850 if (err) {
851 printk(KERN_ERR MOD "error %d initializing pbl pool\n", err);
Hariprasad S4275a5b2016-01-12 16:33:22 +0530852 goto destroy_resource;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700853 }
854 err = c4iw_rqtpool_create(rdev);
855 if (err) {
856 printk(KERN_ERR MOD "error %d initializing rqt pool\n", err);
Hariprasad S4275a5b2016-01-12 16:33:22 +0530857 goto destroy_pblpool;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700858 }
Steve Wisec6d7b262010-09-13 11:23:57 -0500859 err = c4iw_ocqp_pool_create(rdev);
860 if (err) {
861 printk(KERN_ERR MOD "error %d initializing ocqp pool\n", err);
Hariprasad S4275a5b2016-01-12 16:33:22 +0530862 goto destroy_rqtpool;
Steve Wisec6d7b262010-09-13 11:23:57 -0500863 }
Steve Wise05eb2382014-03-14 21:52:08 +0530864 rdev->status_page = (struct t4_dev_status_page *)
865 __get_free_page(GFP_KERNEL);
Wei Yongjun15f7e3c2016-09-17 00:41:37 +0000866 if (!rdev->status_page) {
867 err = -ENOMEM;
Hariprasad S82b1df12016-01-12 16:33:21 +0530868 goto destroy_ocqp_pool;
Wei Yongjun15f7e3c2016-09-17 00:41:37 +0000869 }
Hariprasad Sc5dfb002015-12-11 13:02:01 +0530870 rdev->status_page->qp_start = rdev->lldi.vr->qp.start;
871 rdev->status_page->qp_size = rdev->lldi.vr->qp.size;
872 rdev->status_page->cq_start = rdev->lldi.vr->cq.start;
873 rdev->status_page->cq_size = rdev->lldi.vr->cq.size;
David S. Miller8fd90bb2014-07-22 00:44:59 -0700874
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +0530875 if (c4iw_wr_log) {
876 rdev->wr_log = kzalloc((1 << c4iw_wr_log_size_order) *
877 sizeof(*rdev->wr_log), GFP_KERNEL);
878 if (rdev->wr_log) {
879 rdev->wr_log_size = 1 << c4iw_wr_log_size_order;
880 atomic_set(&rdev->wr_log_idx, 0);
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +0530881 }
882 }
David S. Miller8fd90bb2014-07-22 00:44:59 -0700883
Steve Wisec12a67f2016-12-22 07:40:36 -0800884 rdev->free_workq = create_singlethread_workqueue("iw_cxgb4_free");
885 if (!rdev->free_workq) {
886 err = -ENOMEM;
887 goto err_free_status_page;
888 }
889
Steve Wise6b54d542014-07-08 10:20:35 -0500890 rdev->status_page->db_off = 0;
David S. Miller8fd90bb2014-07-22 00:44:59 -0700891
Steve Wisecfdda9d2010-04-21 15:30:06 -0700892 return 0;
Steve Wisec12a67f2016-12-22 07:40:36 -0800893err_free_status_page:
894 free_page((unsigned long)rdev->status_page);
Hariprasad S82b1df12016-01-12 16:33:21 +0530895destroy_ocqp_pool:
896 c4iw_ocqp_pool_destroy(rdev);
Hariprasad S4275a5b2016-01-12 16:33:22 +0530897destroy_rqtpool:
Steve Wisec6d7b262010-09-13 11:23:57 -0500898 c4iw_rqtpool_destroy(rdev);
Hariprasad S4275a5b2016-01-12 16:33:22 +0530899destroy_pblpool:
Steve Wisecfdda9d2010-04-21 15:30:06 -0700900 c4iw_pblpool_destroy(rdev);
Hariprasad S4275a5b2016-01-12 16:33:22 +0530901destroy_resource:
Steve Wisecfdda9d2010-04-21 15:30:06 -0700902 c4iw_destroy_resource(&rdev->resource);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700903 return err;
904}
905
906static void c4iw_rdev_close(struct c4iw_rdev *rdev)
907{
Steve Wisec12a67f2016-12-22 07:40:36 -0800908 destroy_workqueue(rdev->free_workq);
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +0530909 kfree(rdev->wr_log);
Steve Wise05eb2382014-03-14 21:52:08 +0530910 free_page((unsigned long)rdev->status_page);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700911 c4iw_pblpool_destroy(rdev);
912 c4iw_rqtpool_destroy(rdev);
913 c4iw_destroy_resource(&rdev->resource);
914}
915
Steve Wise9efe10a2011-10-06 09:32:44 -0700916static void c4iw_dealloc(struct uld_ctx *ctx)
Steve Wisecfdda9d2010-04-21 15:30:06 -0700917{
Steve Wise2f25e9a2011-05-09 22:06:23 -0700918 c4iw_rdev_close(&ctx->dev->rdev);
Steve Wise37eb8162016-09-01 06:44:52 -0700919 WARN_ON_ONCE(!idr_is_empty(&ctx->dev->cqidr));
Steve Wise2f25e9a2011-05-09 22:06:23 -0700920 idr_destroy(&ctx->dev->cqidr);
Steve Wise37eb8162016-09-01 06:44:52 -0700921 WARN_ON_ONCE(!idr_is_empty(&ctx->dev->qpidr));
Steve Wise2f25e9a2011-05-09 22:06:23 -0700922 idr_destroy(&ctx->dev->qpidr);
Steve Wise37eb8162016-09-01 06:44:52 -0700923 WARN_ON_ONCE(!idr_is_empty(&ctx->dev->mmidr));
Steve Wise2f25e9a2011-05-09 22:06:23 -0700924 idr_destroy(&ctx->dev->mmidr);
Steve Wise37eb8162016-09-01 06:44:52 -0700925 wait_event(ctx->dev->wait, idr_is_empty(&ctx->dev->hwtid_idr));
Vipul Pandya793dad92012-12-10 09:30:56 +0000926 idr_destroy(&ctx->dev->hwtid_idr);
927 idr_destroy(&ctx->dev->stid_idr);
928 idr_destroy(&ctx->dev->atid_idr);
Steve Wisefa658a92014-04-09 09:38:25 -0500929 if (ctx->dev->rdev.bar2_kva)
930 iounmap(ctx->dev->rdev.bar2_kva);
931 if (ctx->dev->rdev.oc_mw_kva)
932 iounmap(ctx->dev->rdev.oc_mw_kva);
Steve Wise2f25e9a2011-05-09 22:06:23 -0700933 ib_dealloc_device(&ctx->dev->ibdev);
934 ctx->dev = NULL;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700935}
936
Steve Wise9efe10a2011-10-06 09:32:44 -0700937static void c4iw_remove(struct uld_ctx *ctx)
938{
939 PDBG("%s c4iw_dev %p\n", __func__, ctx->dev);
940 c4iw_unregister_device(ctx->dev);
941 c4iw_dealloc(ctx);
942}
943
944static int rdma_supported(const struct cxgb4_lld_info *infop)
945{
946 return infop->vr->stag.size > 0 && infop->vr->pbl.size > 0 &&
947 infop->vr->rq.size > 0 && infop->vr->qp.size > 0 &&
Vipul Pandyaf079af72013-03-14 05:08:58 +0000948 infop->vr->cq.size > 0;
Steve Wise9efe10a2011-10-06 09:32:44 -0700949}
950
Steve Wisecfdda9d2010-04-21 15:30:06 -0700951static struct c4iw_dev *c4iw_alloc(const struct cxgb4_lld_info *infop)
952{
953 struct c4iw_dev *devp;
954 int ret;
955
Steve Wise9efe10a2011-10-06 09:32:44 -0700956 if (!rdma_supported(infop)) {
957 printk(KERN_INFO MOD "%s: RDMA not supported on this device.\n",
958 pci_name(infop->pdev));
959 return ERR_PTR(-ENOSYS);
960 }
Vipul Pandyaf079af72013-03-14 05:08:58 +0000961 if (!ocqp_supported(infop))
962 pr_info("%s: On-Chip Queues not supported on this device.\n",
963 pci_name(infop->pdev));
Vipul Pandya80ccdd62013-03-14 05:09:00 +0000964
Steve Wisecfdda9d2010-04-21 15:30:06 -0700965 devp = (struct c4iw_dev *)ib_alloc_device(sizeof(*devp));
966 if (!devp) {
967 printk(KERN_ERR MOD "Cannot allocate ib device\n");
Steve Wisebbe9a0a2011-05-09 22:06:22 -0700968 return ERR_PTR(-ENOMEM);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700969 }
970 devp->rdev.lldi = *infop;
971
Hariprasad Shenai04e10e22014-07-14 21:34:51 +0530972 /* init various hw-queue params based on lld info */
973 PDBG("%s: Ing. padding boundary is %d, egrsstatuspagesize = %d\n",
974 __func__, devp->rdev.lldi.sge_ingpadboundary,
975 devp->rdev.lldi.sge_egrstatuspagesize);
976
977 devp->rdev.hw_queue.t4_eq_status_entries =
978 devp->rdev.lldi.sge_ingpadboundary > 64 ? 2 : 1;
Hariprasad Shenai66eb19a2014-07-21 20:55:15 +0530979 devp->rdev.hw_queue.t4_max_eq_size = 65520;
980 devp->rdev.hw_queue.t4_max_iq_size = 65520;
981 devp->rdev.hw_queue.t4_max_rq_size = 8192 -
982 devp->rdev.hw_queue.t4_eq_status_entries - 1;
Hariprasad Shenai04e10e22014-07-14 21:34:51 +0530983 devp->rdev.hw_queue.t4_max_sq_size =
Hariprasad Shenai66eb19a2014-07-21 20:55:15 +0530984 devp->rdev.hw_queue.t4_max_eq_size -
985 devp->rdev.hw_queue.t4_eq_status_entries - 1;
Hariprasad Shenai04e10e22014-07-14 21:34:51 +0530986 devp->rdev.hw_queue.t4_max_qp_depth =
Hariprasad Shenai66eb19a2014-07-21 20:55:15 +0530987 devp->rdev.hw_queue.t4_max_rq_size;
Hariprasad Shenai04e10e22014-07-14 21:34:51 +0530988 devp->rdev.hw_queue.t4_max_cq_depth =
Hariprasad Shenai66eb19a2014-07-21 20:55:15 +0530989 devp->rdev.hw_queue.t4_max_iq_size - 2;
Hariprasad Shenai04e10e22014-07-14 21:34:51 +0530990 devp->rdev.hw_queue.t4_stat_len =
991 devp->rdev.lldi.sge_egrstatuspagesize;
992
Steve Wisefa658a92014-04-09 09:38:25 -0500993 /*
Hariprasad S963cab52015-09-23 17:19:27 +0530994 * For T5/T6 devices, we map all of BAR2 with WC.
Steve Wisefa658a92014-04-09 09:38:25 -0500995 * For T4 devices with onchip qp mem, we map only that part
996 * of BAR2 with WC.
997 */
998 devp->rdev.bar2_pa = pci_resource_start(devp->rdev.lldi.pdev, 2);
Hariprasad S963cab52015-09-23 17:19:27 +0530999 if (!is_t4(devp->rdev.lldi.adapter_type)) {
Steve Wisefa658a92014-04-09 09:38:25 -05001000 devp->rdev.bar2_kva = ioremap_wc(devp->rdev.bar2_pa,
1001 pci_resource_len(devp->rdev.lldi.pdev, 2));
1002 if (!devp->rdev.bar2_kva) {
1003 pr_err(MOD "Unable to ioremap BAR2\n");
Christoph Jaeger65b302a2014-04-21 17:02:42 +02001004 ib_dealloc_device(&devp->ibdev);
Steve Wisefa658a92014-04-09 09:38:25 -05001005 return ERR_PTR(-EINVAL);
1006 }
1007 } else if (ocqp_supported(infop)) {
1008 devp->rdev.oc_mw_pa =
1009 pci_resource_start(devp->rdev.lldi.pdev, 2) +
1010 pci_resource_len(devp->rdev.lldi.pdev, 2) -
1011 roundup_pow_of_two(devp->rdev.lldi.vr->ocq.size);
1012 devp->rdev.oc_mw_kva = ioremap_wc(devp->rdev.oc_mw_pa,
1013 devp->rdev.lldi.vr->ocq.size);
1014 if (!devp->rdev.oc_mw_kva) {
1015 pr_err(MOD "Unable to ioremap onchip mem\n");
Christoph Jaeger65b302a2014-04-21 17:02:42 +02001016 ib_dealloc_device(&devp->ibdev);
Steve Wisefa658a92014-04-09 09:38:25 -05001017 return ERR_PTR(-EINVAL);
1018 }
1019 }
Steve Wisec6d7b262010-09-13 11:23:57 -05001020
Steve Wise2f25e9a2011-05-09 22:06:23 -07001021 PDBG(KERN_INFO MOD "ocq memory: "
Steve Wisec6d7b262010-09-13 11:23:57 -05001022 "hw_start 0x%x size %u mw_pa 0x%lx mw_kva %p\n",
1023 devp->rdev.lldi.vr->ocq.start, devp->rdev.lldi.vr->ocq.size,
1024 devp->rdev.oc_mw_pa, devp->rdev.oc_mw_kva);
1025
Steve Wisecfdda9d2010-04-21 15:30:06 -07001026 ret = c4iw_rdev_open(&devp->rdev);
1027 if (ret) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07001028 printk(KERN_ERR MOD "Unable to open CXIO rdev err %d\n", ret);
1029 ib_dealloc_device(&devp->ibdev);
Steve Wisebbe9a0a2011-05-09 22:06:22 -07001030 return ERR_PTR(ret);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001031 }
1032
1033 idr_init(&devp->cqidr);
1034 idr_init(&devp->qpidr);
1035 idr_init(&devp->mmidr);
Vipul Pandya793dad92012-12-10 09:30:56 +00001036 idr_init(&devp->hwtid_idr);
1037 idr_init(&devp->stid_idr);
1038 idr_init(&devp->atid_idr);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001039 spin_lock_init(&devp->lock);
Vipul Pandya8d81ef32012-05-18 15:29:27 +05301040 mutex_init(&devp->rdev.stats.lock);
Vipul Pandya2c974782012-05-18 15:29:28 +05301041 mutex_init(&devp->db_mutex);
Steve Wise05eb2382014-03-14 21:52:08 +05301042 INIT_LIST_HEAD(&devp->db_fc_list);
Steve Wise37eb8162016-09-01 06:44:52 -07001043 init_waitqueue_head(&devp->wait);
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05301044 devp->avail_ird = devp->rdev.lldi.max_ird_adapter;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001045
Steve Wisecfdda9d2010-04-21 15:30:06 -07001046 if (c4iw_debugfs_root) {
1047 devp->debugfs_root = debugfs_create_dir(
1048 pci_name(devp->rdev.lldi.pdev),
1049 c4iw_debugfs_root);
1050 setup_debugfs(devp);
1051 }
Steve Wise9eccfe12014-03-26 17:08:09 -05001052
Steve Wise9eccfe12014-03-26 17:08:09 -05001053
Steve Wisecfdda9d2010-04-21 15:30:06 -07001054 return devp;
1055}
1056
1057static void *c4iw_uld_add(const struct cxgb4_lld_info *infop)
1058{
Steve Wise2f25e9a2011-05-09 22:06:23 -07001059 struct uld_ctx *ctx;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001060 static int vers_printed;
1061 int i;
1062
1063 if (!vers_printed++)
Vipul Pandyaf079af72013-03-14 05:08:58 +00001064 pr_info("Chelsio T4/T5 RDMA Driver - version %s\n",
1065 DRV_VERSION);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001066
Steve Wise2f25e9a2011-05-09 22:06:23 -07001067 ctx = kzalloc(sizeof *ctx, GFP_KERNEL);
1068 if (!ctx) {
1069 ctx = ERR_PTR(-ENOMEM);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001070 goto out;
Steve Wise2f25e9a2011-05-09 22:06:23 -07001071 }
1072 ctx->lldi = *infop;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001073
1074 PDBG("%s found device %s nchan %u nrxq %u ntxq %u nports %u\n",
Steve Wise2f25e9a2011-05-09 22:06:23 -07001075 __func__, pci_name(ctx->lldi.pdev),
1076 ctx->lldi.nchan, ctx->lldi.nrxq,
1077 ctx->lldi.ntxq, ctx->lldi.nports);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001078
Steve Wise2f25e9a2011-05-09 22:06:23 -07001079 mutex_lock(&dev_mutex);
1080 list_add_tail(&ctx->entry, &uld_ctx_list);
1081 mutex_unlock(&dev_mutex);
1082
1083 for (i = 0; i < ctx->lldi.nrxq; i++)
1084 PDBG("rxqid[%u] %u\n", i, ctx->lldi.rxq_ids[i]);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001085out:
Steve Wise2f25e9a2011-05-09 22:06:23 -07001086 return ctx;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001087}
1088
Vipul Pandya1cab7752012-12-10 09:30:55 +00001089static inline struct sk_buff *copy_gl_to_skb_pkt(const struct pkt_gl *gl,
1090 const __be64 *rsp,
1091 u32 pktshift)
1092{
1093 struct sk_buff *skb;
1094
1095 /*
1096 * Allocate space for cpl_pass_accept_req which will be synthesized by
1097 * driver. Once the driver synthesizes the request the skb will go
1098 * through the regular cpl_pass_accept_req processing.
1099 * The math here assumes sizeof cpl_pass_accept_req >= sizeof
1100 * cpl_rx_pkt.
1101 */
1102 skb = alloc_skb(gl->tot_len + sizeof(struct cpl_pass_accept_req) +
1103 sizeof(struct rss_header) - pktshift, GFP_ATOMIC);
1104 if (unlikely(!skb))
1105 return NULL;
1106
1107 __skb_put(skb, gl->tot_len + sizeof(struct cpl_pass_accept_req) +
1108 sizeof(struct rss_header) - pktshift);
1109
1110 /*
1111 * This skb will contain:
1112 * rss_header from the rspq descriptor (1 flit)
1113 * cpl_rx_pkt struct from the rspq descriptor (2 flits)
1114 * space for the difference between the size of an
1115 * rx_pkt and pass_accept_req cpl (1 flit)
1116 * the packet data from the gl
1117 */
1118 skb_copy_to_linear_data(skb, rsp, sizeof(struct cpl_pass_accept_req) +
1119 sizeof(struct rss_header));
1120 skb_copy_to_linear_data_offset(skb, sizeof(struct rss_header) +
1121 sizeof(struct cpl_pass_accept_req),
1122 gl->va + pktshift,
1123 gl->tot_len - pktshift);
1124 return skb;
1125}
1126
1127static inline int recv_rx_pkt(struct c4iw_dev *dev, const struct pkt_gl *gl,
1128 const __be64 *rsp)
1129{
1130 unsigned int opcode = *(u8 *)rsp;
1131 struct sk_buff *skb;
1132
1133 if (opcode != CPL_RX_PKT)
1134 goto out;
1135
1136 skb = copy_gl_to_skb_pkt(gl , rsp, dev->rdev.lldi.sge_pktshift);
1137 if (skb == NULL)
1138 goto out;
1139
1140 if (c4iw_handlers[opcode] == NULL) {
1141 pr_info("%s no handler opcode 0x%x...\n", __func__,
1142 opcode);
1143 kfree_skb(skb);
1144 goto out;
1145 }
1146 c4iw_handlers[opcode](dev, skb);
1147 return 1;
1148out:
1149 return 0;
1150}
1151
Steve Wisecfdda9d2010-04-21 15:30:06 -07001152static int c4iw_uld_rx_handler(void *handle, const __be64 *rsp,
1153 const struct pkt_gl *gl)
1154{
Steve Wise2f25e9a2011-05-09 22:06:23 -07001155 struct uld_ctx *ctx = handle;
1156 struct c4iw_dev *dev = ctx->dev;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001157 struct sk_buff *skb;
Vipul Pandya1cab7752012-12-10 09:30:55 +00001158 u8 opcode;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001159
1160 if (gl == NULL) {
1161 /* omit RSS and rsp_ctrl at end of descriptor */
1162 unsigned int len = 64 - sizeof(struct rsp_ctrl) - 8;
1163
1164 skb = alloc_skb(256, GFP_ATOMIC);
1165 if (!skb)
1166 goto nomem;
1167 __skb_put(skb, len);
1168 skb_copy_to_linear_data(skb, &rsp[1], len);
1169 } else if (gl == CXGB4_MSG_AN) {
1170 const struct rsp_ctrl *rc = (void *)rsp;
1171
1172 u32 qid = be32_to_cpu(rc->pldbuflen_qid);
1173 c4iw_ev_handler(dev, qid);
1174 return 0;
Vipul Pandya1cab7752012-12-10 09:30:55 +00001175 } else if (unlikely(*(u8 *)rsp != *(u8 *)gl->va)) {
1176 if (recv_rx_pkt(dev, gl, rsp))
1177 return 0;
1178
1179 pr_info("%s: unexpected FL contents at %p, " \
1180 "RSS %#llx, FL %#llx, len %u\n",
1181 pci_name(ctx->lldi.pdev), gl->va,
1182 (unsigned long long)be64_to_cpu(*rsp),
Vipul Pandyaef5d6352013-01-07 13:12:00 +00001183 (unsigned long long)be64_to_cpu(
1184 *(__force __be64 *)gl->va),
Vipul Pandya1cab7752012-12-10 09:30:55 +00001185 gl->tot_len);
1186
1187 return 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001188 } else {
Steve Wiseda411ba2010-10-18 15:16:45 +00001189 skb = cxgb4_pktgl_to_skb(gl, 128, 128);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001190 if (unlikely(!skb))
1191 goto nomem;
1192 }
1193
Vipul Pandya1cab7752012-12-10 09:30:55 +00001194 opcode = *(u8 *)rsp;
Steve Wisedbb084c2014-03-21 20:40:30 +05301195 if (c4iw_handlers[opcode]) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07001196 c4iw_handlers[opcode](dev, skb);
Steve Wisedbb084c2014-03-21 20:40:30 +05301197 } else {
Vipul Pandya1cab7752012-12-10 09:30:55 +00001198 pr_info("%s no handler opcode 0x%x...\n", __func__,
Steve Wisecfdda9d2010-04-21 15:30:06 -07001199 opcode);
Steve Wisedbb084c2014-03-21 20:40:30 +05301200 kfree_skb(skb);
1201 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001202
1203 return 0;
1204nomem:
1205 return -1;
1206}
1207
1208static int c4iw_uld_state_change(void *handle, enum cxgb4_state new_state)
1209{
Steve Wise2f25e9a2011-05-09 22:06:23 -07001210 struct uld_ctx *ctx = handle;
Steve Wise1c01c532010-05-20 16:57:32 -05001211
Steve Wisecfdda9d2010-04-21 15:30:06 -07001212 PDBG("%s new_state %u\n", __func__, new_state);
Steve Wise1c01c532010-05-20 16:57:32 -05001213 switch (new_state) {
1214 case CXGB4_STATE_UP:
Steve Wise2f25e9a2011-05-09 22:06:23 -07001215 printk(KERN_INFO MOD "%s: Up\n", pci_name(ctx->lldi.pdev));
1216 if (!ctx->dev) {
Steve Wise9efe10a2011-10-06 09:32:44 -07001217 int ret;
Steve Wise2f25e9a2011-05-09 22:06:23 -07001218
1219 ctx->dev = c4iw_alloc(&ctx->lldi);
Steve Wise9efe10a2011-10-06 09:32:44 -07001220 if (IS_ERR(ctx->dev)) {
1221 printk(KERN_ERR MOD
1222 "%s: initialization failed: %ld\n",
1223 pci_name(ctx->lldi.pdev),
1224 PTR_ERR(ctx->dev));
1225 ctx->dev = NULL;
1226 break;
1227 }
1228 ret = c4iw_register_device(ctx->dev);
1229 if (ret) {
Steve Wise1c01c532010-05-20 16:57:32 -05001230 printk(KERN_ERR MOD
1231 "%s: RDMA registration failed: %d\n",
Steve Wise2f25e9a2011-05-09 22:06:23 -07001232 pci_name(ctx->lldi.pdev), ret);
Steve Wise9efe10a2011-10-06 09:32:44 -07001233 c4iw_dealloc(ctx);
1234 }
Steve Wise1c01c532010-05-20 16:57:32 -05001235 }
1236 break;
1237 case CXGB4_STATE_DOWN:
1238 printk(KERN_INFO MOD "%s: Down\n",
Steve Wise2f25e9a2011-05-09 22:06:23 -07001239 pci_name(ctx->lldi.pdev));
1240 if (ctx->dev)
1241 c4iw_remove(ctx);
Steve Wise1c01c532010-05-20 16:57:32 -05001242 break;
1243 case CXGB4_STATE_START_RECOVERY:
1244 printk(KERN_INFO MOD "%s: Fatal Error\n",
Steve Wise2f25e9a2011-05-09 22:06:23 -07001245 pci_name(ctx->lldi.pdev));
1246 if (ctx->dev) {
Steve Wise767fbe82011-03-11 22:30:53 +00001247 struct ib_event event;
1248
Steve Wise2f25e9a2011-05-09 22:06:23 -07001249 ctx->dev->rdev.flags |= T4_FATAL_ERROR;
Steve Wise767fbe82011-03-11 22:30:53 +00001250 memset(&event, 0, sizeof event);
1251 event.event = IB_EVENT_DEVICE_FATAL;
Steve Wise2f25e9a2011-05-09 22:06:23 -07001252 event.device = &ctx->dev->ibdev;
Steve Wise767fbe82011-03-11 22:30:53 +00001253 ib_dispatch_event(&event);
Steve Wise2f25e9a2011-05-09 22:06:23 -07001254 c4iw_remove(ctx);
Steve Wise767fbe82011-03-11 22:30:53 +00001255 }
Steve Wise1c01c532010-05-20 16:57:32 -05001256 break;
1257 case CXGB4_STATE_DETACH:
1258 printk(KERN_INFO MOD "%s: Detach\n",
Steve Wise2f25e9a2011-05-09 22:06:23 -07001259 pci_name(ctx->lldi.pdev));
1260 if (ctx->dev)
1261 c4iw_remove(ctx);
Steve Wise1c01c532010-05-20 16:57:32 -05001262 break;
1263 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001264 return 0;
1265}
1266
Vipul Pandya2c974782012-05-18 15:29:28 +05301267static int disable_qp_db(int id, void *p, void *data)
1268{
1269 struct c4iw_qp *qp = p;
1270
1271 t4_disable_wq_db(&qp->wq);
1272 return 0;
1273}
1274
1275static void stop_queues(struct uld_ctx *ctx)
1276{
Steve Wise05eb2382014-03-14 21:52:08 +05301277 unsigned long flags;
1278
1279 spin_lock_irqsave(&ctx->dev->lock, flags);
1280 ctx->dev->rdev.stats.db_state_transitions++;
1281 ctx->dev->db_state = STOPPED;
1282 if (ctx->dev->rdev.flags & T4_STATUS_PAGE_DISABLED)
Vipul Pandya422eea02012-05-18 15:29:30 +05301283 idr_for_each(&ctx->dev->qpidr, disable_qp_db, NULL);
Steve Wise05eb2382014-03-14 21:52:08 +05301284 else
1285 ctx->dev->rdev.status_page->db_off = 1;
1286 spin_unlock_irqrestore(&ctx->dev->lock, flags);
Vipul Pandya2c974782012-05-18 15:29:28 +05301287}
1288
1289static int enable_qp_db(int id, void *p, void *data)
1290{
1291 struct c4iw_qp *qp = p;
1292
1293 t4_enable_wq_db(&qp->wq);
1294 return 0;
1295}
1296
Steve Wise05eb2382014-03-14 21:52:08 +05301297static void resume_rc_qp(struct c4iw_qp *qp)
1298{
1299 spin_lock(&qp->lock);
Hariprasad S963cab52015-09-23 17:19:27 +05301300 t4_ring_sq_db(&qp->wq, qp->wq.sq.wq_pidx_inc, NULL);
Steve Wise05eb2382014-03-14 21:52:08 +05301301 qp->wq.sq.wq_pidx_inc = 0;
Hariprasad S963cab52015-09-23 17:19:27 +05301302 t4_ring_rq_db(&qp->wq, qp->wq.rq.wq_pidx_inc, NULL);
Steve Wise05eb2382014-03-14 21:52:08 +05301303 qp->wq.rq.wq_pidx_inc = 0;
1304 spin_unlock(&qp->lock);
1305}
1306
1307static void resume_a_chunk(struct uld_ctx *ctx)
1308{
1309 int i;
1310 struct c4iw_qp *qp;
1311
1312 for (i = 0; i < DB_FC_RESUME_SIZE; i++) {
1313 qp = list_first_entry(&ctx->dev->db_fc_list, struct c4iw_qp,
1314 db_fc_entry);
1315 list_del_init(&qp->db_fc_entry);
1316 resume_rc_qp(qp);
1317 if (list_empty(&ctx->dev->db_fc_list))
1318 break;
1319 }
1320}
1321
Vipul Pandya2c974782012-05-18 15:29:28 +05301322static void resume_queues(struct uld_ctx *ctx)
1323{
1324 spin_lock_irq(&ctx->dev->lock);
Steve Wise05eb2382014-03-14 21:52:08 +05301325 if (ctx->dev->db_state != STOPPED)
1326 goto out;
1327 ctx->dev->db_state = FLOW_CONTROL;
1328 while (1) {
1329 if (list_empty(&ctx->dev->db_fc_list)) {
1330 WARN_ON(ctx->dev->db_state != FLOW_CONTROL);
1331 ctx->dev->db_state = NORMAL;
1332 ctx->dev->rdev.stats.db_state_transitions++;
1333 if (ctx->dev->rdev.flags & T4_STATUS_PAGE_DISABLED) {
1334 idr_for_each(&ctx->dev->qpidr, enable_qp_db,
1335 NULL);
1336 } else {
1337 ctx->dev->rdev.status_page->db_off = 0;
1338 }
1339 break;
1340 } else {
1341 if (cxgb4_dbfifo_count(ctx->dev->rdev.lldi.ports[0], 1)
1342 < (ctx->dev->rdev.lldi.dbfifo_int_thresh <<
1343 DB_FC_DRAIN_THRESH)) {
1344 resume_a_chunk(ctx);
1345 }
1346 if (!list_empty(&ctx->dev->db_fc_list)) {
1347 spin_unlock_irq(&ctx->dev->lock);
1348 if (DB_FC_RESUME_DELAY) {
1349 set_current_state(TASK_UNINTERRUPTIBLE);
1350 schedule_timeout(DB_FC_RESUME_DELAY);
1351 }
1352 spin_lock_irq(&ctx->dev->lock);
1353 if (ctx->dev->db_state != FLOW_CONTROL)
1354 break;
1355 }
1356 }
Vipul Pandya422eea02012-05-18 15:29:30 +05301357 }
Steve Wise05eb2382014-03-14 21:52:08 +05301358out:
1359 if (ctx->dev->db_state != NORMAL)
1360 ctx->dev->rdev.stats.db_fc_interruptions++;
Vipul Pandya2c974782012-05-18 15:29:28 +05301361 spin_unlock_irq(&ctx->dev->lock);
1362}
1363
Vipul Pandya422eea02012-05-18 15:29:30 +05301364struct qp_list {
1365 unsigned idx;
1366 struct c4iw_qp **qps;
1367};
1368
1369static int add_and_ref_qp(int id, void *p, void *data)
1370{
1371 struct qp_list *qp_listp = data;
1372 struct c4iw_qp *qp = p;
1373
1374 c4iw_qp_add_ref(&qp->ibqp);
1375 qp_listp->qps[qp_listp->idx++] = qp;
1376 return 0;
1377}
1378
1379static int count_qps(int id, void *p, void *data)
1380{
1381 unsigned *countp = data;
1382 (*countp)++;
1383 return 0;
1384}
1385
Steve Wise05eb2382014-03-14 21:52:08 +05301386static void deref_qps(struct qp_list *qp_list)
Vipul Pandya422eea02012-05-18 15:29:30 +05301387{
1388 int idx;
1389
Steve Wise05eb2382014-03-14 21:52:08 +05301390 for (idx = 0; idx < qp_list->idx; idx++)
1391 c4iw_qp_rem_ref(&qp_list->qps[idx]->ibqp);
Vipul Pandya422eea02012-05-18 15:29:30 +05301392}
1393
1394static void recover_lost_dbs(struct uld_ctx *ctx, struct qp_list *qp_list)
1395{
1396 int idx;
1397 int ret;
1398
1399 for (idx = 0; idx < qp_list->idx; idx++) {
1400 struct c4iw_qp *qp = qp_list->qps[idx];
1401
Steve Wise05eb2382014-03-14 21:52:08 +05301402 spin_lock_irq(&qp->rhp->lock);
1403 spin_lock(&qp->lock);
Vipul Pandya422eea02012-05-18 15:29:30 +05301404 ret = cxgb4_sync_txq_pidx(qp->rhp->rdev.lldi.ports[0],
1405 qp->wq.sq.qid,
1406 t4_sq_host_wq_pidx(&qp->wq),
1407 t4_sq_wq_size(&qp->wq));
1408 if (ret) {
Joe Perchesf4f01b52015-05-08 15:58:07 -07001409 pr_err(MOD "%s: Fatal error - "
Vipul Pandya422eea02012-05-18 15:29:30 +05301410 "DB overflow recovery failed - "
1411 "error syncing SQ qid %u\n",
1412 pci_name(ctx->lldi.pdev), qp->wq.sq.qid);
Steve Wise05eb2382014-03-14 21:52:08 +05301413 spin_unlock(&qp->lock);
1414 spin_unlock_irq(&qp->rhp->lock);
Vipul Pandya422eea02012-05-18 15:29:30 +05301415 return;
1416 }
Steve Wise05eb2382014-03-14 21:52:08 +05301417 qp->wq.sq.wq_pidx_inc = 0;
Vipul Pandya422eea02012-05-18 15:29:30 +05301418
1419 ret = cxgb4_sync_txq_pidx(qp->rhp->rdev.lldi.ports[0],
1420 qp->wq.rq.qid,
1421 t4_rq_host_wq_pidx(&qp->wq),
1422 t4_rq_wq_size(&qp->wq));
1423
1424 if (ret) {
Joe Perchesf4f01b52015-05-08 15:58:07 -07001425 pr_err(MOD "%s: Fatal error - "
Vipul Pandya422eea02012-05-18 15:29:30 +05301426 "DB overflow recovery failed - "
1427 "error syncing RQ qid %u\n",
1428 pci_name(ctx->lldi.pdev), qp->wq.rq.qid);
Steve Wise05eb2382014-03-14 21:52:08 +05301429 spin_unlock(&qp->lock);
1430 spin_unlock_irq(&qp->rhp->lock);
Vipul Pandya422eea02012-05-18 15:29:30 +05301431 return;
1432 }
Steve Wise05eb2382014-03-14 21:52:08 +05301433 qp->wq.rq.wq_pidx_inc = 0;
1434 spin_unlock(&qp->lock);
1435 spin_unlock_irq(&qp->rhp->lock);
Vipul Pandya422eea02012-05-18 15:29:30 +05301436
1437 /* Wait for the dbfifo to drain */
1438 while (cxgb4_dbfifo_count(qp->rhp->rdev.lldi.ports[0], 1) > 0) {
1439 set_current_state(TASK_UNINTERRUPTIBLE);
1440 schedule_timeout(usecs_to_jiffies(10));
1441 }
1442 }
1443}
1444
1445static void recover_queues(struct uld_ctx *ctx)
1446{
1447 int count = 0;
1448 struct qp_list qp_list;
1449 int ret;
1450
Vipul Pandya422eea02012-05-18 15:29:30 +05301451 /* slow everybody down */
1452 set_current_state(TASK_UNINTERRUPTIBLE);
1453 schedule_timeout(usecs_to_jiffies(1000));
1454
Vipul Pandya422eea02012-05-18 15:29:30 +05301455 /* flush the SGE contexts */
1456 ret = cxgb4_flush_eq_cache(ctx->dev->rdev.lldi.ports[0]);
1457 if (ret) {
1458 printk(KERN_ERR MOD "%s: Fatal error - DB overflow recovery failed\n",
1459 pci_name(ctx->lldi.pdev));
Steve Wise05eb2382014-03-14 21:52:08 +05301460 return;
Vipul Pandya422eea02012-05-18 15:29:30 +05301461 }
1462
1463 /* Count active queues so we can build a list of queues to recover */
1464 spin_lock_irq(&ctx->dev->lock);
Steve Wise05eb2382014-03-14 21:52:08 +05301465 WARN_ON(ctx->dev->db_state != STOPPED);
1466 ctx->dev->db_state = RECOVERY;
Vipul Pandya422eea02012-05-18 15:29:30 +05301467 idr_for_each(&ctx->dev->qpidr, count_qps, &count);
1468
1469 qp_list.qps = kzalloc(count * sizeof *qp_list.qps, GFP_ATOMIC);
1470 if (!qp_list.qps) {
Vipul Pandya422eea02012-05-18 15:29:30 +05301471 spin_unlock_irq(&ctx->dev->lock);
Steve Wise05eb2382014-03-14 21:52:08 +05301472 return;
Vipul Pandya422eea02012-05-18 15:29:30 +05301473 }
1474 qp_list.idx = 0;
1475
1476 /* add and ref each qp so it doesn't get freed */
1477 idr_for_each(&ctx->dev->qpidr, add_and_ref_qp, &qp_list);
1478
1479 spin_unlock_irq(&ctx->dev->lock);
1480
1481 /* now traverse the list in a safe context to recover the db state*/
1482 recover_lost_dbs(ctx, &qp_list);
1483
1484 /* we're almost done! deref the qps and clean up */
Steve Wise05eb2382014-03-14 21:52:08 +05301485 deref_qps(&qp_list);
Vipul Pandya422eea02012-05-18 15:29:30 +05301486 kfree(qp_list.qps);
1487
Vipul Pandya422eea02012-05-18 15:29:30 +05301488 spin_lock_irq(&ctx->dev->lock);
Steve Wise05eb2382014-03-14 21:52:08 +05301489 WARN_ON(ctx->dev->db_state != RECOVERY);
1490 ctx->dev->db_state = STOPPED;
Vipul Pandya422eea02012-05-18 15:29:30 +05301491 spin_unlock_irq(&ctx->dev->lock);
Vipul Pandya422eea02012-05-18 15:29:30 +05301492}
1493
Vipul Pandya2c974782012-05-18 15:29:28 +05301494static int c4iw_uld_control(void *handle, enum cxgb4_control control, ...)
1495{
1496 struct uld_ctx *ctx = handle;
1497
1498 switch (control) {
1499 case CXGB4_CONTROL_DB_FULL:
1500 stop_queues(ctx);
Vipul Pandya2c974782012-05-18 15:29:28 +05301501 ctx->dev->rdev.stats.db_full++;
Vipul Pandya2c974782012-05-18 15:29:28 +05301502 break;
1503 case CXGB4_CONTROL_DB_EMPTY:
1504 resume_queues(ctx);
1505 mutex_lock(&ctx->dev->rdev.stats.lock);
1506 ctx->dev->rdev.stats.db_empty++;
1507 mutex_unlock(&ctx->dev->rdev.stats.lock);
1508 break;
1509 case CXGB4_CONTROL_DB_DROP:
Vipul Pandya422eea02012-05-18 15:29:30 +05301510 recover_queues(ctx);
Vipul Pandya2c974782012-05-18 15:29:28 +05301511 mutex_lock(&ctx->dev->rdev.stats.lock);
1512 ctx->dev->rdev.stats.db_drop++;
1513 mutex_unlock(&ctx->dev->rdev.stats.lock);
1514 break;
1515 default:
1516 printk(KERN_WARNING MOD "%s: unknown control cmd %u\n",
1517 pci_name(ctx->lldi.pdev), control);
1518 break;
1519 }
1520 return 0;
1521}
1522
Steve Wisecfdda9d2010-04-21 15:30:06 -07001523static struct cxgb4_uld_info c4iw_uld_info = {
1524 .name = DRV_NAME,
Hariprasad Shenai0fbc81b2016-09-17 08:12:39 +05301525 .nrxq = MAX_ULD_QSETS,
Hariprasad Shenaiab677ff2016-11-18 16:37:40 +05301526 .ntxq = MAX_ULD_QSETS,
Hariprasad Shenai0fbc81b2016-09-17 08:12:39 +05301527 .rxq_size = 511,
1528 .ciq = true,
1529 .lro = false,
Steve Wisecfdda9d2010-04-21 15:30:06 -07001530 .add = c4iw_uld_add,
1531 .rx_handler = c4iw_uld_rx_handler,
1532 .state_change = c4iw_uld_state_change,
Vipul Pandya2c974782012-05-18 15:29:28 +05301533 .control = c4iw_uld_control,
Steve Wisecfdda9d2010-04-21 15:30:06 -07001534};
1535
1536static int __init c4iw_init_module(void)
1537{
1538 int err;
1539
1540 err = c4iw_cm_init();
1541 if (err)
1542 return err;
1543
1544 c4iw_debugfs_root = debugfs_create_dir(DRV_NAME, NULL);
1545 if (!c4iw_debugfs_root)
1546 printk(KERN_WARNING MOD
1547 "could not create debugfs entry, continuing\n");
1548
1549 cxgb4_register_uld(CXGB4_ULD_RDMA, &c4iw_uld_info);
1550
1551 return 0;
1552}
1553
1554static void __exit c4iw_exit_module(void)
1555{
Steve Wise2f25e9a2011-05-09 22:06:23 -07001556 struct uld_ctx *ctx, *tmp;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001557
Steve Wisecfdda9d2010-04-21 15:30:06 -07001558 mutex_lock(&dev_mutex);
Steve Wise2f25e9a2011-05-09 22:06:23 -07001559 list_for_each_entry_safe(ctx, tmp, &uld_ctx_list, entry) {
1560 if (ctx->dev)
1561 c4iw_remove(ctx);
1562 kfree(ctx);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001563 }
1564 mutex_unlock(&dev_mutex);
Steve Wisefd388ce2010-05-20 16:57:27 -05001565 cxgb4_unregister_uld(CXGB4_ULD_RDMA);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001566 c4iw_cm_term();
1567 debugfs_remove_recursive(c4iw_debugfs_root);
1568}
1569
1570module_init(c4iw_init_module);
1571module_exit(c4iw_exit_module);