[SCSI] lpfc 8.2.4 : Fix Unsolicited Data items
[firewire-audio.git] / drivers / scsi / lpfc / lpfc_debugfs.c
blobda607c775cfc3e473eed4bf8066519e50df92aea
1 /*******************************************************************
2 * This file is part of the Emulex Linux Device Driver for *
3 * Fibre Channel Host Bus Adapters. *
4 * Copyright (C) 2007 Emulex. All rights reserved. *
5 * EMULEX and SLI are trademarks of Emulex. *
6 * www.emulex.com *
7 * *
8 * This program is free software; you can redistribute it and/or *
9 * modify it under the terms of version 2 of the GNU General *
10 * Public License as published by the Free Software Foundation. *
11 * This program is distributed in the hope that it will be useful. *
12 * ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND *
13 * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, *
14 * FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE *
15 * DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD *
16 * TO BE LEGALLY INVALID. See the GNU General Public License for *
17 * more details, a copy of which can be found in the file COPYING *
18 * included with this package. *
19 *******************************************************************/
21 #include <linux/blkdev.h>
22 #include <linux/delay.h>
23 #include <linux/dma-mapping.h>
24 #include <linux/idr.h>
25 #include <linux/interrupt.h>
26 #include <linux/kthread.h>
27 #include <linux/pci.h>
28 #include <linux/spinlock.h>
29 #include <linux/ctype.h>
30 #include <linux/version.h>
32 #include <scsi/scsi.h>
33 #include <scsi/scsi_device.h>
34 #include <scsi/scsi_host.h>
35 #include <scsi/scsi_transport_fc.h>
37 #include "lpfc_hw.h"
38 #include "lpfc_sli.h"
39 #include "lpfc_disc.h"
40 #include "lpfc_scsi.h"
41 #include "lpfc.h"
42 #include "lpfc_logmsg.h"
43 #include "lpfc_crtn.h"
44 #include "lpfc_vport.h"
45 #include "lpfc_version.h"
46 #include "lpfc_debugfs.h"
48 #ifdef CONFIG_LPFC_DEBUG_FS
49 /* debugfs interface
51 * To access this interface the user should:
52 * # mkdir /debug
53 * # mount -t debugfs none /debug
55 * The lpfc debugfs directory hierachy is:
56 * lpfc/lpfcX/vportY
57 * where X is the lpfc hba unique_id
58 * where Y is the vport VPI on that hba
60 * Debugging services available per vport:
61 * discovery_trace
62 * This is an ACSII readable file that contains a trace of the last
63 * lpfc_debugfs_max_disc_trc events that happened on a specific vport.
64 * See lpfc_debugfs.h for different categories of
65 * discovery events. To enable the discovery trace, the following
66 * module parameters must be set:
67 * lpfc_debugfs_enable=1 Turns on lpfc debugfs filesystem support
68 * lpfc_debugfs_max_disc_trc=X Where X is the event trace depth for
69 * EACH vport. X MUST also be a power of 2.
70 * lpfc_debugfs_mask_disc_trc=Y Where Y is an event mask as defined in
71 * lpfc_debugfs.h .
73 static int lpfc_debugfs_enable = 1;
74 module_param(lpfc_debugfs_enable, int, 0);
75 MODULE_PARM_DESC(lpfc_debugfs_enable, "Enable debugfs services");
77 /* This MUST be a power of 2 */
78 static int lpfc_debugfs_max_disc_trc = 0;
79 module_param(lpfc_debugfs_max_disc_trc, int, 0);
80 MODULE_PARM_DESC(lpfc_debugfs_max_disc_trc,
81 "Set debugfs discovery trace depth");
83 /* This MUST be a power of 2 */
84 static int lpfc_debugfs_max_slow_ring_trc = 0;
85 module_param(lpfc_debugfs_max_slow_ring_trc, int, 0);
86 MODULE_PARM_DESC(lpfc_debugfs_max_slow_ring_trc,
87 "Set debugfs slow ring trace depth");
89 static int lpfc_debugfs_mask_disc_trc = 0;
90 module_param(lpfc_debugfs_mask_disc_trc, int, 0);
91 MODULE_PARM_DESC(lpfc_debugfs_mask_disc_trc,
92 "Set debugfs discovery trace mask");
94 #include <linux/debugfs.h>
96 /* size of output line, for discovery_trace and slow_ring_trace */
97 #define LPFC_DEBUG_TRC_ENTRY_SIZE 100
99 /* nodelist output buffer size */
100 #define LPFC_NODELIST_SIZE 8192
101 #define LPFC_NODELIST_ENTRY_SIZE 120
103 /* dumpslim output buffer size */
104 #define LPFC_DUMPSLIM_SIZE 4096
106 /* hbqinfo output buffer size */
107 #define LPFC_HBQINFO_SIZE 8192
109 struct lpfc_debug {
110 char *buffer;
111 int len;
114 static atomic_t lpfc_debugfs_seq_trc_cnt = ATOMIC_INIT(0);
115 static unsigned long lpfc_debugfs_start_time = 0L;
117 static int
118 lpfc_debugfs_disc_trc_data(struct lpfc_vport *vport, char *buf, int size)
120 int i, index, len, enable;
121 uint32_t ms;
122 struct lpfc_debugfs_trc *dtp;
123 char buffer[LPFC_DEBUG_TRC_ENTRY_SIZE];
126 enable = lpfc_debugfs_enable;
127 lpfc_debugfs_enable = 0;
129 len = 0;
130 index = (atomic_read(&vport->disc_trc_cnt) + 1) &
131 (lpfc_debugfs_max_disc_trc - 1);
132 for (i = index; i < lpfc_debugfs_max_disc_trc; i++) {
133 dtp = vport->disc_trc + i;
134 if (!dtp->fmt)
135 continue;
136 ms = jiffies_to_msecs(dtp->jif - lpfc_debugfs_start_time);
137 snprintf(buffer,
138 LPFC_DEBUG_TRC_ENTRY_SIZE, "%010d:%010d ms:%s\n",
139 dtp->seq_cnt, ms, dtp->fmt);
140 len += snprintf(buf+len, size-len, buffer,
141 dtp->data1, dtp->data2, dtp->data3);
143 for (i = 0; i < index; i++) {
144 dtp = vport->disc_trc + i;
145 if (!dtp->fmt)
146 continue;
147 ms = jiffies_to_msecs(dtp->jif - lpfc_debugfs_start_time);
148 snprintf(buffer,
149 LPFC_DEBUG_TRC_ENTRY_SIZE, "%010d:%010d ms:%s\n",
150 dtp->seq_cnt, ms, dtp->fmt);
151 len += snprintf(buf+len, size-len, buffer,
152 dtp->data1, dtp->data2, dtp->data3);
155 lpfc_debugfs_enable = enable;
156 return len;
159 static int
160 lpfc_debugfs_slow_ring_trc_data(struct lpfc_hba *phba, char *buf, int size)
162 int i, index, len, enable;
163 uint32_t ms;
164 struct lpfc_debugfs_trc *dtp;
165 char buffer[LPFC_DEBUG_TRC_ENTRY_SIZE];
168 enable = lpfc_debugfs_enable;
169 lpfc_debugfs_enable = 0;
171 len = 0;
172 index = (atomic_read(&phba->slow_ring_trc_cnt) + 1) &
173 (lpfc_debugfs_max_slow_ring_trc - 1);
174 for (i = index; i < lpfc_debugfs_max_slow_ring_trc; i++) {
175 dtp = phba->slow_ring_trc + i;
176 if (!dtp->fmt)
177 continue;
178 ms = jiffies_to_msecs(dtp->jif - lpfc_debugfs_start_time);
179 snprintf(buffer,
180 LPFC_DEBUG_TRC_ENTRY_SIZE, "%010d:%010d ms:%s\n",
181 dtp->seq_cnt, ms, dtp->fmt);
182 len += snprintf(buf+len, size-len, buffer,
183 dtp->data1, dtp->data2, dtp->data3);
185 for (i = 0; i < index; i++) {
186 dtp = phba->slow_ring_trc + i;
187 if (!dtp->fmt)
188 continue;
189 ms = jiffies_to_msecs(dtp->jif - lpfc_debugfs_start_time);
190 snprintf(buffer,
191 LPFC_DEBUG_TRC_ENTRY_SIZE, "%010d:%010d ms:%s\n",
192 dtp->seq_cnt, ms, dtp->fmt);
193 len += snprintf(buf+len, size-len, buffer,
194 dtp->data1, dtp->data2, dtp->data3);
197 lpfc_debugfs_enable = enable;
198 return len;
201 static int lpfc_debugfs_last_hbq = -1;
203 static int
204 lpfc_debugfs_hbqinfo_data(struct lpfc_hba *phba, char *buf, int size)
206 int len = 0;
207 int cnt, i, j, found, posted, low;
208 uint32_t phys, raw_index, getidx;
209 struct lpfc_hbq_init *hip;
210 struct hbq_s *hbqs;
211 struct lpfc_hbq_entry *hbqe;
212 struct lpfc_dmabuf *d_buf;
213 struct hbq_dmabuf *hbq_buf;
215 cnt = LPFC_HBQINFO_SIZE;
216 spin_lock_irq(&phba->hbalock);
218 /* toggle between multiple hbqs, if any */
219 i = lpfc_sli_hbq_count();
220 if (i > 1) {
221 lpfc_debugfs_last_hbq++;
222 if (lpfc_debugfs_last_hbq >= i)
223 lpfc_debugfs_last_hbq = 0;
225 else
226 lpfc_debugfs_last_hbq = 0;
228 i = lpfc_debugfs_last_hbq;
230 len += snprintf(buf+len, size-len, "HBQ %d Info\n", i);
232 hbqs = &phba->hbqs[i];
233 posted = 0;
234 list_for_each_entry(d_buf, &hbqs->hbq_buffer_list, list)
235 posted++;
237 hip = lpfc_hbq_defs[i];
238 len += snprintf(buf+len, size-len,
239 "idx:%d prof:%d rn:%d bufcnt:%d icnt:%d acnt:%d posted %d\n",
240 hip->hbq_index, hip->profile, hip->rn,
241 hip->buffer_count, hip->init_count, hip->add_count, posted);
243 raw_index = phba->hbq_get[i];
244 getidx = le32_to_cpu(raw_index);
245 len += snprintf(buf+len, size-len,
246 "entrys:%d bufcnt:%d Put:%d nPut:%d localGet:%d hbaGet:%d\n",
247 hbqs->entry_count, hbqs->buffer_count, hbqs->hbqPutIdx,
248 hbqs->next_hbqPutIdx, hbqs->local_hbqGetIdx, getidx);
250 hbqe = (struct lpfc_hbq_entry *) phba->hbqs[i].hbq_virt;
251 for (j=0; j<hbqs->entry_count; j++) {
252 len += snprintf(buf+len, size-len,
253 "%03d: %08x %04x %05x ", j,
254 le32_to_cpu(hbqe->bde.addrLow),
255 le32_to_cpu(hbqe->bde.tus.w),
256 le32_to_cpu(hbqe->buffer_tag));
257 i = 0;
258 found = 0;
260 /* First calculate if slot has an associated posted buffer */
261 low = hbqs->hbqPutIdx - posted;
262 if (low >= 0) {
263 if ((j >= hbqs->hbqPutIdx) || (j < low)) {
264 len += snprintf(buf+len, size-len, "Unused\n");
265 goto skipit;
268 else {
269 if ((j >= hbqs->hbqPutIdx) &&
270 (j < (hbqs->entry_count+low))) {
271 len += snprintf(buf+len, size-len, "Unused\n");
272 goto skipit;
276 /* Get the Buffer info for the posted buffer */
277 list_for_each_entry(d_buf, &hbqs->hbq_buffer_list, list) {
278 hbq_buf = container_of(d_buf, struct hbq_dmabuf, dbuf);
279 phys = ((uint64_t)hbq_buf->dbuf.phys & 0xffffffff);
280 if (phys == le32_to_cpu(hbqe->bde.addrLow)) {
281 len += snprintf(buf+len, size-len,
282 "Buf%d: %p %06x\n", i,
283 hbq_buf->dbuf.virt, hbq_buf->tag);
284 found = 1;
285 break;
287 i++;
289 if (!found) {
290 len += snprintf(buf+len, size-len, "No DMAinfo?\n");
292 skipit:
293 hbqe++;
294 if (len > LPFC_HBQINFO_SIZE - 54)
295 break;
297 spin_unlock_irq(&phba->hbalock);
298 return len;
301 static int
302 lpfc_debugfs_dumpslim_data(struct lpfc_hba *phba, char *buf, int size)
304 int len = 0;
305 int cnt, i, off;
306 uint32_t word0, word1, word2, word3;
307 uint32_t *ptr;
308 struct lpfc_pgp *pgpp;
309 struct lpfc_sli *psli = &phba->sli;
310 struct lpfc_sli_ring *pring;
312 cnt = LPFC_DUMPSLIM_SIZE;
313 off = 0;
314 spin_lock_irq(&phba->hbalock);
316 len += snprintf(buf+len, size-len, "SLIM Mailbox\n");
317 ptr = (uint32_t *)phba->slim2p;
318 i = sizeof(MAILBOX_t);
319 while (i > 0) {
320 len += snprintf(buf+len, size-len,
321 "%08x: %08x %08x %08x %08x %08x %08x %08x %08x\n",
322 off, *ptr, *(ptr+1), *(ptr+2), *(ptr+3), *(ptr+4),
323 *(ptr+5), *(ptr+6), *(ptr+7));
324 ptr += 8;
325 i -= (8 * sizeof(uint32_t));
326 off += (8 * sizeof(uint32_t));
329 len += snprintf(buf+len, size-len, "SLIM PCB\n");
330 ptr = (uint32_t *)&phba->slim2p->pcb;
331 i = sizeof(PCB_t);
332 while (i > 0) {
333 len += snprintf(buf+len, size-len,
334 "%08x: %08x %08x %08x %08x %08x %08x %08x %08x\n",
335 off, *ptr, *(ptr+1), *(ptr+2), *(ptr+3), *(ptr+4),
336 *(ptr+5), *(ptr+6), *(ptr+7));
337 ptr += 8;
338 i -= (8 * sizeof(uint32_t));
339 off += (8 * sizeof(uint32_t));
342 pgpp = (struct lpfc_pgp *)&phba->slim2p->mbx.us.s3_pgp.port;
343 pring = &psli->ring[0];
344 len += snprintf(buf+len, size-len,
345 "Ring 0: CMD GetInx:%d (Max:%d Next:%d Local:%d flg:x%x) "
346 "RSP PutInx:%d Max:%d\n",
347 pgpp->cmdGetInx, pring->numCiocb,
348 pring->next_cmdidx, pring->local_getidx, pring->flag,
349 pgpp->rspPutInx, pring->numRiocb);
350 pgpp++;
352 pring = &psli->ring[1];
353 len += snprintf(buf+len, size-len,
354 "Ring 1: CMD GetInx:%d (Max:%d Next:%d Local:%d flg:x%x) "
355 "RSP PutInx:%d Max:%d\n",
356 pgpp->cmdGetInx, pring->numCiocb,
357 pring->next_cmdidx, pring->local_getidx, pring->flag,
358 pgpp->rspPutInx, pring->numRiocb);
359 pgpp++;
361 pring = &psli->ring[2];
362 len += snprintf(buf+len, size-len,
363 "Ring 2: CMD GetInx:%d (Max:%d Next:%d Local:%d flg:x%x) "
364 "RSP PutInx:%d Max:%d\n",
365 pgpp->cmdGetInx, pring->numCiocb,
366 pring->next_cmdidx, pring->local_getidx, pring->flag,
367 pgpp->rspPutInx, pring->numRiocb);
368 pgpp++;
370 pring = &psli->ring[3];
371 len += snprintf(buf+len, size-len,
372 "Ring 3: CMD GetInx:%d (Max:%d Next:%d Local:%d flg:x%x) "
373 "RSP PutInx:%d Max:%d\n",
374 pgpp->cmdGetInx, pring->numCiocb,
375 pring->next_cmdidx, pring->local_getidx, pring->flag,
376 pgpp->rspPutInx, pring->numRiocb);
379 ptr = (uint32_t *)&phba->slim2p->mbx.us.s3_pgp.hbq_get;
380 word0 = readl(phba->HAregaddr);
381 word1 = readl(phba->CAregaddr);
382 word2 = readl(phba->HSregaddr);
383 word3 = readl(phba->HCregaddr);
384 len += snprintf(buf+len, size-len, "HA:%08x CA:%08x HS:%08x HC:%08x\n",
385 word0, word1, word2, word3);
386 spin_unlock_irq(&phba->hbalock);
387 return len;
390 static int
391 lpfc_debugfs_nodelist_data(struct lpfc_vport *vport, char *buf, int size)
393 int len = 0;
394 int cnt;
395 struct Scsi_Host *shost = lpfc_shost_from_vport(vport);
396 struct lpfc_nodelist *ndlp;
397 unsigned char *statep, *name;
399 cnt = (LPFC_NODELIST_SIZE / LPFC_NODELIST_ENTRY_SIZE);
401 spin_lock_irq(shost->host_lock);
402 list_for_each_entry(ndlp, &vport->fc_nodes, nlp_listp) {
403 if (!cnt) {
404 len += snprintf(buf+len, size-len,
405 "Missing Nodelist Entries\n");
406 break;
408 cnt--;
409 switch (ndlp->nlp_state) {
410 case NLP_STE_UNUSED_NODE:
411 statep = "UNUSED";
412 break;
413 case NLP_STE_PLOGI_ISSUE:
414 statep = "PLOGI ";
415 break;
416 case NLP_STE_ADISC_ISSUE:
417 statep = "ADISC ";
418 break;
419 case NLP_STE_REG_LOGIN_ISSUE:
420 statep = "REGLOG";
421 break;
422 case NLP_STE_PRLI_ISSUE:
423 statep = "PRLI ";
424 break;
425 case NLP_STE_UNMAPPED_NODE:
426 statep = "UNMAP ";
427 break;
428 case NLP_STE_MAPPED_NODE:
429 statep = "MAPPED";
430 break;
431 case NLP_STE_NPR_NODE:
432 statep = "NPR ";
433 break;
434 default:
435 statep = "UNKNOWN";
437 len += snprintf(buf+len, size-len, "%s DID:x%06x ",
438 statep, ndlp->nlp_DID);
439 name = (unsigned char *)&ndlp->nlp_portname;
440 len += snprintf(buf+len, size-len,
441 "WWPN %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x ",
442 *name, *(name+1), *(name+2), *(name+3),
443 *(name+4), *(name+5), *(name+6), *(name+7));
444 name = (unsigned char *)&ndlp->nlp_nodename;
445 len += snprintf(buf+len, size-len,
446 "WWNN %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x ",
447 *name, *(name+1), *(name+2), *(name+3),
448 *(name+4), *(name+5), *(name+6), *(name+7));
449 len += snprintf(buf+len, size-len, "RPI:%03d flag:x%08x ",
450 ndlp->nlp_rpi, ndlp->nlp_flag);
451 if (!ndlp->nlp_type)
452 len += snprintf(buf+len, size-len, "UNKNOWN_TYPE ");
453 if (ndlp->nlp_type & NLP_FC_NODE)
454 len += snprintf(buf+len, size-len, "FC_NODE ");
455 if (ndlp->nlp_type & NLP_FABRIC)
456 len += snprintf(buf+len, size-len, "FABRIC ");
457 if (ndlp->nlp_type & NLP_FCP_TARGET)
458 len += snprintf(buf+len, size-len, "FCP_TGT sid:%d ",
459 ndlp->nlp_sid);
460 if (ndlp->nlp_type & NLP_FCP_INITIATOR)
461 len += snprintf(buf+len, size-len, "FCP_INITIATOR ");
462 len += snprintf(buf+len, size-len, "refcnt:%x",
463 atomic_read(&ndlp->kref.refcount));
464 len += snprintf(buf+len, size-len, "\n");
466 spin_unlock_irq(shost->host_lock);
467 return len;
469 #endif
472 inline void
473 lpfc_debugfs_disc_trc(struct lpfc_vport *vport, int mask, char *fmt,
474 uint32_t data1, uint32_t data2, uint32_t data3)
476 #ifdef CONFIG_LPFC_DEBUG_FS
477 struct lpfc_debugfs_trc *dtp;
478 int index;
480 if (!(lpfc_debugfs_mask_disc_trc & mask))
481 return;
483 if (!lpfc_debugfs_enable || !lpfc_debugfs_max_disc_trc ||
484 !vport || !vport->disc_trc)
485 return;
487 index = atomic_inc_return(&vport->disc_trc_cnt) &
488 (lpfc_debugfs_max_disc_trc - 1);
489 dtp = vport->disc_trc + index;
490 dtp->fmt = fmt;
491 dtp->data1 = data1;
492 dtp->data2 = data2;
493 dtp->data3 = data3;
494 dtp->seq_cnt = atomic_inc_return(&lpfc_debugfs_seq_trc_cnt);
495 dtp->jif = jiffies;
496 #endif
497 return;
500 inline void
501 lpfc_debugfs_slow_ring_trc(struct lpfc_hba *phba, char *fmt,
502 uint32_t data1, uint32_t data2, uint32_t data3)
504 #ifdef CONFIG_LPFC_DEBUG_FS
505 struct lpfc_debugfs_trc *dtp;
506 int index;
508 if (!lpfc_debugfs_enable || !lpfc_debugfs_max_slow_ring_trc ||
509 !phba || !phba->slow_ring_trc)
510 return;
512 index = atomic_inc_return(&phba->slow_ring_trc_cnt) &
513 (lpfc_debugfs_max_slow_ring_trc - 1);
514 dtp = phba->slow_ring_trc + index;
515 dtp->fmt = fmt;
516 dtp->data1 = data1;
517 dtp->data2 = data2;
518 dtp->data3 = data3;
519 dtp->seq_cnt = atomic_inc_return(&lpfc_debugfs_seq_trc_cnt);
520 dtp->jif = jiffies;
521 #endif
522 return;
525 #ifdef CONFIG_LPFC_DEBUG_FS
526 static int
527 lpfc_debugfs_disc_trc_open(struct inode *inode, struct file *file)
529 struct lpfc_vport *vport = inode->i_private;
530 struct lpfc_debug *debug;
531 int size;
532 int rc = -ENOMEM;
534 if (!lpfc_debugfs_max_disc_trc) {
535 rc = -ENOSPC;
536 goto out;
539 debug = kmalloc(sizeof(*debug), GFP_KERNEL);
540 if (!debug)
541 goto out;
543 /* Round to page boundry */
544 size = (lpfc_debugfs_max_disc_trc * LPFC_DEBUG_TRC_ENTRY_SIZE);
545 size = PAGE_ALIGN(size);
547 debug->buffer = kmalloc(size, GFP_KERNEL);
548 if (!debug->buffer) {
549 kfree(debug);
550 goto out;
553 debug->len = lpfc_debugfs_disc_trc_data(vport, debug->buffer, size);
554 file->private_data = debug;
556 rc = 0;
557 out:
558 return rc;
561 static int
562 lpfc_debugfs_slow_ring_trc_open(struct inode *inode, struct file *file)
564 struct lpfc_hba *phba = inode->i_private;
565 struct lpfc_debug *debug;
566 int size;
567 int rc = -ENOMEM;
569 if (!lpfc_debugfs_max_slow_ring_trc) {
570 rc = -ENOSPC;
571 goto out;
574 debug = kmalloc(sizeof(*debug), GFP_KERNEL);
575 if (!debug)
576 goto out;
578 /* Round to page boundry */
579 size = (lpfc_debugfs_max_slow_ring_trc * LPFC_DEBUG_TRC_ENTRY_SIZE);
580 size = PAGE_ALIGN(size);
582 debug->buffer = kmalloc(size, GFP_KERNEL);
583 if (!debug->buffer) {
584 kfree(debug);
585 goto out;
588 debug->len = lpfc_debugfs_slow_ring_trc_data(phba, debug->buffer, size);
589 file->private_data = debug;
591 rc = 0;
592 out:
593 return rc;
596 static int
597 lpfc_debugfs_hbqinfo_open(struct inode *inode, struct file *file)
599 struct lpfc_hba *phba = inode->i_private;
600 struct lpfc_debug *debug;
601 int rc = -ENOMEM;
603 debug = kmalloc(sizeof(*debug), GFP_KERNEL);
604 if (!debug)
605 goto out;
607 /* Round to page boundry */
608 debug->buffer = kmalloc(LPFC_HBQINFO_SIZE, GFP_KERNEL);
609 if (!debug->buffer) {
610 kfree(debug);
611 goto out;
614 debug->len = lpfc_debugfs_hbqinfo_data(phba, debug->buffer,
615 LPFC_HBQINFO_SIZE);
616 file->private_data = debug;
618 rc = 0;
619 out:
620 return rc;
623 static int
624 lpfc_debugfs_dumpslim_open(struct inode *inode, struct file *file)
626 struct lpfc_hba *phba = inode->i_private;
627 struct lpfc_debug *debug;
628 int rc = -ENOMEM;
630 debug = kmalloc(sizeof(*debug), GFP_KERNEL);
631 if (!debug)
632 goto out;
634 /* Round to page boundry */
635 debug->buffer = kmalloc(LPFC_DUMPSLIM_SIZE, GFP_KERNEL);
636 if (!debug->buffer) {
637 kfree(debug);
638 goto out;
641 debug->len = lpfc_debugfs_dumpslim_data(phba, debug->buffer,
642 LPFC_DUMPSLIM_SIZE);
643 file->private_data = debug;
645 rc = 0;
646 out:
647 return rc;
650 static int
651 lpfc_debugfs_nodelist_open(struct inode *inode, struct file *file)
653 struct lpfc_vport *vport = inode->i_private;
654 struct lpfc_debug *debug;
655 int rc = -ENOMEM;
657 debug = kmalloc(sizeof(*debug), GFP_KERNEL);
658 if (!debug)
659 goto out;
661 /* Round to page boundry */
662 debug->buffer = kmalloc(LPFC_NODELIST_SIZE, GFP_KERNEL);
663 if (!debug->buffer) {
664 kfree(debug);
665 goto out;
668 debug->len = lpfc_debugfs_nodelist_data(vport, debug->buffer,
669 LPFC_NODELIST_SIZE);
670 file->private_data = debug;
672 rc = 0;
673 out:
674 return rc;
677 static loff_t
678 lpfc_debugfs_lseek(struct file *file, loff_t off, int whence)
680 struct lpfc_debug *debug;
681 loff_t pos = -1;
683 debug = file->private_data;
685 switch (whence) {
686 case 0:
687 pos = off;
688 break;
689 case 1:
690 pos = file->f_pos + off;
691 break;
692 case 2:
693 pos = debug->len - off;
695 return (pos < 0 || pos > debug->len) ? -EINVAL : (file->f_pos = pos);
698 static ssize_t
699 lpfc_debugfs_read(struct file *file, char __user *buf,
700 size_t nbytes, loff_t *ppos)
702 struct lpfc_debug *debug = file->private_data;
703 return simple_read_from_buffer(buf, nbytes, ppos, debug->buffer,
704 debug->len);
707 static int
708 lpfc_debugfs_release(struct inode *inode, struct file *file)
710 struct lpfc_debug *debug = file->private_data;
712 kfree(debug->buffer);
713 kfree(debug);
715 return 0;
718 #undef lpfc_debugfs_op_disc_trc
719 static struct file_operations lpfc_debugfs_op_disc_trc = {
720 .owner = THIS_MODULE,
721 .open = lpfc_debugfs_disc_trc_open,
722 .llseek = lpfc_debugfs_lseek,
723 .read = lpfc_debugfs_read,
724 .release = lpfc_debugfs_release,
727 #undef lpfc_debugfs_op_nodelist
728 static struct file_operations lpfc_debugfs_op_nodelist = {
729 .owner = THIS_MODULE,
730 .open = lpfc_debugfs_nodelist_open,
731 .llseek = lpfc_debugfs_lseek,
732 .read = lpfc_debugfs_read,
733 .release = lpfc_debugfs_release,
736 #undef lpfc_debugfs_op_hbqinfo
737 static struct file_operations lpfc_debugfs_op_hbqinfo = {
738 .owner = THIS_MODULE,
739 .open = lpfc_debugfs_hbqinfo_open,
740 .llseek = lpfc_debugfs_lseek,
741 .read = lpfc_debugfs_read,
742 .release = lpfc_debugfs_release,
745 #undef lpfc_debugfs_op_dumpslim
746 static struct file_operations lpfc_debugfs_op_dumpslim = {
747 .owner = THIS_MODULE,
748 .open = lpfc_debugfs_dumpslim_open,
749 .llseek = lpfc_debugfs_lseek,
750 .read = lpfc_debugfs_read,
751 .release = lpfc_debugfs_release,
754 #undef lpfc_debugfs_op_slow_ring_trc
755 static struct file_operations lpfc_debugfs_op_slow_ring_trc = {
756 .owner = THIS_MODULE,
757 .open = lpfc_debugfs_slow_ring_trc_open,
758 .llseek = lpfc_debugfs_lseek,
759 .read = lpfc_debugfs_read,
760 .release = lpfc_debugfs_release,
763 static struct dentry *lpfc_debugfs_root = NULL;
764 static atomic_t lpfc_debugfs_hba_count;
765 #endif
767 inline void
768 lpfc_debugfs_initialize(struct lpfc_vport *vport)
770 #ifdef CONFIG_LPFC_DEBUG_FS
771 struct lpfc_hba *phba = vport->phba;
772 char name[64];
773 uint32_t num, i;
775 if (!lpfc_debugfs_enable)
776 return;
778 /* Setup lpfc root directory */
779 if (!lpfc_debugfs_root) {
780 lpfc_debugfs_root = debugfs_create_dir("lpfc", NULL);
781 atomic_set(&lpfc_debugfs_hba_count, 0);
782 if (!lpfc_debugfs_root) {
783 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
784 "0409 Cannot create debugfs root\n");
785 goto debug_failed;
788 if (!lpfc_debugfs_start_time)
789 lpfc_debugfs_start_time = jiffies;
791 /* Setup lpfcX directory for specific HBA */
792 snprintf(name, sizeof(name), "lpfc%d", phba->brd_no);
793 if (!phba->hba_debugfs_root) {
794 phba->hba_debugfs_root =
795 debugfs_create_dir(name, lpfc_debugfs_root);
796 if (!phba->hba_debugfs_root) {
797 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
798 "0409 Cannot create debugfs hba\n");
799 goto debug_failed;
801 atomic_inc(&lpfc_debugfs_hba_count);
802 atomic_set(&phba->debugfs_vport_count, 0);
804 /* Setup hbqinfo */
805 snprintf(name, sizeof(name), "hbqinfo");
806 phba->debug_hbqinfo =
807 debugfs_create_file(name, S_IFREG|S_IRUGO|S_IWUSR,
808 phba->hba_debugfs_root,
809 phba, &lpfc_debugfs_op_hbqinfo);
810 if (!phba->debug_hbqinfo) {
811 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
812 "0409 Cannot create debugfs hbqinfo\n");
813 goto debug_failed;
816 /* Setup dumpslim */
817 snprintf(name, sizeof(name), "dumpslim");
818 phba->debug_dumpslim =
819 debugfs_create_file(name, S_IFREG|S_IRUGO|S_IWUSR,
820 phba->hba_debugfs_root,
821 phba, &lpfc_debugfs_op_dumpslim);
822 if (!phba->debug_dumpslim) {
823 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
824 "0409 Cannot create debugfs dumpslim\n");
825 goto debug_failed;
828 /* Setup slow ring trace */
829 if (lpfc_debugfs_max_slow_ring_trc) {
830 num = lpfc_debugfs_max_slow_ring_trc - 1;
831 if (num & lpfc_debugfs_max_slow_ring_trc) {
832 /* Change to be a power of 2 */
833 num = lpfc_debugfs_max_slow_ring_trc;
834 i = 0;
835 while (num > 1) {
836 num = num >> 1;
837 i++;
839 lpfc_debugfs_max_slow_ring_trc = (1 << i);
840 printk(KERN_ERR
841 "lpfc_debugfs_max_disc_trc changed to "
842 "%d\n", lpfc_debugfs_max_disc_trc);
847 snprintf(name, sizeof(name), "slow_ring_trace");
848 phba->debug_slow_ring_trc =
849 debugfs_create_file(name, S_IFREG|S_IRUGO|S_IWUSR,
850 phba->hba_debugfs_root,
851 phba, &lpfc_debugfs_op_slow_ring_trc);
852 if (!phba->debug_slow_ring_trc) {
853 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
854 "0409 Cannot create debugfs "
855 "slow_ring_trace\n");
856 goto debug_failed;
858 if (!phba->slow_ring_trc) {
859 phba->slow_ring_trc = kmalloc(
860 (sizeof(struct lpfc_debugfs_trc) *
861 lpfc_debugfs_max_slow_ring_trc),
862 GFP_KERNEL);
863 if (!phba->slow_ring_trc) {
864 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
865 "0409 Cannot create debugfs "
866 "slow_ring buffer\n");
867 goto debug_failed;
869 atomic_set(&phba->slow_ring_trc_cnt, 0);
870 memset(phba->slow_ring_trc, 0,
871 (sizeof(struct lpfc_debugfs_trc) *
872 lpfc_debugfs_max_slow_ring_trc));
876 snprintf(name, sizeof(name), "vport%d", vport->vpi);
877 if (!vport->vport_debugfs_root) {
878 vport->vport_debugfs_root =
879 debugfs_create_dir(name, phba->hba_debugfs_root);
880 if (!vport->vport_debugfs_root) {
881 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
882 "0409 Cant create debugfs");
883 goto debug_failed;
885 atomic_inc(&phba->debugfs_vport_count);
888 if (lpfc_debugfs_max_disc_trc) {
889 num = lpfc_debugfs_max_disc_trc - 1;
890 if (num & lpfc_debugfs_max_disc_trc) {
891 /* Change to be a power of 2 */
892 num = lpfc_debugfs_max_disc_trc;
893 i = 0;
894 while (num > 1) {
895 num = num >> 1;
896 i++;
898 lpfc_debugfs_max_disc_trc = (1 << i);
899 printk(KERN_ERR
900 "lpfc_debugfs_max_disc_trc changed to %d\n",
901 lpfc_debugfs_max_disc_trc);
905 vport->disc_trc = kzalloc(
906 (sizeof(struct lpfc_debugfs_trc) * lpfc_debugfs_max_disc_trc),
907 GFP_KERNEL);
909 if (!vport->disc_trc) {
910 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
911 "0409 Cannot create debugfs disc trace "
912 "buffer\n");
913 goto debug_failed;
915 atomic_set(&vport->disc_trc_cnt, 0);
917 snprintf(name, sizeof(name), "discovery_trace");
918 vport->debug_disc_trc =
919 debugfs_create_file(name, S_IFREG|S_IRUGO|S_IWUSR,
920 vport->vport_debugfs_root,
921 vport, &lpfc_debugfs_op_disc_trc);
922 if (!vport->debug_disc_trc) {
923 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
924 "0409 Cannot create debugfs "
925 "discovery_trace\n");
926 goto debug_failed;
928 snprintf(name, sizeof(name), "nodelist");
929 vport->debug_nodelist =
930 debugfs_create_file(name, S_IFREG|S_IRUGO|S_IWUSR,
931 vport->vport_debugfs_root,
932 vport, &lpfc_debugfs_op_nodelist);
933 if (!vport->debug_nodelist) {
934 lpfc_printf_vlog(vport, KERN_ERR, LOG_INIT,
935 "0409 Cant create debugfs nodelist");
936 goto debug_failed;
938 debug_failed:
939 return;
940 #endif
944 inline void
945 lpfc_debugfs_terminate(struct lpfc_vport *vport)
947 #ifdef CONFIG_LPFC_DEBUG_FS
948 struct lpfc_hba *phba = vport->phba;
950 if (vport->disc_trc) {
951 kfree(vport->disc_trc);
952 vport->disc_trc = NULL;
954 if (vport->debug_disc_trc) {
955 debugfs_remove(vport->debug_disc_trc); /* discovery_trace */
956 vport->debug_disc_trc = NULL;
958 if (vport->debug_nodelist) {
959 debugfs_remove(vport->debug_nodelist); /* nodelist */
960 vport->debug_nodelist = NULL;
963 if (vport->vport_debugfs_root) {
964 debugfs_remove(vport->vport_debugfs_root); /* vportX */
965 vport->vport_debugfs_root = NULL;
966 atomic_dec(&phba->debugfs_vport_count);
968 if (atomic_read(&phba->debugfs_vport_count) == 0) {
970 if (phba->debug_hbqinfo) {
971 debugfs_remove(phba->debug_hbqinfo); /* hbqinfo */
972 phba->debug_hbqinfo = NULL;
974 if (phba->debug_dumpslim) {
975 debugfs_remove(phba->debug_dumpslim); /* dumpslim */
976 phba->debug_dumpslim = NULL;
978 if (phba->slow_ring_trc) {
979 kfree(phba->slow_ring_trc);
980 phba->slow_ring_trc = NULL;
982 if (phba->debug_slow_ring_trc) {
983 /* slow_ring_trace */
984 debugfs_remove(phba->debug_slow_ring_trc);
985 phba->debug_slow_ring_trc = NULL;
988 if (phba->hba_debugfs_root) {
989 debugfs_remove(phba->hba_debugfs_root); /* lpfcX */
990 phba->hba_debugfs_root = NULL;
991 atomic_dec(&lpfc_debugfs_hba_count);
994 if (atomic_read(&lpfc_debugfs_hba_count) == 0) {
995 debugfs_remove(lpfc_debugfs_root); /* lpfc */
996 lpfc_debugfs_root = NULL;
999 #endif
1000 return;