blob: d19f7fb2966cc847827b606d14b2d8ca7811b9a9 [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");
Steve Wisecfdda9d2010-04-21 15:30:06 -070047
Vipul Pandya80ccdd62013-03-14 05:09:00 +000048static int allow_db_fc_on_t5;
49module_param(allow_db_fc_on_t5, int, 0644);
50MODULE_PARM_DESC(allow_db_fc_on_t5,
51 "Allow DB Flow Control on T5 (default = 0)");
52
53static int allow_db_coalescing_on_t5;
54module_param(allow_db_coalescing_on_t5, int, 0644);
55MODULE_PARM_DESC(allow_db_coalescing_on_t5,
56 "Allow DB Coalescing on T5 (default = 0)");
57
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +053058int c4iw_wr_log = 0;
59module_param(c4iw_wr_log, int, 0444);
60MODULE_PARM_DESC(c4iw_wr_log, "Enables logging of work request timing data.");
61
Steve Wise65d4c012014-08-29 11:19:29 -050062static int c4iw_wr_log_size_order = 12;
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +053063module_param(c4iw_wr_log_size_order, int, 0444);
64MODULE_PARM_DESC(c4iw_wr_log_size_order,
65 "Number of entries (log2) in the work request timing log.");
66
Vipul Pandya2c974782012-05-18 15:29:28 +053067struct uld_ctx {
68 struct list_head entry;
69 struct cxgb4_lld_info lldi;
70 struct c4iw_dev *dev;
71};
72
Steve Wise2f25e9a2011-05-09 22:06:23 -070073static LIST_HEAD(uld_ctx_list);
Steve Wisecfdda9d2010-04-21 15:30:06 -070074static DEFINE_MUTEX(dev_mutex);
75
Steve Wise05eb2382014-03-14 21:52:08 +053076#define DB_FC_RESUME_SIZE 64
77#define DB_FC_RESUME_DELAY 1
78#define DB_FC_DRAIN_THRESH 0
79
Steve Wisecfdda9d2010-04-21 15:30:06 -070080static struct dentry *c4iw_debugfs_root;
81
Steve Wise9e8d1fa32010-09-10 11:15:20 -050082struct c4iw_debugfs_data {
Steve Wisecfdda9d2010-04-21 15:30:06 -070083 struct c4iw_dev *devp;
84 char *buf;
85 int bufsize;
86 int pos;
87};
88
Steve Wise9e8d1fa32010-09-10 11:15:20 -050089static int count_idrs(int id, void *p, void *data)
Steve Wisecfdda9d2010-04-21 15:30:06 -070090{
Steve Wisecfdda9d2010-04-21 15:30:06 -070091 int *countp = data;
92
Steve Wisecfdda9d2010-04-21 15:30:06 -070093 *countp = *countp + 1;
94 return 0;
95}
96
Steve Wise9e8d1fa32010-09-10 11:15:20 -050097static ssize_t debugfs_read(struct file *file, char __user *buf, size_t count,
98 loff_t *ppos)
99{
100 struct c4iw_debugfs_data *d = file->private_data;
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500101
Steve Wise31609772010-09-29 18:21:33 +0000102 return simple_read_from_buffer(buf, count, ppos, d->buf, d->pos);
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500103}
104
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +0530105void c4iw_log_wr_stats(struct t4_wq *wq, struct t4_cqe *cqe)
106{
107 struct wr_log_entry le;
108 int idx;
109
110 if (!wq->rdev->wr_log)
111 return;
112
113 idx = (atomic_inc_return(&wq->rdev->wr_log_idx) - 1) &
114 (wq->rdev->wr_log_size - 1);
115 le.poll_sge_ts = cxgb4_read_sge_timestamp(wq->rdev->lldi.ports[0]);
116 getnstimeofday(&le.poll_host_ts);
117 le.valid = 1;
118 le.cqe_sge_ts = CQE_TS(cqe);
119 if (SQ_TYPE(cqe)) {
120 le.qid = wq->sq.qid;
121 le.opcode = CQE_OPCODE(cqe);
122 le.post_host_ts = wq->sq.sw_sq[wq->sq.cidx].host_ts;
123 le.post_sge_ts = wq->sq.sw_sq[wq->sq.cidx].sge_ts;
124 le.wr_id = CQE_WRID_SQ_IDX(cqe);
125 } else {
126 le.qid = wq->rq.qid;
127 le.opcode = FW_RI_RECEIVE;
128 le.post_host_ts = wq->rq.sw_rq[wq->rq.cidx].host_ts;
129 le.post_sge_ts = wq->rq.sw_rq[wq->rq.cidx].sge_ts;
130 le.wr_id = CQE_WRID_MSN(cqe);
131 }
132 wq->rdev->wr_log[idx] = le;
133}
134
135static int wr_log_show(struct seq_file *seq, void *v)
136{
137 struct c4iw_dev *dev = seq->private;
138 struct timespec prev_ts = {0, 0};
139 struct wr_log_entry *lep;
140 int prev_ts_set = 0;
141 int idx, end;
142
Hariprasad S6198dd82015-04-22 01:44:59 +0530143#define ts2ns(ts) div64_u64((ts) * dev->rdev.lldi.cclk_ps, 1000)
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +0530144
145 idx = atomic_read(&dev->rdev.wr_log_idx) &
146 (dev->rdev.wr_log_size - 1);
147 end = idx - 1;
148 if (end < 0)
149 end = dev->rdev.wr_log_size - 1;
150 lep = &dev->rdev.wr_log[idx];
151 while (idx != end) {
152 if (lep->valid) {
153 if (!prev_ts_set) {
154 prev_ts_set = 1;
155 prev_ts = lep->poll_host_ts;
156 }
157 seq_printf(seq, "%04u: sec %lu nsec %lu qid %u opcode "
158 "%u %s 0x%x host_wr_delta sec %lu nsec %lu "
159 "post_sge_ts 0x%llx cqe_sge_ts 0x%llx "
160 "poll_sge_ts 0x%llx post_poll_delta_ns %llu "
161 "cqe_poll_delta_ns %llu\n",
162 idx,
163 timespec_sub(lep->poll_host_ts,
164 prev_ts).tv_sec,
165 timespec_sub(lep->poll_host_ts,
166 prev_ts).tv_nsec,
167 lep->qid, lep->opcode,
168 lep->opcode == FW_RI_RECEIVE ?
169 "msn" : "wrid",
170 lep->wr_id,
171 timespec_sub(lep->poll_host_ts,
172 lep->post_host_ts).tv_sec,
173 timespec_sub(lep->poll_host_ts,
174 lep->post_host_ts).tv_nsec,
175 lep->post_sge_ts, lep->cqe_sge_ts,
176 lep->poll_sge_ts,
177 ts2ns(lep->poll_sge_ts - lep->post_sge_ts),
178 ts2ns(lep->poll_sge_ts - lep->cqe_sge_ts));
179 prev_ts = lep->poll_host_ts;
180 }
181 idx++;
182 if (idx > (dev->rdev.wr_log_size - 1))
183 idx = 0;
184 lep = &dev->rdev.wr_log[idx];
185 }
186#undef ts2ns
187 return 0;
188}
189
190static int wr_log_open(struct inode *inode, struct file *file)
191{
192 return single_open(file, wr_log_show, inode->i_private);
193}
194
195static ssize_t wr_log_clear(struct file *file, const char __user *buf,
196 size_t count, loff_t *pos)
197{
198 struct c4iw_dev *dev = ((struct seq_file *)file->private_data)->private;
199 int i;
200
201 if (dev->rdev.wr_log)
202 for (i = 0; i < dev->rdev.wr_log_size; i++)
203 dev->rdev.wr_log[i].valid = 0;
204 return count;
205}
206
207static const struct file_operations wr_log_debugfs_fops = {
208 .owner = THIS_MODULE,
209 .open = wr_log_open,
210 .release = single_release,
211 .read = seq_read,
212 .llseek = seq_lseek,
213 .write = wr_log_clear,
214};
215
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530216static struct sockaddr_in zero_sin = {
217 .sin_family = AF_INET,
218};
219
220static struct sockaddr_in6 zero_sin6 = {
221 .sin6_family = AF_INET6,
222};
223
224static void set_ep_sin_addrs(struct c4iw_ep *ep,
225 struct sockaddr_in **lsin,
226 struct sockaddr_in **rsin,
227 struct sockaddr_in **m_lsin,
228 struct sockaddr_in **m_rsin)
229{
230 struct iw_cm_id *id = ep->com.cm_id;
231
232 *lsin = (struct sockaddr_in *)&ep->com.local_addr;
233 *rsin = (struct sockaddr_in *)&ep->com.remote_addr;
234 if (id) {
235 *m_lsin = (struct sockaddr_in *)&id->m_local_addr;
236 *m_rsin = (struct sockaddr_in *)&id->m_remote_addr;
237 } else {
238 *m_lsin = &zero_sin;
239 *m_rsin = &zero_sin;
240 }
241}
242
243static void set_ep_sin6_addrs(struct c4iw_ep *ep,
244 struct sockaddr_in6 **lsin6,
245 struct sockaddr_in6 **rsin6,
246 struct sockaddr_in6 **m_lsin6,
247 struct sockaddr_in6 **m_rsin6)
248{
249 struct iw_cm_id *id = ep->com.cm_id;
250
251 *lsin6 = (struct sockaddr_in6 *)&ep->com.local_addr;
252 *rsin6 = (struct sockaddr_in6 *)&ep->com.remote_addr;
253 if (id) {
254 *m_lsin6 = (struct sockaddr_in6 *)&id->m_local_addr;
255 *m_rsin6 = (struct sockaddr_in6 *)&id->m_remote_addr;
256 } else {
257 *m_lsin6 = &zero_sin6;
258 *m_rsin6 = &zero_sin6;
259 }
260}
261
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500262static int dump_qp(int id, void *p, void *data)
Steve Wisecfdda9d2010-04-21 15:30:06 -0700263{
264 struct c4iw_qp *qp = p;
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500265 struct c4iw_debugfs_data *qpd = data;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700266 int space;
267 int cc;
268
269 if (id != qp->wq.sq.qid)
270 return 0;
271
272 space = qpd->bufsize - qpd->pos - 1;
273 if (space == 0)
274 return 1;
275
Vipul Pandya830662f2013-07-04 16:10:47 +0530276 if (qp->ep) {
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530277 struct c4iw_ep *ep = qp->ep;
Vipul Pandya830662f2013-07-04 16:10:47 +0530278
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530279 if (ep->com.local_addr.ss_family == AF_INET) {
280 struct sockaddr_in *lsin;
281 struct sockaddr_in *rsin;
282 struct sockaddr_in *m_lsin;
283 struct sockaddr_in *m_rsin;
284
285 set_ep_sin_addrs(ep, &lsin, &rsin, &m_lsin, &m_rsin);
Vipul Pandya830662f2013-07-04 16:10:47 +0530286 cc = snprintf(qpd->buf + qpd->pos, space,
287 "rc qp sq id %u rq id %u state %u "
288 "onchip %u ep tid %u state %u "
Steve Wise9eccfe12014-03-26 17:08:09 -0500289 "%pI4:%u/%u->%pI4:%u/%u\n",
Vipul Pandya830662f2013-07-04 16:10:47 +0530290 qp->wq.sq.qid, qp->wq.rq.qid,
291 (int)qp->attr.state,
292 qp->wq.sq.flags & T4_SQ_ONCHIP,
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530293 ep->hwtid, (int)ep->com.state,
Vipul Pandya830662f2013-07-04 16:10:47 +0530294 &lsin->sin_addr, ntohs(lsin->sin_port),
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530295 ntohs(m_lsin->sin_port),
Steve Wise9eccfe12014-03-26 17:08:09 -0500296 &rsin->sin_addr, ntohs(rsin->sin_port),
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530297 ntohs(m_rsin->sin_port));
Vipul Pandya830662f2013-07-04 16:10:47 +0530298 } else {
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530299 struct sockaddr_in6 *lsin6;
300 struct sockaddr_in6 *rsin6;
301 struct sockaddr_in6 *m_lsin6;
302 struct sockaddr_in6 *m_rsin6;
Vipul Pandya830662f2013-07-04 16:10:47 +0530303
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530304 set_ep_sin6_addrs(ep, &lsin6, &rsin6, &m_lsin6,
305 &m_rsin6);
Vipul Pandya830662f2013-07-04 16:10:47 +0530306 cc = snprintf(qpd->buf + qpd->pos, space,
307 "rc qp sq id %u rq id %u state %u "
308 "onchip %u ep tid %u state %u "
Steve Wise9eccfe12014-03-26 17:08:09 -0500309 "%pI6:%u/%u->%pI6:%u/%u\n",
Vipul Pandya830662f2013-07-04 16:10:47 +0530310 qp->wq.sq.qid, qp->wq.rq.qid,
311 (int)qp->attr.state,
312 qp->wq.sq.flags & T4_SQ_ONCHIP,
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530313 ep->hwtid, (int)ep->com.state,
Vipul Pandya830662f2013-07-04 16:10:47 +0530314 &lsin6->sin6_addr,
315 ntohs(lsin6->sin6_port),
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530316 ntohs(m_lsin6->sin6_port),
Vipul Pandya830662f2013-07-04 16:10:47 +0530317 &rsin6->sin6_addr,
Steve Wise9eccfe12014-03-26 17:08:09 -0500318 ntohs(rsin6->sin6_port),
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530319 ntohs(m_rsin6->sin6_port));
Vipul Pandya830662f2013-07-04 16:10:47 +0530320 }
321 } else
Steve Wisedb5d0402011-03-11 22:29:50 +0000322 cc = snprintf(qpd->buf + qpd->pos, space,
323 "qp sq id %u rq id %u state %u onchip %u\n",
324 qp->wq.sq.qid, qp->wq.rq.qid,
325 (int)qp->attr.state,
326 qp->wq.sq.flags & T4_SQ_ONCHIP);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700327 if (cc < space)
328 qpd->pos += cc;
329 return 0;
330}
331
332static int qp_release(struct inode *inode, struct file *file)
333{
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500334 struct c4iw_debugfs_data *qpd = file->private_data;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700335 if (!qpd) {
Joe Perches700456b2017-02-09 14:23:50 -0800336 pr_info("%s null qpd?\n", __func__);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700337 return 0;
338 }
Vipul Pandyad716a2a2012-05-18 15:29:31 +0530339 vfree(qpd->buf);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700340 kfree(qpd);
341 return 0;
342}
343
344static int qp_open(struct inode *inode, struct file *file)
345{
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500346 struct c4iw_debugfs_data *qpd;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700347 int count = 1;
348
349 qpd = kmalloc(sizeof *qpd, GFP_KERNEL);
Hariprasad S4275a5b2016-01-12 16:33:22 +0530350 if (!qpd)
351 return -ENOMEM;
352
Steve Wisecfdda9d2010-04-21 15:30:06 -0700353 qpd->devp = inode->i_private;
354 qpd->pos = 0;
355
356 spin_lock_irq(&qpd->devp->lock);
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500357 idr_for_each(&qpd->devp->qpidr, count_idrs, &count);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700358 spin_unlock_irq(&qpd->devp->lock);
359
Hariprasad S68cebca2016-06-10 01:05:12 +0530360 qpd->bufsize = count * 180;
Vipul Pandyad716a2a2012-05-18 15:29:31 +0530361 qpd->buf = vmalloc(qpd->bufsize);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700362 if (!qpd->buf) {
Hariprasad S4275a5b2016-01-12 16:33:22 +0530363 kfree(qpd);
364 return -ENOMEM;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700365 }
366
367 spin_lock_irq(&qpd->devp->lock);
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500368 idr_for_each(&qpd->devp->qpidr, dump_qp, qpd);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700369 spin_unlock_irq(&qpd->devp->lock);
370
371 qpd->buf[qpd->pos++] = 0;
372 file->private_data = qpd;
Hariprasad S4275a5b2016-01-12 16:33:22 +0530373 return 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700374}
375
Steve Wisecfdda9d2010-04-21 15:30:06 -0700376static const struct file_operations qp_debugfs_fops = {
377 .owner = THIS_MODULE,
378 .open = qp_open,
379 .release = qp_release,
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500380 .read = debugfs_read,
Steve Wise8bbac892010-09-29 14:11:12 +0000381 .llseek = default_llseek,
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500382};
383
384static int dump_stag(int id, void *p, void *data)
385{
386 struct c4iw_debugfs_data *stagd = data;
387 int space;
388 int cc;
Hariprasad Shenai031cf472014-07-14 21:34:53 +0530389 struct fw_ri_tpte tpte;
390 int ret;
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500391
392 space = stagd->bufsize - stagd->pos - 1;
393 if (space == 0)
394 return 1;
395
Hariprasad Shenai031cf472014-07-14 21:34:53 +0530396 ret = cxgb4_read_tpte(stagd->devp->rdev.lldi.ports[0], (u32)id<<8,
397 (__be32 *)&tpte);
398 if (ret) {
399 dev_err(&stagd->devp->rdev.lldi.pdev->dev,
400 "%s cxgb4_read_tpte err %d\n", __func__, ret);
401 return ret;
402 }
403 cc = snprintf(stagd->buf + stagd->pos, space,
404 "stag: idx 0x%x valid %d key 0x%x state %d pdid %d "
405 "perm 0x%x ps %d len 0x%llx va 0x%llx\n",
406 (u32)id<<8,
Hariprasad Shenaicf7fe642015-01-16 09:24:48 +0530407 FW_RI_TPTE_VALID_G(ntohl(tpte.valid_to_pdid)),
408 FW_RI_TPTE_STAGKEY_G(ntohl(tpte.valid_to_pdid)),
409 FW_RI_TPTE_STAGSTATE_G(ntohl(tpte.valid_to_pdid)),
410 FW_RI_TPTE_PDID_G(ntohl(tpte.valid_to_pdid)),
411 FW_RI_TPTE_PERM_G(ntohl(tpte.locread_to_qpid)),
412 FW_RI_TPTE_PS_G(ntohl(tpte.locread_to_qpid)),
Hariprasad Shenai031cf472014-07-14 21:34:53 +0530413 ((u64)ntohl(tpte.len_hi) << 32) | ntohl(tpte.len_lo),
414 ((u64)ntohl(tpte.va_hi) << 32) | ntohl(tpte.va_lo_fbo));
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500415 if (cc < space)
416 stagd->pos += cc;
417 return 0;
418}
419
420static int stag_release(struct inode *inode, struct file *file)
421{
422 struct c4iw_debugfs_data *stagd = file->private_data;
423 if (!stagd) {
Joe Perches700456b2017-02-09 14:23:50 -0800424 pr_info("%s null stagd?\n", __func__);
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500425 return 0;
426 }
Hariprasad Shenai031cf472014-07-14 21:34:53 +0530427 vfree(stagd->buf);
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500428 kfree(stagd);
429 return 0;
430}
431
432static int stag_open(struct inode *inode, struct file *file)
433{
434 struct c4iw_debugfs_data *stagd;
435 int ret = 0;
436 int count = 1;
437
438 stagd = kmalloc(sizeof *stagd, GFP_KERNEL);
439 if (!stagd) {
440 ret = -ENOMEM;
441 goto out;
442 }
443 stagd->devp = inode->i_private;
444 stagd->pos = 0;
445
446 spin_lock_irq(&stagd->devp->lock);
447 idr_for_each(&stagd->devp->mmidr, count_idrs, &count);
448 spin_unlock_irq(&stagd->devp->lock);
449
Hariprasad Shenai031cf472014-07-14 21:34:53 +0530450 stagd->bufsize = count * 256;
451 stagd->buf = vmalloc(stagd->bufsize);
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500452 if (!stagd->buf) {
453 ret = -ENOMEM;
454 goto err1;
455 }
456
457 spin_lock_irq(&stagd->devp->lock);
458 idr_for_each(&stagd->devp->mmidr, dump_stag, stagd);
459 spin_unlock_irq(&stagd->devp->lock);
460
461 stagd->buf[stagd->pos++] = 0;
462 file->private_data = stagd;
463 goto out;
464err1:
465 kfree(stagd);
466out:
467 return ret;
468}
469
470static const struct file_operations stag_debugfs_fops = {
471 .owner = THIS_MODULE,
472 .open = stag_open,
473 .release = stag_release,
474 .read = debugfs_read,
Steve Wise8bbac892010-09-29 14:11:12 +0000475 .llseek = default_llseek,
Steve Wisecfdda9d2010-04-21 15:30:06 -0700476};
477
Steve Wise05eb2382014-03-14 21:52:08 +0530478static char *db_state_str[] = {"NORMAL", "FLOW_CONTROL", "RECOVERY", "STOPPED"};
Vipul Pandya422eea02012-05-18 15:29:30 +0530479
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530480static int stats_show(struct seq_file *seq, void *v)
481{
482 struct c4iw_dev *dev = seq->private;
483
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530484 seq_printf(seq, " Object: %10s %10s %10s %10s\n", "Total", "Current",
485 "Max", "Fail");
486 seq_printf(seq, " PDID: %10llu %10llu %10llu %10llu\n",
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530487 dev->rdev.stats.pd.total, dev->rdev.stats.pd.cur,
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530488 dev->rdev.stats.pd.max, dev->rdev.stats.pd.fail);
489 seq_printf(seq, " QID: %10llu %10llu %10llu %10llu\n",
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530490 dev->rdev.stats.qid.total, dev->rdev.stats.qid.cur,
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530491 dev->rdev.stats.qid.max, dev->rdev.stats.qid.fail);
492 seq_printf(seq, " TPTMEM: %10llu %10llu %10llu %10llu\n",
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530493 dev->rdev.stats.stag.total, dev->rdev.stats.stag.cur,
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530494 dev->rdev.stats.stag.max, dev->rdev.stats.stag.fail);
495 seq_printf(seq, " PBLMEM: %10llu %10llu %10llu %10llu\n",
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530496 dev->rdev.stats.pbl.total, dev->rdev.stats.pbl.cur,
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530497 dev->rdev.stats.pbl.max, dev->rdev.stats.pbl.fail);
498 seq_printf(seq, " RQTMEM: %10llu %10llu %10llu %10llu\n",
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530499 dev->rdev.stats.rqt.total, dev->rdev.stats.rqt.cur,
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530500 dev->rdev.stats.rqt.max, dev->rdev.stats.rqt.fail);
501 seq_printf(seq, " OCQPMEM: %10llu %10llu %10llu %10llu\n",
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530502 dev->rdev.stats.ocqp.total, dev->rdev.stats.ocqp.cur,
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530503 dev->rdev.stats.ocqp.max, dev->rdev.stats.ocqp.fail);
Vipul Pandya2c974782012-05-18 15:29:28 +0530504 seq_printf(seq, " DB FULL: %10llu\n", dev->rdev.stats.db_full);
505 seq_printf(seq, " DB EMPTY: %10llu\n", dev->rdev.stats.db_empty);
506 seq_printf(seq, " DB DROP: %10llu\n", dev->rdev.stats.db_drop);
Steve Wise05eb2382014-03-14 21:52:08 +0530507 seq_printf(seq, " DB State: %s Transitions %llu FC Interruptions %llu\n",
Vipul Pandya422eea02012-05-18 15:29:30 +0530508 db_state_str[dev->db_state],
Steve Wise05eb2382014-03-14 21:52:08 +0530509 dev->rdev.stats.db_state_transitions,
510 dev->rdev.stats.db_fc_interruptions);
Vipul Pandya1cab7752012-12-10 09:30:55 +0000511 seq_printf(seq, "TCAM_FULL: %10llu\n", dev->rdev.stats.tcam_full);
Vipul Pandya793dad92012-12-10 09:30:56 +0000512 seq_printf(seq, "ACT_OFLD_CONN_FAILS: %10llu\n",
513 dev->rdev.stats.act_ofld_conn_fails);
514 seq_printf(seq, "PAS_OFLD_CONN_FAILS: %10llu\n",
515 dev->rdev.stats.pas_ofld_conn_fails);
Hariprasad S179d03b2015-05-05 03:55:24 +0530516 seq_printf(seq, "NEG_ADV_RCVD: %10llu\n", dev->rdev.stats.neg_adv);
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +0530517 seq_printf(seq, "AVAILABLE IRD: %10u\n", dev->avail_ird);
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530518 return 0;
519}
520
521static int stats_open(struct inode *inode, struct file *file)
522{
523 return single_open(file, stats_show, inode->i_private);
524}
525
526static ssize_t stats_clear(struct file *file, const char __user *buf,
527 size_t count, loff_t *pos)
528{
529 struct c4iw_dev *dev = ((struct seq_file *)file->private_data)->private;
530
531 mutex_lock(&dev->rdev.stats.lock);
532 dev->rdev.stats.pd.max = 0;
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530533 dev->rdev.stats.pd.fail = 0;
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530534 dev->rdev.stats.qid.max = 0;
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530535 dev->rdev.stats.qid.fail = 0;
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530536 dev->rdev.stats.stag.max = 0;
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530537 dev->rdev.stats.stag.fail = 0;
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530538 dev->rdev.stats.pbl.max = 0;
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530539 dev->rdev.stats.pbl.fail = 0;
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530540 dev->rdev.stats.rqt.max = 0;
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530541 dev->rdev.stats.rqt.fail = 0;
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530542 dev->rdev.stats.ocqp.max = 0;
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530543 dev->rdev.stats.ocqp.fail = 0;
Vipul Pandya2c974782012-05-18 15:29:28 +0530544 dev->rdev.stats.db_full = 0;
545 dev->rdev.stats.db_empty = 0;
546 dev->rdev.stats.db_drop = 0;
Vipul Pandya422eea02012-05-18 15:29:30 +0530547 dev->rdev.stats.db_state_transitions = 0;
Vipul Pandya793dad92012-12-10 09:30:56 +0000548 dev->rdev.stats.tcam_full = 0;
549 dev->rdev.stats.act_ofld_conn_fails = 0;
550 dev->rdev.stats.pas_ofld_conn_fails = 0;
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530551 mutex_unlock(&dev->rdev.stats.lock);
552 return count;
553}
554
555static const struct file_operations stats_debugfs_fops = {
556 .owner = THIS_MODULE,
557 .open = stats_open,
558 .release = single_release,
559 .read = seq_read,
560 .llseek = seq_lseek,
561 .write = stats_clear,
562};
563
Vipul Pandya793dad92012-12-10 09:30:56 +0000564static int dump_ep(int id, void *p, void *data)
565{
566 struct c4iw_ep *ep = p;
567 struct c4iw_debugfs_data *epd = data;
568 int space;
569 int cc;
570
571 space = epd->bufsize - epd->pos - 1;
572 if (space == 0)
573 return 1;
574
Vipul Pandya830662f2013-07-04 16:10:47 +0530575 if (ep->com.local_addr.ss_family == AF_INET) {
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530576 struct sockaddr_in *lsin;
577 struct sockaddr_in *rsin;
578 struct sockaddr_in *m_lsin;
579 struct sockaddr_in *m_rsin;
Vipul Pandya830662f2013-07-04 16:10:47 +0530580
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530581 set_ep_sin_addrs(ep, &lsin, &rsin, &m_lsin, &m_rsin);
Vipul Pandya830662f2013-07-04 16:10:47 +0530582 cc = snprintf(epd->buf + epd->pos, space,
583 "ep %p cm_id %p qp %p state %d flags 0x%lx "
584 "history 0x%lx hwtid %d atid %d "
Hariprasad S179d03b2015-05-05 03:55:24 +0530585 "conn_na %u abort_na %u "
Steve Wise9eccfe12014-03-26 17:08:09 -0500586 "%pI4:%d/%d <-> %pI4:%d/%d\n",
Vipul Pandya830662f2013-07-04 16:10:47 +0530587 ep, ep->com.cm_id, ep->com.qp,
588 (int)ep->com.state, ep->com.flags,
589 ep->com.history, ep->hwtid, ep->atid,
Hariprasad S179d03b2015-05-05 03:55:24 +0530590 ep->stats.connect_neg_adv,
591 ep->stats.abort_neg_adv,
Vipul Pandya830662f2013-07-04 16:10:47 +0530592 &lsin->sin_addr, ntohs(lsin->sin_port),
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530593 ntohs(m_lsin->sin_port),
Steve Wise9eccfe12014-03-26 17:08:09 -0500594 &rsin->sin_addr, ntohs(rsin->sin_port),
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530595 ntohs(m_rsin->sin_port));
Vipul Pandya830662f2013-07-04 16:10:47 +0530596 } else {
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530597 struct sockaddr_in6 *lsin6;
598 struct sockaddr_in6 *rsin6;
599 struct sockaddr_in6 *m_lsin6;
600 struct sockaddr_in6 *m_rsin6;
Vipul Pandya830662f2013-07-04 16:10:47 +0530601
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530602 set_ep_sin6_addrs(ep, &lsin6, &rsin6, &m_lsin6, &m_rsin6);
Vipul Pandya830662f2013-07-04 16:10:47 +0530603 cc = snprintf(epd->buf + epd->pos, space,
604 "ep %p cm_id %p qp %p state %d flags 0x%lx "
605 "history 0x%lx hwtid %d atid %d "
Hariprasad S179d03b2015-05-05 03:55:24 +0530606 "conn_na %u abort_na %u "
Steve Wise9eccfe12014-03-26 17:08:09 -0500607 "%pI6:%d/%d <-> %pI6:%d/%d\n",
Vipul Pandya830662f2013-07-04 16:10:47 +0530608 ep, ep->com.cm_id, ep->com.qp,
609 (int)ep->com.state, ep->com.flags,
610 ep->com.history, ep->hwtid, ep->atid,
Hariprasad S179d03b2015-05-05 03:55:24 +0530611 ep->stats.connect_neg_adv,
612 ep->stats.abort_neg_adv,
Vipul Pandya830662f2013-07-04 16:10:47 +0530613 &lsin6->sin6_addr, ntohs(lsin6->sin6_port),
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530614 ntohs(m_lsin6->sin6_port),
Steve Wise9eccfe12014-03-26 17:08:09 -0500615 &rsin6->sin6_addr, ntohs(rsin6->sin6_port),
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530616 ntohs(m_rsin6->sin6_port));
Vipul Pandya830662f2013-07-04 16:10:47 +0530617 }
Vipul Pandya793dad92012-12-10 09:30:56 +0000618 if (cc < space)
619 epd->pos += cc;
620 return 0;
621}
622
623static int dump_listen_ep(int id, void *p, void *data)
624{
625 struct c4iw_listen_ep *ep = p;
626 struct c4iw_debugfs_data *epd = data;
627 int space;
628 int cc;
629
630 space = epd->bufsize - epd->pos - 1;
631 if (space == 0)
632 return 1;
633
Vipul Pandya830662f2013-07-04 16:10:47 +0530634 if (ep->com.local_addr.ss_family == AF_INET) {
635 struct sockaddr_in *lsin = (struct sockaddr_in *)
Steve Wise170003c2016-02-26 09:18:03 -0600636 &ep->com.cm_id->local_addr;
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530637 struct sockaddr_in *m_lsin = (struct sockaddr_in *)
Steve Wise170003c2016-02-26 09:18:03 -0600638 &ep->com.cm_id->m_local_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +0530639
640 cc = snprintf(epd->buf + epd->pos, space,
641 "ep %p cm_id %p state %d flags 0x%lx stid %d "
Steve Wise9eccfe12014-03-26 17:08:09 -0500642 "backlog %d %pI4:%d/%d\n",
Vipul Pandya830662f2013-07-04 16:10:47 +0530643 ep, ep->com.cm_id, (int)ep->com.state,
644 ep->com.flags, ep->stid, ep->backlog,
Steve Wise9eccfe12014-03-26 17:08:09 -0500645 &lsin->sin_addr, ntohs(lsin->sin_port),
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530646 ntohs(m_lsin->sin_port));
Vipul Pandya830662f2013-07-04 16:10:47 +0530647 } else {
648 struct sockaddr_in6 *lsin6 = (struct sockaddr_in6 *)
Steve Wise170003c2016-02-26 09:18:03 -0600649 &ep->com.cm_id->local_addr;
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530650 struct sockaddr_in6 *m_lsin6 = (struct sockaddr_in6 *)
Steve Wise170003c2016-02-26 09:18:03 -0600651 &ep->com.cm_id->m_local_addr;
Vipul Pandya830662f2013-07-04 16:10:47 +0530652
653 cc = snprintf(epd->buf + epd->pos, space,
654 "ep %p cm_id %p state %d flags 0x%lx stid %d "
Steve Wise9eccfe12014-03-26 17:08:09 -0500655 "backlog %d %pI6:%d/%d\n",
Vipul Pandya830662f2013-07-04 16:10:47 +0530656 ep, ep->com.cm_id, (int)ep->com.state,
657 ep->com.flags, ep->stid, ep->backlog,
Steve Wise9eccfe12014-03-26 17:08:09 -0500658 &lsin6->sin6_addr, ntohs(lsin6->sin6_port),
Ganesh Goudarbab572f2017-01-20 12:32:01 +0530659 ntohs(m_lsin6->sin6_port));
Vipul Pandya830662f2013-07-04 16:10:47 +0530660 }
Vipul Pandya793dad92012-12-10 09:30:56 +0000661 if (cc < space)
662 epd->pos += cc;
663 return 0;
664}
665
666static int ep_release(struct inode *inode, struct file *file)
667{
668 struct c4iw_debugfs_data *epd = file->private_data;
669 if (!epd) {
670 pr_info("%s null qpd?\n", __func__);
671 return 0;
672 }
673 vfree(epd->buf);
674 kfree(epd);
675 return 0;
676}
677
678static int ep_open(struct inode *inode, struct file *file)
679{
680 struct c4iw_debugfs_data *epd;
681 int ret = 0;
682 int count = 1;
683
684 epd = kmalloc(sizeof(*epd), GFP_KERNEL);
685 if (!epd) {
686 ret = -ENOMEM;
687 goto out;
688 }
689 epd->devp = inode->i_private;
690 epd->pos = 0;
691
692 spin_lock_irq(&epd->devp->lock);
693 idr_for_each(&epd->devp->hwtid_idr, count_idrs, &count);
694 idr_for_each(&epd->devp->atid_idr, count_idrs, &count);
695 idr_for_each(&epd->devp->stid_idr, count_idrs, &count);
696 spin_unlock_irq(&epd->devp->lock);
697
Pramod Kumar63a71ba2014-11-21 09:36:35 -0600698 epd->bufsize = count * 240;
Vipul Pandya793dad92012-12-10 09:30:56 +0000699 epd->buf = vmalloc(epd->bufsize);
700 if (!epd->buf) {
701 ret = -ENOMEM;
702 goto err1;
703 }
704
705 spin_lock_irq(&epd->devp->lock);
706 idr_for_each(&epd->devp->hwtid_idr, dump_ep, epd);
707 idr_for_each(&epd->devp->atid_idr, dump_ep, epd);
708 idr_for_each(&epd->devp->stid_idr, dump_listen_ep, epd);
709 spin_unlock_irq(&epd->devp->lock);
710
711 file->private_data = epd;
712 goto out;
713err1:
714 kfree(epd);
715out:
716 return ret;
717}
718
719static const struct file_operations ep_debugfs_fops = {
720 .owner = THIS_MODULE,
721 .open = ep_open,
722 .release = ep_release,
723 .read = debugfs_read,
724};
725
Steve Wisecfdda9d2010-04-21 15:30:06 -0700726static int setup_debugfs(struct c4iw_dev *devp)
727{
Steve Wisecfdda9d2010-04-21 15:30:06 -0700728 if (!devp->debugfs_root)
729 return -1;
730
David Howellse59b4e92015-01-21 20:03:40 +0000731 debugfs_create_file_size("qps", S_IWUSR, devp->debugfs_root,
732 (void *)devp, &qp_debugfs_fops, 4096);
Steve Wise9e8d1fa32010-09-10 11:15:20 -0500733
David Howellse59b4e92015-01-21 20:03:40 +0000734 debugfs_create_file_size("stags", S_IWUSR, devp->debugfs_root,
735 (void *)devp, &stag_debugfs_fops, 4096);
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530736
David Howellse59b4e92015-01-21 20:03:40 +0000737 debugfs_create_file_size("stats", S_IWUSR, devp->debugfs_root,
738 (void *)devp, &stats_debugfs_fops, 4096);
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530739
David Howellse59b4e92015-01-21 20:03:40 +0000740 debugfs_create_file_size("eps", S_IWUSR, devp->debugfs_root,
741 (void *)devp, &ep_debugfs_fops, 4096);
Vipul Pandya793dad92012-12-10 09:30:56 +0000742
David Howellse59b4e92015-01-21 20:03:40 +0000743 if (c4iw_wr_log)
744 debugfs_create_file_size("wr_log", S_IWUSR, devp->debugfs_root,
745 (void *)devp, &wr_log_debugfs_fops, 4096);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700746 return 0;
747}
748
749void c4iw_release_dev_ucontext(struct c4iw_rdev *rdev,
750 struct c4iw_dev_ucontext *uctx)
751{
752 struct list_head *pos, *nxt;
753 struct c4iw_qid_list *entry;
754
755 mutex_lock(&uctx->lock);
756 list_for_each_safe(pos, nxt, &uctx->qpids) {
757 entry = list_entry(pos, struct c4iw_qid_list, entry);
758 list_del_init(&entry->entry);
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530759 if (!(entry->qid & rdev->qpmask)) {
Vipul Pandyaec3eead2012-05-18 15:29:32 +0530760 c4iw_put_resource(&rdev->resource.qid_table,
761 entry->qid);
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530762 mutex_lock(&rdev->stats.lock);
763 rdev->stats.qid.cur -= rdev->qpmask + 1;
764 mutex_unlock(&rdev->stats.lock);
765 }
Steve Wisecfdda9d2010-04-21 15:30:06 -0700766 kfree(entry);
767 }
768
Raju Rangojud4702642017-06-09 22:17:49 +0530769 list_for_each_safe(pos, nxt, &uctx->cqids) {
Steve Wisecfdda9d2010-04-21 15:30:06 -0700770 entry = list_entry(pos, struct c4iw_qid_list, entry);
771 list_del_init(&entry->entry);
772 kfree(entry);
773 }
774 mutex_unlock(&uctx->lock);
775}
776
777void c4iw_init_dev_ucontext(struct c4iw_rdev *rdev,
778 struct c4iw_dev_ucontext *uctx)
779{
780 INIT_LIST_HEAD(&uctx->qpids);
781 INIT_LIST_HEAD(&uctx->cqids);
782 mutex_init(&uctx->lock);
783}
784
785/* Caller takes care of locking if needed */
786static int c4iw_rdev_open(struct c4iw_rdev *rdev)
787{
788 int err;
789
790 c4iw_init_dev_ucontext(rdev, &rdev->uctx);
791
792 /*
Hariprasad S4a75a862015-04-22 01:45:01 +0530793 * This implementation assumes udb_density == ucq_density! Eventually
794 * we might need to support this but for now fail the open. Also the
795 * cqid and qpid range must match for now.
796 */
797 if (rdev->lldi.udb_density != rdev->lldi.ucq_density) {
Joe Perches700456b2017-02-09 14:23:50 -0800798 pr_err("%s: unsupported udb/ucq densities %u/%u\n",
Hariprasad S4a75a862015-04-22 01:45:01 +0530799 pci_name(rdev->lldi.pdev), rdev->lldi.udb_density,
800 rdev->lldi.ucq_density);
Hariprasad S4275a5b2016-01-12 16:33:22 +0530801 return -EINVAL;
Hariprasad S4a75a862015-04-22 01:45:01 +0530802 }
803 if (rdev->lldi.vr->qp.start != rdev->lldi.vr->cq.start ||
804 rdev->lldi.vr->qp.size != rdev->lldi.vr->cq.size) {
Joe Perches700456b2017-02-09 14:23:50 -0800805 pr_err("%s: unsupported qp and cq id ranges qp start %u size %u cq start %u size %u\n",
Hariprasad S4a75a862015-04-22 01:45:01 +0530806 pci_name(rdev->lldi.pdev), rdev->lldi.vr->qp.start,
807 rdev->lldi.vr->qp.size, rdev->lldi.vr->cq.size,
808 rdev->lldi.vr->cq.size);
Hariprasad S4275a5b2016-01-12 16:33:22 +0530809 return -EINVAL;
Hariprasad S4a75a862015-04-22 01:45:01 +0530810 }
811
Steve Wisecfdda9d2010-04-21 15:30:06 -0700812 rdev->qpmask = rdev->lldi.udb_density - 1;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700813 rdev->cqmask = rdev->lldi.ucq_density - 1;
Bharat Potnuri548ddb12017-09-27 13:05:49 +0530814 pr_debug("dev %s stag start 0x%0x size 0x%0x num stags %d pbl start 0x%0x size 0x%0x rq start 0x%0x size 0x%0x qp qid start %u size %u cq qid start %u size %u\n",
815 pci_name(rdev->lldi.pdev), rdev->lldi.vr->stag.start,
Joe Perchesa9a42882017-02-09 14:23:51 -0800816 rdev->lldi.vr->stag.size, c4iw_num_stags(rdev),
817 rdev->lldi.vr->pbl.start,
818 rdev->lldi.vr->pbl.size, rdev->lldi.vr->rq.start,
819 rdev->lldi.vr->rq.size,
820 rdev->lldi.vr->qp.start,
821 rdev->lldi.vr->qp.size,
822 rdev->lldi.vr->cq.start,
823 rdev->lldi.vr->cq.size);
824 pr_debug("udb %pR db_reg %p gts_reg %p qpmask 0x%x cqmask 0x%x\n",
825 &rdev->lldi.pdev->resource[2],
826 rdev->lldi.db_reg, rdev->lldi.gts_reg,
827 rdev->qpmask, rdev->cqmask);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700828
Hariprasad S4275a5b2016-01-12 16:33:22 +0530829 if (c4iw_num_stags(rdev) == 0)
830 return -EINVAL;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700831
Vipul Pandya8d81ef32012-05-18 15:29:27 +0530832 rdev->stats.pd.total = T4_MAX_NUM_PD;
833 rdev->stats.stag.total = rdev->lldi.vr->stag.size;
834 rdev->stats.pbl.total = rdev->lldi.vr->pbl.size;
835 rdev->stats.rqt.total = rdev->lldi.vr->rq.size;
836 rdev->stats.ocqp.total = rdev->lldi.vr->ocq.size;
837 rdev->stats.qid.total = rdev->lldi.vr->qp.size;
838
Steve Wisecfdda9d2010-04-21 15:30:06 -0700839 err = c4iw_init_resource(rdev, c4iw_num_stags(rdev), T4_MAX_NUM_PD);
840 if (err) {
Joe Perches700456b2017-02-09 14:23:50 -0800841 pr_err("error %d initializing resources\n", err);
Hariprasad S4275a5b2016-01-12 16:33:22 +0530842 return err;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700843 }
844 err = c4iw_pblpool_create(rdev);
845 if (err) {
Joe Perches700456b2017-02-09 14:23:50 -0800846 pr_err("error %d initializing pbl pool\n", err);
Hariprasad S4275a5b2016-01-12 16:33:22 +0530847 goto destroy_resource;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700848 }
849 err = c4iw_rqtpool_create(rdev);
850 if (err) {
Joe Perches700456b2017-02-09 14:23:50 -0800851 pr_err("error %d initializing rqt pool\n", err);
Hariprasad S4275a5b2016-01-12 16:33:22 +0530852 goto destroy_pblpool;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700853 }
Steve Wisec6d7b262010-09-13 11:23:57 -0500854 err = c4iw_ocqp_pool_create(rdev);
855 if (err) {
Joe Perches700456b2017-02-09 14:23:50 -0800856 pr_err("error %d initializing ocqp pool\n", err);
Hariprasad S4275a5b2016-01-12 16:33:22 +0530857 goto destroy_rqtpool;
Steve Wisec6d7b262010-09-13 11:23:57 -0500858 }
Steve Wise05eb2382014-03-14 21:52:08 +0530859 rdev->status_page = (struct t4_dev_status_page *)
860 __get_free_page(GFP_KERNEL);
Wei Yongjun15f7e3c2016-09-17 00:41:37 +0000861 if (!rdev->status_page) {
862 err = -ENOMEM;
Hariprasad S82b1df12016-01-12 16:33:21 +0530863 goto destroy_ocqp_pool;
Wei Yongjun15f7e3c2016-09-17 00:41:37 +0000864 }
Hariprasad Sc5dfb002015-12-11 13:02:01 +0530865 rdev->status_page->qp_start = rdev->lldi.vr->qp.start;
866 rdev->status_page->qp_size = rdev->lldi.vr->qp.size;
867 rdev->status_page->cq_start = rdev->lldi.vr->cq.start;
868 rdev->status_page->cq_size = rdev->lldi.vr->cq.size;
David S. Miller8fd90bb2014-07-22 00:44:59 -0700869
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +0530870 if (c4iw_wr_log) {
871 rdev->wr_log = kzalloc((1 << c4iw_wr_log_size_order) *
872 sizeof(*rdev->wr_log), GFP_KERNEL);
873 if (rdev->wr_log) {
874 rdev->wr_log_size = 1 << c4iw_wr_log_size_order;
875 atomic_set(&rdev->wr_log_idx, 0);
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +0530876 }
877 }
David S. Miller8fd90bb2014-07-22 00:44:59 -0700878
Steve Wisec12a67f2016-12-22 07:40:36 -0800879 rdev->free_workq = create_singlethread_workqueue("iw_cxgb4_free");
880 if (!rdev->free_workq) {
881 err = -ENOMEM;
Raju Rangojud4702642017-06-09 22:17:49 +0530882 goto err_free_status_page_and_wr_log;
Steve Wisec12a67f2016-12-22 07:40:36 -0800883 }
884
Steve Wise6b54d542014-07-08 10:20:35 -0500885 rdev->status_page->db_off = 0;
David S. Miller8fd90bb2014-07-22 00:44:59 -0700886
Steve Wisecfdda9d2010-04-21 15:30:06 -0700887 return 0;
Raju Rangojud4702642017-06-09 22:17:49 +0530888err_free_status_page_and_wr_log:
889 if (c4iw_wr_log && rdev->wr_log)
890 kfree(rdev->wr_log);
Steve Wisec12a67f2016-12-22 07:40:36 -0800891 free_page((unsigned long)rdev->status_page);
Hariprasad S82b1df12016-01-12 16:33:21 +0530892destroy_ocqp_pool:
893 c4iw_ocqp_pool_destroy(rdev);
Hariprasad S4275a5b2016-01-12 16:33:22 +0530894destroy_rqtpool:
Steve Wisec6d7b262010-09-13 11:23:57 -0500895 c4iw_rqtpool_destroy(rdev);
Hariprasad S4275a5b2016-01-12 16:33:22 +0530896destroy_pblpool:
Steve Wisecfdda9d2010-04-21 15:30:06 -0700897 c4iw_pblpool_destroy(rdev);
Hariprasad S4275a5b2016-01-12 16:33:22 +0530898destroy_resource:
Steve Wisecfdda9d2010-04-21 15:30:06 -0700899 c4iw_destroy_resource(&rdev->resource);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700900 return err;
901}
902
903static void c4iw_rdev_close(struct c4iw_rdev *rdev)
904{
Steve Wisec12a67f2016-12-22 07:40:36 -0800905 destroy_workqueue(rdev->free_workq);
Hariprasad Shenai7730b4c2014-07-14 21:34:54 +0530906 kfree(rdev->wr_log);
Raju Rangojud4702642017-06-09 22:17:49 +0530907 c4iw_release_dev_ucontext(rdev, &rdev->uctx);
Steve Wise05eb2382014-03-14 21:52:08 +0530908 free_page((unsigned long)rdev->status_page);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700909 c4iw_pblpool_destroy(rdev);
910 c4iw_rqtpool_destroy(rdev);
Raju Rangojud4702642017-06-09 22:17:49 +0530911 c4iw_ocqp_pool_destroy(rdev);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700912 c4iw_destroy_resource(&rdev->resource);
913}
914
Steve Wise9efe10a2011-10-06 09:32:44 -0700915static void c4iw_dealloc(struct uld_ctx *ctx)
Steve Wisecfdda9d2010-04-21 15:30:06 -0700916{
Steve Wise2f25e9a2011-05-09 22:06:23 -0700917 c4iw_rdev_close(&ctx->dev->rdev);
Steve Wise37eb8162016-09-01 06:44:52 -0700918 WARN_ON_ONCE(!idr_is_empty(&ctx->dev->cqidr));
Steve Wise2f25e9a2011-05-09 22:06:23 -0700919 idr_destroy(&ctx->dev->cqidr);
Steve Wise37eb8162016-09-01 06:44:52 -0700920 WARN_ON_ONCE(!idr_is_empty(&ctx->dev->qpidr));
Steve Wise2f25e9a2011-05-09 22:06:23 -0700921 idr_destroy(&ctx->dev->qpidr);
Steve Wise37eb8162016-09-01 06:44:52 -0700922 WARN_ON_ONCE(!idr_is_empty(&ctx->dev->mmidr));
Steve Wise2f25e9a2011-05-09 22:06:23 -0700923 idr_destroy(&ctx->dev->mmidr);
Steve Wise37eb8162016-09-01 06:44:52 -0700924 wait_event(ctx->dev->wait, idr_is_empty(&ctx->dev->hwtid_idr));
Vipul Pandya793dad92012-12-10 09:30:56 +0000925 idr_destroy(&ctx->dev->hwtid_idr);
926 idr_destroy(&ctx->dev->stid_idr);
927 idr_destroy(&ctx->dev->atid_idr);
Steve Wisefa658a92014-04-09 09:38:25 -0500928 if (ctx->dev->rdev.bar2_kva)
929 iounmap(ctx->dev->rdev.bar2_kva);
930 if (ctx->dev->rdev.oc_mw_kva)
931 iounmap(ctx->dev->rdev.oc_mw_kva);
Steve Wise2f25e9a2011-05-09 22:06:23 -0700932 ib_dealloc_device(&ctx->dev->ibdev);
933 ctx->dev = NULL;
Steve Wisecfdda9d2010-04-21 15:30:06 -0700934}
935
Steve Wise9efe10a2011-10-06 09:32:44 -0700936static void c4iw_remove(struct uld_ctx *ctx)
937{
Bharat Potnuri548ddb12017-09-27 13:05:49 +0530938 pr_debug("c4iw_dev %p\n", ctx->dev);
Steve Wise9efe10a2011-10-06 09:32:44 -0700939 c4iw_unregister_device(ctx->dev);
940 c4iw_dealloc(ctx);
941}
942
943static int rdma_supported(const struct cxgb4_lld_info *infop)
944{
945 return infop->vr->stag.size > 0 && infop->vr->pbl.size > 0 &&
946 infop->vr->rq.size > 0 && infop->vr->qp.size > 0 &&
Vipul Pandyaf079af72013-03-14 05:08:58 +0000947 infop->vr->cq.size > 0;
Steve Wise9efe10a2011-10-06 09:32:44 -0700948}
949
Steve Wisecfdda9d2010-04-21 15:30:06 -0700950static struct c4iw_dev *c4iw_alloc(const struct cxgb4_lld_info *infop)
951{
952 struct c4iw_dev *devp;
953 int ret;
954
Steve Wise9efe10a2011-10-06 09:32:44 -0700955 if (!rdma_supported(infop)) {
Joe Perches700456b2017-02-09 14:23:50 -0800956 pr_info("%s: RDMA not supported on this device\n",
957 pci_name(infop->pdev));
Steve Wise9efe10a2011-10-06 09:32:44 -0700958 return ERR_PTR(-ENOSYS);
959 }
Vipul Pandyaf079af72013-03-14 05:08:58 +0000960 if (!ocqp_supported(infop))
Joe Perches700456b2017-02-09 14:23:50 -0800961 pr_info("%s: On-Chip Queues not supported on this device\n",
Vipul Pandyaf079af72013-03-14 05:08:58 +0000962 pci_name(infop->pdev));
Vipul Pandya80ccdd62013-03-14 05:09:00 +0000963
Steve Wisecfdda9d2010-04-21 15:30:06 -0700964 devp = (struct c4iw_dev *)ib_alloc_device(sizeof(*devp));
965 if (!devp) {
Joe Perches700456b2017-02-09 14:23:50 -0800966 pr_err("Cannot allocate ib device\n");
Steve Wisebbe9a0a2011-05-09 22:06:22 -0700967 return ERR_PTR(-ENOMEM);
Steve Wisecfdda9d2010-04-21 15:30:06 -0700968 }
969 devp->rdev.lldi = *infop;
970
Hariprasad Shenai04e10e22014-07-14 21:34:51 +0530971 /* init various hw-queue params based on lld info */
Bharat Potnuri548ddb12017-09-27 13:05:49 +0530972 pr_debug("Ing. padding boundary is %d, egrsstatuspagesize = %d\n",
973 devp->rdev.lldi.sge_ingpadboundary,
Joe Perchesa9a42882017-02-09 14:23:51 -0800974 devp->rdev.lldi.sge_egrstatuspagesize);
Hariprasad Shenai04e10e22014-07-14 21:34:51 +0530975
976 devp->rdev.hw_queue.t4_eq_status_entries =
Ganesh Goudar4bbfabe2017-05-19 14:48:42 +0530977 devp->rdev.lldi.sge_egrstatuspagesize / 64;
Hariprasad Shenai66eb19a2014-07-21 20:55:15 +0530978 devp->rdev.hw_queue.t4_max_eq_size = 65520;
979 devp->rdev.hw_queue.t4_max_iq_size = 65520;
980 devp->rdev.hw_queue.t4_max_rq_size = 8192 -
981 devp->rdev.hw_queue.t4_eq_status_entries - 1;
Hariprasad Shenai04e10e22014-07-14 21:34:51 +0530982 devp->rdev.hw_queue.t4_max_sq_size =
Hariprasad Shenai66eb19a2014-07-21 20:55:15 +0530983 devp->rdev.hw_queue.t4_max_eq_size -
984 devp->rdev.hw_queue.t4_eq_status_entries - 1;
Hariprasad Shenai04e10e22014-07-14 21:34:51 +0530985 devp->rdev.hw_queue.t4_max_qp_depth =
Hariprasad Shenai66eb19a2014-07-21 20:55:15 +0530986 devp->rdev.hw_queue.t4_max_rq_size;
Hariprasad Shenai04e10e22014-07-14 21:34:51 +0530987 devp->rdev.hw_queue.t4_max_cq_depth =
Hariprasad Shenai66eb19a2014-07-21 20:55:15 +0530988 devp->rdev.hw_queue.t4_max_iq_size - 2;
Hariprasad Shenai04e10e22014-07-14 21:34:51 +0530989 devp->rdev.hw_queue.t4_stat_len =
990 devp->rdev.lldi.sge_egrstatuspagesize;
991
Steve Wisefa658a92014-04-09 09:38:25 -0500992 /*
Hariprasad S963cab52015-09-23 17:19:27 +0530993 * For T5/T6 devices, we map all of BAR2 with WC.
Steve Wisefa658a92014-04-09 09:38:25 -0500994 * For T4 devices with onchip qp mem, we map only that part
995 * of BAR2 with WC.
996 */
997 devp->rdev.bar2_pa = pci_resource_start(devp->rdev.lldi.pdev, 2);
Hariprasad S963cab52015-09-23 17:19:27 +0530998 if (!is_t4(devp->rdev.lldi.adapter_type)) {
Steve Wisefa658a92014-04-09 09:38:25 -0500999 devp->rdev.bar2_kva = ioremap_wc(devp->rdev.bar2_pa,
1000 pci_resource_len(devp->rdev.lldi.pdev, 2));
1001 if (!devp->rdev.bar2_kva) {
Joe Perches700456b2017-02-09 14:23:50 -08001002 pr_err("Unable to ioremap BAR2\n");
Christoph Jaeger65b302a2014-04-21 17:02:42 +02001003 ib_dealloc_device(&devp->ibdev);
Steve Wisefa658a92014-04-09 09:38:25 -05001004 return ERR_PTR(-EINVAL);
1005 }
1006 } else if (ocqp_supported(infop)) {
1007 devp->rdev.oc_mw_pa =
1008 pci_resource_start(devp->rdev.lldi.pdev, 2) +
1009 pci_resource_len(devp->rdev.lldi.pdev, 2) -
1010 roundup_pow_of_two(devp->rdev.lldi.vr->ocq.size);
1011 devp->rdev.oc_mw_kva = ioremap_wc(devp->rdev.oc_mw_pa,
1012 devp->rdev.lldi.vr->ocq.size);
1013 if (!devp->rdev.oc_mw_kva) {
Joe Perches700456b2017-02-09 14:23:50 -08001014 pr_err("Unable to ioremap onchip mem\n");
Christoph Jaeger65b302a2014-04-21 17:02:42 +02001015 ib_dealloc_device(&devp->ibdev);
Steve Wisefa658a92014-04-09 09:38:25 -05001016 return ERR_PTR(-EINVAL);
1017 }
1018 }
Steve Wisec6d7b262010-09-13 11:23:57 -05001019
Joe Perchesa9a42882017-02-09 14:23:51 -08001020 pr_debug("ocq memory: hw_start 0x%x size %u mw_pa 0x%lx mw_kva %p\n",
1021 devp->rdev.lldi.vr->ocq.start, devp->rdev.lldi.vr->ocq.size,
1022 devp->rdev.oc_mw_pa, devp->rdev.oc_mw_kva);
Steve Wisec6d7b262010-09-13 11:23:57 -05001023
Steve Wisecfdda9d2010-04-21 15:30:06 -07001024 ret = c4iw_rdev_open(&devp->rdev);
1025 if (ret) {
Joe Perches700456b2017-02-09 14:23:50 -08001026 pr_err("Unable to open CXIO rdev err %d\n", ret);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001027 ib_dealloc_device(&devp->ibdev);
Steve Wisebbe9a0a2011-05-09 22:06:22 -07001028 return ERR_PTR(ret);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001029 }
1030
1031 idr_init(&devp->cqidr);
1032 idr_init(&devp->qpidr);
1033 idr_init(&devp->mmidr);
Vipul Pandya793dad92012-12-10 09:30:56 +00001034 idr_init(&devp->hwtid_idr);
1035 idr_init(&devp->stid_idr);
1036 idr_init(&devp->atid_idr);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001037 spin_lock_init(&devp->lock);
Vipul Pandya8d81ef32012-05-18 15:29:27 +05301038 mutex_init(&devp->rdev.stats.lock);
Vipul Pandya2c974782012-05-18 15:29:28 +05301039 mutex_init(&devp->db_mutex);
Steve Wise05eb2382014-03-14 21:52:08 +05301040 INIT_LIST_HEAD(&devp->db_fc_list);
Steve Wise37eb8162016-09-01 06:44:52 -07001041 init_waitqueue_head(&devp->wait);
Hariprasad Shenai4c2c5762014-07-14 21:34:52 +05301042 devp->avail_ird = devp->rdev.lldi.max_ird_adapter;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001043
Steve Wisecfdda9d2010-04-21 15:30:06 -07001044 if (c4iw_debugfs_root) {
1045 devp->debugfs_root = debugfs_create_dir(
1046 pci_name(devp->rdev.lldi.pdev),
1047 c4iw_debugfs_root);
1048 setup_debugfs(devp);
1049 }
Steve Wise9eccfe12014-03-26 17:08:09 -05001050
Steve Wise9eccfe12014-03-26 17:08:09 -05001051
Steve Wisecfdda9d2010-04-21 15:30:06 -07001052 return devp;
1053}
1054
1055static void *c4iw_uld_add(const struct cxgb4_lld_info *infop)
1056{
Steve Wise2f25e9a2011-05-09 22:06:23 -07001057 struct uld_ctx *ctx;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001058 static int vers_printed;
1059 int i;
1060
1061 if (!vers_printed++)
Vipul Pandyaf079af72013-03-14 05:08:58 +00001062 pr_info("Chelsio T4/T5 RDMA Driver - version %s\n",
1063 DRV_VERSION);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001064
Steve Wise2f25e9a2011-05-09 22:06:23 -07001065 ctx = kzalloc(sizeof *ctx, GFP_KERNEL);
1066 if (!ctx) {
1067 ctx = ERR_PTR(-ENOMEM);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001068 goto out;
Steve Wise2f25e9a2011-05-09 22:06:23 -07001069 }
1070 ctx->lldi = *infop;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001071
Bharat Potnuri548ddb12017-09-27 13:05:49 +05301072 pr_debug("found device %s nchan %u nrxq %u ntxq %u nports %u\n",
1073 pci_name(ctx->lldi.pdev),
Joe Perchesa9a42882017-02-09 14:23:51 -08001074 ctx->lldi.nchan, ctx->lldi.nrxq,
1075 ctx->lldi.ntxq, ctx->lldi.nports);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001076
Steve Wise2f25e9a2011-05-09 22:06:23 -07001077 mutex_lock(&dev_mutex);
1078 list_add_tail(&ctx->entry, &uld_ctx_list);
1079 mutex_unlock(&dev_mutex);
1080
1081 for (i = 0; i < ctx->lldi.nrxq; i++)
Joe Perchesa9a42882017-02-09 14:23:51 -08001082 pr_debug("rxqid[%u] %u\n", i, ctx->lldi.rxq_ids[i]);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001083out:
Steve Wise2f25e9a2011-05-09 22:06:23 -07001084 return ctx;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001085}
1086
Vipul Pandya1cab7752012-12-10 09:30:55 +00001087static inline struct sk_buff *copy_gl_to_skb_pkt(const struct pkt_gl *gl,
1088 const __be64 *rsp,
1089 u32 pktshift)
1090{
1091 struct sk_buff *skb;
1092
1093 /*
1094 * Allocate space for cpl_pass_accept_req which will be synthesized by
1095 * driver. Once the driver synthesizes the request the skb will go
1096 * through the regular cpl_pass_accept_req processing.
1097 * The math here assumes sizeof cpl_pass_accept_req >= sizeof
1098 * cpl_rx_pkt.
1099 */
1100 skb = alloc_skb(gl->tot_len + sizeof(struct cpl_pass_accept_req) +
1101 sizeof(struct rss_header) - pktshift, GFP_ATOMIC);
1102 if (unlikely(!skb))
1103 return NULL;
1104
1105 __skb_put(skb, gl->tot_len + sizeof(struct cpl_pass_accept_req) +
1106 sizeof(struct rss_header) - pktshift);
1107
1108 /*
1109 * This skb will contain:
1110 * rss_header from the rspq descriptor (1 flit)
1111 * cpl_rx_pkt struct from the rspq descriptor (2 flits)
1112 * space for the difference between the size of an
1113 * rx_pkt and pass_accept_req cpl (1 flit)
1114 * the packet data from the gl
1115 */
1116 skb_copy_to_linear_data(skb, rsp, sizeof(struct cpl_pass_accept_req) +
1117 sizeof(struct rss_header));
1118 skb_copy_to_linear_data_offset(skb, sizeof(struct rss_header) +
1119 sizeof(struct cpl_pass_accept_req),
1120 gl->va + pktshift,
1121 gl->tot_len - pktshift);
1122 return skb;
1123}
1124
1125static inline int recv_rx_pkt(struct c4iw_dev *dev, const struct pkt_gl *gl,
1126 const __be64 *rsp)
1127{
1128 unsigned int opcode = *(u8 *)rsp;
1129 struct sk_buff *skb;
1130
1131 if (opcode != CPL_RX_PKT)
1132 goto out;
1133
1134 skb = copy_gl_to_skb_pkt(gl , rsp, dev->rdev.lldi.sge_pktshift);
1135 if (skb == NULL)
1136 goto out;
1137
1138 if (c4iw_handlers[opcode] == NULL) {
Joe Perches700456b2017-02-09 14:23:50 -08001139 pr_info("%s no handler opcode 0x%x...\n", __func__, opcode);
Vipul Pandya1cab7752012-12-10 09:30:55 +00001140 kfree_skb(skb);
1141 goto out;
1142 }
1143 c4iw_handlers[opcode](dev, skb);
1144 return 1;
1145out:
1146 return 0;
1147}
1148
Steve Wisecfdda9d2010-04-21 15:30:06 -07001149static int c4iw_uld_rx_handler(void *handle, const __be64 *rsp,
1150 const struct pkt_gl *gl)
1151{
Steve Wise2f25e9a2011-05-09 22:06:23 -07001152 struct uld_ctx *ctx = handle;
1153 struct c4iw_dev *dev = ctx->dev;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001154 struct sk_buff *skb;
Vipul Pandya1cab7752012-12-10 09:30:55 +00001155 u8 opcode;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001156
1157 if (gl == NULL) {
1158 /* omit RSS and rsp_ctrl at end of descriptor */
1159 unsigned int len = 64 - sizeof(struct rsp_ctrl) - 8;
1160
1161 skb = alloc_skb(256, GFP_ATOMIC);
1162 if (!skb)
1163 goto nomem;
1164 __skb_put(skb, len);
1165 skb_copy_to_linear_data(skb, &rsp[1], len);
1166 } else if (gl == CXGB4_MSG_AN) {
1167 const struct rsp_ctrl *rc = (void *)rsp;
1168
1169 u32 qid = be32_to_cpu(rc->pldbuflen_qid);
1170 c4iw_ev_handler(dev, qid);
1171 return 0;
Vipul Pandya1cab7752012-12-10 09:30:55 +00001172 } else if (unlikely(*(u8 *)rsp != *(u8 *)gl->va)) {
1173 if (recv_rx_pkt(dev, gl, rsp))
1174 return 0;
1175
Joe Perches700456b2017-02-09 14:23:50 -08001176 pr_info("%s: unexpected FL contents at %p, RSS %#llx, FL %#llx, len %u\n",
1177 pci_name(ctx->lldi.pdev), gl->va,
1178 be64_to_cpu(*rsp),
1179 be64_to_cpu(*(__force __be64 *)gl->va),
1180 gl->tot_len);
Vipul Pandya1cab7752012-12-10 09:30:55 +00001181
1182 return 0;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001183 } else {
Steve Wiseda411ba2010-10-18 15:16:45 +00001184 skb = cxgb4_pktgl_to_skb(gl, 128, 128);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001185 if (unlikely(!skb))
1186 goto nomem;
1187 }
1188
Vipul Pandya1cab7752012-12-10 09:30:55 +00001189 opcode = *(u8 *)rsp;
Steve Wisedbb084c2014-03-21 20:40:30 +05301190 if (c4iw_handlers[opcode]) {
Steve Wisecfdda9d2010-04-21 15:30:06 -07001191 c4iw_handlers[opcode](dev, skb);
Steve Wisedbb084c2014-03-21 20:40:30 +05301192 } else {
Joe Perches700456b2017-02-09 14:23:50 -08001193 pr_info("%s no handler opcode 0x%x...\n", __func__, opcode);
Steve Wisedbb084c2014-03-21 20:40:30 +05301194 kfree_skb(skb);
1195 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001196
1197 return 0;
1198nomem:
1199 return -1;
1200}
1201
1202static int c4iw_uld_state_change(void *handle, enum cxgb4_state new_state)
1203{
Steve Wise2f25e9a2011-05-09 22:06:23 -07001204 struct uld_ctx *ctx = handle;
Steve Wise1c01c532010-05-20 16:57:32 -05001205
Bharat Potnuri548ddb12017-09-27 13:05:49 +05301206 pr_debug("new_state %u\n", new_state);
Steve Wise1c01c532010-05-20 16:57:32 -05001207 switch (new_state) {
1208 case CXGB4_STATE_UP:
Joe Perches700456b2017-02-09 14:23:50 -08001209 pr_info("%s: Up\n", pci_name(ctx->lldi.pdev));
Steve Wise2f25e9a2011-05-09 22:06:23 -07001210 if (!ctx->dev) {
Steve Wise9efe10a2011-10-06 09:32:44 -07001211 int ret;
Steve Wise2f25e9a2011-05-09 22:06:23 -07001212
1213 ctx->dev = c4iw_alloc(&ctx->lldi);
Steve Wise9efe10a2011-10-06 09:32:44 -07001214 if (IS_ERR(ctx->dev)) {
Joe Perches700456b2017-02-09 14:23:50 -08001215 pr_err("%s: initialization failed: %ld\n",
Steve Wise9efe10a2011-10-06 09:32:44 -07001216 pci_name(ctx->lldi.pdev),
1217 PTR_ERR(ctx->dev));
1218 ctx->dev = NULL;
1219 break;
1220 }
1221 ret = c4iw_register_device(ctx->dev);
1222 if (ret) {
Joe Perches700456b2017-02-09 14:23:50 -08001223 pr_err("%s: RDMA registration failed: %d\n",
Steve Wise2f25e9a2011-05-09 22:06:23 -07001224 pci_name(ctx->lldi.pdev), ret);
Steve Wise9efe10a2011-10-06 09:32:44 -07001225 c4iw_dealloc(ctx);
1226 }
Steve Wise1c01c532010-05-20 16:57:32 -05001227 }
1228 break;
1229 case CXGB4_STATE_DOWN:
Joe Perches700456b2017-02-09 14:23:50 -08001230 pr_info("%s: Down\n", pci_name(ctx->lldi.pdev));
Steve Wise2f25e9a2011-05-09 22:06:23 -07001231 if (ctx->dev)
1232 c4iw_remove(ctx);
Steve Wise1c01c532010-05-20 16:57:32 -05001233 break;
1234 case CXGB4_STATE_START_RECOVERY:
Joe Perches700456b2017-02-09 14:23:50 -08001235 pr_info("%s: Fatal Error\n", pci_name(ctx->lldi.pdev));
Steve Wise2f25e9a2011-05-09 22:06:23 -07001236 if (ctx->dev) {
Steve Wise767fbe82011-03-11 22:30:53 +00001237 struct ib_event event;
1238
Steve Wise2f25e9a2011-05-09 22:06:23 -07001239 ctx->dev->rdev.flags |= T4_FATAL_ERROR;
Steve Wise767fbe82011-03-11 22:30:53 +00001240 memset(&event, 0, sizeof event);
1241 event.event = IB_EVENT_DEVICE_FATAL;
Steve Wise2f25e9a2011-05-09 22:06:23 -07001242 event.device = &ctx->dev->ibdev;
Steve Wise767fbe82011-03-11 22:30:53 +00001243 ib_dispatch_event(&event);
Steve Wise2f25e9a2011-05-09 22:06:23 -07001244 c4iw_remove(ctx);
Steve Wise767fbe82011-03-11 22:30:53 +00001245 }
Steve Wise1c01c532010-05-20 16:57:32 -05001246 break;
1247 case CXGB4_STATE_DETACH:
Joe Perches700456b2017-02-09 14:23:50 -08001248 pr_info("%s: Detach\n", pci_name(ctx->lldi.pdev));
Steve Wise2f25e9a2011-05-09 22:06:23 -07001249 if (ctx->dev)
1250 c4iw_remove(ctx);
Steve Wise1c01c532010-05-20 16:57:32 -05001251 break;
1252 }
Steve Wisecfdda9d2010-04-21 15:30:06 -07001253 return 0;
1254}
1255
Vipul Pandya2c974782012-05-18 15:29:28 +05301256static int disable_qp_db(int id, void *p, void *data)
1257{
1258 struct c4iw_qp *qp = p;
1259
1260 t4_disable_wq_db(&qp->wq);
1261 return 0;
1262}
1263
1264static void stop_queues(struct uld_ctx *ctx)
1265{
Steve Wise05eb2382014-03-14 21:52:08 +05301266 unsigned long flags;
1267
1268 spin_lock_irqsave(&ctx->dev->lock, flags);
1269 ctx->dev->rdev.stats.db_state_transitions++;
1270 ctx->dev->db_state = STOPPED;
1271 if (ctx->dev->rdev.flags & T4_STATUS_PAGE_DISABLED)
Vipul Pandya422eea02012-05-18 15:29:30 +05301272 idr_for_each(&ctx->dev->qpidr, disable_qp_db, NULL);
Steve Wise05eb2382014-03-14 21:52:08 +05301273 else
1274 ctx->dev->rdev.status_page->db_off = 1;
1275 spin_unlock_irqrestore(&ctx->dev->lock, flags);
Vipul Pandya2c974782012-05-18 15:29:28 +05301276}
1277
1278static int enable_qp_db(int id, void *p, void *data)
1279{
1280 struct c4iw_qp *qp = p;
1281
1282 t4_enable_wq_db(&qp->wq);
1283 return 0;
1284}
1285
Steve Wise05eb2382014-03-14 21:52:08 +05301286static void resume_rc_qp(struct c4iw_qp *qp)
1287{
1288 spin_lock(&qp->lock);
Hariprasad S963cab52015-09-23 17:19:27 +05301289 t4_ring_sq_db(&qp->wq, qp->wq.sq.wq_pidx_inc, NULL);
Steve Wise05eb2382014-03-14 21:52:08 +05301290 qp->wq.sq.wq_pidx_inc = 0;
Hariprasad S963cab52015-09-23 17:19:27 +05301291 t4_ring_rq_db(&qp->wq, qp->wq.rq.wq_pidx_inc, NULL);
Steve Wise05eb2382014-03-14 21:52:08 +05301292 qp->wq.rq.wq_pidx_inc = 0;
1293 spin_unlock(&qp->lock);
1294}
1295
1296static void resume_a_chunk(struct uld_ctx *ctx)
1297{
1298 int i;
1299 struct c4iw_qp *qp;
1300
1301 for (i = 0; i < DB_FC_RESUME_SIZE; i++) {
1302 qp = list_first_entry(&ctx->dev->db_fc_list, struct c4iw_qp,
1303 db_fc_entry);
1304 list_del_init(&qp->db_fc_entry);
1305 resume_rc_qp(qp);
1306 if (list_empty(&ctx->dev->db_fc_list))
1307 break;
1308 }
1309}
1310
Vipul Pandya2c974782012-05-18 15:29:28 +05301311static void resume_queues(struct uld_ctx *ctx)
1312{
1313 spin_lock_irq(&ctx->dev->lock);
Steve Wise05eb2382014-03-14 21:52:08 +05301314 if (ctx->dev->db_state != STOPPED)
1315 goto out;
1316 ctx->dev->db_state = FLOW_CONTROL;
1317 while (1) {
1318 if (list_empty(&ctx->dev->db_fc_list)) {
1319 WARN_ON(ctx->dev->db_state != FLOW_CONTROL);
1320 ctx->dev->db_state = NORMAL;
1321 ctx->dev->rdev.stats.db_state_transitions++;
1322 if (ctx->dev->rdev.flags & T4_STATUS_PAGE_DISABLED) {
1323 idr_for_each(&ctx->dev->qpidr, enable_qp_db,
1324 NULL);
1325 } else {
1326 ctx->dev->rdev.status_page->db_off = 0;
1327 }
1328 break;
1329 } else {
1330 if (cxgb4_dbfifo_count(ctx->dev->rdev.lldi.ports[0], 1)
1331 < (ctx->dev->rdev.lldi.dbfifo_int_thresh <<
1332 DB_FC_DRAIN_THRESH)) {
1333 resume_a_chunk(ctx);
1334 }
1335 if (!list_empty(&ctx->dev->db_fc_list)) {
1336 spin_unlock_irq(&ctx->dev->lock);
1337 if (DB_FC_RESUME_DELAY) {
1338 set_current_state(TASK_UNINTERRUPTIBLE);
1339 schedule_timeout(DB_FC_RESUME_DELAY);
1340 }
1341 spin_lock_irq(&ctx->dev->lock);
1342 if (ctx->dev->db_state != FLOW_CONTROL)
1343 break;
1344 }
1345 }
Vipul Pandya422eea02012-05-18 15:29:30 +05301346 }
Steve Wise05eb2382014-03-14 21:52:08 +05301347out:
1348 if (ctx->dev->db_state != NORMAL)
1349 ctx->dev->rdev.stats.db_fc_interruptions++;
Vipul Pandya2c974782012-05-18 15:29:28 +05301350 spin_unlock_irq(&ctx->dev->lock);
1351}
1352
Vipul Pandya422eea02012-05-18 15:29:30 +05301353struct qp_list {
1354 unsigned idx;
1355 struct c4iw_qp **qps;
1356};
1357
1358static int add_and_ref_qp(int id, void *p, void *data)
1359{
1360 struct qp_list *qp_listp = data;
1361 struct c4iw_qp *qp = p;
1362
1363 c4iw_qp_add_ref(&qp->ibqp);
1364 qp_listp->qps[qp_listp->idx++] = qp;
1365 return 0;
1366}
1367
1368static int count_qps(int id, void *p, void *data)
1369{
1370 unsigned *countp = data;
1371 (*countp)++;
1372 return 0;
1373}
1374
Steve Wise05eb2382014-03-14 21:52:08 +05301375static void deref_qps(struct qp_list *qp_list)
Vipul Pandya422eea02012-05-18 15:29:30 +05301376{
1377 int idx;
1378
Steve Wise05eb2382014-03-14 21:52:08 +05301379 for (idx = 0; idx < qp_list->idx; idx++)
1380 c4iw_qp_rem_ref(&qp_list->qps[idx]->ibqp);
Vipul Pandya422eea02012-05-18 15:29:30 +05301381}
1382
1383static void recover_lost_dbs(struct uld_ctx *ctx, struct qp_list *qp_list)
1384{
1385 int idx;
1386 int ret;
1387
1388 for (idx = 0; idx < qp_list->idx; idx++) {
1389 struct c4iw_qp *qp = qp_list->qps[idx];
1390
Steve Wise05eb2382014-03-14 21:52:08 +05301391 spin_lock_irq(&qp->rhp->lock);
1392 spin_lock(&qp->lock);
Vipul Pandya422eea02012-05-18 15:29:30 +05301393 ret = cxgb4_sync_txq_pidx(qp->rhp->rdev.lldi.ports[0],
1394 qp->wq.sq.qid,
1395 t4_sq_host_wq_pidx(&qp->wq),
1396 t4_sq_wq_size(&qp->wq));
1397 if (ret) {
Joe Perches700456b2017-02-09 14:23:50 -08001398 pr_err("%s: Fatal error - DB overflow recovery failed - error syncing SQ qid %u\n",
Vipul Pandya422eea02012-05-18 15:29:30 +05301399 pci_name(ctx->lldi.pdev), qp->wq.sq.qid);
Steve Wise05eb2382014-03-14 21:52:08 +05301400 spin_unlock(&qp->lock);
1401 spin_unlock_irq(&qp->rhp->lock);
Vipul Pandya422eea02012-05-18 15:29:30 +05301402 return;
1403 }
Steve Wise05eb2382014-03-14 21:52:08 +05301404 qp->wq.sq.wq_pidx_inc = 0;
Vipul Pandya422eea02012-05-18 15:29:30 +05301405
1406 ret = cxgb4_sync_txq_pidx(qp->rhp->rdev.lldi.ports[0],
1407 qp->wq.rq.qid,
1408 t4_rq_host_wq_pidx(&qp->wq),
1409 t4_rq_wq_size(&qp->wq));
1410
1411 if (ret) {
Joe Perches700456b2017-02-09 14:23:50 -08001412 pr_err("%s: Fatal error - DB overflow recovery failed - error syncing RQ qid %u\n",
Vipul Pandya422eea02012-05-18 15:29:30 +05301413 pci_name(ctx->lldi.pdev), qp->wq.rq.qid);
Steve Wise05eb2382014-03-14 21:52:08 +05301414 spin_unlock(&qp->lock);
1415 spin_unlock_irq(&qp->rhp->lock);
Vipul Pandya422eea02012-05-18 15:29:30 +05301416 return;
1417 }
Steve Wise05eb2382014-03-14 21:52:08 +05301418 qp->wq.rq.wq_pidx_inc = 0;
1419 spin_unlock(&qp->lock);
1420 spin_unlock_irq(&qp->rhp->lock);
Vipul Pandya422eea02012-05-18 15:29:30 +05301421
1422 /* Wait for the dbfifo to drain */
1423 while (cxgb4_dbfifo_count(qp->rhp->rdev.lldi.ports[0], 1) > 0) {
1424 set_current_state(TASK_UNINTERRUPTIBLE);
1425 schedule_timeout(usecs_to_jiffies(10));
1426 }
1427 }
1428}
1429
1430static void recover_queues(struct uld_ctx *ctx)
1431{
1432 int count = 0;
1433 struct qp_list qp_list;
1434 int ret;
1435
Vipul Pandya422eea02012-05-18 15:29:30 +05301436 /* slow everybody down */
1437 set_current_state(TASK_UNINTERRUPTIBLE);
1438 schedule_timeout(usecs_to_jiffies(1000));
1439
Vipul Pandya422eea02012-05-18 15:29:30 +05301440 /* flush the SGE contexts */
1441 ret = cxgb4_flush_eq_cache(ctx->dev->rdev.lldi.ports[0]);
1442 if (ret) {
Joe Perches700456b2017-02-09 14:23:50 -08001443 pr_err("%s: Fatal error - DB overflow recovery failed\n",
Vipul Pandya422eea02012-05-18 15:29:30 +05301444 pci_name(ctx->lldi.pdev));
Steve Wise05eb2382014-03-14 21:52:08 +05301445 return;
Vipul Pandya422eea02012-05-18 15:29:30 +05301446 }
1447
1448 /* Count active queues so we can build a list of queues to recover */
1449 spin_lock_irq(&ctx->dev->lock);
Steve Wise05eb2382014-03-14 21:52:08 +05301450 WARN_ON(ctx->dev->db_state != STOPPED);
1451 ctx->dev->db_state = RECOVERY;
Vipul Pandya422eea02012-05-18 15:29:30 +05301452 idr_for_each(&ctx->dev->qpidr, count_qps, &count);
1453
1454 qp_list.qps = kzalloc(count * sizeof *qp_list.qps, GFP_ATOMIC);
1455 if (!qp_list.qps) {
Vipul Pandya422eea02012-05-18 15:29:30 +05301456 spin_unlock_irq(&ctx->dev->lock);
Steve Wise05eb2382014-03-14 21:52:08 +05301457 return;
Vipul Pandya422eea02012-05-18 15:29:30 +05301458 }
1459 qp_list.idx = 0;
1460
1461 /* add and ref each qp so it doesn't get freed */
1462 idr_for_each(&ctx->dev->qpidr, add_and_ref_qp, &qp_list);
1463
1464 spin_unlock_irq(&ctx->dev->lock);
1465
1466 /* now traverse the list in a safe context to recover the db state*/
1467 recover_lost_dbs(ctx, &qp_list);
1468
1469 /* we're almost done! deref the qps and clean up */
Steve Wise05eb2382014-03-14 21:52:08 +05301470 deref_qps(&qp_list);
Vipul Pandya422eea02012-05-18 15:29:30 +05301471 kfree(qp_list.qps);
1472
Vipul Pandya422eea02012-05-18 15:29:30 +05301473 spin_lock_irq(&ctx->dev->lock);
Steve Wise05eb2382014-03-14 21:52:08 +05301474 WARN_ON(ctx->dev->db_state != RECOVERY);
1475 ctx->dev->db_state = STOPPED;
Vipul Pandya422eea02012-05-18 15:29:30 +05301476 spin_unlock_irq(&ctx->dev->lock);
Vipul Pandya422eea02012-05-18 15:29:30 +05301477}
1478
Vipul Pandya2c974782012-05-18 15:29:28 +05301479static int c4iw_uld_control(void *handle, enum cxgb4_control control, ...)
1480{
1481 struct uld_ctx *ctx = handle;
1482
1483 switch (control) {
1484 case CXGB4_CONTROL_DB_FULL:
1485 stop_queues(ctx);
Vipul Pandya2c974782012-05-18 15:29:28 +05301486 ctx->dev->rdev.stats.db_full++;
Vipul Pandya2c974782012-05-18 15:29:28 +05301487 break;
1488 case CXGB4_CONTROL_DB_EMPTY:
1489 resume_queues(ctx);
1490 mutex_lock(&ctx->dev->rdev.stats.lock);
1491 ctx->dev->rdev.stats.db_empty++;
1492 mutex_unlock(&ctx->dev->rdev.stats.lock);
1493 break;
1494 case CXGB4_CONTROL_DB_DROP:
Vipul Pandya422eea02012-05-18 15:29:30 +05301495 recover_queues(ctx);
Vipul Pandya2c974782012-05-18 15:29:28 +05301496 mutex_lock(&ctx->dev->rdev.stats.lock);
1497 ctx->dev->rdev.stats.db_drop++;
1498 mutex_unlock(&ctx->dev->rdev.stats.lock);
1499 break;
1500 default:
Joe Perches700456b2017-02-09 14:23:50 -08001501 pr_warn("%s: unknown control cmd %u\n",
1502 pci_name(ctx->lldi.pdev), control);
Vipul Pandya2c974782012-05-18 15:29:28 +05301503 break;
1504 }
1505 return 0;
1506}
1507
Steve Wisecfdda9d2010-04-21 15:30:06 -07001508static struct cxgb4_uld_info c4iw_uld_info = {
1509 .name = DRV_NAME,
Hariprasad Shenai0fbc81b2016-09-17 08:12:39 +05301510 .nrxq = MAX_ULD_QSETS,
Hariprasad Shenaiab677ff2016-11-18 16:37:40 +05301511 .ntxq = MAX_ULD_QSETS,
Hariprasad Shenai0fbc81b2016-09-17 08:12:39 +05301512 .rxq_size = 511,
1513 .ciq = true,
1514 .lro = false,
Steve Wisecfdda9d2010-04-21 15:30:06 -07001515 .add = c4iw_uld_add,
1516 .rx_handler = c4iw_uld_rx_handler,
1517 .state_change = c4iw_uld_state_change,
Vipul Pandya2c974782012-05-18 15:29:28 +05301518 .control = c4iw_uld_control,
Steve Wisecfdda9d2010-04-21 15:30:06 -07001519};
1520
1521static int __init c4iw_init_module(void)
1522{
1523 int err;
1524
1525 err = c4iw_cm_init();
1526 if (err)
1527 return err;
1528
1529 c4iw_debugfs_root = debugfs_create_dir(DRV_NAME, NULL);
1530 if (!c4iw_debugfs_root)
Joe Perches700456b2017-02-09 14:23:50 -08001531 pr_warn("could not create debugfs entry, continuing\n");
Steve Wisecfdda9d2010-04-21 15:30:06 -07001532
1533 cxgb4_register_uld(CXGB4_ULD_RDMA, &c4iw_uld_info);
1534
1535 return 0;
1536}
1537
1538static void __exit c4iw_exit_module(void)
1539{
Steve Wise2f25e9a2011-05-09 22:06:23 -07001540 struct uld_ctx *ctx, *tmp;
Steve Wisecfdda9d2010-04-21 15:30:06 -07001541
Steve Wisecfdda9d2010-04-21 15:30:06 -07001542 mutex_lock(&dev_mutex);
Steve Wise2f25e9a2011-05-09 22:06:23 -07001543 list_for_each_entry_safe(ctx, tmp, &uld_ctx_list, entry) {
1544 if (ctx->dev)
1545 c4iw_remove(ctx);
1546 kfree(ctx);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001547 }
1548 mutex_unlock(&dev_mutex);
Steve Wisefd388ce2010-05-20 16:57:27 -05001549 cxgb4_unregister_uld(CXGB4_ULD_RDMA);
Steve Wisecfdda9d2010-04-21 15:30:06 -07001550 c4iw_cm_term();
1551 debugfs_remove_recursive(c4iw_debugfs_root);
1552}
1553
1554module_init(c4iw_init_module);
1555module_exit(c4iw_exit_module);