RDMA/iw_cxgb4: Avoid touch after free error in ARP failure handlers
[linux-2.6-block.git] / drivers / infiniband / hw / cxgb4 / device.c
CommitLineData
cfdda9d7
SW
1/*
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>
e572568f 35#include <linux/vmalloc.h>
da388973 36#include <linux/math64.h>
cfdda9d7
SW
37
38#include <rdma/ib_verbs.h>
39
40#include "iw_cxgb4.h"
41
42#define DRV_VERSION "0.1"
43
44MODULE_AUTHOR("Steve Wise");
f079af7a 45MODULE_DESCRIPTION("Chelsio T4/T5 RDMA Driver");
cfdda9d7
SW
46MODULE_LICENSE("Dual BSD/GPL");
47MODULE_VERSION(DRV_VERSION);
48
80ccdd60
VP
49static 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
7730b4c7
HS
59int 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
65d4c01a 63static int c4iw_wr_log_size_order = 12;
7730b4c7
HS
64module_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
2c974781
VP
68struct uld_ctx {
69 struct list_head entry;
70 struct cxgb4_lld_info lldi;
71 struct c4iw_dev *dev;
72};
73
2f25e9a5 74static LIST_HEAD(uld_ctx_list);
cfdda9d7
SW
75static DEFINE_MUTEX(dev_mutex);
76
05eb2389
SW
77#define DB_FC_RESUME_SIZE 64
78#define DB_FC_RESUME_DELAY 1
79#define DB_FC_DRAIN_THRESH 0
80
cfdda9d7
SW
81static struct dentry *c4iw_debugfs_root;
82
9e8d1fa3 83struct c4iw_debugfs_data {
cfdda9d7
SW
84 struct c4iw_dev *devp;
85 char *buf;
86 int bufsize;
87 int pos;
88};
89
9e8d1fa3 90static int count_idrs(int id, void *p, void *data)
cfdda9d7 91{
cfdda9d7
SW
92 int *countp = data;
93
cfdda9d7
SW
94 *countp = *countp + 1;
95 return 0;
96}
97
9e8d1fa3
SW
98static 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;
9e8d1fa3 102
3160977a 103 return simple_read_from_buffer(buf, count, ppos, d->buf, d->pos);
9e8d1fa3
SW
104}
105
7730b4c7
HS
106void 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
6198dd8d 144#define ts2ns(ts) div64_u64((ts) * dev->rdev.lldi.cclk_ps, 1000)
7730b4c7
HS
145
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
bab572f1
GG
217static 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
9e8d1fa3 263static int dump_qp(int id, void *p, void *data)
cfdda9d7
SW
264{
265 struct c4iw_qp *qp = p;
9e8d1fa3 266 struct c4iw_debugfs_data *qpd = data;
cfdda9d7
SW
267 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
830662f6 277 if (qp->ep) {
bab572f1
GG
278 struct c4iw_ep *ep = qp->ep;
279
280 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;
830662f6 285
bab572f1 286 set_ep_sin_addrs(ep, &lsin, &rsin, &m_lsin, &m_rsin);
830662f6
VP
287 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 "
9eccfe10 290 "%pI4:%u/%u->%pI4:%u/%u\n",
830662f6
VP
291 qp->wq.sq.qid, qp->wq.rq.qid,
292 (int)qp->attr.state,
293 qp->wq.sq.flags & T4_SQ_ONCHIP,
bab572f1 294 ep->hwtid, (int)ep->com.state,
830662f6 295 &lsin->sin_addr, ntohs(lsin->sin_port),
bab572f1 296 ntohs(m_lsin->sin_port),
9eccfe10 297 &rsin->sin_addr, ntohs(rsin->sin_port),
bab572f1 298 ntohs(m_rsin->sin_port));
830662f6 299 } else {
bab572f1
GG
300 struct sockaddr_in6 *lsin6;
301 struct sockaddr_in6 *rsin6;
302 struct sockaddr_in6 *m_lsin6;
303 struct sockaddr_in6 *m_rsin6;
830662f6 304
bab572f1
GG
305 set_ep_sin6_addrs(ep, &lsin6, &rsin6, &m_lsin6,
306 &m_rsin6);
830662f6
VP
307 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 "
9eccfe10 310 "%pI6:%u/%u->%pI6:%u/%u\n",
830662f6
VP
311 qp->wq.sq.qid, qp->wq.rq.qid,
312 (int)qp->attr.state,
313 qp->wq.sq.flags & T4_SQ_ONCHIP,
bab572f1 314 ep->hwtid, (int)ep->com.state,
830662f6
VP
315 &lsin6->sin6_addr,
316 ntohs(lsin6->sin6_port),
bab572f1 317 ntohs(m_lsin6->sin6_port),
830662f6 318 &rsin6->sin6_addr,
9eccfe10 319 ntohs(rsin6->sin6_port),
bab572f1 320 ntohs(m_rsin6->sin6_port));
830662f6
VP
321 }
322 } else
db5d040d
SW
323 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);
cfdda9d7
SW
328 if (cc < space)
329 qpd->pos += cc;
330 return 0;
331}
332
333static int qp_release(struct inode *inode, struct file *file)
334{
9e8d1fa3 335 struct c4iw_debugfs_data *qpd = file->private_data;
cfdda9d7 336 if (!qpd) {
700456bd 337 pr_info("%s null qpd?\n", __func__);
cfdda9d7
SW
338 return 0;
339 }
d716a2a0 340 vfree(qpd->buf);
cfdda9d7
SW
341 kfree(qpd);
342 return 0;
343}
344
345static int qp_open(struct inode *inode, struct file *file)
346{
9e8d1fa3 347 struct c4iw_debugfs_data *qpd;
cfdda9d7
SW
348 int count = 1;
349
350 qpd = kmalloc(sizeof *qpd, GFP_KERNEL);
4275a5b2
H
351 if (!qpd)
352 return -ENOMEM;
353
cfdda9d7
SW
354 qpd->devp = inode->i_private;
355 qpd->pos = 0;
356
357 spin_lock_irq(&qpd->devp->lock);
9e8d1fa3 358 idr_for_each(&qpd->devp->qpidr, count_idrs, &count);
cfdda9d7
SW
359 spin_unlock_irq(&qpd->devp->lock);
360
68cebcab 361 qpd->bufsize = count * 180;
d716a2a0 362 qpd->buf = vmalloc(qpd->bufsize);
cfdda9d7 363 if (!qpd->buf) {
4275a5b2
H
364 kfree(qpd);
365 return -ENOMEM;
cfdda9d7
SW
366 }
367
368 spin_lock_irq(&qpd->devp->lock);
9e8d1fa3 369 idr_for_each(&qpd->devp->qpidr, dump_qp, qpd);
cfdda9d7
SW
370 spin_unlock_irq(&qpd->devp->lock);
371
372 qpd->buf[qpd->pos++] = 0;
373 file->private_data = qpd;
4275a5b2 374 return 0;
cfdda9d7
SW
375}
376
9e8d1fa3
SW
377static const struct file_operations qp_debugfs_fops = {
378 .owner = THIS_MODULE,
379 .open = qp_open,
380 .release = qp_release,
381 .read = debugfs_read,
8bbac892 382 .llseek = default_llseek,
9e8d1fa3
SW
383};
384
385static int dump_stag(int id, void *p, void *data)
cfdda9d7 386{
9e8d1fa3
SW
387 struct c4iw_debugfs_data *stagd = data;
388 int space;
389 int cc;
031cf476
HS
390 struct fw_ri_tpte tpte;
391 int ret;
cfdda9d7 392
9e8d1fa3
SW
393 space = stagd->bufsize - stagd->pos - 1;
394 if (space == 0)
395 return 1;
396
031cf476
HS
397 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,
cf7fe64a
HS
408 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)),
031cf476
HS
414 ((u64)ntohl(tpte.len_hi) << 32) | ntohl(tpte.len_lo),
415 ((u64)ntohl(tpte.va_hi) << 32) | ntohl(tpte.va_lo_fbo));
9e8d1fa3
SW
416 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) {
700456bd 425 pr_info("%s null stagd?\n", __func__);
cfdda9d7 426 return 0;
9e8d1fa3 427 }
031cf476 428 vfree(stagd->buf);
9e8d1fa3
SW
429 kfree(stagd);
430 return 0;
431}
cfdda9d7 432
9e8d1fa3
SW
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;
cfdda9d7 438
9e8d1fa3
SW
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;
cfdda9d7 446
9e8d1fa3
SW
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
031cf476
HS
451 stagd->bufsize = count * 256;
452 stagd->buf = vmalloc(stagd->bufsize);
9e8d1fa3
SW
453 if (!stagd->buf) {
454 ret = -ENOMEM;
455 goto err1;
cfdda9d7 456 }
9e8d1fa3
SW
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;
cfdda9d7
SW
469}
470
9e8d1fa3 471static const struct file_operations stag_debugfs_fops = {
cfdda9d7 472 .owner = THIS_MODULE,
9e8d1fa3
SW
473 .open = stag_open,
474 .release = stag_release,
475 .read = debugfs_read,
8bbac892 476 .llseek = default_llseek,
cfdda9d7
SW
477};
478
05eb2389 479static char *db_state_str[] = {"NORMAL", "FLOW_CONTROL", "RECOVERY", "STOPPED"};
422eea0a 480
8d81ef34
VP
481static int stats_show(struct seq_file *seq, void *v)
482{
483 struct c4iw_dev *dev = seq->private;
484
ec3eead2
VP
485 seq_printf(seq, " Object: %10s %10s %10s %10s\n", "Total", "Current",
486 "Max", "Fail");
487 seq_printf(seq, " PDID: %10llu %10llu %10llu %10llu\n",
8d81ef34 488 dev->rdev.stats.pd.total, dev->rdev.stats.pd.cur,
ec3eead2
VP
489 dev->rdev.stats.pd.max, dev->rdev.stats.pd.fail);
490 seq_printf(seq, " QID: %10llu %10llu %10llu %10llu\n",
8d81ef34 491 dev->rdev.stats.qid.total, dev->rdev.stats.qid.cur,
ec3eead2
VP
492 dev->rdev.stats.qid.max, dev->rdev.stats.qid.fail);
493 seq_printf(seq, " TPTMEM: %10llu %10llu %10llu %10llu\n",
8d81ef34 494 dev->rdev.stats.stag.total, dev->rdev.stats.stag.cur,
ec3eead2
VP
495 dev->rdev.stats.stag.max, dev->rdev.stats.stag.fail);
496 seq_printf(seq, " PBLMEM: %10llu %10llu %10llu %10llu\n",
8d81ef34 497 dev->rdev.stats.pbl.total, dev->rdev.stats.pbl.cur,
ec3eead2
VP
498 dev->rdev.stats.pbl.max, dev->rdev.stats.pbl.fail);
499 seq_printf(seq, " RQTMEM: %10llu %10llu %10llu %10llu\n",
8d81ef34 500 dev->rdev.stats.rqt.total, dev->rdev.stats.rqt.cur,
ec3eead2
VP
501 dev->rdev.stats.rqt.max, dev->rdev.stats.rqt.fail);
502 seq_printf(seq, " OCQPMEM: %10llu %10llu %10llu %10llu\n",
8d81ef34 503 dev->rdev.stats.ocqp.total, dev->rdev.stats.ocqp.cur,
ec3eead2 504 dev->rdev.stats.ocqp.max, dev->rdev.stats.ocqp.fail);
2c974781
VP
505 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);
05eb2389 508 seq_printf(seq, " DB State: %s Transitions %llu FC Interruptions %llu\n",
422eea0a 509 db_state_str[dev->db_state],
05eb2389
SW
510 dev->rdev.stats.db_state_transitions,
511 dev->rdev.stats.db_fc_interruptions);
1cab775c 512 seq_printf(seq, "TCAM_FULL: %10llu\n", dev->rdev.stats.tcam_full);
793dad94
VP
513 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);
179d03bb 517 seq_printf(seq, "NEG_ADV_RCVD: %10llu\n", dev->rdev.stats.neg_adv);
4c2c5763 518 seq_printf(seq, "AVAILABLE IRD: %10u\n", dev->avail_ird);
8d81ef34
VP
519 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;
ec3eead2 534 dev->rdev.stats.pd.fail = 0;
8d81ef34 535 dev->rdev.stats.qid.max = 0;
ec3eead2 536 dev->rdev.stats.qid.fail = 0;
8d81ef34 537 dev->rdev.stats.stag.max = 0;
ec3eead2 538 dev->rdev.stats.stag.fail = 0;
8d81ef34 539 dev->rdev.stats.pbl.max = 0;
ec3eead2 540 dev->rdev.stats.pbl.fail = 0;
8d81ef34 541 dev->rdev.stats.rqt.max = 0;
ec3eead2 542 dev->rdev.stats.rqt.fail = 0;
8d81ef34 543 dev->rdev.stats.ocqp.max = 0;
ec3eead2 544 dev->rdev.stats.ocqp.fail = 0;
2c974781
VP
545 dev->rdev.stats.db_full = 0;
546 dev->rdev.stats.db_empty = 0;
547 dev->rdev.stats.db_drop = 0;
422eea0a 548 dev->rdev.stats.db_state_transitions = 0;
793dad94
VP
549 dev->rdev.stats.tcam_full = 0;
550 dev->rdev.stats.act_ofld_conn_fails = 0;
551 dev->rdev.stats.pas_ofld_conn_fails = 0;
8d81ef34
VP
552 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
793dad94
VP
565static 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
830662f6 576 if (ep->com.local_addr.ss_family == AF_INET) {
bab572f1
GG
577 struct sockaddr_in *lsin;
578 struct sockaddr_in *rsin;
579 struct sockaddr_in *m_lsin;
580 struct sockaddr_in *m_rsin;
830662f6 581
bab572f1 582 set_ep_sin_addrs(ep, &lsin, &rsin, &m_lsin, &m_rsin);
830662f6
VP
583 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 "
179d03bb 586 "conn_na %u abort_na %u "
9eccfe10 587 "%pI4:%d/%d <-> %pI4:%d/%d\n",
830662f6
VP
588 ep, ep->com.cm_id, ep->com.qp,
589 (int)ep->com.state, ep->com.flags,
590 ep->com.history, ep->hwtid, ep->atid,
179d03bb
H
591 ep->stats.connect_neg_adv,
592 ep->stats.abort_neg_adv,
830662f6 593 &lsin->sin_addr, ntohs(lsin->sin_port),
bab572f1 594 ntohs(m_lsin->sin_port),
9eccfe10 595 &rsin->sin_addr, ntohs(rsin->sin_port),
bab572f1 596 ntohs(m_rsin->sin_port));
830662f6 597 } else {
bab572f1
GG
598 struct sockaddr_in6 *lsin6;
599 struct sockaddr_in6 *rsin6;
600 struct sockaddr_in6 *m_lsin6;
601 struct sockaddr_in6 *m_rsin6;
830662f6 602
bab572f1 603 set_ep_sin6_addrs(ep, &lsin6, &rsin6, &m_lsin6, &m_rsin6);
830662f6
VP
604 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 "
179d03bb 607 "conn_na %u abort_na %u "
9eccfe10 608 "%pI6:%d/%d <-> %pI6:%d/%d\n",
830662f6
VP
609 ep, ep->com.cm_id, ep->com.qp,
610 (int)ep->com.state, ep->com.flags,
611 ep->com.history, ep->hwtid, ep->atid,
179d03bb
H
612 ep->stats.connect_neg_adv,
613 ep->stats.abort_neg_adv,
830662f6 614 &lsin6->sin6_addr, ntohs(lsin6->sin6_port),
bab572f1 615 ntohs(m_lsin6->sin6_port),
9eccfe10 616 &rsin6->sin6_addr, ntohs(rsin6->sin6_port),
bab572f1 617 ntohs(m_rsin6->sin6_port));
830662f6 618 }
793dad94
VP
619 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
830662f6
VP
635 if (ep->com.local_addr.ss_family == AF_INET) {
636 struct sockaddr_in *lsin = (struct sockaddr_in *)
170003c8 637 &ep->com.cm_id->local_addr;
bab572f1 638 struct sockaddr_in *m_lsin = (struct sockaddr_in *)
170003c8 639 &ep->com.cm_id->m_local_addr;
830662f6
VP
640
641 cc = snprintf(epd->buf + epd->pos, space,
642 "ep %p cm_id %p state %d flags 0x%lx stid %d "
9eccfe10 643 "backlog %d %pI4:%d/%d\n",
830662f6
VP
644 ep, ep->com.cm_id, (int)ep->com.state,
645 ep->com.flags, ep->stid, ep->backlog,
9eccfe10 646 &lsin->sin_addr, ntohs(lsin->sin_port),
bab572f1 647 ntohs(m_lsin->sin_port));
830662f6
VP
648 } else {
649 struct sockaddr_in6 *lsin6 = (struct sockaddr_in6 *)
170003c8 650 &ep->com.cm_id->local_addr;
bab572f1 651 struct sockaddr_in6 *m_lsin6 = (struct sockaddr_in6 *)
170003c8 652 &ep->com.cm_id->m_local_addr;
830662f6
VP
653
654 cc = snprintf(epd->buf + epd->pos, space,
655 "ep %p cm_id %p state %d flags 0x%lx stid %d "
9eccfe10 656 "backlog %d %pI6:%d/%d\n",
830662f6
VP
657 ep, ep->com.cm_id, (int)ep->com.state,
658 ep->com.flags, ep->stid, ep->backlog,
9eccfe10 659 &lsin6->sin6_addr, ntohs(lsin6->sin6_port),
bab572f1 660 ntohs(m_lsin6->sin6_port));
830662f6 661 }
793dad94
VP
662 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
63a71ba6 699 epd->bufsize = count * 240;
793dad94
VP
700 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
cfdda9d7
SW
727static int setup_debugfs(struct c4iw_dev *devp)
728{
cfdda9d7
SW
729 if (!devp->debugfs_root)
730 return -1;
731
e59b4e91
DH
732 debugfs_create_file_size("qps", S_IWUSR, devp->debugfs_root,
733 (void *)devp, &qp_debugfs_fops, 4096);
734
735 debugfs_create_file_size("stags", S_IWUSR, devp->debugfs_root,
736 (void *)devp, &stag_debugfs_fops, 4096);
737
738 debugfs_create_file_size("stats", S_IWUSR, devp->debugfs_root,
739 (void *)devp, &stats_debugfs_fops, 4096);
740
741 debugfs_create_file_size("eps", S_IWUSR, devp->debugfs_root,
742 (void *)devp, &ep_debugfs_fops, 4096);
743
744 if (c4iw_wr_log)
745 debugfs_create_file_size("wr_log", S_IWUSR, devp->debugfs_root,
746 (void *)devp, &wr_log_debugfs_fops, 4096);
cfdda9d7
SW
747 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);
8d81ef34 760 if (!(entry->qid & rdev->qpmask)) {
ec3eead2
VP
761 c4iw_put_resource(&rdev->resource.qid_table,
762 entry->qid);
8d81ef34
VP
763 mutex_lock(&rdev->stats.lock);
764 rdev->stats.qid.cur -= rdev->qpmask + 1;
765 mutex_unlock(&rdev->stats.lock);
766 }
cfdda9d7
SW
767 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
4a75a86c
H
793 /*
794 * 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) {
700456bd 799 pr_err("%s: unsupported udb/ucq densities %u/%u\n",
4a75a86c
H
800 pci_name(rdev->lldi.pdev), rdev->lldi.udb_density,
801 rdev->lldi.ucq_density);
4275a5b2 802 return -EINVAL;
4a75a86c
H
803 }
804 if (rdev->lldi.vr->qp.start != rdev->lldi.vr->cq.start ||
805 rdev->lldi.vr->qp.size != rdev->lldi.vr->cq.size) {
700456bd 806 pr_err("%s: unsupported qp and cq id ranges qp start %u size %u cq start %u size %u\n",
4a75a86c
H
807 pci_name(rdev->lldi.pdev), rdev->lldi.vr->qp.start,
808 rdev->lldi.vr->qp.size, rdev->lldi.vr->cq.size,
809 rdev->lldi.vr->cq.size);
4275a5b2 810 return -EINVAL;
4a75a86c
H
811 }
812
cfdda9d7 813 rdev->qpmask = rdev->lldi.udb_density - 1;
cfdda9d7 814 rdev->cqmask = rdev->lldi.ucq_density - 1;
a9a42886
JP
815 pr_debug("%s 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",
816 __func__, pci_name(rdev->lldi.pdev), rdev->lldi.vr->stag.start,
817 rdev->lldi.vr->stag.size, c4iw_num_stags(rdev),
818 rdev->lldi.vr->pbl.start,
819 rdev->lldi.vr->pbl.size, rdev->lldi.vr->rq.start,
820 rdev->lldi.vr->rq.size,
821 rdev->lldi.vr->qp.start,
822 rdev->lldi.vr->qp.size,
823 rdev->lldi.vr->cq.start,
824 rdev->lldi.vr->cq.size);
825 pr_debug("udb %pR db_reg %p gts_reg %p qpmask 0x%x cqmask 0x%x\n",
826 &rdev->lldi.pdev->resource[2],
827 rdev->lldi.db_reg, rdev->lldi.gts_reg,
828 rdev->qpmask, rdev->cqmask);
cfdda9d7 829
4275a5b2
H
830 if (c4iw_num_stags(rdev) == 0)
831 return -EINVAL;
cfdda9d7 832
8d81ef34
VP
833 rdev->stats.pd.total = T4_MAX_NUM_PD;
834 rdev->stats.stag.total = rdev->lldi.vr->stag.size;
835 rdev->stats.pbl.total = rdev->lldi.vr->pbl.size;
836 rdev->stats.rqt.total = rdev->lldi.vr->rq.size;
837 rdev->stats.ocqp.total = rdev->lldi.vr->ocq.size;
838 rdev->stats.qid.total = rdev->lldi.vr->qp.size;
839
cfdda9d7
SW
840 err = c4iw_init_resource(rdev, c4iw_num_stags(rdev), T4_MAX_NUM_PD);
841 if (err) {
700456bd 842 pr_err("error %d initializing resources\n", err);
4275a5b2 843 return err;
cfdda9d7
SW
844 }
845 err = c4iw_pblpool_create(rdev);
846 if (err) {
700456bd 847 pr_err("error %d initializing pbl pool\n", err);
4275a5b2 848 goto destroy_resource;
cfdda9d7
SW
849 }
850 err = c4iw_rqtpool_create(rdev);
851 if (err) {
700456bd 852 pr_err("error %d initializing rqt pool\n", err);
4275a5b2 853 goto destroy_pblpool;
cfdda9d7 854 }
c6d7b267
SW
855 err = c4iw_ocqp_pool_create(rdev);
856 if (err) {
700456bd 857 pr_err("error %d initializing ocqp pool\n", err);
4275a5b2 858 goto destroy_rqtpool;
c6d7b267 859 }
05eb2389
SW
860 rdev->status_page = (struct t4_dev_status_page *)
861 __get_free_page(GFP_KERNEL);
15f7e3c2
WY
862 if (!rdev->status_page) {
863 err = -ENOMEM;
82b1df1b 864 goto destroy_ocqp_pool;
15f7e3c2 865 }
c5dfb000
H
866 rdev->status_page->qp_start = rdev->lldi.vr->qp.start;
867 rdev->status_page->qp_size = rdev->lldi.vr->qp.size;
868 rdev->status_page->cq_start = rdev->lldi.vr->cq.start;
869 rdev->status_page->cq_size = rdev->lldi.vr->cq.size;
8fd90bb8 870
7730b4c7
HS
871 if (c4iw_wr_log) {
872 rdev->wr_log = kzalloc((1 << c4iw_wr_log_size_order) *
873 sizeof(*rdev->wr_log), GFP_KERNEL);
874 if (rdev->wr_log) {
875 rdev->wr_log_size = 1 << c4iw_wr_log_size_order;
876 atomic_set(&rdev->wr_log_idx, 0);
7730b4c7
HS
877 }
878 }
8fd90bb8 879
c12a67fe
SW
880 rdev->free_workq = create_singlethread_workqueue("iw_cxgb4_free");
881 if (!rdev->free_workq) {
882 err = -ENOMEM;
883 goto err_free_status_page;
884 }
885
6b54d54d 886 rdev->status_page->db_off = 0;
8fd90bb8 887
cfdda9d7 888 return 0;
c12a67fe
SW
889err_free_status_page:
890 free_page((unsigned long)rdev->status_page);
82b1df1b
H
891destroy_ocqp_pool:
892 c4iw_ocqp_pool_destroy(rdev);
4275a5b2 893destroy_rqtpool:
c6d7b267 894 c4iw_rqtpool_destroy(rdev);
4275a5b2 895destroy_pblpool:
cfdda9d7 896 c4iw_pblpool_destroy(rdev);
4275a5b2 897destroy_resource:
cfdda9d7 898 c4iw_destroy_resource(&rdev->resource);
cfdda9d7
SW
899 return err;
900}
901
902static void c4iw_rdev_close(struct c4iw_rdev *rdev)
903{
c12a67fe 904 destroy_workqueue(rdev->free_workq);
7730b4c7 905 kfree(rdev->wr_log);
05eb2389 906 free_page((unsigned long)rdev->status_page);
cfdda9d7
SW
907 c4iw_pblpool_destroy(rdev);
908 c4iw_rqtpool_destroy(rdev);
909 c4iw_destroy_resource(&rdev->resource);
910}
911
9efe10a1 912static void c4iw_dealloc(struct uld_ctx *ctx)
cfdda9d7 913{
2f25e9a5 914 c4iw_rdev_close(&ctx->dev->rdev);
37eb816c 915 WARN_ON_ONCE(!idr_is_empty(&ctx->dev->cqidr));
2f25e9a5 916 idr_destroy(&ctx->dev->cqidr);
37eb816c 917 WARN_ON_ONCE(!idr_is_empty(&ctx->dev->qpidr));
2f25e9a5 918 idr_destroy(&ctx->dev->qpidr);
37eb816c 919 WARN_ON_ONCE(!idr_is_empty(&ctx->dev->mmidr));
2f25e9a5 920 idr_destroy(&ctx->dev->mmidr);
37eb816c 921 wait_event(ctx->dev->wait, idr_is_empty(&ctx->dev->hwtid_idr));
793dad94
VP
922 idr_destroy(&ctx->dev->hwtid_idr);
923 idr_destroy(&ctx->dev->stid_idr);
924 idr_destroy(&ctx->dev->atid_idr);
fa658a98
SW
925 if (ctx->dev->rdev.bar2_kva)
926 iounmap(ctx->dev->rdev.bar2_kva);
927 if (ctx->dev->rdev.oc_mw_kva)
928 iounmap(ctx->dev->rdev.oc_mw_kva);
2f25e9a5
SW
929 ib_dealloc_device(&ctx->dev->ibdev);
930 ctx->dev = NULL;
cfdda9d7
SW
931}
932
9efe10a1
SW
933static void c4iw_remove(struct uld_ctx *ctx)
934{
a9a42886 935 pr_debug("%s c4iw_dev %p\n", __func__, ctx->dev);
9efe10a1
SW
936 c4iw_unregister_device(ctx->dev);
937 c4iw_dealloc(ctx);
938}
939
940static int rdma_supported(const struct cxgb4_lld_info *infop)
941{
942 return infop->vr->stag.size > 0 && infop->vr->pbl.size > 0 &&
943 infop->vr->rq.size > 0 && infop->vr->qp.size > 0 &&
f079af7a 944 infop->vr->cq.size > 0;
9efe10a1
SW
945}
946
cfdda9d7
SW
947static struct c4iw_dev *c4iw_alloc(const struct cxgb4_lld_info *infop)
948{
949 struct c4iw_dev *devp;
950 int ret;
951
9efe10a1 952 if (!rdma_supported(infop)) {
700456bd
JP
953 pr_info("%s: RDMA not supported on this device\n",
954 pci_name(infop->pdev));
9efe10a1
SW
955 return ERR_PTR(-ENOSYS);
956 }
f079af7a 957 if (!ocqp_supported(infop))
700456bd 958 pr_info("%s: On-Chip Queues not supported on this device\n",
f079af7a 959 pci_name(infop->pdev));
80ccdd60 960
cfdda9d7
SW
961 devp = (struct c4iw_dev *)ib_alloc_device(sizeof(*devp));
962 if (!devp) {
700456bd 963 pr_err("Cannot allocate ib device\n");
bbe9a0a2 964 return ERR_PTR(-ENOMEM);
cfdda9d7
SW
965 }
966 devp->rdev.lldi = *infop;
967
04e10e21 968 /* init various hw-queue params based on lld info */
a9a42886
JP
969 pr_debug("%s: Ing. padding boundary is %d, egrsstatuspagesize = %d\n",
970 __func__, devp->rdev.lldi.sge_ingpadboundary,
971 devp->rdev.lldi.sge_egrstatuspagesize);
04e10e21
HS
972
973 devp->rdev.hw_queue.t4_eq_status_entries =
974 devp->rdev.lldi.sge_ingpadboundary > 64 ? 2 : 1;
66eb19af
HS
975 devp->rdev.hw_queue.t4_max_eq_size = 65520;
976 devp->rdev.hw_queue.t4_max_iq_size = 65520;
977 devp->rdev.hw_queue.t4_max_rq_size = 8192 -
978 devp->rdev.hw_queue.t4_eq_status_entries - 1;
04e10e21 979 devp->rdev.hw_queue.t4_max_sq_size =
66eb19af
HS
980 devp->rdev.hw_queue.t4_max_eq_size -
981 devp->rdev.hw_queue.t4_eq_status_entries - 1;
04e10e21 982 devp->rdev.hw_queue.t4_max_qp_depth =
66eb19af 983 devp->rdev.hw_queue.t4_max_rq_size;
04e10e21 984 devp->rdev.hw_queue.t4_max_cq_depth =
66eb19af 985 devp->rdev.hw_queue.t4_max_iq_size - 2;
04e10e21
HS
986 devp->rdev.hw_queue.t4_stat_len =
987 devp->rdev.lldi.sge_egrstatuspagesize;
988
fa658a98 989 /*
963cab50 990 * For T5/T6 devices, we map all of BAR2 with WC.
fa658a98
SW
991 * For T4 devices with onchip qp mem, we map only that part
992 * of BAR2 with WC.
993 */
994 devp->rdev.bar2_pa = pci_resource_start(devp->rdev.lldi.pdev, 2);
963cab50 995 if (!is_t4(devp->rdev.lldi.adapter_type)) {
fa658a98
SW
996 devp->rdev.bar2_kva = ioremap_wc(devp->rdev.bar2_pa,
997 pci_resource_len(devp->rdev.lldi.pdev, 2));
998 if (!devp->rdev.bar2_kva) {
700456bd 999 pr_err("Unable to ioremap BAR2\n");
65b302ad 1000 ib_dealloc_device(&devp->ibdev);
fa658a98
SW
1001 return ERR_PTR(-EINVAL);
1002 }
1003 } else if (ocqp_supported(infop)) {
1004 devp->rdev.oc_mw_pa =
1005 pci_resource_start(devp->rdev.lldi.pdev, 2) +
1006 pci_resource_len(devp->rdev.lldi.pdev, 2) -
1007 roundup_pow_of_two(devp->rdev.lldi.vr->ocq.size);
1008 devp->rdev.oc_mw_kva = ioremap_wc(devp->rdev.oc_mw_pa,
1009 devp->rdev.lldi.vr->ocq.size);
1010 if (!devp->rdev.oc_mw_kva) {
700456bd 1011 pr_err("Unable to ioremap onchip mem\n");
65b302ad 1012 ib_dealloc_device(&devp->ibdev);
fa658a98
SW
1013 return ERR_PTR(-EINVAL);
1014 }
1015 }
c6d7b267 1016
a9a42886
JP
1017 pr_debug("ocq memory: hw_start 0x%x size %u mw_pa 0x%lx mw_kva %p\n",
1018 devp->rdev.lldi.vr->ocq.start, devp->rdev.lldi.vr->ocq.size,
1019 devp->rdev.oc_mw_pa, devp->rdev.oc_mw_kva);
c6d7b267 1020
cfdda9d7
SW
1021 ret = c4iw_rdev_open(&devp->rdev);
1022 if (ret) {
700456bd 1023 pr_err("Unable to open CXIO rdev err %d\n", ret);
cfdda9d7 1024 ib_dealloc_device(&devp->ibdev);
bbe9a0a2 1025 return ERR_PTR(ret);
cfdda9d7
SW
1026 }
1027
1028 idr_init(&devp->cqidr);
1029 idr_init(&devp->qpidr);
1030 idr_init(&devp->mmidr);
793dad94
VP
1031 idr_init(&devp->hwtid_idr);
1032 idr_init(&devp->stid_idr);
1033 idr_init(&devp->atid_idr);
cfdda9d7 1034 spin_lock_init(&devp->lock);
8d81ef34 1035 mutex_init(&devp->rdev.stats.lock);
2c974781 1036 mutex_init(&devp->db_mutex);
05eb2389 1037 INIT_LIST_HEAD(&devp->db_fc_list);
37eb816c 1038 init_waitqueue_head(&devp->wait);
4c2c5763 1039 devp->avail_ird = devp->rdev.lldi.max_ird_adapter;
cfdda9d7 1040
cfdda9d7
SW
1041 if (c4iw_debugfs_root) {
1042 devp->debugfs_root = debugfs_create_dir(
1043 pci_name(devp->rdev.lldi.pdev),
1044 c4iw_debugfs_root);
1045 setup_debugfs(devp);
1046 }
9eccfe10 1047
9eccfe10 1048
cfdda9d7
SW
1049 return devp;
1050}
1051
1052static void *c4iw_uld_add(const struct cxgb4_lld_info *infop)
1053{
2f25e9a5 1054 struct uld_ctx *ctx;
cfdda9d7
SW
1055 static int vers_printed;
1056 int i;
1057
1058 if (!vers_printed++)
f079af7a
VP
1059 pr_info("Chelsio T4/T5 RDMA Driver - version %s\n",
1060 DRV_VERSION);
cfdda9d7 1061
2f25e9a5
SW
1062 ctx = kzalloc(sizeof *ctx, GFP_KERNEL);
1063 if (!ctx) {
1064 ctx = ERR_PTR(-ENOMEM);
cfdda9d7 1065 goto out;
2f25e9a5
SW
1066 }
1067 ctx->lldi = *infop;
cfdda9d7 1068
a9a42886
JP
1069 pr_debug("%s found device %s nchan %u nrxq %u ntxq %u nports %u\n",
1070 __func__, pci_name(ctx->lldi.pdev),
1071 ctx->lldi.nchan, ctx->lldi.nrxq,
1072 ctx->lldi.ntxq, ctx->lldi.nports);
2f25e9a5
SW
1073
1074 mutex_lock(&dev_mutex);
1075 list_add_tail(&ctx->entry, &uld_ctx_list);
1076 mutex_unlock(&dev_mutex);
cfdda9d7 1077
2f25e9a5 1078 for (i = 0; i < ctx->lldi.nrxq; i++)
a9a42886 1079 pr_debug("rxqid[%u] %u\n", i, ctx->lldi.rxq_ids[i]);
cfdda9d7 1080out:
2f25e9a5 1081 return ctx;
cfdda9d7
SW
1082}
1083
1cab775c
VP
1084static inline struct sk_buff *copy_gl_to_skb_pkt(const struct pkt_gl *gl,
1085 const __be64 *rsp,
1086 u32 pktshift)
1087{
1088 struct sk_buff *skb;
1089
1090 /*
1091 * Allocate space for cpl_pass_accept_req which will be synthesized by
1092 * driver. Once the driver synthesizes the request the skb will go
1093 * through the regular cpl_pass_accept_req processing.
1094 * The math here assumes sizeof cpl_pass_accept_req >= sizeof
1095 * cpl_rx_pkt.
1096 */
1097 skb = alloc_skb(gl->tot_len + sizeof(struct cpl_pass_accept_req) +
1098 sizeof(struct rss_header) - pktshift, GFP_ATOMIC);
1099 if (unlikely(!skb))
1100 return NULL;
1101
1102 __skb_put(skb, gl->tot_len + sizeof(struct cpl_pass_accept_req) +
1103 sizeof(struct rss_header) - pktshift);
1104
1105 /*
1106 * This skb will contain:
1107 * rss_header from the rspq descriptor (1 flit)
1108 * cpl_rx_pkt struct from the rspq descriptor (2 flits)
1109 * space for the difference between the size of an
1110 * rx_pkt and pass_accept_req cpl (1 flit)
1111 * the packet data from the gl
1112 */
1113 skb_copy_to_linear_data(skb, rsp, sizeof(struct cpl_pass_accept_req) +
1114 sizeof(struct rss_header));
1115 skb_copy_to_linear_data_offset(skb, sizeof(struct rss_header) +
1116 sizeof(struct cpl_pass_accept_req),
1117 gl->va + pktshift,
1118 gl->tot_len - pktshift);
1119 return skb;
1120}
1121
1122static inline int recv_rx_pkt(struct c4iw_dev *dev, const struct pkt_gl *gl,
1123 const __be64 *rsp)
1124{
1125 unsigned int opcode = *(u8 *)rsp;
1126 struct sk_buff *skb;
1127
1128 if (opcode != CPL_RX_PKT)
1129 goto out;
1130
1131 skb = copy_gl_to_skb_pkt(gl , rsp, dev->rdev.lldi.sge_pktshift);
1132 if (skb == NULL)
1133 goto out;
1134
1135 if (c4iw_handlers[opcode] == NULL) {
700456bd 1136 pr_info("%s no handler opcode 0x%x...\n", __func__, opcode);
1cab775c
VP
1137 kfree_skb(skb);
1138 goto out;
1139 }
1140 c4iw_handlers[opcode](dev, skb);
1141 return 1;
1142out:
1143 return 0;
1144}
1145
cfdda9d7
SW
1146static int c4iw_uld_rx_handler(void *handle, const __be64 *rsp,
1147 const struct pkt_gl *gl)
1148{
2f25e9a5
SW
1149 struct uld_ctx *ctx = handle;
1150 struct c4iw_dev *dev = ctx->dev;
cfdda9d7 1151 struct sk_buff *skb;
1cab775c 1152 u8 opcode;
cfdda9d7
SW
1153
1154 if (gl == NULL) {
1155 /* omit RSS and rsp_ctrl at end of descriptor */
1156 unsigned int len = 64 - sizeof(struct rsp_ctrl) - 8;
1157
1158 skb = alloc_skb(256, GFP_ATOMIC);
1159 if (!skb)
1160 goto nomem;
1161 __skb_put(skb, len);
1162 skb_copy_to_linear_data(skb, &rsp[1], len);
1163 } else if (gl == CXGB4_MSG_AN) {
1164 const struct rsp_ctrl *rc = (void *)rsp;
1165
1166 u32 qid = be32_to_cpu(rc->pldbuflen_qid);
1167 c4iw_ev_handler(dev, qid);
1cab775c
VP
1168 return 0;
1169 } else if (unlikely(*(u8 *)rsp != *(u8 *)gl->va)) {
1170 if (recv_rx_pkt(dev, gl, rsp))
1171 return 0;
1172
700456bd
JP
1173 pr_info("%s: unexpected FL contents at %p, RSS %#llx, FL %#llx, len %u\n",
1174 pci_name(ctx->lldi.pdev), gl->va,
1175 be64_to_cpu(*rsp),
1176 be64_to_cpu(*(__force __be64 *)gl->va),
1177 gl->tot_len);
1cab775c 1178
cfdda9d7
SW
1179 return 0;
1180 } else {
da411ba1 1181 skb = cxgb4_pktgl_to_skb(gl, 128, 128);
cfdda9d7
SW
1182 if (unlikely(!skb))
1183 goto nomem;
1184 }
1185
1cab775c 1186 opcode = *(u8 *)rsp;
dbb084cc 1187 if (c4iw_handlers[opcode]) {
cfdda9d7 1188 c4iw_handlers[opcode](dev, skb);
dbb084cc 1189 } else {
700456bd 1190 pr_info("%s no handler opcode 0x%x...\n", __func__, opcode);
dbb084cc
SW
1191 kfree_skb(skb);
1192 }
cfdda9d7
SW
1193
1194 return 0;
1195nomem:
1196 return -1;
1197}
1198
1199static int c4iw_uld_state_change(void *handle, enum cxgb4_state new_state)
1200{
2f25e9a5 1201 struct uld_ctx *ctx = handle;
1c01c538 1202
a9a42886 1203 pr_debug("%s new_state %u\n", __func__, new_state);
1c01c538
SW
1204 switch (new_state) {
1205 case CXGB4_STATE_UP:
700456bd 1206 pr_info("%s: Up\n", pci_name(ctx->lldi.pdev));
2f25e9a5 1207 if (!ctx->dev) {
9efe10a1 1208 int ret;
2f25e9a5
SW
1209
1210 ctx->dev = c4iw_alloc(&ctx->lldi);
9efe10a1 1211 if (IS_ERR(ctx->dev)) {
700456bd 1212 pr_err("%s: initialization failed: %ld\n",
9efe10a1
SW
1213 pci_name(ctx->lldi.pdev),
1214 PTR_ERR(ctx->dev));
1215 ctx->dev = NULL;
1216 break;
1217 }
1218 ret = c4iw_register_device(ctx->dev);
1219 if (ret) {
700456bd 1220 pr_err("%s: RDMA registration failed: %d\n",
2f25e9a5 1221 pci_name(ctx->lldi.pdev), ret);
9efe10a1
SW
1222 c4iw_dealloc(ctx);
1223 }
1c01c538
SW
1224 }
1225 break;
1226 case CXGB4_STATE_DOWN:
700456bd 1227 pr_info("%s: Down\n", pci_name(ctx->lldi.pdev));
2f25e9a5
SW
1228 if (ctx->dev)
1229 c4iw_remove(ctx);
1c01c538
SW
1230 break;
1231 case CXGB4_STATE_START_RECOVERY:
700456bd 1232 pr_info("%s: Fatal Error\n", pci_name(ctx->lldi.pdev));
2f25e9a5 1233 if (ctx->dev) {
767fbe81
SW
1234 struct ib_event event;
1235
2f25e9a5 1236 ctx->dev->rdev.flags |= T4_FATAL_ERROR;
767fbe81
SW
1237 memset(&event, 0, sizeof event);
1238 event.event = IB_EVENT_DEVICE_FATAL;
2f25e9a5 1239 event.device = &ctx->dev->ibdev;
767fbe81 1240 ib_dispatch_event(&event);
2f25e9a5 1241 c4iw_remove(ctx);
767fbe81 1242 }
1c01c538
SW
1243 break;
1244 case CXGB4_STATE_DETACH:
700456bd 1245 pr_info("%s: Detach\n", pci_name(ctx->lldi.pdev));
2f25e9a5
SW
1246 if (ctx->dev)
1247 c4iw_remove(ctx);
1c01c538
SW
1248 break;
1249 }
cfdda9d7
SW
1250 return 0;
1251}
1252
2c974781
VP
1253static int disable_qp_db(int id, void *p, void *data)
1254{
1255 struct c4iw_qp *qp = p;
1256
1257 t4_disable_wq_db(&qp->wq);
1258 return 0;
1259}
1260
1261static void stop_queues(struct uld_ctx *ctx)
1262{
05eb2389
SW
1263 unsigned long flags;
1264
1265 spin_lock_irqsave(&ctx->dev->lock, flags);
1266 ctx->dev->rdev.stats.db_state_transitions++;
1267 ctx->dev->db_state = STOPPED;
1268 if (ctx->dev->rdev.flags & T4_STATUS_PAGE_DISABLED)
422eea0a 1269 idr_for_each(&ctx->dev->qpidr, disable_qp_db, NULL);
05eb2389
SW
1270 else
1271 ctx->dev->rdev.status_page->db_off = 1;
1272 spin_unlock_irqrestore(&ctx->dev->lock, flags);
2c974781
VP
1273}
1274
1275static int enable_qp_db(int id, void *p, void *data)
1276{
1277 struct c4iw_qp *qp = p;
1278
1279 t4_enable_wq_db(&qp->wq);
1280 return 0;
1281}
1282
05eb2389
SW
1283static void resume_rc_qp(struct c4iw_qp *qp)
1284{
1285 spin_lock(&qp->lock);
963cab50 1286 t4_ring_sq_db(&qp->wq, qp->wq.sq.wq_pidx_inc, NULL);
05eb2389 1287 qp->wq.sq.wq_pidx_inc = 0;
963cab50 1288 t4_ring_rq_db(&qp->wq, qp->wq.rq.wq_pidx_inc, NULL);
05eb2389
SW
1289 qp->wq.rq.wq_pidx_inc = 0;
1290 spin_unlock(&qp->lock);
1291}
1292
1293static void resume_a_chunk(struct uld_ctx *ctx)
1294{
1295 int i;
1296 struct c4iw_qp *qp;
1297
1298 for (i = 0; i < DB_FC_RESUME_SIZE; i++) {
1299 qp = list_first_entry(&ctx->dev->db_fc_list, struct c4iw_qp,
1300 db_fc_entry);
1301 list_del_init(&qp->db_fc_entry);
1302 resume_rc_qp(qp);
1303 if (list_empty(&ctx->dev->db_fc_list))
1304 break;
1305 }
1306}
1307
2c974781
VP
1308static void resume_queues(struct uld_ctx *ctx)
1309{
1310 spin_lock_irq(&ctx->dev->lock);
05eb2389
SW
1311 if (ctx->dev->db_state != STOPPED)
1312 goto out;
1313 ctx->dev->db_state = FLOW_CONTROL;
1314 while (1) {
1315 if (list_empty(&ctx->dev->db_fc_list)) {
1316 WARN_ON(ctx->dev->db_state != FLOW_CONTROL);
1317 ctx->dev->db_state = NORMAL;
1318 ctx->dev->rdev.stats.db_state_transitions++;
1319 if (ctx->dev->rdev.flags & T4_STATUS_PAGE_DISABLED) {
1320 idr_for_each(&ctx->dev->qpidr, enable_qp_db,
1321 NULL);
1322 } else {
1323 ctx->dev->rdev.status_page->db_off = 0;
1324 }
1325 break;
1326 } else {
1327 if (cxgb4_dbfifo_count(ctx->dev->rdev.lldi.ports[0], 1)
1328 < (ctx->dev->rdev.lldi.dbfifo_int_thresh <<
1329 DB_FC_DRAIN_THRESH)) {
1330 resume_a_chunk(ctx);
1331 }
1332 if (!list_empty(&ctx->dev->db_fc_list)) {
1333 spin_unlock_irq(&ctx->dev->lock);
1334 if (DB_FC_RESUME_DELAY) {
1335 set_current_state(TASK_UNINTERRUPTIBLE);
1336 schedule_timeout(DB_FC_RESUME_DELAY);
1337 }
1338 spin_lock_irq(&ctx->dev->lock);
1339 if (ctx->dev->db_state != FLOW_CONTROL)
1340 break;
1341 }
1342 }
422eea0a 1343 }
05eb2389
SW
1344out:
1345 if (ctx->dev->db_state != NORMAL)
1346 ctx->dev->rdev.stats.db_fc_interruptions++;
422eea0a
VP
1347 spin_unlock_irq(&ctx->dev->lock);
1348}
1349
1350struct qp_list {
1351 unsigned idx;
1352 struct c4iw_qp **qps;
1353};
1354
1355static int add_and_ref_qp(int id, void *p, void *data)
1356{
1357 struct qp_list *qp_listp = data;
1358 struct c4iw_qp *qp = p;
1359
1360 c4iw_qp_add_ref(&qp->ibqp);
1361 qp_listp->qps[qp_listp->idx++] = qp;
1362 return 0;
1363}
1364
1365static int count_qps(int id, void *p, void *data)
1366{
1367 unsigned *countp = data;
1368 (*countp)++;
1369 return 0;
1370}
1371
05eb2389 1372static void deref_qps(struct qp_list *qp_list)
422eea0a
VP
1373{
1374 int idx;
1375
05eb2389
SW
1376 for (idx = 0; idx < qp_list->idx; idx++)
1377 c4iw_qp_rem_ref(&qp_list->qps[idx]->ibqp);
422eea0a
VP
1378}
1379
1380static void recover_lost_dbs(struct uld_ctx *ctx, struct qp_list *qp_list)
1381{
1382 int idx;
1383 int ret;
1384
1385 for (idx = 0; idx < qp_list->idx; idx++) {
1386 struct c4iw_qp *qp = qp_list->qps[idx];
1387
05eb2389
SW
1388 spin_lock_irq(&qp->rhp->lock);
1389 spin_lock(&qp->lock);
422eea0a
VP
1390 ret = cxgb4_sync_txq_pidx(qp->rhp->rdev.lldi.ports[0],
1391 qp->wq.sq.qid,
1392 t4_sq_host_wq_pidx(&qp->wq),
1393 t4_sq_wq_size(&qp->wq));
1394 if (ret) {
700456bd 1395 pr_err("%s: Fatal error - DB overflow recovery failed - error syncing SQ qid %u\n",
422eea0a 1396 pci_name(ctx->lldi.pdev), qp->wq.sq.qid);
05eb2389
SW
1397 spin_unlock(&qp->lock);
1398 spin_unlock_irq(&qp->rhp->lock);
422eea0a
VP
1399 return;
1400 }
05eb2389 1401 qp->wq.sq.wq_pidx_inc = 0;
422eea0a
VP
1402
1403 ret = cxgb4_sync_txq_pidx(qp->rhp->rdev.lldi.ports[0],
1404 qp->wq.rq.qid,
1405 t4_rq_host_wq_pidx(&qp->wq),
1406 t4_rq_wq_size(&qp->wq));
1407
1408 if (ret) {
700456bd 1409 pr_err("%s: Fatal error - DB overflow recovery failed - error syncing RQ qid %u\n",
422eea0a 1410 pci_name(ctx->lldi.pdev), qp->wq.rq.qid);
05eb2389
SW
1411 spin_unlock(&qp->lock);
1412 spin_unlock_irq(&qp->rhp->lock);
422eea0a
VP
1413 return;
1414 }
05eb2389
SW
1415 qp->wq.rq.wq_pidx_inc = 0;
1416 spin_unlock(&qp->lock);
1417 spin_unlock_irq(&qp->rhp->lock);
422eea0a
VP
1418
1419 /* Wait for the dbfifo to drain */
1420 while (cxgb4_dbfifo_count(qp->rhp->rdev.lldi.ports[0], 1) > 0) {
1421 set_current_state(TASK_UNINTERRUPTIBLE);
1422 schedule_timeout(usecs_to_jiffies(10));
1423 }
1424 }
1425}
1426
1427static void recover_queues(struct uld_ctx *ctx)
1428{
1429 int count = 0;
1430 struct qp_list qp_list;
1431 int ret;
1432
422eea0a
VP
1433 /* slow everybody down */
1434 set_current_state(TASK_UNINTERRUPTIBLE);
1435 schedule_timeout(usecs_to_jiffies(1000));
1436
422eea0a
VP
1437 /* flush the SGE contexts */
1438 ret = cxgb4_flush_eq_cache(ctx->dev->rdev.lldi.ports[0]);
1439 if (ret) {
700456bd 1440 pr_err("%s: Fatal error - DB overflow recovery failed\n",
422eea0a 1441 pci_name(ctx->lldi.pdev));
05eb2389 1442 return;
422eea0a
VP
1443 }
1444
1445 /* Count active queues so we can build a list of queues to recover */
1446 spin_lock_irq(&ctx->dev->lock);
05eb2389
SW
1447 WARN_ON(ctx->dev->db_state != STOPPED);
1448 ctx->dev->db_state = RECOVERY;
422eea0a
VP
1449 idr_for_each(&ctx->dev->qpidr, count_qps, &count);
1450
1451 qp_list.qps = kzalloc(count * sizeof *qp_list.qps, GFP_ATOMIC);
1452 if (!qp_list.qps) {
422eea0a 1453 spin_unlock_irq(&ctx->dev->lock);
05eb2389 1454 return;
422eea0a
VP
1455 }
1456 qp_list.idx = 0;
1457
1458 /* add and ref each qp so it doesn't get freed */
1459 idr_for_each(&ctx->dev->qpidr, add_and_ref_qp, &qp_list);
1460
2c974781 1461 spin_unlock_irq(&ctx->dev->lock);
422eea0a
VP
1462
1463 /* now traverse the list in a safe context to recover the db state*/
1464 recover_lost_dbs(ctx, &qp_list);
1465
1466 /* we're almost done! deref the qps and clean up */
05eb2389 1467 deref_qps(&qp_list);
422eea0a
VP
1468 kfree(qp_list.qps);
1469
422eea0a 1470 spin_lock_irq(&ctx->dev->lock);
05eb2389
SW
1471 WARN_ON(ctx->dev->db_state != RECOVERY);
1472 ctx->dev->db_state = STOPPED;
422eea0a 1473 spin_unlock_irq(&ctx->dev->lock);
2c974781
VP
1474}
1475
1476static int c4iw_uld_control(void *handle, enum cxgb4_control control, ...)
1477{
1478 struct uld_ctx *ctx = handle;
1479
1480 switch (control) {
1481 case CXGB4_CONTROL_DB_FULL:
1482 stop_queues(ctx);
2c974781 1483 ctx->dev->rdev.stats.db_full++;
2c974781
VP
1484 break;
1485 case CXGB4_CONTROL_DB_EMPTY:
1486 resume_queues(ctx);
1487 mutex_lock(&ctx->dev->rdev.stats.lock);
1488 ctx->dev->rdev.stats.db_empty++;
1489 mutex_unlock(&ctx->dev->rdev.stats.lock);
1490 break;
1491 case CXGB4_CONTROL_DB_DROP:
422eea0a 1492 recover_queues(ctx);
2c974781
VP
1493 mutex_lock(&ctx->dev->rdev.stats.lock);
1494 ctx->dev->rdev.stats.db_drop++;
1495 mutex_unlock(&ctx->dev->rdev.stats.lock);
1496 break;
1497 default:
700456bd
JP
1498 pr_warn("%s: unknown control cmd %u\n",
1499 pci_name(ctx->lldi.pdev), control);
2c974781
VP
1500 break;
1501 }
1502 return 0;
1503}
1504
cfdda9d7
SW
1505static struct cxgb4_uld_info c4iw_uld_info = {
1506 .name = DRV_NAME,
0fbc81b3 1507 .nrxq = MAX_ULD_QSETS,
ab677ff4 1508 .ntxq = MAX_ULD_QSETS,
0fbc81b3
HS
1509 .rxq_size = 511,
1510 .ciq = true,
1511 .lro = false,
cfdda9d7
SW
1512 .add = c4iw_uld_add,
1513 .rx_handler = c4iw_uld_rx_handler,
1514 .state_change = c4iw_uld_state_change,
2c974781 1515 .control = c4iw_uld_control,
cfdda9d7
SW
1516};
1517
1518static int __init c4iw_init_module(void)
1519{
1520 int err;
1521
1522 err = c4iw_cm_init();
1523 if (err)
1524 return err;
1525
1526 c4iw_debugfs_root = debugfs_create_dir(DRV_NAME, NULL);
1527 if (!c4iw_debugfs_root)
700456bd 1528 pr_warn("could not create debugfs entry, continuing\n");
cfdda9d7
SW
1529
1530 cxgb4_register_uld(CXGB4_ULD_RDMA, &c4iw_uld_info);
1531
1532 return 0;
1533}
1534
1535static void __exit c4iw_exit_module(void)
1536{
2f25e9a5 1537 struct uld_ctx *ctx, *tmp;
cfdda9d7 1538
cfdda9d7 1539 mutex_lock(&dev_mutex);
2f25e9a5
SW
1540 list_for_each_entry_safe(ctx, tmp, &uld_ctx_list, entry) {
1541 if (ctx->dev)
1542 c4iw_remove(ctx);
1543 kfree(ctx);
cfdda9d7
SW
1544 }
1545 mutex_unlock(&dev_mutex);
fd388ce6 1546 cxgb4_unregister_uld(CXGB4_ULD_RDMA);
cfdda9d7
SW
1547 c4iw_cm_term();
1548 debugfs_remove_recursive(c4iw_debugfs_root);
1549}
1550
1551module_init(c4iw_init_module);
1552module_exit(c4iw_exit_module);