blob: 2cdd6b28ff7fd1f006663277301f5cbc0e49271a [file] [log] [blame]
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001/*
Christof Schmitt553448f2008-06-10 18:20:58 +02002 * zfcp device driver
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02003 *
Christof Schmitt553448f2008-06-10 18:20:58 +02004 * Debug traces for zfcp.
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02005 *
Christof Schmittd46f3842009-08-18 15:43:07 +02006 * Copyright IBM Corporation 2002, 2009
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02007 */
8
Christof Schmittecf39d42008-12-25 13:39:53 +01009#define KMSG_COMPONENT "zfcp"
10#define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
11
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020012#include <linux/ctype.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Heiko Carstens364c8552007-10-12 16:11:35 +020014#include <asm/debug.h>
Christof Schmittd46f3842009-08-18 15:43:07 +020015#include "zfcp_dbf.h"
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020016#include "zfcp_ext.h"
Christof Schmittbd0072e2009-11-24 16:54:11 +010017#include "zfcp_fc.h"
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020018
19static u32 dbfsize = 4;
20
21module_param(dbfsize, uint, 0400);
22MODULE_PARM_DESC(dbfsize,
23 "number of pages for each debug feature area (default 4)");
24
Martin Peschkec15450e2008-03-27 14:21:55 +010025static void zfcp_dbf_hexdump(debug_info_t *dbf, void *to, int to_len,
26 int level, char *from, int from_len)
27{
28 int offset;
29 struct zfcp_dbf_dump *dump = to;
30 int room = to_len - sizeof(*dump);
31
32 for (offset = 0; offset < from_len; offset += dump->size) {
33 memset(to, 0, to_len);
34 strncpy(dump->tag, "dump", ZFCP_DBF_TAG_SIZE);
35 dump->total_size = from_len;
36 dump->offset = offset;
37 dump->size = min(from_len - offset, room);
38 memcpy(dump->data, from + offset, dump->size);
Christof Schmittd94ce6c2008-11-04 16:35:12 +010039 debug_event(dbf, level, dump, dump->size + sizeof(*dump));
Martin Peschkec15450e2008-03-27 14:21:55 +010040 }
41}
42
Martin Peschkea9c85772008-03-31 11:15:27 +020043static void zfcp_dbf_tag(char **p, const char *label, const char *tag)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020044{
Martin Peschkea9c85772008-03-31 11:15:27 +020045 int i;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020046
Martin Peschkea9c85772008-03-31 11:15:27 +020047 *p += sprintf(*p, "%-24s", label);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020048 for (i = 0; i < ZFCP_DBF_TAG_SIZE; i++)
Martin Peschkea9c85772008-03-31 11:15:27 +020049 *p += sprintf(*p, "%c", tag[i]);
50 *p += sprintf(*p, "\n");
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020051}
52
Martin Peschke10223c62008-03-27 14:21:59 +010053static void zfcp_dbf_outs(char **buf, const char *s1, const char *s2)
54{
55 *buf += sprintf(*buf, "%-24s%s\n", s1, s2);
56}
57
58static void zfcp_dbf_out(char **buf, const char *s, const char *format, ...)
59{
60 va_list arg;
61
62 *buf += sprintf(*buf, "%-24s", s);
63 va_start(arg, format);
64 *buf += vsprintf(*buf, format, arg);
65 va_end(arg);
66 *buf += sprintf(*buf, "\n");
67}
68
Martin Peschkedf29f4a2008-03-31 11:15:26 +020069static void zfcp_dbf_outd(char **p, const char *label, char *buffer,
70 int buflen, int offset, int total_size)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020071{
Martin Peschkedf29f4a2008-03-31 11:15:26 +020072 if (!offset)
73 *p += sprintf(*p, "%-24s ", label);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020074 while (buflen--) {
75 if (offset > 0) {
76 if ((offset % 32) == 0)
Martin Peschkedf29f4a2008-03-31 11:15:26 +020077 *p += sprintf(*p, "\n%-24c ", ' ');
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020078 else if ((offset % 4) == 0)
Martin Peschkedf29f4a2008-03-31 11:15:26 +020079 *p += sprintf(*p, " ");
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020080 }
Martin Peschkedf29f4a2008-03-31 11:15:26 +020081 *p += sprintf(*p, "%02x", *buffer++);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020082 if (++offset == total_size) {
Martin Peschkedf29f4a2008-03-31 11:15:26 +020083 *p += sprintf(*p, "\n");
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020084 break;
85 }
86 }
Martin Peschkedf29f4a2008-03-31 11:15:26 +020087 if (!total_size)
88 *p += sprintf(*p, "\n");
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020089}
90
Martin Peschke92c7a832008-03-31 11:15:30 +020091static int zfcp_dbf_view_header(debug_info_t *id, struct debug_view *view,
92 int area, debug_entry_t *entry, char *out_buf)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020093{
94 struct zfcp_dbf_dump *dump = (struct zfcp_dbf_dump *)DEBUG_DATA(entry);
Martin Peschke8fc5af12008-03-31 11:15:23 +020095 struct timespec t;
Martin Peschkeb634fff2008-03-31 11:15:24 +020096 char *p = out_buf;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +020097
98 if (strncmp(dump->tag, "dump", ZFCP_DBF_TAG_SIZE) != 0) {
Christof Schmittb592e892009-08-18 15:43:31 +020099 stck_to_timespec(entry->id.stck, &t);
Martin Peschkeb634fff2008-03-31 11:15:24 +0200100 zfcp_dbf_out(&p, "timestamp", "%011lu:%06lu",
101 t.tv_sec, t.tv_nsec);
102 zfcp_dbf_out(&p, "cpu", "%02i", entry->id.fields.cpuid);
103 } else {
Christof Schmittd94ce6c2008-11-04 16:35:12 +0100104 zfcp_dbf_outd(&p, "", dump->data, dump->size, dump->offset,
Martin Peschkedf29f4a2008-03-31 11:15:26 +0200105 dump->total_size);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200106 if ((dump->offset + dump->size) == dump->total_size)
Martin Peschkeb634fff2008-03-31 11:15:24 +0200107 p += sprintf(p, "\n");
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200108 }
Martin Peschkeb634fff2008-03-31 11:15:24 +0200109 return p - out_buf;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200110}
111
Swen Schillig57717102009-08-18 15:43:21 +0200112void _zfcp_dbf_hba_fsf_response(const char *tag2, int level,
113 struct zfcp_fsf_req *fsf_req,
114 struct zfcp_dbf *dbf)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200115{
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200116 struct fsf_qtcb *qtcb = fsf_req->qtcb;
117 union fsf_prot_status_qual *prot_status_qual =
Martin Peschke92c7a832008-03-31 11:15:30 +0200118 &qtcb->prefix.prot_status_qual;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200119 union fsf_status_qual *fsf_status_qual = &qtcb->header.fsf_status_qual;
120 struct scsi_cmnd *scsi_cmnd;
121 struct zfcp_port *port;
122 struct zfcp_unit *unit;
123 struct zfcp_send_els *send_els;
Swen Schillig57717102009-08-18 15:43:21 +0200124 struct zfcp_dbf_hba_record *rec = &dbf->hba_buf;
125 struct zfcp_dbf_hba_record_response *response = &rec->u.response;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200126 unsigned long flags;
127
Swen Schillig57717102009-08-18 15:43:21 +0200128 spin_lock_irqsave(&dbf->hba_lock, flags);
Martin Peschke6bc473d2008-03-31 11:15:29 +0200129 memset(rec, 0, sizeof(*rec));
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200130 strncpy(rec->tag, "resp", ZFCP_DBF_TAG_SIZE);
Christof Schmitt2e261af2009-08-18 15:43:09 +0200131 strncpy(rec->tag2, tag2, ZFCP_DBF_TAG_SIZE);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200132
133 response->fsf_command = fsf_req->fsf_command;
Christof Schmittf0216ae2009-05-15 13:18:14 +0200134 response->fsf_reqid = fsf_req->req_id;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200135 response->fsf_seqno = fsf_req->seq_no;
136 response->fsf_issued = fsf_req->issued;
137 response->fsf_prot_status = qtcb->prefix.prot_status;
138 response->fsf_status = qtcb->header.fsf_status;
139 memcpy(response->fsf_prot_status_qual,
140 prot_status_qual, FSF_PROT_STATUS_QUAL_SIZE);
141 memcpy(response->fsf_status_qual,
142 fsf_status_qual, FSF_STATUS_QUALIFIER_SIZE);
143 response->fsf_req_status = fsf_req->status;
Christof Schmitt34c2b712010-02-17 11:18:59 +0100144 response->sbal_first = fsf_req->qdio_req.sbal_first;
145 response->sbal_last = fsf_req->qdio_req.sbal_last;
146 response->sbal_response = fsf_req->qdio_req.sbal_response;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200147 response->pool = fsf_req->pool != NULL;
148 response->erp_action = (unsigned long)fsf_req->erp_action;
149
150 switch (fsf_req->fsf_command) {
151 case FSF_QTCB_FCP_CMND:
152 if (fsf_req->status & ZFCP_STATUS_FSFREQ_TASK_MANAGEMENT)
153 break;
154 scsi_cmnd = (struct scsi_cmnd *)fsf_req->data;
Martin Peschke6bc473d2008-03-31 11:15:29 +0200155 if (scsi_cmnd) {
156 response->u.fcp.cmnd = (unsigned long)scsi_cmnd;
Felix Beckef3eb712010-07-16 15:37:42 +0200157 response->u.fcp.data_dir =
158 qtcb->bottom.io.data_direction;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200159 }
160 break;
161
162 case FSF_QTCB_OPEN_PORT_WITH_DID:
163 case FSF_QTCB_CLOSE_PORT:
164 case FSF_QTCB_CLOSE_PHYSICAL_PORT:
165 port = (struct zfcp_port *)fsf_req->data;
Martin Peschke6bc473d2008-03-31 11:15:29 +0200166 response->u.port.wwpn = port->wwpn;
167 response->u.port.d_id = port->d_id;
168 response->u.port.port_handle = qtcb->header.port_handle;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200169 break;
170
171 case FSF_QTCB_OPEN_LUN:
172 case FSF_QTCB_CLOSE_LUN:
173 unit = (struct zfcp_unit *)fsf_req->data;
174 port = unit->port;
Martin Peschke6bc473d2008-03-31 11:15:29 +0200175 response->u.unit.wwpn = port->wwpn;
176 response->u.unit.fcp_lun = unit->fcp_lun;
177 response->u.unit.port_handle = qtcb->header.port_handle;
178 response->u.unit.lun_handle = qtcb->header.lun_handle;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200179 break;
180
181 case FSF_QTCB_SEND_ELS:
182 send_els = (struct zfcp_send_els *)fsf_req->data;
Christof Schmitt800c0ca2009-11-24 16:54:12 +0100183 response->u.els.d_id = ntoh24(qtcb->bottom.support.d_id);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200184 break;
185
186 case FSF_QTCB_ABORT_FCP_CMND:
187 case FSF_QTCB_SEND_GENERIC:
188 case FSF_QTCB_EXCHANGE_CONFIG_DATA:
189 case FSF_QTCB_EXCHANGE_PORT_DATA:
190 case FSF_QTCB_DOWNLOAD_CONTROL_FILE:
191 case FSF_QTCB_UPLOAD_CONTROL_FILE:
192 break;
193 }
194
Swen Schillig57717102009-08-18 15:43:21 +0200195 debug_event(dbf->hba, level, rec, sizeof(*rec));
Martin Peschkeb75db732008-03-27 14:21:58 +0100196
197 /* have fcp channel microcode fixed to use as little as possible */
198 if (fsf_req->fsf_command != FSF_QTCB_FCP_CMND) {
199 /* adjust length skipping trailing zeros */
200 char *buf = (char *)qtcb + qtcb->header.log_start;
201 int len = qtcb->header.log_length;
202 for (; len && !buf[len - 1]; len--);
Swen Schillig57717102009-08-18 15:43:21 +0200203 zfcp_dbf_hexdump(dbf->hba, rec, sizeof(*rec), level, buf,
Christof Schmittd46f3842009-08-18 15:43:07 +0200204 len);
Martin Peschkeb75db732008-03-27 14:21:58 +0100205 }
206
Swen Schillig57717102009-08-18 15:43:21 +0200207 spin_unlock_irqrestore(&dbf->hba_lock, flags);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200208}
209
Swen Schillig57717102009-08-18 15:43:21 +0200210void _zfcp_dbf_hba_fsf_unsol(const char *tag, int level, struct zfcp_dbf *dbf,
211 struct fsf_status_read_buffer *status_buffer)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200212{
Swen Schillig57717102009-08-18 15:43:21 +0200213 struct zfcp_dbf_hba_record *rec = &dbf->hba_buf;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200214 unsigned long flags;
215
Swen Schillig57717102009-08-18 15:43:21 +0200216 spin_lock_irqsave(&dbf->hba_lock, flags);
Martin Peschke6bc473d2008-03-31 11:15:29 +0200217 memset(rec, 0, sizeof(*rec));
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200218 strncpy(rec->tag, "stat", ZFCP_DBF_TAG_SIZE);
219 strncpy(rec->tag2, tag, ZFCP_DBF_TAG_SIZE);
220
Swen Schillig57717102009-08-18 15:43:21 +0200221 rec->u.status.failed = atomic_read(&dbf->adapter->stat_miss);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200222 if (status_buffer != NULL) {
Martin Peschke6bc473d2008-03-31 11:15:29 +0200223 rec->u.status.status_type = status_buffer->status_type;
224 rec->u.status.status_subtype = status_buffer->status_subtype;
225 memcpy(&rec->u.status.queue_designator,
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200226 &status_buffer->queue_designator,
227 sizeof(struct fsf_queue_designator));
228
229 switch (status_buffer->status_type) {
230 case FSF_STATUS_READ_SENSE_DATA_AVAIL:
Martin Peschke6bc473d2008-03-31 11:15:29 +0200231 rec->u.status.payload_size =
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200232 ZFCP_DBF_UNSOL_PAYLOAD_SENSE_DATA_AVAIL;
233 break;
234
235 case FSF_STATUS_READ_BIT_ERROR_THRESHOLD:
Martin Peschke6bc473d2008-03-31 11:15:29 +0200236 rec->u.status.payload_size =
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200237 ZFCP_DBF_UNSOL_PAYLOAD_BIT_ERROR_THRESHOLD;
238 break;
239
240 case FSF_STATUS_READ_LINK_DOWN:
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200241 switch (status_buffer->status_subtype) {
242 case FSF_STATUS_READ_SUB_NO_PHYSICAL_LINK:
243 case FSF_STATUS_READ_SUB_FDISC_FAILED:
Martin Peschke6bc473d2008-03-31 11:15:29 +0200244 rec->u.status.payload_size =
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200245 sizeof(struct fsf_link_down_info);
246 }
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200247 break;
248
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200249 case FSF_STATUS_READ_FEATURE_UPDATE_ALERT:
Martin Peschke6bc473d2008-03-31 11:15:29 +0200250 rec->u.status.payload_size =
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200251 ZFCP_DBF_UNSOL_PAYLOAD_FEATURE_UPDATE_ALERT;
252 break;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200253 }
Martin Peschke6bc473d2008-03-31 11:15:29 +0200254 memcpy(&rec->u.status.payload,
255 &status_buffer->payload, rec->u.status.payload_size);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200256 }
257
Swen Schillig57717102009-08-18 15:43:21 +0200258 debug_event(dbf->hba, level, rec, sizeof(*rec));
259 spin_unlock_irqrestore(&dbf->hba_lock, flags);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200260}
261
Martin Peschkebfab1632008-03-31 11:15:31 +0200262/**
Swen Schillig57717102009-08-18 15:43:21 +0200263 * zfcp_dbf_hba_qdio - trace event for QDIO related failure
Swen Schillig564e1c82009-08-18 15:43:19 +0200264 * @qdio: qdio structure affected by this QDIO related event
Martin Peschkebfab1632008-03-31 11:15:31 +0200265 * @qdio_error: as passed by qdio module
Martin Peschkebfab1632008-03-31 11:15:31 +0200266 * @sbal_index: first buffer with error condition, as passed by qdio module
267 * @sbal_count: number of buffers affected, as passed by qdio module
268 */
Swen Schillig57717102009-08-18 15:43:21 +0200269void zfcp_dbf_hba_qdio(struct zfcp_dbf *dbf, unsigned int qdio_error,
270 int sbal_index, int sbal_count)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200271{
Swen Schillig57717102009-08-18 15:43:21 +0200272 struct zfcp_dbf_hba_record *r = &dbf->hba_buf;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200273 unsigned long flags;
274
Swen Schillig57717102009-08-18 15:43:21 +0200275 spin_lock_irqsave(&dbf->hba_lock, flags);
Martin Peschke6bc473d2008-03-31 11:15:29 +0200276 memset(r, 0, sizeof(*r));
277 strncpy(r->tag, "qdio", ZFCP_DBF_TAG_SIZE);
Martin Peschke6bc473d2008-03-31 11:15:29 +0200278 r->u.qdio.qdio_error = qdio_error;
Martin Peschke6bc473d2008-03-31 11:15:29 +0200279 r->u.qdio.sbal_index = sbal_index;
280 r->u.qdio.sbal_count = sbal_count;
Swen Schillig57717102009-08-18 15:43:21 +0200281 debug_event(dbf->hba, 0, r, sizeof(*r));
282 spin_unlock_irqrestore(&dbf->hba_lock, flags);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200283}
284
Swen Schillig57069382008-10-01 12:42:21 +0200285/**
Swen Schillig57717102009-08-18 15:43:21 +0200286 * zfcp_dbf_hba_berr - trace event for bit error threshold
287 * @dbf: dbf structure affected by this QDIO related event
Swen Schillig57069382008-10-01 12:42:21 +0200288 * @req: fsf request
289 */
Swen Schillig57717102009-08-18 15:43:21 +0200290void zfcp_dbf_hba_berr(struct zfcp_dbf *dbf, struct zfcp_fsf_req *req)
Swen Schillig57069382008-10-01 12:42:21 +0200291{
Swen Schillig57717102009-08-18 15:43:21 +0200292 struct zfcp_dbf_hba_record *r = &dbf->hba_buf;
Swen Schillig57069382008-10-01 12:42:21 +0200293 struct fsf_status_read_buffer *sr_buf = req->data;
294 struct fsf_bit_error_payload *err = &sr_buf->payload.bit_error;
295 unsigned long flags;
296
Swen Schillig57717102009-08-18 15:43:21 +0200297 spin_lock_irqsave(&dbf->hba_lock, flags);
Swen Schillig57069382008-10-01 12:42:21 +0200298 memset(r, 0, sizeof(*r));
299 strncpy(r->tag, "berr", ZFCP_DBF_TAG_SIZE);
300 memcpy(&r->u.berr, err, sizeof(struct fsf_bit_error_payload));
Swen Schillig57717102009-08-18 15:43:21 +0200301 debug_event(dbf->hba, 0, r, sizeof(*r));
302 spin_unlock_irqrestore(&dbf->hba_lock, flags);
Swen Schillig57069382008-10-01 12:42:21 +0200303}
Swen Schillig57717102009-08-18 15:43:21 +0200304static void zfcp_dbf_hba_view_response(char **p,
305 struct zfcp_dbf_hba_record_response *r)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200306{
Martin Peschke8fc5af12008-03-31 11:15:23 +0200307 struct timespec t;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200308
Martin Peschkea9c85772008-03-31 11:15:27 +0200309 zfcp_dbf_out(p, "fsf_command", "0x%08x", r->fsf_command);
310 zfcp_dbf_out(p, "fsf_reqid", "0x%0Lx", r->fsf_reqid);
311 zfcp_dbf_out(p, "fsf_seqno", "0x%08x", r->fsf_seqno);
Christof Schmittb592e892009-08-18 15:43:31 +0200312 stck_to_timespec(r->fsf_issued, &t);
Martin Peschkea9c85772008-03-31 11:15:27 +0200313 zfcp_dbf_out(p, "fsf_issued", "%011lu:%06lu", t.tv_sec, t.tv_nsec);
314 zfcp_dbf_out(p, "fsf_prot_status", "0x%08x", r->fsf_prot_status);
315 zfcp_dbf_out(p, "fsf_status", "0x%08x", r->fsf_status);
316 zfcp_dbf_outd(p, "fsf_prot_status_qual", r->fsf_prot_status_qual,
Martin Peschkedf29f4a2008-03-31 11:15:26 +0200317 FSF_PROT_STATUS_QUAL_SIZE, 0, FSF_PROT_STATUS_QUAL_SIZE);
Martin Peschkea9c85772008-03-31 11:15:27 +0200318 zfcp_dbf_outd(p, "fsf_status_qual", r->fsf_status_qual,
Martin Peschkedf29f4a2008-03-31 11:15:26 +0200319 FSF_STATUS_QUALIFIER_SIZE, 0, FSF_STATUS_QUALIFIER_SIZE);
Martin Peschkea9c85772008-03-31 11:15:27 +0200320 zfcp_dbf_out(p, "fsf_req_status", "0x%08x", r->fsf_req_status);
321 zfcp_dbf_out(p, "sbal_first", "0x%02x", r->sbal_first);
Martin Peschkee891bff2008-05-19 12:17:43 +0200322 zfcp_dbf_out(p, "sbal_last", "0x%02x", r->sbal_last);
Martin Peschkec3baa9a22008-05-19 12:17:44 +0200323 zfcp_dbf_out(p, "sbal_response", "0x%02x", r->sbal_response);
Martin Peschkea9c85772008-03-31 11:15:27 +0200324 zfcp_dbf_out(p, "pool", "0x%02x", r->pool);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200325
Martin Peschkeb634fff2008-03-31 11:15:24 +0200326 switch (r->fsf_command) {
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200327 case FSF_QTCB_FCP_CMND:
Martin Peschkeb634fff2008-03-31 11:15:24 +0200328 if (r->fsf_req_status & ZFCP_STATUS_FSFREQ_TASK_MANAGEMENT)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200329 break;
Felix Beckef3eb712010-07-16 15:37:42 +0200330 zfcp_dbf_out(p, "data_direction", "0x%04x", r->u.fcp.data_dir);
Martin Peschke6bc473d2008-03-31 11:15:29 +0200331 zfcp_dbf_out(p, "scsi_cmnd", "0x%0Lx", r->u.fcp.cmnd);
Christof Schmitt5a3fb302010-01-13 17:52:37 +0100332 *p += sprintf(*p, "\n");
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200333 break;
334
335 case FSF_QTCB_OPEN_PORT_WITH_DID:
336 case FSF_QTCB_CLOSE_PORT:
337 case FSF_QTCB_CLOSE_PHYSICAL_PORT:
Martin Peschke6bc473d2008-03-31 11:15:29 +0200338 zfcp_dbf_out(p, "wwpn", "0x%016Lx", r->u.port.wwpn);
339 zfcp_dbf_out(p, "d_id", "0x%06x", r->u.port.d_id);
340 zfcp_dbf_out(p, "port_handle", "0x%08x", r->u.port.port_handle);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200341 break;
342
343 case FSF_QTCB_OPEN_LUN:
344 case FSF_QTCB_CLOSE_LUN:
Martin Peschke6bc473d2008-03-31 11:15:29 +0200345 zfcp_dbf_out(p, "wwpn", "0x%016Lx", r->u.unit.wwpn);
346 zfcp_dbf_out(p, "fcp_lun", "0x%016Lx", r->u.unit.fcp_lun);
347 zfcp_dbf_out(p, "port_handle", "0x%08x", r->u.unit.port_handle);
348 zfcp_dbf_out(p, "lun_handle", "0x%08x", r->u.unit.lun_handle);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200349 break;
350
351 case FSF_QTCB_SEND_ELS:
Martin Peschke6bc473d2008-03-31 11:15:29 +0200352 zfcp_dbf_out(p, "d_id", "0x%06x", r->u.els.d_id);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200353 break;
354
355 case FSF_QTCB_ABORT_FCP_CMND:
356 case FSF_QTCB_SEND_GENERIC:
357 case FSF_QTCB_EXCHANGE_CONFIG_DATA:
358 case FSF_QTCB_EXCHANGE_PORT_DATA:
359 case FSF_QTCB_DOWNLOAD_CONTROL_FILE:
360 case FSF_QTCB_UPLOAD_CONTROL_FILE:
361 break;
362 }
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200363}
364
Swen Schillig57717102009-08-18 15:43:21 +0200365static void zfcp_dbf_hba_view_status(char **p,
366 struct zfcp_dbf_hba_record_status *r)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200367{
Martin Peschkea9c85772008-03-31 11:15:27 +0200368 zfcp_dbf_out(p, "failed", "0x%02x", r->failed);
369 zfcp_dbf_out(p, "status_type", "0x%08x", r->status_type);
370 zfcp_dbf_out(p, "status_subtype", "0x%08x", r->status_subtype);
371 zfcp_dbf_outd(p, "queue_designator", (char *)&r->queue_designator,
Martin Peschkedf29f4a2008-03-31 11:15:26 +0200372 sizeof(struct fsf_queue_designator), 0,
373 sizeof(struct fsf_queue_designator));
Martin Peschkea9c85772008-03-31 11:15:27 +0200374 zfcp_dbf_outd(p, "payload", (char *)&r->payload, r->payload_size, 0,
Martin Peschkedf29f4a2008-03-31 11:15:26 +0200375 r->payload_size);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200376}
377
Swen Schillig57717102009-08-18 15:43:21 +0200378static void zfcp_dbf_hba_view_qdio(char **p, struct zfcp_dbf_hba_record_qdio *r)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200379{
Martin Peschkea9c85772008-03-31 11:15:27 +0200380 zfcp_dbf_out(p, "qdio_error", "0x%08x", r->qdio_error);
Martin Peschkea9c85772008-03-31 11:15:27 +0200381 zfcp_dbf_out(p, "sbal_index", "0x%02x", r->sbal_index);
382 zfcp_dbf_out(p, "sbal_count", "0x%02x", r->sbal_count);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200383}
384
Swen Schillig57717102009-08-18 15:43:21 +0200385static void zfcp_dbf_hba_view_berr(char **p, struct fsf_bit_error_payload *r)
Swen Schillig57069382008-10-01 12:42:21 +0200386{
387 zfcp_dbf_out(p, "link_failures", "%d", r->link_failure_error_count);
388 zfcp_dbf_out(p, "loss_of_sync_err", "%d", r->loss_of_sync_error_count);
389 zfcp_dbf_out(p, "loss_of_sig_err", "%d", r->loss_of_signal_error_count);
390 zfcp_dbf_out(p, "prim_seq_err", "%d",
391 r->primitive_sequence_error_count);
392 zfcp_dbf_out(p, "inval_trans_word_err", "%d",
393 r->invalid_transmission_word_error_count);
394 zfcp_dbf_out(p, "CRC_errors", "%d", r->crc_error_count);
395 zfcp_dbf_out(p, "prim_seq_event_to", "%d",
396 r->primitive_sequence_event_timeout_count);
397 zfcp_dbf_out(p, "elast_buf_overrun_err", "%d",
398 r->elastic_buffer_overrun_error_count);
399 zfcp_dbf_out(p, "adv_rec_buf2buf_cred", "%d",
400 r->advertised_receive_b2b_credit);
401 zfcp_dbf_out(p, "curr_rec_buf2buf_cred", "%d",
402 r->current_receive_b2b_credit);
403 zfcp_dbf_out(p, "adv_trans_buf2buf_cred", "%d",
404 r->advertised_transmit_b2b_credit);
405 zfcp_dbf_out(p, "curr_trans_buf2buf_cred", "%d",
406 r->current_transmit_b2b_credit);
407}
408
Swen Schillig57717102009-08-18 15:43:21 +0200409static int zfcp_dbf_hba_view_format(debug_info_t *id, struct debug_view *view,
Martin Peschkea9c85772008-03-31 11:15:27 +0200410 char *out_buf, const char *in_buf)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200411{
Swen Schillig57717102009-08-18 15:43:21 +0200412 struct zfcp_dbf_hba_record *r = (struct zfcp_dbf_hba_record *)in_buf;
Martin Peschkea9c85772008-03-31 11:15:27 +0200413 char *p = out_buf;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200414
Martin Peschkea9c85772008-03-31 11:15:27 +0200415 if (strncmp(r->tag, "dump", ZFCP_DBF_TAG_SIZE) == 0)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200416 return 0;
417
Martin Peschkea9c85772008-03-31 11:15:27 +0200418 zfcp_dbf_tag(&p, "tag", r->tag);
419 if (isalpha(r->tag2[0]))
420 zfcp_dbf_tag(&p, "tag2", r->tag2);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200421
Martin Peschkea9c85772008-03-31 11:15:27 +0200422 if (strncmp(r->tag, "resp", ZFCP_DBF_TAG_SIZE) == 0)
Swen Schillig57717102009-08-18 15:43:21 +0200423 zfcp_dbf_hba_view_response(&p, &r->u.response);
Martin Peschkea9c85772008-03-31 11:15:27 +0200424 else if (strncmp(r->tag, "stat", ZFCP_DBF_TAG_SIZE) == 0)
Swen Schillig57717102009-08-18 15:43:21 +0200425 zfcp_dbf_hba_view_status(&p, &r->u.status);
Martin Peschkea9c85772008-03-31 11:15:27 +0200426 else if (strncmp(r->tag, "qdio", ZFCP_DBF_TAG_SIZE) == 0)
Swen Schillig57717102009-08-18 15:43:21 +0200427 zfcp_dbf_hba_view_qdio(&p, &r->u.qdio);
Swen Schillig57069382008-10-01 12:42:21 +0200428 else if (strncmp(r->tag, "berr", ZFCP_DBF_TAG_SIZE) == 0)
Swen Schillig57717102009-08-18 15:43:21 +0200429 zfcp_dbf_hba_view_berr(&p, &r->u.berr);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200430
Christof Schmittd94ce6c2008-11-04 16:35:12 +0100431 if (strncmp(r->tag, "resp", ZFCP_DBF_TAG_SIZE) != 0)
432 p += sprintf(p, "\n");
Martin Peschkea9c85772008-03-31 11:15:27 +0200433 return p - out_buf;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200434}
435
Swen Schillig57717102009-08-18 15:43:21 +0200436static struct debug_view zfcp_dbf_hba_view = {
437 .name = "structured",
438 .header_proc = zfcp_dbf_view_header,
439 .format_proc = zfcp_dbf_hba_view_format,
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200440};
441
Swen Schillig57717102009-08-18 15:43:21 +0200442static const char *zfcp_dbf_rec_tags[] = {
Martin Peschke348447e2008-03-27 14:22:01 +0100443 [ZFCP_REC_DBF_ID_THREAD] = "thread",
Martin Peschke698ec0162008-03-27 14:22:02 +0100444 [ZFCP_REC_DBF_ID_TARGET] = "target",
Martin Peschke9467a9b2008-03-27 14:22:03 +0100445 [ZFCP_REC_DBF_ID_TRIGGER] = "trigger",
Martin Peschke6f4f3652008-03-27 14:22:04 +0100446 [ZFCP_REC_DBF_ID_ACTION] = "action",
Martin Peschked79a83d2008-03-27 14:22:00 +0100447};
448
Swen Schillig57717102009-08-18 15:43:21 +0200449static int zfcp_dbf_rec_view_format(debug_info_t *id, struct debug_view *view,
Martin Peschked79a83d2008-03-27 14:22:00 +0100450 char *buf, const char *_rec)
451{
Swen Schillig57717102009-08-18 15:43:21 +0200452 struct zfcp_dbf_rec_record *r = (struct zfcp_dbf_rec_record *)_rec;
Martin Peschked79a83d2008-03-27 14:22:00 +0100453 char *p = buf;
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100454 char hint[ZFCP_DBF_ID_SIZE + 1];
Martin Peschked79a83d2008-03-27 14:22:00 +0100455
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100456 memcpy(hint, r->id2, ZFCP_DBF_ID_SIZE);
457 hint[ZFCP_DBF_ID_SIZE] = 0;
Swen Schillig57717102009-08-18 15:43:21 +0200458 zfcp_dbf_outs(&p, "tag", zfcp_dbf_rec_tags[r->id]);
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100459 zfcp_dbf_outs(&p, "hint", hint);
Martin Peschked79a83d2008-03-27 14:22:00 +0100460 switch (r->id) {
Martin Peschke348447e2008-03-27 14:22:01 +0100461 case ZFCP_REC_DBF_ID_THREAD:
Martin Peschke348447e2008-03-27 14:22:01 +0100462 zfcp_dbf_out(&p, "total", "%d", r->u.thread.total);
463 zfcp_dbf_out(&p, "ready", "%d", r->u.thread.ready);
464 zfcp_dbf_out(&p, "running", "%d", r->u.thread.running);
465 break;
Martin Peschke698ec0162008-03-27 14:22:02 +0100466 case ZFCP_REC_DBF_ID_TARGET:
467 zfcp_dbf_out(&p, "reference", "0x%016Lx", r->u.target.ref);
468 zfcp_dbf_out(&p, "status", "0x%08x", r->u.target.status);
469 zfcp_dbf_out(&p, "erp_count", "%d", r->u.target.erp_count);
470 zfcp_dbf_out(&p, "d_id", "0x%06x", r->u.target.d_id);
471 zfcp_dbf_out(&p, "wwpn", "0x%016Lx", r->u.target.wwpn);
472 zfcp_dbf_out(&p, "fcp_lun", "0x%016Lx", r->u.target.fcp_lun);
473 break;
Martin Peschke9467a9b2008-03-27 14:22:03 +0100474 case ZFCP_REC_DBF_ID_TRIGGER:
475 zfcp_dbf_out(&p, "reference", "0x%016Lx", r->u.trigger.ref);
476 zfcp_dbf_out(&p, "erp_action", "0x%016Lx", r->u.trigger.action);
477 zfcp_dbf_out(&p, "requested", "%d", r->u.trigger.want);
478 zfcp_dbf_out(&p, "executed", "%d", r->u.trigger.need);
479 zfcp_dbf_out(&p, "wwpn", "0x%016Lx", r->u.trigger.wwpn);
480 zfcp_dbf_out(&p, "fcp_lun", "0x%016Lx", r->u.trigger.fcp_lun);
481 zfcp_dbf_out(&p, "adapter_status", "0x%08x", r->u.trigger.as);
482 zfcp_dbf_out(&p, "port_status", "0x%08x", r->u.trigger.ps);
Christof Schmittb62a8d92010-09-08 14:39:55 +0200483 zfcp_dbf_out(&p, "lun_status", "0x%08x", r->u.trigger.ls);
Martin Peschke9467a9b2008-03-27 14:22:03 +0100484 break;
Martin Peschke6f4f3652008-03-27 14:22:04 +0100485 case ZFCP_REC_DBF_ID_ACTION:
486 zfcp_dbf_out(&p, "erp_action", "0x%016Lx", r->u.action.action);
487 zfcp_dbf_out(&p, "fsf_req", "0x%016Lx", r->u.action.fsf_req);
488 zfcp_dbf_out(&p, "status", "0x%08Lx", r->u.action.status);
489 zfcp_dbf_out(&p, "step", "0x%08Lx", r->u.action.step);
490 break;
Martin Peschked79a83d2008-03-27 14:22:00 +0100491 }
Martin Peschkeb634fff2008-03-31 11:15:24 +0200492 p += sprintf(p, "\n");
493 return p - buf;
Martin Peschked79a83d2008-03-27 14:22:00 +0100494}
495
Swen Schillig57717102009-08-18 15:43:21 +0200496static struct debug_view zfcp_dbf_rec_view = {
497 .name = "structured",
498 .header_proc = zfcp_dbf_view_header,
499 .format_proc = zfcp_dbf_rec_view_format,
Martin Peschked79a83d2008-03-27 14:22:00 +0100500};
501
Martin Peschke348447e2008-03-27 14:22:01 +0100502/**
Swen Schillig57717102009-08-18 15:43:21 +0200503 * zfcp_dbf_rec_thread - trace event related to recovery thread operation
Martin Peschke348447e2008-03-27 14:22:01 +0100504 * @id2: identifier for event
Swen Schillig57717102009-08-18 15:43:21 +0200505 * @dbf: reference to dbf structure
Christof Schmittaa0fec62008-05-19 12:17:47 +0200506 * This function assumes that the caller is holding erp_lock.
Martin Peschke348447e2008-03-27 14:22:01 +0100507 */
Swen Schillig57717102009-08-18 15:43:21 +0200508void zfcp_dbf_rec_thread(char *id2, struct zfcp_dbf *dbf)
Martin Peschke348447e2008-03-27 14:22:01 +0100509{
Swen Schillig57717102009-08-18 15:43:21 +0200510 struct zfcp_adapter *adapter = dbf->adapter;
511 struct zfcp_dbf_rec_record *r = &dbf->rec_buf;
Martin Peschke348447e2008-03-27 14:22:01 +0100512 unsigned long flags = 0;
513 struct list_head *entry;
514 unsigned ready = 0, running = 0, total;
515
Martin Peschke348447e2008-03-27 14:22:01 +0100516 list_for_each(entry, &adapter->erp_ready_head)
517 ready++;
518 list_for_each(entry, &adapter->erp_running_head)
519 running++;
520 total = adapter->erp_total_count;
Martin Peschke348447e2008-03-27 14:22:01 +0100521
Swen Schillig57717102009-08-18 15:43:21 +0200522 spin_lock_irqsave(&dbf->rec_lock, flags);
Martin Peschke348447e2008-03-27 14:22:01 +0100523 memset(r, 0, sizeof(*r));
524 r->id = ZFCP_REC_DBF_ID_THREAD;
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100525 memcpy(r->id2, id2, ZFCP_DBF_ID_SIZE);
Martin Peschke348447e2008-03-27 14:22:01 +0100526 r->u.thread.total = total;
527 r->u.thread.ready = ready;
528 r->u.thread.running = running;
Swen Schillig57717102009-08-18 15:43:21 +0200529 debug_event(dbf->rec, 6, r, sizeof(*r));
530 spin_unlock_irqrestore(&dbf->rec_lock, flags);
Martin Peschke348447e2008-03-27 14:22:01 +0100531}
532
Christof Schmittaa0fec62008-05-19 12:17:47 +0200533/**
Swen Schillig57717102009-08-18 15:43:21 +0200534 * zfcp_dbf_rec_thread - trace event related to recovery thread operation
Christof Schmittaa0fec62008-05-19 12:17:47 +0200535 * @id2: identifier for event
536 * @adapter: adapter
537 * This function assumes that the caller does not hold erp_lock.
538 */
Swen Schillig57717102009-08-18 15:43:21 +0200539void zfcp_dbf_rec_thread_lock(char *id2, struct zfcp_dbf *dbf)
Christof Schmittaa0fec62008-05-19 12:17:47 +0200540{
Swen Schillig57717102009-08-18 15:43:21 +0200541 struct zfcp_adapter *adapter = dbf->adapter;
Christof Schmittaa0fec62008-05-19 12:17:47 +0200542 unsigned long flags;
543
544 read_lock_irqsave(&adapter->erp_lock, flags);
Swen Schillig57717102009-08-18 15:43:21 +0200545 zfcp_dbf_rec_thread(id2, dbf);
Christof Schmittaa0fec62008-05-19 12:17:47 +0200546 read_unlock_irqrestore(&adapter->erp_lock, flags);
547}
548
Swen Schillig57717102009-08-18 15:43:21 +0200549static void zfcp_dbf_rec_target(char *id2, void *ref, struct zfcp_dbf *dbf,
550 atomic_t *status, atomic_t *erp_count, u64 wwpn,
551 u32 d_id, u64 fcp_lun)
Martin Peschke698ec0162008-03-27 14:22:02 +0100552{
Swen Schillig57717102009-08-18 15:43:21 +0200553 struct zfcp_dbf_rec_record *r = &dbf->rec_buf;
Martin Peschke698ec0162008-03-27 14:22:02 +0100554 unsigned long flags;
555
Swen Schillig57717102009-08-18 15:43:21 +0200556 spin_lock_irqsave(&dbf->rec_lock, flags);
Martin Peschke698ec0162008-03-27 14:22:02 +0100557 memset(r, 0, sizeof(*r));
558 r->id = ZFCP_REC_DBF_ID_TARGET;
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100559 memcpy(r->id2, id2, ZFCP_DBF_ID_SIZE);
Martin Peschke1f6f7122008-04-18 12:51:55 +0200560 r->u.target.ref = (unsigned long)ref;
Martin Peschke698ec0162008-03-27 14:22:02 +0100561 r->u.target.status = atomic_read(status);
562 r->u.target.wwpn = wwpn;
563 r->u.target.d_id = d_id;
564 r->u.target.fcp_lun = fcp_lun;
565 r->u.target.erp_count = atomic_read(erp_count);
Swen Schillig57717102009-08-18 15:43:21 +0200566 debug_event(dbf->rec, 3, r, sizeof(*r));
567 spin_unlock_irqrestore(&dbf->rec_lock, flags);
Martin Peschke698ec0162008-03-27 14:22:02 +0100568}
569
570/**
Swen Schillig57717102009-08-18 15:43:21 +0200571 * zfcp_dbf_rec_adapter - trace event for adapter state change
Martin Peschke698ec0162008-03-27 14:22:02 +0100572 * @id: identifier for trigger of state change
573 * @ref: additional reference (e.g. request)
Swen Schillig57717102009-08-18 15:43:21 +0200574 * @dbf: reference to dbf structure
Martin Peschke698ec0162008-03-27 14:22:02 +0100575 */
Swen Schillig57717102009-08-18 15:43:21 +0200576void zfcp_dbf_rec_adapter(char *id, void *ref, struct zfcp_dbf *dbf)
Martin Peschke698ec0162008-03-27 14:22:02 +0100577{
Swen Schillig57717102009-08-18 15:43:21 +0200578 struct zfcp_adapter *adapter = dbf->adapter;
579
580 zfcp_dbf_rec_target(id, ref, dbf, &adapter->status,
Christof Schmittd21e9da2010-02-17 11:18:54 +0100581 &adapter->erp_counter, 0, 0,
582 ZFCP_DBF_INVALID_LUN);
Martin Peschke698ec0162008-03-27 14:22:02 +0100583}
584
585/**
Swen Schillig57717102009-08-18 15:43:21 +0200586 * zfcp_dbf_rec_port - trace event for port state change
Martin Peschke698ec0162008-03-27 14:22:02 +0100587 * @id: identifier for trigger of state change
588 * @ref: additional reference (e.g. request)
589 * @port: port
590 */
Swen Schillig57717102009-08-18 15:43:21 +0200591void zfcp_dbf_rec_port(char *id, void *ref, struct zfcp_port *port)
Martin Peschke698ec0162008-03-27 14:22:02 +0100592{
Swen Schillig57717102009-08-18 15:43:21 +0200593 struct zfcp_dbf *dbf = port->adapter->dbf;
Martin Peschke698ec0162008-03-27 14:22:02 +0100594
Swen Schillig57717102009-08-18 15:43:21 +0200595 zfcp_dbf_rec_target(id, ref, dbf, &port->status,
Christof Schmittd21e9da2010-02-17 11:18:54 +0100596 &port->erp_counter, port->wwpn, port->d_id,
597 ZFCP_DBF_INVALID_LUN);
Martin Peschke698ec0162008-03-27 14:22:02 +0100598}
599
600/**
Christof Schmittb62a8d92010-09-08 14:39:55 +0200601 * zfcp_dbf_rec_lun - trace event for LUN state change
Martin Peschke698ec0162008-03-27 14:22:02 +0100602 * @id: identifier for trigger of state change
603 * @ref: additional reference (e.g. request)
Christof Schmittb62a8d92010-09-08 14:39:55 +0200604 * @sdev: SCSI device
Martin Peschke698ec0162008-03-27 14:22:02 +0100605 */
Christof Schmittb62a8d92010-09-08 14:39:55 +0200606void zfcp_dbf_rec_lun(char *id, void *ref, struct scsi_device *sdev)
Martin Peschke698ec0162008-03-27 14:22:02 +0100607{
Christof Schmittb62a8d92010-09-08 14:39:55 +0200608 struct zfcp_scsi_dev *zfcp_sdev = sdev_to_zfcp(sdev);
609 struct zfcp_port *port = zfcp_sdev->port;
Swen Schillig57717102009-08-18 15:43:21 +0200610 struct zfcp_dbf *dbf = port->adapter->dbf;
Martin Peschke698ec0162008-03-27 14:22:02 +0100611
Christof Schmittb62a8d92010-09-08 14:39:55 +0200612 zfcp_dbf_rec_target(id, ref, dbf, &zfcp_sdev->status,
613 &zfcp_sdev->erp_counter, port->wwpn, port->d_id,
614 zfcp_scsi_dev_lun(sdev));
Martin Peschke698ec0162008-03-27 14:22:02 +0100615}
616
Martin Peschke9467a9b2008-03-27 14:22:03 +0100617/**
Swen Schillig57717102009-08-18 15:43:21 +0200618 * zfcp_dbf_rec_trigger - trace event for triggered error recovery
Martin Peschke9467a9b2008-03-27 14:22:03 +0100619 * @id2: identifier for error recovery trigger
620 * @ref: additional reference (e.g. request)
621 * @want: originally requested error recovery action
622 * @need: error recovery action actually initiated
623 * @action: address of error recovery action struct
624 * @adapter: adapter
625 * @port: port
Christof Schmittb62a8d92010-09-08 14:39:55 +0200626 * @sdev: SCSI device
Martin Peschke9467a9b2008-03-27 14:22:03 +0100627 */
Swen Schillig57717102009-08-18 15:43:21 +0200628void zfcp_dbf_rec_trigger(char *id2, void *ref, u8 want, u8 need, void *action,
629 struct zfcp_adapter *adapter, struct zfcp_port *port,
Christof Schmittb62a8d92010-09-08 14:39:55 +0200630 struct scsi_device *sdev)
Martin Peschke9467a9b2008-03-27 14:22:03 +0100631{
Christof Schmittd46f3842009-08-18 15:43:07 +0200632 struct zfcp_dbf *dbf = adapter->dbf;
Swen Schillig57717102009-08-18 15:43:21 +0200633 struct zfcp_dbf_rec_record *r = &dbf->rec_buf;
Martin Peschke9467a9b2008-03-27 14:22:03 +0100634 unsigned long flags;
635
Swen Schillig57717102009-08-18 15:43:21 +0200636 spin_lock_irqsave(&dbf->rec_lock, flags);
Martin Peschke9467a9b2008-03-27 14:22:03 +0100637 memset(r, 0, sizeof(*r));
638 r->id = ZFCP_REC_DBF_ID_TRIGGER;
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100639 memcpy(r->id2, id2, ZFCP_DBF_ID_SIZE);
Martin Peschke1f6f7122008-04-18 12:51:55 +0200640 r->u.trigger.ref = (unsigned long)ref;
Martin Peschke9467a9b2008-03-27 14:22:03 +0100641 r->u.trigger.want = want;
642 r->u.trigger.need = need;
Martin Peschke1f6f7122008-04-18 12:51:55 +0200643 r->u.trigger.action = (unsigned long)action;
Martin Peschke9467a9b2008-03-27 14:22:03 +0100644 r->u.trigger.as = atomic_read(&adapter->status);
645 if (port) {
646 r->u.trigger.ps = atomic_read(&port->status);
647 r->u.trigger.wwpn = port->wwpn;
648 }
Christof Schmittb62a8d92010-09-08 14:39:55 +0200649 if (sdev)
650 r->u.trigger.ls = atomic_read(&sdev_to_zfcp(sdev)->status);
651 r->u.trigger.fcp_lun = sdev ? zfcp_scsi_dev_lun(sdev) :
652 ZFCP_DBF_INVALID_LUN;
Swen Schillig57717102009-08-18 15:43:21 +0200653 debug_event(dbf->rec, action ? 1 : 4, r, sizeof(*r));
654 spin_unlock_irqrestore(&dbf->rec_lock, flags);
Martin Peschke9467a9b2008-03-27 14:22:03 +0100655}
656
Martin Peschke6f4f3652008-03-27 14:22:04 +0100657/**
Swen Schillig57717102009-08-18 15:43:21 +0200658 * zfcp_dbf_rec_action - trace event showing progress of recovery action
Martin Peschke6f4f3652008-03-27 14:22:04 +0100659 * @id2: identifier
660 * @erp_action: error recovery action struct pointer
661 */
Swen Schillig57717102009-08-18 15:43:21 +0200662void zfcp_dbf_rec_action(char *id2, struct zfcp_erp_action *erp_action)
Martin Peschke6f4f3652008-03-27 14:22:04 +0100663{
Swen Schillig57717102009-08-18 15:43:21 +0200664 struct zfcp_dbf *dbf = erp_action->adapter->dbf;
665 struct zfcp_dbf_rec_record *r = &dbf->rec_buf;
Martin Peschke6f4f3652008-03-27 14:22:04 +0100666 unsigned long flags;
667
Swen Schillig57717102009-08-18 15:43:21 +0200668 spin_lock_irqsave(&dbf->rec_lock, flags);
Martin Peschke6f4f3652008-03-27 14:22:04 +0100669 memset(r, 0, sizeof(*r));
670 r->id = ZFCP_REC_DBF_ID_ACTION;
Swen Schillig5ffd51a2009-03-02 13:09:04 +0100671 memcpy(r->id2, id2, ZFCP_DBF_ID_SIZE);
Martin Peschke1f6f7122008-04-18 12:51:55 +0200672 r->u.action.action = (unsigned long)erp_action;
Martin Peschke6f4f3652008-03-27 14:22:04 +0100673 r->u.action.status = erp_action->status;
674 r->u.action.step = erp_action->step;
Christof Schmitte60a6d62010-02-17 11:18:49 +0100675 r->u.action.fsf_req = erp_action->fsf_req_id;
Swen Schillig57717102009-08-18 15:43:21 +0200676 debug_event(dbf->rec, 5, r, sizeof(*r));
677 spin_unlock_irqrestore(&dbf->rec_lock, flags);
Martin Peschke6f4f3652008-03-27 14:22:04 +0100678}
679
Martin Peschkebfab1632008-03-31 11:15:31 +0200680/**
Swen Schillig57717102009-08-18 15:43:21 +0200681 * zfcp_dbf_san_ct_request - trace event for issued CT request
Martin Peschkebfab1632008-03-31 11:15:31 +0200682 * @fsf_req: request containing issued CT data
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100683 * @d_id: destination id where ct request is sent to
Martin Peschkebfab1632008-03-31 11:15:31 +0200684 */
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100685void zfcp_dbf_san_ct_request(struct zfcp_fsf_req *fsf_req, u32 d_id)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200686{
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100687 struct zfcp_fsf_ct_els *ct = (struct zfcp_fsf_ct_els *)fsf_req->data;
688 struct zfcp_adapter *adapter = fsf_req->adapter;
Christof Schmittd46f3842009-08-18 15:43:07 +0200689 struct zfcp_dbf *dbf = adapter->dbf;
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100690 struct fc_ct_hdr *hdr = sg_virt(ct->req);
Swen Schillig57717102009-08-18 15:43:21 +0200691 struct zfcp_dbf_san_record *r = &dbf->san_buf;
692 struct zfcp_dbf_san_record_ct_request *oct = &r->u.ct_req;
Christof Schmittd94ce6c2008-11-04 16:35:12 +0100693 int level = 3;
Martin Peschke6bc473d2008-03-31 11:15:29 +0200694 unsigned long flags;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200695
Swen Schillig57717102009-08-18 15:43:21 +0200696 spin_lock_irqsave(&dbf->san_lock, flags);
Martin Peschke6bc473d2008-03-31 11:15:29 +0200697 memset(r, 0, sizeof(*r));
698 strncpy(r->tag, "octc", ZFCP_DBF_TAG_SIZE);
Christof Schmittf0216ae2009-05-15 13:18:14 +0200699 r->fsf_reqid = fsf_req->req_id;
Martin Peschke6bc473d2008-03-31 11:15:29 +0200700 r->fsf_seqno = fsf_req->seq_no;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100701 oct->d_id = d_id;
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100702 oct->cmd_req_code = hdr->ct_cmd;
703 oct->revision = hdr->ct_rev;
704 oct->gs_type = hdr->ct_fs_type;
705 oct->gs_subtype = hdr->ct_fs_subtype;
706 oct->options = hdr->ct_options;
707 oct->max_res_size = hdr->ct_mr_size;
708 oct->len = min((int)ct->req->length - (int)sizeof(struct fc_ct_hdr),
Christof Schmittd94ce6c2008-11-04 16:35:12 +0100709 ZFCP_DBF_SAN_MAX_PAYLOAD);
Swen Schillig57717102009-08-18 15:43:21 +0200710 debug_event(dbf->san, level, r, sizeof(*r));
711 zfcp_dbf_hexdump(dbf->san, r, sizeof(*r), level,
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100712 (void *)hdr + sizeof(struct fc_ct_hdr), oct->len);
Swen Schillig57717102009-08-18 15:43:21 +0200713 spin_unlock_irqrestore(&dbf->san_lock, flags);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200714}
715
Martin Peschkebfab1632008-03-31 11:15:31 +0200716/**
Swen Schillig57717102009-08-18 15:43:21 +0200717 * zfcp_dbf_san_ct_response - trace event for completion of CT request
Martin Peschkebfab1632008-03-31 11:15:31 +0200718 * @fsf_req: request containing CT response
719 */
Swen Schillig57717102009-08-18 15:43:21 +0200720void zfcp_dbf_san_ct_response(struct zfcp_fsf_req *fsf_req)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200721{
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100722 struct zfcp_fsf_ct_els *ct = (struct zfcp_fsf_ct_els *)fsf_req->data;
723 struct zfcp_adapter *adapter = fsf_req->adapter;
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100724 struct fc_ct_hdr *hdr = sg_virt(ct->resp);
Christof Schmittd46f3842009-08-18 15:43:07 +0200725 struct zfcp_dbf *dbf = adapter->dbf;
Swen Schillig57717102009-08-18 15:43:21 +0200726 struct zfcp_dbf_san_record *r = &dbf->san_buf;
727 struct zfcp_dbf_san_record_ct_response *rct = &r->u.ct_resp;
Christof Schmittd94ce6c2008-11-04 16:35:12 +0100728 int level = 3;
Martin Peschke6bc473d2008-03-31 11:15:29 +0200729 unsigned long flags;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200730
Swen Schillig57717102009-08-18 15:43:21 +0200731 spin_lock_irqsave(&dbf->san_lock, flags);
Martin Peschke6bc473d2008-03-31 11:15:29 +0200732 memset(r, 0, sizeof(*r));
733 strncpy(r->tag, "rctc", ZFCP_DBF_TAG_SIZE);
Christof Schmittf0216ae2009-05-15 13:18:14 +0200734 r->fsf_reqid = fsf_req->req_id;
Martin Peschke6bc473d2008-03-31 11:15:29 +0200735 r->fsf_seqno = fsf_req->seq_no;
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100736 rct->cmd_rsp_code = hdr->ct_cmd;
737 rct->revision = hdr->ct_rev;
738 rct->reason_code = hdr->ct_reason;
739 rct->expl = hdr->ct_explan;
740 rct->vendor_unique = hdr->ct_vendor;
741 rct->max_res_size = hdr->ct_mr_size;
742 rct->len = min((int)ct->resp->length - (int)sizeof(struct fc_ct_hdr),
Christof Schmittd94ce6c2008-11-04 16:35:12 +0100743 ZFCP_DBF_SAN_MAX_PAYLOAD);
Swen Schillig57717102009-08-18 15:43:21 +0200744 debug_event(dbf->san, level, r, sizeof(*r));
745 zfcp_dbf_hexdump(dbf->san, r, sizeof(*r), level,
Christof Schmittdbf5dfe2009-11-24 16:54:10 +0100746 (void *)hdr + sizeof(struct fc_ct_hdr), rct->len);
Swen Schillig57717102009-08-18 15:43:21 +0200747 spin_unlock_irqrestore(&dbf->san_lock, flags);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200748}
749
Swen Schillig57717102009-08-18 15:43:21 +0200750static void zfcp_dbf_san_els(const char *tag, int level,
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100751 struct zfcp_fsf_req *fsf_req, u32 d_id,
752 void *buffer, int buflen)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200753{
754 struct zfcp_adapter *adapter = fsf_req->adapter;
Christof Schmittd46f3842009-08-18 15:43:07 +0200755 struct zfcp_dbf *dbf = adapter->dbf;
Swen Schillig57717102009-08-18 15:43:21 +0200756 struct zfcp_dbf_san_record *rec = &dbf->san_buf;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200757 unsigned long flags;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200758
Swen Schillig57717102009-08-18 15:43:21 +0200759 spin_lock_irqsave(&dbf->san_lock, flags);
Martin Peschke6bc473d2008-03-31 11:15:29 +0200760 memset(rec, 0, sizeof(*rec));
Martin Peschke0f65e952008-03-27 14:21:56 +0100761 strncpy(rec->tag, tag, ZFCP_DBF_TAG_SIZE);
Christof Schmittf0216ae2009-05-15 13:18:14 +0200762 rec->fsf_reqid = fsf_req->req_id;
Martin Peschke0f65e952008-03-27 14:21:56 +0100763 rec->fsf_seqno = fsf_req->seq_no;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100764 rec->u.els.d_id = d_id;
Swen Schillig57717102009-08-18 15:43:21 +0200765 debug_event(dbf->san, level, rec, sizeof(*rec));
766 zfcp_dbf_hexdump(dbf->san, rec, sizeof(*rec), level,
Christof Schmittd94ce6c2008-11-04 16:35:12 +0100767 buffer, min(buflen, ZFCP_DBF_SAN_MAX_PAYLOAD));
Swen Schillig57717102009-08-18 15:43:21 +0200768 spin_unlock_irqrestore(&dbf->san_lock, flags);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200769}
770
Martin Peschkebfab1632008-03-31 11:15:31 +0200771/**
Swen Schillig57717102009-08-18 15:43:21 +0200772 * zfcp_dbf_san_els_request - trace event for issued ELS
Martin Peschkebfab1632008-03-31 11:15:31 +0200773 * @fsf_req: request containing issued ELS
774 */
Swen Schillig57717102009-08-18 15:43:21 +0200775void zfcp_dbf_san_els_request(struct zfcp_fsf_req *fsf_req)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200776{
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100777 struct zfcp_fsf_ct_els *els = (struct zfcp_fsf_ct_els *)fsf_req->data;
778 u32 d_id = ntoh24(fsf_req->qtcb->bottom.support.d_id);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200779
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100780 zfcp_dbf_san_els("oels", 2, fsf_req, d_id,
781 sg_virt(els->req), els->req->length);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200782}
783
Martin Peschkebfab1632008-03-31 11:15:31 +0200784/**
Swen Schillig57717102009-08-18 15:43:21 +0200785 * zfcp_dbf_san_els_response - trace event for completed ELS
Martin Peschkebfab1632008-03-31 11:15:31 +0200786 * @fsf_req: request containing ELS response
787 */
Swen Schillig57717102009-08-18 15:43:21 +0200788void zfcp_dbf_san_els_response(struct zfcp_fsf_req *fsf_req)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200789{
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100790 struct zfcp_fsf_ct_els *els = (struct zfcp_fsf_ct_els *)fsf_req->data;
791 u32 d_id = ntoh24(fsf_req->qtcb->bottom.support.d_id);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200792
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100793 zfcp_dbf_san_els("rels", 2, fsf_req, d_id,
794 sg_virt(els->resp), els->resp->length);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200795}
796
Martin Peschkebfab1632008-03-31 11:15:31 +0200797/**
Swen Schillig57717102009-08-18 15:43:21 +0200798 * zfcp_dbf_san_incoming_els - trace event for incomig ELS
Martin Peschkebfab1632008-03-31 11:15:31 +0200799 * @fsf_req: request containing unsolicited status buffer with incoming ELS
800 */
Swen Schillig57717102009-08-18 15:43:21 +0200801void zfcp_dbf_san_incoming_els(struct zfcp_fsf_req *fsf_req)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200802{
Martin Peschke92c7a832008-03-31 11:15:30 +0200803 struct fsf_status_read_buffer *buf =
804 (struct fsf_status_read_buffer *)fsf_req->data;
805 int length = (int)buf->length -
806 (int)((void *)&buf->payload - (void *)buf);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200807
Christof Schmitt800c0ca2009-11-24 16:54:12 +0100808 zfcp_dbf_san_els("iels", 1, fsf_req, ntoh24(buf->d_id),
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100809 (void *)buf->payload.data, length);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200810}
811
Swen Schillig57717102009-08-18 15:43:21 +0200812static int zfcp_dbf_san_view_format(debug_info_t *id, struct debug_view *view,
Martin Peschke92c7a832008-03-31 11:15:30 +0200813 char *out_buf, const char *in_buf)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200814{
Swen Schillig57717102009-08-18 15:43:21 +0200815 struct zfcp_dbf_san_record *r = (struct zfcp_dbf_san_record *)in_buf;
Martin Peschkeb634fff2008-03-31 11:15:24 +0200816 char *p = out_buf;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200817
Martin Peschkeb634fff2008-03-31 11:15:24 +0200818 if (strncmp(r->tag, "dump", ZFCP_DBF_TAG_SIZE) == 0)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200819 return 0;
820
Martin Peschkea9c85772008-03-31 11:15:27 +0200821 zfcp_dbf_tag(&p, "tag", r->tag);
Martin Peschkeb634fff2008-03-31 11:15:24 +0200822 zfcp_dbf_out(&p, "fsf_reqid", "0x%0Lx", r->fsf_reqid);
823 zfcp_dbf_out(&p, "fsf_seqno", "0x%08x", r->fsf_seqno);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200824
Martin Peschkeb634fff2008-03-31 11:15:24 +0200825 if (strncmp(r->tag, "octc", ZFCP_DBF_TAG_SIZE) == 0) {
Swen Schillig57717102009-08-18 15:43:21 +0200826 struct zfcp_dbf_san_record_ct_request *ct = &r->u.ct_req;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100827 zfcp_dbf_out(&p, "d_id", "0x%06x", ct->d_id);
Martin Peschke6bc473d2008-03-31 11:15:29 +0200828 zfcp_dbf_out(&p, "cmd_req_code", "0x%04x", ct->cmd_req_code);
829 zfcp_dbf_out(&p, "revision", "0x%02x", ct->revision);
830 zfcp_dbf_out(&p, "gs_type", "0x%02x", ct->gs_type);
831 zfcp_dbf_out(&p, "gs_subtype", "0x%02x", ct->gs_subtype);
832 zfcp_dbf_out(&p, "options", "0x%02x", ct->options);
833 zfcp_dbf_out(&p, "max_res_size", "0x%04x", ct->max_res_size);
Martin Peschkeb634fff2008-03-31 11:15:24 +0200834 } else if (strncmp(r->tag, "rctc", ZFCP_DBF_TAG_SIZE) == 0) {
Swen Schillig57717102009-08-18 15:43:21 +0200835 struct zfcp_dbf_san_record_ct_response *ct = &r->u.ct_resp;
Martin Peschke6bc473d2008-03-31 11:15:29 +0200836 zfcp_dbf_out(&p, "cmd_rsp_code", "0x%04x", ct->cmd_rsp_code);
837 zfcp_dbf_out(&p, "revision", "0x%02x", ct->revision);
838 zfcp_dbf_out(&p, "reason_code", "0x%02x", ct->reason_code);
839 zfcp_dbf_out(&p, "reason_code_expl", "0x%02x", ct->expl);
840 zfcp_dbf_out(&p, "vendor_unique", "0x%02x", ct->vendor_unique);
Christof Schmitt39eb7e9a2008-12-19 16:57:01 +0100841 zfcp_dbf_out(&p, "max_res_size", "0x%04x", ct->max_res_size);
Martin Peschkeb634fff2008-03-31 11:15:24 +0200842 } else if (strncmp(r->tag, "oels", ZFCP_DBF_TAG_SIZE) == 0 ||
843 strncmp(r->tag, "rels", ZFCP_DBF_TAG_SIZE) == 0 ||
844 strncmp(r->tag, "iels", ZFCP_DBF_TAG_SIZE) == 0) {
Swen Schillig57717102009-08-18 15:43:21 +0200845 struct zfcp_dbf_san_record_els *els = &r->u.els;
Christof Schmitt7c7dc192009-11-24 16:54:13 +0100846 zfcp_dbf_out(&p, "d_id", "0x%06x", els->d_id);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200847 }
Martin Peschkeb634fff2008-03-31 11:15:24 +0200848 return p - out_buf;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200849}
850
Swen Schillig57717102009-08-18 15:43:21 +0200851static struct debug_view zfcp_dbf_san_view = {
852 .name = "structured",
853 .header_proc = zfcp_dbf_view_header,
854 .format_proc = zfcp_dbf_san_view_format,
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200855};
856
Swen Schillig57717102009-08-18 15:43:21 +0200857void _zfcp_dbf_scsi(const char *tag, const char *tag2, int level,
858 struct zfcp_dbf *dbf, struct scsi_cmnd *scsi_cmnd,
859 struct zfcp_fsf_req *fsf_req, unsigned long old_req_id)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200860{
Swen Schillig57717102009-08-18 15:43:21 +0200861 struct zfcp_dbf_scsi_record *rec = &dbf->scsi_buf;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200862 struct zfcp_dbf_dump *dump = (struct zfcp_dbf_dump *)rec;
863 unsigned long flags;
Christof Schmitt4318e082009-11-24 16:54:08 +0100864 struct fcp_resp_with_ext *fcp_rsp;
865 struct fcp_resp_rsp_info *fcp_rsp_info = NULL;
866 char *fcp_sns_info = NULL;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200867 int offset = 0, buflen = 0;
868
Swen Schillig57717102009-08-18 15:43:21 +0200869 spin_lock_irqsave(&dbf->scsi_lock, flags);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200870 do {
Martin Peschke6bc473d2008-03-31 11:15:29 +0200871 memset(rec, 0, sizeof(*rec));
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200872 if (offset == 0) {
873 strncpy(rec->tag, tag, ZFCP_DBF_TAG_SIZE);
874 strncpy(rec->tag2, tag2, ZFCP_DBF_TAG_SIZE);
Maxim Shchetynined829ad2006-02-11 01:42:58 +0100875 if (scsi_cmnd != NULL) {
876 if (scsi_cmnd->device) {
877 rec->scsi_id = scsi_cmnd->device->id;
878 rec->scsi_lun = scsi_cmnd->device->lun;
879 }
880 rec->scsi_result = scsi_cmnd->result;
881 rec->scsi_cmnd = (unsigned long)scsi_cmnd;
Boaz Harrosh64a87b22008-04-30 11:19:47 +0300882 memcpy(rec->scsi_opcode, scsi_cmnd->cmnd,
Maxim Shchetynined829ad2006-02-11 01:42:58 +0100883 min((int)scsi_cmnd->cmd_len,
884 ZFCP_DBF_SCSI_OPCODE));
885 rec->scsi_retries = scsi_cmnd->retries;
886 rec->scsi_allowed = scsi_cmnd->allowed;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200887 }
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200888 if (fsf_req != NULL) {
Christof Schmitt4318e082009-11-24 16:54:08 +0100889 fcp_rsp = (struct fcp_resp_with_ext *)
890 &(fsf_req->qtcb->bottom.io.fcp_rsp);
891 fcp_rsp_info = (struct fcp_resp_rsp_info *)
892 &fcp_rsp[1];
893 fcp_sns_info = (char *) &fcp_rsp[1];
894 if (fcp_rsp->resp.fr_flags & FCP_RSP_LEN_VAL)
895 fcp_sns_info += fcp_rsp->ext.fr_sns_len;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200896
Christof Schmitt4318e082009-11-24 16:54:08 +0100897 rec->rsp_validity = fcp_rsp->resp.fr_flags;
898 rec->rsp_scsi_status = fcp_rsp->resp.fr_status;
899 rec->rsp_resid = fcp_rsp->ext.fr_resid;
900 if (fcp_rsp->resp.fr_flags & FCP_RSP_LEN_VAL)
901 rec->rsp_code = fcp_rsp_info->rsp_code;
902 if (fcp_rsp->resp.fr_flags & FCP_SNS_LEN_VAL) {
903 buflen = min(fcp_rsp->ext.fr_sns_len,
904 (u32)ZFCP_DBF_SCSI_MAX_FCP_SNS_INFO);
Martin Peschke6bc473d2008-03-31 11:15:29 +0200905 rec->sns_info_len = buflen;
906 memcpy(rec->sns_info, fcp_sns_info,
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200907 min(buflen,
908 ZFCP_DBF_SCSI_FCP_SNS_INFO));
909 offset += min(buflen,
910 ZFCP_DBF_SCSI_FCP_SNS_INFO);
911 }
912
Christof Schmittf0216ae2009-05-15 13:18:14 +0200913 rec->fsf_reqid = fsf_req->req_id;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200914 rec->fsf_seqno = fsf_req->seq_no;
915 rec->fsf_issued = fsf_req->issued;
916 }
Martin Peschke6bc473d2008-03-31 11:15:29 +0200917 rec->old_fsf_reqid = old_req_id;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200918 } else {
919 strncpy(dump->tag, "dump", ZFCP_DBF_TAG_SIZE);
920 dump->total_size = buflen;
921 dump->offset = offset;
922 dump->size = min(buflen - offset,
923 (int)sizeof(struct
Swen Schillig57717102009-08-18 15:43:21 +0200924 zfcp_dbf_scsi_record) -
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200925 (int)sizeof(struct zfcp_dbf_dump));
926 memcpy(dump->data, fcp_sns_info + offset, dump->size);
927 offset += dump->size;
928 }
Swen Schillig57717102009-08-18 15:43:21 +0200929 debug_event(dbf->scsi, level, rec, sizeof(*rec));
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200930 } while (offset < buflen);
Swen Schillig57717102009-08-18 15:43:21 +0200931 spin_unlock_irqrestore(&dbf->scsi_lock, flags);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200932}
933
Swen Schillig57717102009-08-18 15:43:21 +0200934static int zfcp_dbf_scsi_view_format(debug_info_t *id, struct debug_view *view,
Martin Peschke92c7a832008-03-31 11:15:30 +0200935 char *out_buf, const char *in_buf)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200936{
Swen Schillig57717102009-08-18 15:43:21 +0200937 struct zfcp_dbf_scsi_record *r = (struct zfcp_dbf_scsi_record *)in_buf;
Martin Peschke8fc5af12008-03-31 11:15:23 +0200938 struct timespec t;
Martin Peschkeb634fff2008-03-31 11:15:24 +0200939 char *p = out_buf;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200940
Martin Peschkeb634fff2008-03-31 11:15:24 +0200941 if (strncmp(r->tag, "dump", ZFCP_DBF_TAG_SIZE) == 0)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200942 return 0;
943
Martin Peschkea9c85772008-03-31 11:15:27 +0200944 zfcp_dbf_tag(&p, "tag", r->tag);
945 zfcp_dbf_tag(&p, "tag2", r->tag2);
Martin Peschkeb634fff2008-03-31 11:15:24 +0200946 zfcp_dbf_out(&p, "scsi_id", "0x%08x", r->scsi_id);
947 zfcp_dbf_out(&p, "scsi_lun", "0x%08x", r->scsi_lun);
948 zfcp_dbf_out(&p, "scsi_result", "0x%08x", r->scsi_result);
949 zfcp_dbf_out(&p, "scsi_cmnd", "0x%0Lx", r->scsi_cmnd);
Martin Peschkedf29f4a2008-03-31 11:15:26 +0200950 zfcp_dbf_outd(&p, "scsi_opcode", r->scsi_opcode, ZFCP_DBF_SCSI_OPCODE,
951 0, ZFCP_DBF_SCSI_OPCODE);
Martin Peschkeb634fff2008-03-31 11:15:24 +0200952 zfcp_dbf_out(&p, "scsi_retries", "0x%02x", r->scsi_retries);
953 zfcp_dbf_out(&p, "scsi_allowed", "0x%02x", r->scsi_allowed);
954 if (strncmp(r->tag, "abrt", ZFCP_DBF_TAG_SIZE) == 0)
Martin Peschke6bc473d2008-03-31 11:15:29 +0200955 zfcp_dbf_out(&p, "old_fsf_reqid", "0x%0Lx", r->old_fsf_reqid);
Martin Peschkeb634fff2008-03-31 11:15:24 +0200956 zfcp_dbf_out(&p, "fsf_reqid", "0x%0Lx", r->fsf_reqid);
957 zfcp_dbf_out(&p, "fsf_seqno", "0x%08x", r->fsf_seqno);
Christof Schmittb592e892009-08-18 15:43:31 +0200958 stck_to_timespec(r->fsf_issued, &t);
Martin Peschkeb634fff2008-03-31 11:15:24 +0200959 zfcp_dbf_out(&p, "fsf_issued", "%011lu:%06lu", t.tv_sec, t.tv_nsec);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200960
Martin Peschkeb634fff2008-03-31 11:15:24 +0200961 if (strncmp(r->tag, "rslt", ZFCP_DBF_TAG_SIZE) == 0) {
Martin Peschke6bc473d2008-03-31 11:15:29 +0200962 zfcp_dbf_out(&p, "fcp_rsp_validity", "0x%02x", r->rsp_validity);
963 zfcp_dbf_out(&p, "fcp_rsp_scsi_status", "0x%02x",
964 r->rsp_scsi_status);
965 zfcp_dbf_out(&p, "fcp_rsp_resid", "0x%08x", r->rsp_resid);
966 zfcp_dbf_out(&p, "fcp_rsp_code", "0x%08x", r->rsp_code);
967 zfcp_dbf_out(&p, "fcp_sns_info_len", "0x%08x", r->sns_info_len);
968 zfcp_dbf_outd(&p, "fcp_sns_info", r->sns_info,
969 min((int)r->sns_info_len,
Martin Peschkedf29f4a2008-03-31 11:15:26 +0200970 ZFCP_DBF_SCSI_FCP_SNS_INFO), 0,
Martin Peschke6bc473d2008-03-31 11:15:29 +0200971 r->sns_info_len);
Martin Peschkeb634fff2008-03-31 11:15:24 +0200972 }
973 p += sprintf(p, "\n");
974 return p - out_buf;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200975}
976
Swen Schillig57717102009-08-18 15:43:21 +0200977static struct debug_view zfcp_dbf_scsi_view = {
978 .name = "structured",
979 .header_proc = zfcp_dbf_view_header,
980 .format_proc = zfcp_dbf_scsi_view_format,
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200981};
982
Christof Schmittd46f3842009-08-18 15:43:07 +0200983static debug_info_t *zfcp_dbf_reg(const char *name, int level,
984 struct debug_view *view, int size)
985{
986 struct debug_info *d;
987
988 d = debug_register(name, dbfsize, level, size);
989 if (!d)
990 return NULL;
991
992 debug_register_view(d, &debug_hex_ascii_view);
993 debug_register_view(d, view);
994 debug_set_level(d, level);
995
996 return d;
997}
998
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200999/**
1000 * zfcp_adapter_debug_register - registers debug feature for an adapter
1001 * @adapter: pointer to adapter for which debug features should be registered
1002 * return: -ENOMEM on error, 0 otherwise
1003 */
Swen Schillig57717102009-08-18 15:43:21 +02001004int zfcp_dbf_adapter_register(struct zfcp_adapter *adapter)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001005{
1006 char dbf_name[DEBUG_MAX_NAME_LEN];
Christof Schmittd46f3842009-08-18 15:43:07 +02001007 struct zfcp_dbf *dbf;
1008
Swen Schilligd23948e2010-07-16 15:37:40 +02001009 dbf = kzalloc(sizeof(struct zfcp_dbf), GFP_KERNEL);
Christof Schmittd46f3842009-08-18 15:43:07 +02001010 if (!dbf)
1011 return -ENOMEM;
1012
Swen Schillig57717102009-08-18 15:43:21 +02001013 dbf->adapter = adapter;
1014
1015 spin_lock_init(&dbf->hba_lock);
1016 spin_lock_init(&dbf->san_lock);
1017 spin_lock_init(&dbf->scsi_lock);
1018 spin_lock_init(&dbf->rec_lock);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001019
1020 /* debug feature area which records recovery activity */
Christof Schmittb225cf92008-12-19 16:57:00 +01001021 sprintf(dbf_name, "zfcp_%s_rec", dev_name(&adapter->ccw_device->dev));
Swen Schillig57717102009-08-18 15:43:21 +02001022 dbf->rec = zfcp_dbf_reg(dbf_name, 3, &zfcp_dbf_rec_view,
1023 sizeof(struct zfcp_dbf_rec_record));
1024 if (!dbf->rec)
1025 goto err_out;
Martin Peschked79a83d2008-03-27 14:22:00 +01001026
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001027 /* debug feature area which records HBA (FSF and QDIO) conditions */
Christof Schmittb225cf92008-12-19 16:57:00 +01001028 sprintf(dbf_name, "zfcp_%s_hba", dev_name(&adapter->ccw_device->dev));
Swen Schillig57717102009-08-18 15:43:21 +02001029 dbf->hba = zfcp_dbf_reg(dbf_name, 3, &zfcp_dbf_hba_view,
1030 sizeof(struct zfcp_dbf_hba_record));
1031 if (!dbf->hba)
1032 goto err_out;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001033
1034 /* debug feature area which records SAN command failures and recovery */
Christof Schmittb225cf92008-12-19 16:57:00 +01001035 sprintf(dbf_name, "zfcp_%s_san", dev_name(&adapter->ccw_device->dev));
Swen Schillig57717102009-08-18 15:43:21 +02001036 dbf->san = zfcp_dbf_reg(dbf_name, 6, &zfcp_dbf_san_view,
1037 sizeof(struct zfcp_dbf_san_record));
1038 if (!dbf->san)
1039 goto err_out;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001040
1041 /* debug feature area which records SCSI command failures and recovery */
Christof Schmittb225cf92008-12-19 16:57:00 +01001042 sprintf(dbf_name, "zfcp_%s_scsi", dev_name(&adapter->ccw_device->dev));
Swen Schillig57717102009-08-18 15:43:21 +02001043 dbf->scsi = zfcp_dbf_reg(dbf_name, 3, &zfcp_dbf_scsi_view,
1044 sizeof(struct zfcp_dbf_scsi_record));
1045 if (!dbf->scsi)
1046 goto err_out;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001047
Christof Schmittd46f3842009-08-18 15:43:07 +02001048 adapter->dbf = dbf;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001049 return 0;
1050
Swen Schillig57717102009-08-18 15:43:21 +02001051err_out:
1052 zfcp_dbf_adapter_unregister(dbf);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001053 return -ENOMEM;
1054}
1055
1056/**
1057 * zfcp_adapter_debug_unregister - unregisters debug feature for an adapter
Swen Schillig57717102009-08-18 15:43:21 +02001058 * @dbf: pointer to dbf for which debug features should be unregistered
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001059 */
Swen Schillig57717102009-08-18 15:43:21 +02001060void zfcp_dbf_adapter_unregister(struct zfcp_dbf *dbf)
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001061{
Swen Schilligf3450c72009-11-24 16:53:59 +01001062 if (!dbf)
1063 return;
Swen Schillig57717102009-08-18 15:43:21 +02001064 debug_unregister(dbf->scsi);
1065 debug_unregister(dbf->san);
1066 debug_unregister(dbf->hba);
1067 debug_unregister(dbf->rec);
1068 dbf->adapter->dbf = NULL;
1069 kfree(dbf);
Maxim Shchetynin8a36e452005-09-13 21:50:38 +02001070}
Swen Schillig57717102009-08-18 15:43:21 +02001071