2 * This file is part of the zfcp device driver for
3 * FCP adapters for IBM System z9 and zSeries.
5 * Copyright IBM Corp. 2008, 2008
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2, or (at your option)
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
27 #define ZFCP_DBF_TAG_SIZE 4
29 struct zfcp_dbf_dump {
30 u8 tag[ZFCP_DBF_TAG_SIZE];
31 u32 total_size; /* size of total dump data */
32 u32 offset; /* how much data has being already dumped */
33 u32 size; /* how much data comes with this record */
34 u8 data[]; /* dump data */
35 } __attribute__ ((packed));
37 struct zfcp_rec_dbf_record_thread {
41 } __attribute__ ((packed));
43 struct zfcp_rec_dbf_record_target {
50 } __attribute__ ((packed));
52 struct zfcp_rec_dbf_record_trigger {
62 } __attribute__ ((packed));
64 struct zfcp_rec_dbf_record_action {
69 } __attribute__ ((packed));
71 struct zfcp_rec_dbf_record {
75 struct zfcp_rec_dbf_record_action action;
76 struct zfcp_rec_dbf_record_thread thread;
77 struct zfcp_rec_dbf_record_target target;
78 struct zfcp_rec_dbf_record_trigger trigger;
80 } __attribute__ ((packed));
83 ZFCP_REC_DBF_ID_ACTION,
84 ZFCP_REC_DBF_ID_THREAD,
85 ZFCP_REC_DBF_ID_TARGET,
86 ZFCP_REC_DBF_ID_TRIGGER,
89 struct zfcp_hba_dbf_record_response {
96 u8 fsf_prot_status_qual[FSF_PROT_STATUS_QUAL_SIZE];
97 u8 fsf_status_qual[FSF_STATUS_QUALIFIER_SIZE];
124 } __attribute__ ((packed));
126 struct zfcp_hba_dbf_record_status {
130 struct fsf_queue_designator
133 #define ZFCP_DBF_UNSOL_PAYLOAD 80
134 #define ZFCP_DBF_UNSOL_PAYLOAD_SENSE_DATA_AVAIL 32
135 #define ZFCP_DBF_UNSOL_PAYLOAD_BIT_ERROR_THRESHOLD 56
136 #define ZFCP_DBF_UNSOL_PAYLOAD_FEATURE_UPDATE_ALERT 2 * sizeof(u32)
137 u8 payload[ZFCP_DBF_UNSOL_PAYLOAD];
138 } __attribute__ ((packed));
140 struct zfcp_hba_dbf_record_qdio {
146 } __attribute__ ((packed));
148 struct zfcp_hba_dbf_record {
149 u8 tag[ZFCP_DBF_TAG_SIZE];
150 u8 tag2[ZFCP_DBF_TAG_SIZE];
152 struct zfcp_hba_dbf_record_response response;
153 struct zfcp_hba_dbf_record_status status;
154 struct zfcp_hba_dbf_record_qdio qdio;
156 } __attribute__ ((packed));
158 struct zfcp_san_dbf_record_ct_request {
166 #define ZFCP_DBF_CT_PAYLOAD 24
167 u8 payload[ZFCP_DBF_CT_PAYLOAD];
168 } __attribute__ ((packed));
170 struct zfcp_san_dbf_record_ct_response {
177 u8 payload[ZFCP_DBF_CT_PAYLOAD];
178 } __attribute__ ((packed));
180 struct zfcp_san_dbf_record_els {
183 #define ZFCP_DBF_ELS_PAYLOAD 32
184 #define ZFCP_DBF_ELS_MAX_PAYLOAD 1024
185 u8 payload[ZFCP_DBF_ELS_PAYLOAD];
186 } __attribute__ ((packed));
188 struct zfcp_san_dbf_record {
189 u8 tag[ZFCP_DBF_TAG_SIZE];
195 struct zfcp_san_dbf_record_ct_request ct_req;
196 struct zfcp_san_dbf_record_ct_response ct_resp;
197 struct zfcp_san_dbf_record_els els;
199 } __attribute__ ((packed));
201 struct zfcp_scsi_dbf_record {
202 u8 tag[ZFCP_DBF_TAG_SIZE];
203 u8 tag2[ZFCP_DBF_TAG_SIZE];
209 #define ZFCP_DBF_SCSI_OPCODE 16
210 u8 scsi_opcode[ZFCP_DBF_SCSI_OPCODE];
221 #define ZFCP_DBF_SCSI_FCP_SNS_INFO 16
222 #define ZFCP_DBF_SCSI_MAX_FCP_SNS_INFO 256
224 u8 sns_info[ZFCP_DBF_SCSI_FCP_SNS_INFO];
225 } __attribute__ ((packed));
227 #endif /* ZFCP_DBF_H */