[SCSI] zfcp: transport class adaptations
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / s390 / scsi / zfcp_def.h
blob3785b3c98a58160f42ad5f81ae7fdc97ce854b72
1 /*
2 *
3 * linux/drivers/s390/scsi/zfcp_def.h
4 *
5 * FCP adapter driver for IBM eServer zSeries
6 *
7 * (C) Copyright IBM Corp. 2002, 2004
9 * Author(s): Martin Peschke <mpeschke@de.ibm.com>
10 * Raimund Schroeder <raimund.schroeder@de.ibm.com>
11 * Aron Zeh
12 * Wolfgang Taphorn
13 * Stefan Bader <stefan.bader@de.ibm.com>
14 * Heiko Carstens <heiko.carstens@de.ibm.com>
15 * Andreas Herrmann <aherrman@de.ibm.com>
16 * Volker Sameske <sameske@de.ibm.com>
18 * This program is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License as published by
20 * the Free Software Foundation; either version 2, or (at your option)
21 * any later version.
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
28 * You should have received a copy of the GNU General Public License
29 * along with this program; if not, write to the Free Software
30 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
31 */
34 #ifndef ZFCP_DEF_H
35 #define ZFCP_DEF_H
37 #define ZFCP_DEF_REVISION "$Revision: 1.111 $"
39 /*************************** INCLUDES *****************************************/
41 #include <linux/init.h>
42 #include <linux/moduleparam.h>
43 #include <linux/miscdevice.h>
44 #include <linux/major.h>
45 #include <linux/blkdev.h>
46 #include <linux/delay.h>
47 #include <linux/timer.h>
48 #include <scsi/scsi.h>
49 #include <scsi/scsi_tcq.h>
50 #include <scsi/scsi_cmnd.h>
51 #include <scsi/scsi_device.h>
52 #include <scsi/scsi_host.h>
53 #include <scsi/scsi_transport.h>
54 #include <scsi/scsi_transport_fc.h>
55 #include "../../fc4/fc.h"
56 #include "zfcp_fsf.h"
57 #include <asm/ccwdev.h>
58 #include <asm/qdio.h>
59 #include <asm/debug.h>
60 #include <asm/ebcdic.h>
61 #include <linux/mempool.h>
62 #include <linux/syscalls.h>
63 #include <linux/ioctl.h>
66 /********************* GENERAL DEFINES *********************************/
68 /* zfcp version number, it consists of major, minor, and patch-level number */
69 #define ZFCP_VERSION "4.5.0"
71 /**
72 * zfcp_sg_to_address - determine kernel address from struct scatterlist
73 * @list: struct scatterlist
74 * Return: kernel address
76 static inline void *
77 zfcp_sg_to_address(struct scatterlist *list)
79 return (void *) (page_address(list->page) + list->offset);
82 /**
83 * zfcp_address_to_sg - set up struct scatterlist from kernel address
84 * @address: kernel address
85 * @list: struct scatterlist
87 static inline void
88 zfcp_address_to_sg(void *address, struct scatterlist *list)
90 list->page = virt_to_page(address);
91 list->offset = ((unsigned long) address) & (PAGE_SIZE - 1);
94 /********************* SCSI SPECIFIC DEFINES *********************************/
96 /* 32 bit for SCSI ID and LUN as long as the SCSI stack uses this type */
97 typedef u32 scsi_id_t;
98 typedef u32 scsi_lun_t;
100 #define ZFCP_ERP_SCSI_LOW_MEM_TIMEOUT (100*HZ)
101 #define ZFCP_SCSI_ER_TIMEOUT (100*HZ)
103 /********************* CIO/QDIO SPECIFIC DEFINES *****************************/
105 /* Adapter Identification Parameters */
106 #define ZFCP_CONTROL_UNIT_TYPE 0x1731
107 #define ZFCP_CONTROL_UNIT_MODEL 0x03
108 #define ZFCP_DEVICE_TYPE 0x1732
109 #define ZFCP_DEVICE_MODEL 0x03
110 #define ZFCP_DEVICE_MODEL_PRIV 0x04
112 /* allow as many chained SBALs as are supported by hardware */
113 #define ZFCP_MAX_SBALS_PER_REQ FSF_MAX_SBALS_PER_REQ
114 #define ZFCP_MAX_SBALS_PER_CT_REQ FSF_MAX_SBALS_PER_REQ
115 #define ZFCP_MAX_SBALS_PER_ELS_REQ FSF_MAX_SBALS_PER_ELS_REQ
117 /* DMQ bug workaround: don't use last SBALE */
118 #define ZFCP_MAX_SBALES_PER_SBAL (QDIO_MAX_ELEMENTS_PER_BUFFER - 1)
120 /* index of last SBALE (with respect to DMQ bug workaround) */
121 #define ZFCP_LAST_SBALE_PER_SBAL (ZFCP_MAX_SBALES_PER_SBAL - 1)
123 /* max. number of (data buffer) SBALEs in largest SBAL chain */
124 #define ZFCP_MAX_SBALES_PER_REQ \
125 (ZFCP_MAX_SBALS_PER_REQ * ZFCP_MAX_SBALES_PER_SBAL - 2)
126 /* request ID + QTCB in SBALE 0 + 1 of first SBAL in chain */
128 /* FIXME(tune): free space should be one max. SBAL chain plus what? */
129 #define ZFCP_QDIO_PCI_INTERVAL (QDIO_MAX_BUFFERS_PER_Q \
130 - (ZFCP_MAX_SBALS_PER_REQ + 4))
132 #define ZFCP_SBAL_TIMEOUT (5*HZ)
134 #define ZFCP_TYPE2_RECOVERY_TIME (8*HZ)
136 /* queue polling (values in microseconds) */
137 #define ZFCP_MAX_INPUT_THRESHOLD 5000 /* FIXME: tune */
138 #define ZFCP_MAX_OUTPUT_THRESHOLD 1000 /* FIXME: tune */
139 #define ZFCP_MIN_INPUT_THRESHOLD 1 /* ignored by QDIO layer */
140 #define ZFCP_MIN_OUTPUT_THRESHOLD 1 /* ignored by QDIO layer */
142 #define QDIO_SCSI_QFMT 1 /* 1 for FSF */
144 /********************* FSF SPECIFIC DEFINES *********************************/
146 #define ZFCP_ULP_INFO_VERSION 26
147 #define ZFCP_QTCB_VERSION FSF_QTCB_CURRENT_VERSION
148 /* ATTENTION: value must not be used by hardware */
149 #define FSF_QTCB_UNSOLICITED_STATUS 0x6305
150 #define ZFCP_STATUS_READ_FAILED_THRESHOLD 3
151 #define ZFCP_STATUS_READS_RECOM FSF_STATUS_READS_RECOM
153 /* Do 1st retry in 1 second, then double the timeout for each following retry */
154 #define ZFCP_EXCHANGE_CONFIG_DATA_FIRST_SLEEP 100
155 #define ZFCP_EXCHANGE_CONFIG_DATA_RETRIES 7
157 /* Retry 5 times every 2 second, then every minute */
158 #define ZFCP_EXCHANGE_PORT_DATA_SHORT_RETRIES 5
159 #define ZFCP_EXCHANGE_PORT_DATA_SHORT_SLEEP 200
160 #define ZFCP_EXCHANGE_PORT_DATA_LONG_SLEEP 6000
162 /* timeout value for "default timer" for fsf requests */
163 #define ZFCP_FSF_REQUEST_TIMEOUT (60*HZ);
165 /*************** FIBRE CHANNEL PROTOCOL SPECIFIC DEFINES ********************/
167 typedef unsigned long long wwn_t;
168 typedef unsigned long long fcp_lun_t;
169 /* data length field may be at variable position in FCP-2 FCP_CMND IU */
170 typedef unsigned int fcp_dl_t;
172 #define ZFCP_FC_SERVICE_CLASS_DEFAULT FSF_CLASS_3
174 /* timeout for name-server lookup (in seconds) */
175 #define ZFCP_NS_GID_PN_TIMEOUT 10
177 /* largest SCSI command we can process */
178 /* FCP-2 (FCP_CMND IU) allows up to (255-3+16) */
179 #define ZFCP_MAX_SCSI_CMND_LENGTH 255
180 /* maximum number of commands in LUN queue (tagged queueing) */
181 #define ZFCP_CMND_PER_LUN 32
183 /* task attribute values in FCP-2 FCP_CMND IU */
184 #define SIMPLE_Q 0
185 #define HEAD_OF_Q 1
186 #define ORDERED_Q 2
187 #define ACA_Q 4
188 #define UNTAGGED 5
190 /* task management flags in FCP-2 FCP_CMND IU */
191 #define FCP_CLEAR_ACA 0x40
192 #define FCP_TARGET_RESET 0x20
193 #define FCP_LOGICAL_UNIT_RESET 0x10
194 #define FCP_CLEAR_TASK_SET 0x04
195 #define FCP_ABORT_TASK_SET 0x02
197 #define FCP_CDB_LENGTH 16
199 #define ZFCP_DID_MASK 0x00FFFFFF
201 /* FCP(-2) FCP_CMND IU */
202 struct fcp_cmnd_iu {
203 fcp_lun_t fcp_lun; /* FCP logical unit number */
204 u8 crn; /* command reference number */
205 u8 reserved0:5; /* reserved */
206 u8 task_attribute:3; /* task attribute */
207 u8 task_management_flags; /* task management flags */
208 u8 add_fcp_cdb_length:6; /* additional FCP_CDB length */
209 u8 rddata:1; /* read data */
210 u8 wddata:1; /* write data */
211 u8 fcp_cdb[FCP_CDB_LENGTH];
212 } __attribute__((packed));
214 /* FCP(-2) FCP_RSP IU */
215 struct fcp_rsp_iu {
216 u8 reserved0[10];
217 union {
218 struct {
219 u8 reserved1:3;
220 u8 fcp_conf_req:1;
221 u8 fcp_resid_under:1;
222 u8 fcp_resid_over:1;
223 u8 fcp_sns_len_valid:1;
224 u8 fcp_rsp_len_valid:1;
225 } bits;
226 u8 value;
227 } validity;
228 u8 scsi_status;
229 u32 fcp_resid;
230 u32 fcp_sns_len;
231 u32 fcp_rsp_len;
232 } __attribute__((packed));
235 #define RSP_CODE_GOOD 0
236 #define RSP_CODE_LENGTH_MISMATCH 1
237 #define RSP_CODE_FIELD_INVALID 2
238 #define RSP_CODE_RO_MISMATCH 3
239 #define RSP_CODE_TASKMAN_UNSUPP 4
240 #define RSP_CODE_TASKMAN_FAILED 5
242 /* see fc-fs */
243 #define LS_FAN 0x60000000
244 #define LS_RSCN 0x61040000
246 struct fcp_rscn_head {
247 u8 command;
248 u8 page_length; /* always 0x04 */
249 u16 payload_len;
250 } __attribute__((packed));
252 struct fcp_rscn_element {
253 u8 reserved:2;
254 u8 event_qual:4;
255 u8 addr_format:2;
256 u32 nport_did:24;
257 } __attribute__((packed));
259 #define ZFCP_PORT_ADDRESS 0x0
260 #define ZFCP_AREA_ADDRESS 0x1
261 #define ZFCP_DOMAIN_ADDRESS 0x2
262 #define ZFCP_FABRIC_ADDRESS 0x3
264 #define ZFCP_PORTS_RANGE_PORT 0xFFFFFF
265 #define ZFCP_PORTS_RANGE_AREA 0xFFFF00
266 #define ZFCP_PORTS_RANGE_DOMAIN 0xFF0000
267 #define ZFCP_PORTS_RANGE_FABRIC 0x000000
269 #define ZFCP_NO_PORTS_PER_AREA 0x100
270 #define ZFCP_NO_PORTS_PER_DOMAIN 0x10000
271 #define ZFCP_NO_PORTS_PER_FABRIC 0x1000000
273 struct fcp_fan {
274 u32 command;
275 u32 fport_did;
276 wwn_t fport_wwpn;
277 wwn_t fport_wwname;
278 } __attribute__((packed));
280 /* see fc-ph */
281 struct fcp_logo {
282 u32 command;
283 u32 nport_did;
284 wwn_t nport_wwpn;
285 } __attribute__((packed));
288 * DBF stuff
290 #define ZFCP_DBF_TAG_SIZE 4
292 struct zfcp_dbf_dump {
293 u8 tag[ZFCP_DBF_TAG_SIZE];
294 u32 total_size; /* size of total dump data */
295 u32 offset; /* how much data has being already dumped */
296 u32 size; /* how much data comes with this record */
297 u8 data[]; /* dump data */
298 } __attribute__ ((packed));
300 /* FIXME: to be inflated when reworking the erp dbf */
301 struct zfcp_erp_dbf_record {
302 u8 dummy[16];
303 } __attribute__ ((packed));
305 struct zfcp_hba_dbf_record_response {
306 u32 fsf_command;
307 u64 fsf_reqid;
308 u32 fsf_seqno;
309 u64 fsf_issued;
310 u32 fsf_prot_status;
311 u32 fsf_status;
312 u8 fsf_prot_status_qual[FSF_PROT_STATUS_QUAL_SIZE];
313 u8 fsf_status_qual[FSF_STATUS_QUALIFIER_SIZE];
314 u32 fsf_req_status;
315 u8 sbal_first;
316 u8 sbal_curr;
317 u8 sbal_last;
318 u8 pool;
319 u64 erp_action;
320 union {
321 struct {
322 u64 scsi_cmnd;
323 u64 scsi_serial;
324 } send_fcp;
325 struct {
326 u64 wwpn;
327 u32 d_id;
328 u32 port_handle;
329 } port;
330 struct {
331 u64 wwpn;
332 u64 fcp_lun;
333 u32 port_handle;
334 u32 lun_handle;
335 } unit;
336 struct {
337 u32 d_id;
338 u8 ls_code;
339 } send_els;
340 } data;
341 } __attribute__ ((packed));
343 struct zfcp_hba_dbf_record_status {
344 u8 failed;
345 u32 status_type;
346 u32 status_subtype;
347 struct fsf_queue_designator
348 queue_designator;
349 u32 payload_size;
350 #define ZFCP_DBF_UNSOL_PAYLOAD 80
351 #define ZFCP_DBF_UNSOL_PAYLOAD_SENSE_DATA_AVAIL 32
352 #define ZFCP_DBF_UNSOL_PAYLOAD_BIT_ERROR_THRESHOLD 56
353 #define ZFCP_DBF_UNSOL_PAYLOAD_FEATURE_UPDATE_ALERT 2 * sizeof(u32)
354 u8 payload[ZFCP_DBF_UNSOL_PAYLOAD];
355 } __attribute__ ((packed));
357 struct zfcp_hba_dbf_record_qdio {
358 u32 status;
359 u32 qdio_error;
360 u32 siga_error;
361 u8 sbal_index;
362 u8 sbal_count;
363 } __attribute__ ((packed));
365 struct zfcp_hba_dbf_record {
366 u8 tag[ZFCP_DBF_TAG_SIZE];
367 u8 tag2[ZFCP_DBF_TAG_SIZE];
368 union {
369 struct zfcp_hba_dbf_record_response response;
370 struct zfcp_hba_dbf_record_status status;
371 struct zfcp_hba_dbf_record_qdio qdio;
372 } type;
373 } __attribute__ ((packed));
375 struct zfcp_san_dbf_record_ct {
376 union {
377 struct {
378 u16 cmd_req_code;
379 u8 revision;
380 u8 gs_type;
381 u8 gs_subtype;
382 u8 options;
383 u16 max_res_size;
384 } request;
385 struct {
386 u16 cmd_rsp_code;
387 u8 revision;
388 u8 reason_code;
389 u8 reason_code_expl;
390 u8 vendor_unique;
391 } response;
392 } type;
393 u32 payload_size;
394 #define ZFCP_DBF_CT_PAYLOAD 24
395 u8 payload[ZFCP_DBF_CT_PAYLOAD];
396 } __attribute__ ((packed));
398 struct zfcp_san_dbf_record_els {
399 u8 ls_code;
400 u32 payload_size;
401 #define ZFCP_DBF_ELS_PAYLOAD 32
402 #define ZFCP_DBF_ELS_MAX_PAYLOAD 1024
403 u8 payload[ZFCP_DBF_ELS_PAYLOAD];
404 } __attribute__ ((packed));
406 struct zfcp_san_dbf_record {
407 u8 tag[ZFCP_DBF_TAG_SIZE];
408 u64 fsf_reqid;
409 u32 fsf_seqno;
410 u32 s_id;
411 u32 d_id;
412 union {
413 struct zfcp_san_dbf_record_ct ct;
414 struct zfcp_san_dbf_record_els els;
415 } type;
416 } __attribute__ ((packed));
418 struct zfcp_scsi_dbf_record {
419 u8 tag[ZFCP_DBF_TAG_SIZE];
420 u8 tag2[ZFCP_DBF_TAG_SIZE];
421 u32 scsi_id;
422 u32 scsi_lun;
423 u32 scsi_result;
424 u64 scsi_cmnd;
425 u64 scsi_serial;
426 #define ZFCP_DBF_SCSI_OPCODE 16
427 u8 scsi_opcode[ZFCP_DBF_SCSI_OPCODE];
428 u8 scsi_retries;
429 u8 scsi_allowed;
430 u64 fsf_reqid;
431 u32 fsf_seqno;
432 u64 fsf_issued;
433 union {
434 struct {
435 u64 fsf_reqid;
436 u32 fsf_seqno;
437 u64 fsf_issued;
438 } new_fsf_req;
439 struct {
440 u8 rsp_validity;
441 u8 rsp_scsi_status;
442 u32 rsp_resid;
443 u8 rsp_code;
444 #define ZFCP_DBF_SCSI_FCP_SNS_INFO 16
445 #define ZFCP_DBF_SCSI_MAX_FCP_SNS_INFO 256
446 u32 sns_info_len;
447 u8 sns_info[ZFCP_DBF_SCSI_FCP_SNS_INFO];
448 } fcp;
449 } type;
450 } __attribute__ ((packed));
453 * FC-FS stuff
455 #define R_A_TOV 10 /* seconds */
456 #define ZFCP_ELS_TIMEOUT (2 * R_A_TOV)
458 #define ZFCP_LS_RLS 0x0f
459 #define ZFCP_LS_ADISC 0x52
460 #define ZFCP_LS_RPS 0x56
461 #define ZFCP_LS_RSCN 0x61
462 #define ZFCP_LS_RNID 0x78
464 struct zfcp_ls_rjt_par {
465 u8 action;
466 u8 reason_code;
467 u8 reason_expl;
468 u8 vendor_unique;
469 } __attribute__ ((packed));
471 struct zfcp_ls_adisc {
472 u8 code;
473 u8 field[3];
474 u32 hard_nport_id;
475 u64 wwpn;
476 u64 wwnn;
477 u32 nport_id;
478 } __attribute__ ((packed));
480 struct zfcp_ls_adisc_acc {
481 u8 code;
482 u8 field[3];
483 u32 hard_nport_id;
484 u64 wwpn;
485 u64 wwnn;
486 u32 nport_id;
487 } __attribute__ ((packed));
489 struct zfcp_rc_entry {
490 u8 code;
491 const char *description;
495 * FC-GS-2 stuff
497 #define ZFCP_CT_REVISION 0x01
498 #define ZFCP_CT_DIRECTORY_SERVICE 0xFC
499 #define ZFCP_CT_NAME_SERVER 0x02
500 #define ZFCP_CT_SYNCHRONOUS 0x00
501 #define ZFCP_CT_GID_PN 0x0121
502 #define ZFCP_CT_MAX_SIZE 0x1020
503 #define ZFCP_CT_ACCEPT 0x8002
504 #define ZFCP_CT_REJECT 0x8001
507 * FC-GS-4 stuff
509 #define ZFCP_CT_TIMEOUT (3 * R_A_TOV)
511 /******************** LOGGING MACROS AND DEFINES *****************************/
514 * Logging may be applied on certain kinds of driver operations
515 * independently. Additionally, different log-levels are supported for
516 * each of these areas.
519 #define ZFCP_NAME "zfcp"
521 /* read-only LUN sharing switch initial value */
522 #define ZFCP_RO_LUN_SHARING_DEFAULTS 0
524 /* independent log areas */
525 #define ZFCP_LOG_AREA_OTHER 0
526 #define ZFCP_LOG_AREA_SCSI 1
527 #define ZFCP_LOG_AREA_FSF 2
528 #define ZFCP_LOG_AREA_CONFIG 3
529 #define ZFCP_LOG_AREA_CIO 4
530 #define ZFCP_LOG_AREA_QDIO 5
531 #define ZFCP_LOG_AREA_ERP 6
532 #define ZFCP_LOG_AREA_FC 7
534 /* log level values*/
535 #define ZFCP_LOG_LEVEL_NORMAL 0
536 #define ZFCP_LOG_LEVEL_INFO 1
537 #define ZFCP_LOG_LEVEL_DEBUG 2
538 #define ZFCP_LOG_LEVEL_TRACE 3
541 * this allows removal of logging code by the preprocessor
542 * (the most detailed log level still to be compiled in is specified,
543 * higher log levels are removed)
545 #define ZFCP_LOG_LEVEL_LIMIT ZFCP_LOG_LEVEL_TRACE
547 /* get "loglevel" nibble assignment */
548 #define ZFCP_GET_LOG_VALUE(zfcp_lognibble) \
549 ((atomic_read(&zfcp_data.loglevel) >> (zfcp_lognibble<<2)) & 0xF)
551 /* set "loglevel" nibble */
552 #define ZFCP_SET_LOG_NIBBLE(value, zfcp_lognibble) \
553 (value << (zfcp_lognibble << 2))
555 /* all log-level defaults are combined to generate initial log-level */
556 #define ZFCP_LOG_LEVEL_DEFAULTS \
557 (ZFCP_SET_LOG_NIBBLE(ZFCP_LOG_LEVEL_NORMAL, ZFCP_LOG_AREA_OTHER) | \
558 ZFCP_SET_LOG_NIBBLE(ZFCP_LOG_LEVEL_NORMAL, ZFCP_LOG_AREA_SCSI) | \
559 ZFCP_SET_LOG_NIBBLE(ZFCP_LOG_LEVEL_NORMAL, ZFCP_LOG_AREA_FSF) | \
560 ZFCP_SET_LOG_NIBBLE(ZFCP_LOG_LEVEL_NORMAL, ZFCP_LOG_AREA_CONFIG) | \
561 ZFCP_SET_LOG_NIBBLE(ZFCP_LOG_LEVEL_NORMAL, ZFCP_LOG_AREA_CIO) | \
562 ZFCP_SET_LOG_NIBBLE(ZFCP_LOG_LEVEL_NORMAL, ZFCP_LOG_AREA_QDIO) | \
563 ZFCP_SET_LOG_NIBBLE(ZFCP_LOG_LEVEL_NORMAL, ZFCP_LOG_AREA_ERP) | \
564 ZFCP_SET_LOG_NIBBLE(ZFCP_LOG_LEVEL_NORMAL, ZFCP_LOG_AREA_FC))
566 /* check whether we have the right level for logging */
567 #define ZFCP_LOG_CHECK(level) \
568 ((ZFCP_GET_LOG_VALUE(ZFCP_LOG_AREA)) >= level)
570 /* logging routine for zfcp */
571 #define _ZFCP_LOG(fmt, args...) \
572 printk(KERN_ERR ZFCP_NAME": %s(%d): " fmt, __FUNCTION__, \
573 __LINE__ , ##args)
575 #define ZFCP_LOG(level, fmt, args...) \
576 do { \
577 if (ZFCP_LOG_CHECK(level)) \
578 _ZFCP_LOG(fmt, ##args); \
579 } while (0)
581 #if ZFCP_LOG_LEVEL_LIMIT < ZFCP_LOG_LEVEL_NORMAL
582 # define ZFCP_LOG_NORMAL(fmt, args...)
583 #else
584 # define ZFCP_LOG_NORMAL(fmt, args...) \
585 do { \
586 if (ZFCP_LOG_CHECK(ZFCP_LOG_LEVEL_NORMAL)) \
587 printk(KERN_ERR ZFCP_NAME": " fmt, ##args); \
588 } while (0)
589 #endif
591 #if ZFCP_LOG_LEVEL_LIMIT < ZFCP_LOG_LEVEL_INFO
592 # define ZFCP_LOG_INFO(fmt, args...)
593 #else
594 # define ZFCP_LOG_INFO(fmt, args...) \
595 do { \
596 if (ZFCP_LOG_CHECK(ZFCP_LOG_LEVEL_INFO)) \
597 printk(KERN_ERR ZFCP_NAME": " fmt, ##args); \
598 } while (0)
599 #endif
601 #if ZFCP_LOG_LEVEL_LIMIT < ZFCP_LOG_LEVEL_DEBUG
602 # define ZFCP_LOG_DEBUG(fmt, args...)
603 #else
604 # define ZFCP_LOG_DEBUG(fmt, args...) \
605 ZFCP_LOG(ZFCP_LOG_LEVEL_DEBUG, fmt , ##args)
606 #endif
608 #if ZFCP_LOG_LEVEL_LIMIT < ZFCP_LOG_LEVEL_TRACE
609 # define ZFCP_LOG_TRACE(fmt, args...)
610 #else
611 # define ZFCP_LOG_TRACE(fmt, args...) \
612 ZFCP_LOG(ZFCP_LOG_LEVEL_TRACE, fmt , ##args)
613 #endif
615 /*************** ADAPTER/PORT/UNIT AND FSF_REQ STATUS FLAGS ******************/
618 * Note, the leftmost status byte is common among adapter, port
619 * and unit
621 #define ZFCP_COMMON_FLAGS 0xfff00000
622 #define ZFCP_SPECIFIC_FLAGS 0x000fffff
624 /* common status bits */
625 #define ZFCP_STATUS_COMMON_REMOVE 0x80000000
626 #define ZFCP_STATUS_COMMON_RUNNING 0x40000000
627 #define ZFCP_STATUS_COMMON_ERP_FAILED 0x20000000
628 #define ZFCP_STATUS_COMMON_UNBLOCKED 0x10000000
629 #define ZFCP_STATUS_COMMON_OPENING 0x08000000
630 #define ZFCP_STATUS_COMMON_OPEN 0x04000000
631 #define ZFCP_STATUS_COMMON_CLOSING 0x02000000
632 #define ZFCP_STATUS_COMMON_ERP_INUSE 0x01000000
633 #define ZFCP_STATUS_COMMON_ACCESS_DENIED 0x00800000
634 #define ZFCP_STATUS_COMMON_ACCESS_BOXED 0x00400000
636 /* adapter status */
637 #define ZFCP_STATUS_ADAPTER_QDIOUP 0x00000002
638 #define ZFCP_STATUS_ADAPTER_REGISTERED 0x00000004
639 #define ZFCP_STATUS_ADAPTER_XCONFIG_OK 0x00000008
640 #define ZFCP_STATUS_ADAPTER_HOST_CON_INIT 0x00000010
641 #define ZFCP_STATUS_ADAPTER_ERP_THREAD_UP 0x00000020
642 #define ZFCP_STATUS_ADAPTER_ERP_THREAD_KILL 0x00000080
643 #define ZFCP_STATUS_ADAPTER_ERP_PENDING 0x00000100
644 #define ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED 0x00000200
645 #define ZFCP_STATUS_ADAPTER_XPORT_OK 0x00000800
647 #define ZFCP_STATUS_ADAPTER_SCSI_UP \
648 (ZFCP_STATUS_COMMON_UNBLOCKED | \
649 ZFCP_STATUS_ADAPTER_REGISTERED)
652 /* FC-PH/FC-GS well-known address identifiers for generic services */
653 #define ZFCP_DID_MANAGEMENT_SERVICE 0xFFFFFA
654 #define ZFCP_DID_TIME_SERVICE 0xFFFFFB
655 #define ZFCP_DID_DIRECTORY_SERVICE 0xFFFFFC
656 #define ZFCP_DID_ALIAS_SERVICE 0xFFFFF8
657 #define ZFCP_DID_KEY_DISTRIBUTION_SERVICE 0xFFFFF7
659 /* remote port status */
660 #define ZFCP_STATUS_PORT_PHYS_OPEN 0x00000001
661 #define ZFCP_STATUS_PORT_DID_DID 0x00000002
662 #define ZFCP_STATUS_PORT_PHYS_CLOSING 0x00000004
663 #define ZFCP_STATUS_PORT_NO_WWPN 0x00000008
664 #define ZFCP_STATUS_PORT_NO_SCSI_ID 0x00000010
665 #define ZFCP_STATUS_PORT_INVALID_WWPN 0x00000020
666 #define ZFCP_STATUS_PORT_ACCESS_DENIED 0x00000040
668 /* for ports with well known addresses */
669 #define ZFCP_STATUS_PORT_WKA \
670 (ZFCP_STATUS_PORT_NO_WWPN | \
671 ZFCP_STATUS_PORT_NO_SCSI_ID)
673 /* logical unit status */
674 #define ZFCP_STATUS_UNIT_NOTSUPPUNITRESET 0x00000001
675 #define ZFCP_STATUS_UNIT_TEMPORARY 0x00000002
676 #define ZFCP_STATUS_UNIT_SHARED 0x00000004
677 #define ZFCP_STATUS_UNIT_READONLY 0x00000008
679 /* FSF request status (this does not have a common part) */
680 #define ZFCP_STATUS_FSFREQ_NOT_INIT 0x00000000
681 #define ZFCP_STATUS_FSFREQ_POOL 0x00000001
682 #define ZFCP_STATUS_FSFREQ_TASK_MANAGEMENT 0x00000002
683 #define ZFCP_STATUS_FSFREQ_COMPLETED 0x00000004
684 #define ZFCP_STATUS_FSFREQ_ERROR 0x00000008
685 #define ZFCP_STATUS_FSFREQ_CLEANUP 0x00000010
686 #define ZFCP_STATUS_FSFREQ_ABORTING 0x00000020
687 #define ZFCP_STATUS_FSFREQ_ABORTSUCCEEDED 0x00000040
688 #define ZFCP_STATUS_FSFREQ_ABORTNOTNEEDED 0x00000080
689 #define ZFCP_STATUS_FSFREQ_ABORTED 0x00000100
690 #define ZFCP_STATUS_FSFREQ_TMFUNCFAILED 0x00000200
691 #define ZFCP_STATUS_FSFREQ_TMFUNCNOTSUPP 0x00000400
692 #define ZFCP_STATUS_FSFREQ_RETRY 0x00000800
693 #define ZFCP_STATUS_FSFREQ_DISMISSED 0x00001000
695 /*********************** ERROR RECOVERY PROCEDURE DEFINES ********************/
697 #define ZFCP_MAX_ERPS 3
699 #define ZFCP_ERP_FSFREQ_TIMEOUT (30 * HZ)
700 #define ZFCP_ERP_MEMWAIT_TIMEOUT HZ
702 #define ZFCP_STATUS_ERP_TIMEDOUT 0x10000000
703 #define ZFCP_STATUS_ERP_CLOSE_ONLY 0x01000000
704 #define ZFCP_STATUS_ERP_DISMISSING 0x00100000
705 #define ZFCP_STATUS_ERP_DISMISSED 0x00200000
706 #define ZFCP_STATUS_ERP_LOWMEM 0x00400000
708 #define ZFCP_ERP_STEP_UNINITIALIZED 0x00000000
709 #define ZFCP_ERP_STEP_FSF_XCONFIG 0x00000001
710 #define ZFCP_ERP_STEP_PHYS_PORT_CLOSING 0x00000010
711 #define ZFCP_ERP_STEP_PORT_CLOSING 0x00000100
712 #define ZFCP_ERP_STEP_NAMESERVER_OPEN 0x00000200
713 #define ZFCP_ERP_STEP_NAMESERVER_LOOKUP 0x00000400
714 #define ZFCP_ERP_STEP_PORT_OPENING 0x00000800
715 #define ZFCP_ERP_STEP_UNIT_CLOSING 0x00001000
716 #define ZFCP_ERP_STEP_UNIT_OPENING 0x00002000
718 /* Ordered by escalation level (necessary for proper erp-code operation) */
719 #define ZFCP_ERP_ACTION_REOPEN_ADAPTER 0x4
720 #define ZFCP_ERP_ACTION_REOPEN_PORT_FORCED 0x3
721 #define ZFCP_ERP_ACTION_REOPEN_PORT 0x2
722 #define ZFCP_ERP_ACTION_REOPEN_UNIT 0x1
724 #define ZFCP_ERP_ACTION_RUNNING 0x1
725 #define ZFCP_ERP_ACTION_READY 0x2
727 #define ZFCP_ERP_SUCCEEDED 0x0
728 #define ZFCP_ERP_FAILED 0x1
729 #define ZFCP_ERP_CONTINUES 0x2
730 #define ZFCP_ERP_EXIT 0x3
731 #define ZFCP_ERP_DISMISSED 0x4
732 #define ZFCP_ERP_NOMEM 0x5
735 /******************** CFDC SPECIFIC STUFF *****************************/
737 /* Firewall data channel sense data record */
738 struct zfcp_cfdc_sense_data {
739 u32 signature; /* Request signature */
740 u32 devno; /* FCP adapter device number */
741 u32 command; /* Command code */
742 u32 fsf_status; /* FSF request status and status qualifier */
743 u8 fsf_status_qual[FSF_STATUS_QUALIFIER_SIZE];
744 u8 payloads[256]; /* Access conflicts list */
745 u8 control_file[0]; /* Access control table */
748 #define ZFCP_CFDC_SIGNATURE 0xCFDCACDF
750 #define ZFCP_CFDC_CMND_DOWNLOAD_NORMAL 0x00010001
751 #define ZFCP_CFDC_CMND_DOWNLOAD_FORCE 0x00010101
752 #define ZFCP_CFDC_CMND_FULL_ACCESS 0x00000201
753 #define ZFCP_CFDC_CMND_RESTRICTED_ACCESS 0x00000401
754 #define ZFCP_CFDC_CMND_UPLOAD 0x00010002
756 #define ZFCP_CFDC_DOWNLOAD 0x00000001
757 #define ZFCP_CFDC_UPLOAD 0x00000002
758 #define ZFCP_CFDC_WITH_CONTROL_FILE 0x00010000
760 #define ZFCP_CFDC_DEV_NAME "zfcp_cfdc"
761 #define ZFCP_CFDC_DEV_MAJOR MISC_MAJOR
762 #define ZFCP_CFDC_DEV_MINOR MISC_DYNAMIC_MINOR
764 #define ZFCP_CFDC_MAX_CONTROL_FILE_SIZE 127 * 1024
766 /************************* STRUCTURE DEFINITIONS *****************************/
768 struct zfcp_fsf_req;
770 /* holds various memory pools of an adapter */
771 struct zfcp_adapter_mempool {
772 mempool_t *fsf_req_erp;
773 mempool_t *fsf_req_scsi;
774 mempool_t *fsf_req_abort;
775 mempool_t *fsf_req_status_read;
776 mempool_t *data_status_read;
777 mempool_t *data_gid_pn;
781 * header for CT_IU
783 struct ct_hdr {
784 u8 revision; // 0x01
785 u8 in_id[3]; // 0x00
786 u8 gs_type; // 0xFC Directory Service
787 u8 gs_subtype; // 0x02 Name Server
788 u8 options; // 0x00 single bidirectional exchange
789 u8 reserved0;
790 u16 cmd_rsp_code; // 0x0121 GID_PN, or 0x0100 GA_NXT
791 u16 max_res_size; // <= (4096 - 16) / 4
792 u8 reserved1;
793 u8 reason_code;
794 u8 reason_code_expl;
795 u8 vendor_unique;
796 } __attribute__ ((packed));
798 /* nameserver request CT_IU -- for requests where
799 * a port name is required */
800 struct ct_iu_gid_pn_req {
801 struct ct_hdr header;
802 wwn_t wwpn;
803 } __attribute__ ((packed));
805 /* FS_ACC IU and data unit for GID_PN nameserver request */
806 struct ct_iu_gid_pn_resp {
807 struct ct_hdr header;
808 u32 d_id;
809 } __attribute__ ((packed));
811 typedef void (*zfcp_send_ct_handler_t)(unsigned long);
814 * struct zfcp_send_ct - used to pass parameters to function zfcp_fsf_send_ct
815 * @port: port where the request is sent to
816 * @req: scatter-gather list for request
817 * @resp: scatter-gather list for response
818 * @req_count: number of elements in request scatter-gather list
819 * @resp_count: number of elements in response scatter-gather list
820 * @handler: handler function (called for response to the request)
821 * @handler_data: data passed to handler function
822 * @pool: pointer to memory pool for ct request structure
823 * @timeout: FSF timeout for this request
824 * @timer: timer (e.g. for request initiated by erp)
825 * @completion: completion for synchronization purposes
826 * @status: used to pass error status to calling function
828 struct zfcp_send_ct {
829 struct zfcp_port *port;
830 struct scatterlist *req;
831 struct scatterlist *resp;
832 unsigned int req_count;
833 unsigned int resp_count;
834 zfcp_send_ct_handler_t handler;
835 unsigned long handler_data;
836 mempool_t *pool;
837 int timeout;
838 struct timer_list *timer;
839 struct completion *completion;
840 int status;
843 /* used for name server requests in error recovery */
844 struct zfcp_gid_pn_data {
845 struct zfcp_send_ct ct;
846 struct scatterlist req;
847 struct scatterlist resp;
848 struct ct_iu_gid_pn_req ct_iu_req;
849 struct ct_iu_gid_pn_resp ct_iu_resp;
850 struct zfcp_port *port;
853 typedef void (*zfcp_send_els_handler_t)(unsigned long);
856 * struct zfcp_send_els - used to pass parameters to function zfcp_fsf_send_els
857 * @adapter: adapter where request is sent from
858 * @port: port where ELS is destinated (port reference count has to be increased)
859 * @d_id: destiniation id of port where request is sent to
860 * @req: scatter-gather list for request
861 * @resp: scatter-gather list for response
862 * @req_count: number of elements in request scatter-gather list
863 * @resp_count: number of elements in response scatter-gather list
864 * @handler: handler function (called for response to the request)
865 * @handler_data: data passed to handler function
866 * @timer: timer (e.g. for request initiated by erp)
867 * @completion: completion for synchronization purposes
868 * @ls_code: hex code of ELS command
869 * @status: used to pass error status to calling function
871 struct zfcp_send_els {
872 struct zfcp_adapter *adapter;
873 struct zfcp_port *port;
874 u32 d_id;
875 struct scatterlist *req;
876 struct scatterlist *resp;
877 unsigned int req_count;
878 unsigned int resp_count;
879 zfcp_send_els_handler_t handler;
880 unsigned long handler_data;
881 struct timer_list *timer;
882 struct completion *completion;
883 int ls_code;
884 int status;
887 struct zfcp_qdio_queue {
888 struct qdio_buffer *buffer[QDIO_MAX_BUFFERS_PER_Q]; /* SBALs */
889 u8 free_index; /* index of next free bfr
890 in queue (free_count>0) */
891 atomic_t free_count; /* number of free buffers
892 in queue */
893 rwlock_t queue_lock; /* lock for operations on queue */
894 int distance_from_int; /* SBALs used since PCI indication
895 was last set */
898 struct zfcp_erp_action {
899 struct list_head list;
900 int action; /* requested action code */
901 struct zfcp_adapter *adapter; /* device which should be recovered */
902 struct zfcp_port *port;
903 struct zfcp_unit *unit;
904 volatile u32 status; /* recovery status */
905 u32 step; /* active step of this erp action */
906 struct zfcp_fsf_req *fsf_req; /* fsf request currently pending
907 for this action */
908 struct timer_list timer;
912 struct zfcp_adapter {
913 struct list_head list; /* list of adapters */
914 atomic_t refcount; /* reference count */
915 wait_queue_head_t remove_wq; /* can be used to wait for
916 refcount drop to zero */
917 wwn_t peer_wwnn; /* P2P peer WWNN */
918 wwn_t peer_wwpn; /* P2P peer WWPN */
919 u32 peer_d_id; /* P2P peer D_ID */
920 wwn_t physical_wwpn; /* WWPN of physical port */
921 u32 physical_s_id; /* local FC port ID */
922 struct ccw_device *ccw_device; /* S/390 ccw device */
923 u8 fc_service_class;
924 u32 fc_topology; /* FC topology */
925 u32 hydra_version; /* Hydra version */
926 u32 fsf_lic_version;
927 u32 adapter_features; /* FCP channel features */
928 u32 connection_features; /* host connection features */
929 u32 hardware_version; /* of FCP channel */
930 struct Scsi_Host *scsi_host; /* Pointer to mid-layer */
931 unsigned short scsi_host_no; /* Assigned host number */
932 unsigned char name[9];
933 struct list_head port_list_head; /* remote port list */
934 struct list_head port_remove_lh; /* head of ports to be
935 removed */
936 u32 ports; /* number of remote ports */
937 struct timer_list scsi_er_timer; /* SCSI err recovery watch */
938 struct list_head fsf_req_list_head; /* head of FSF req list */
939 spinlock_t fsf_req_list_lock; /* lock for ops on list of
940 FSF requests */
941 atomic_t fsf_reqs_active; /* # active FSF reqs */
942 struct zfcp_qdio_queue request_queue; /* request queue */
943 u32 fsf_req_seq_no; /* FSF cmnd seq number */
944 wait_queue_head_t request_wq; /* can be used to wait for
945 more avaliable SBALs */
946 struct zfcp_qdio_queue response_queue; /* response queue */
947 rwlock_t abort_lock; /* Protects against SCSI
948 stack abort/command
949 completion races */
950 u16 status_read_failed; /* # failed status reads */
951 atomic_t status; /* status of this adapter */
952 struct list_head erp_ready_head; /* error recovery for this
953 adapter/devices */
954 struct list_head erp_running_head;
955 rwlock_t erp_lock;
956 struct semaphore erp_ready_sem;
957 wait_queue_head_t erp_thread_wqh;
958 wait_queue_head_t erp_done_wqh;
959 struct zfcp_erp_action erp_action; /* pending error recovery */
960 atomic_t erp_counter;
961 u32 erp_total_count; /* total nr of enqueued erp
962 actions */
963 u32 erp_low_mem_count; /* nr of erp actions waiting
964 for memory */
965 struct zfcp_port *nameserver_port; /* adapter's nameserver */
966 debug_info_t *erp_dbf;
967 debug_info_t *hba_dbf;
968 debug_info_t *san_dbf; /* debug feature areas */
969 debug_info_t *scsi_dbf;
970 spinlock_t erp_dbf_lock;
971 spinlock_t hba_dbf_lock;
972 spinlock_t san_dbf_lock;
973 spinlock_t scsi_dbf_lock;
974 struct zfcp_erp_dbf_record erp_dbf_buf;
975 struct zfcp_hba_dbf_record hba_dbf_buf;
976 struct zfcp_san_dbf_record san_dbf_buf;
977 struct zfcp_scsi_dbf_record scsi_dbf_buf;
978 struct zfcp_adapter_mempool pool; /* Adapter memory pools */
979 struct qdio_initialize qdio_init_data; /* for qdio_establish */
980 struct device generic_services; /* directory for WKA ports */
981 struct fc_host_statistics *fc_stats;
982 struct fsf_qtcb_bottom_port *stats_reset_data;
983 unsigned long stats_reset;
987 * the struct device sysfs_device must be at the beginning of this structure.
988 * pointer to struct device is used to free port structure in release function
989 * of the device. don't change!
991 struct zfcp_port {
992 struct device sysfs_device; /* sysfs device */
993 struct fc_rport *rport; /* rport of fc transport class */
994 struct list_head list; /* list of remote ports */
995 atomic_t refcount; /* reference count */
996 wait_queue_head_t remove_wq; /* can be used to wait for
997 refcount drop to zero */
998 struct zfcp_adapter *adapter; /* adapter used to access port */
999 struct list_head unit_list_head; /* head of logical unit list */
1000 struct list_head unit_remove_lh; /* head of luns to be removed
1001 list */
1002 u32 units; /* # of logical units in list */
1003 atomic_t status; /* status of this remote port */
1004 wwn_t wwnn; /* WWNN if known */
1005 wwn_t wwpn; /* WWPN */
1006 u32 d_id; /* D_ID */
1007 u32 handle; /* handle assigned by FSF */
1008 struct zfcp_erp_action erp_action; /* pending error recovery */
1009 atomic_t erp_counter;
1012 /* the struct device sysfs_device must be at the beginning of this structure.
1013 * pointer to struct device is used to free unit structure in release function
1014 * of the device. don't change!
1016 struct zfcp_unit {
1017 struct device sysfs_device; /* sysfs device */
1018 struct list_head list; /* list of logical units */
1019 atomic_t refcount; /* reference count */
1020 wait_queue_head_t remove_wq; /* can be used to wait for
1021 refcount drop to zero */
1022 struct zfcp_port *port; /* remote port of unit */
1023 atomic_t status; /* status of this logical unit */
1024 scsi_lun_t scsi_lun; /* own SCSI LUN */
1025 fcp_lun_t fcp_lun; /* own FCP_LUN */
1026 u32 handle; /* handle assigned by FSF */
1027 struct scsi_device *device; /* scsi device struct pointer */
1028 struct zfcp_erp_action erp_action; /* pending error recovery */
1029 atomic_t erp_counter;
1032 /* FSF request */
1033 struct zfcp_fsf_req {
1034 struct list_head list; /* list of FSF requests */
1035 struct zfcp_adapter *adapter; /* adapter request belongs to */
1036 u8 sbal_number; /* nr of SBALs free for use */
1037 u8 sbal_first; /* first SBAL for this request */
1038 u8 sbal_last; /* last possible SBAL for
1039 this reuest */
1040 u8 sbal_curr; /* current SBAL during creation
1041 of request */
1042 u8 sbale_curr; /* current SBALE during creation
1043 of request */
1044 wait_queue_head_t completion_wq; /* can be used by a routine
1045 to wait for completion */
1046 volatile u32 status; /* status of this request */
1047 u32 fsf_command; /* FSF Command copy */
1048 struct fsf_qtcb *qtcb; /* address of associated QTCB */
1049 u32 seq_no; /* Sequence number of request */
1050 unsigned long data; /* private data of request */
1051 struct zfcp_erp_action *erp_action; /* used if this request is
1052 issued on behalf of erp */
1053 mempool_t *pool; /* used if request was alloacted
1054 from emergency pool */
1055 unsigned long long issued; /* request sent time (STCK) */
1056 struct zfcp_unit *unit;
1059 typedef void zfcp_fsf_req_handler_t(struct zfcp_fsf_req*);
1061 /* driver data */
1062 struct zfcp_data {
1063 struct scsi_host_template scsi_host_template;
1064 atomic_t status; /* Module status flags */
1065 struct list_head adapter_list_head; /* head of adapter list */
1066 struct list_head adapter_remove_lh; /* head of adapters to be
1067 removed */
1068 rwlock_t status_read_lock; /* for status read thread */
1069 struct list_head status_read_receive_head;
1070 struct list_head status_read_send_head;
1071 struct semaphore status_read_sema;
1072 wait_queue_head_t status_read_thread_wqh;
1073 u32 adapters; /* # of adapters in list */
1074 rwlock_t config_lock; /* serialises changes
1075 to adapter/port/unit
1076 lists */
1077 struct semaphore config_sema; /* serialises configuration
1078 changes */
1079 atomic_t loglevel; /* current loglevel */
1080 char init_busid[BUS_ID_SIZE];
1081 wwn_t init_wwpn;
1082 fcp_lun_t init_fcp_lun;
1083 char *driver_version;
1087 * struct zfcp_sg_list - struct describing a scatter-gather list
1088 * @sg: pointer to array of (struct scatterlist)
1089 * @count: number of elements in scatter-gather list
1091 struct zfcp_sg_list {
1092 struct scatterlist *sg;
1093 unsigned int count;
1096 /* number of elements for various memory pools */
1097 #define ZFCP_POOL_FSF_REQ_ERP_NR 1
1098 #define ZFCP_POOL_FSF_REQ_SCSI_NR 1
1099 #define ZFCP_POOL_FSF_REQ_ABORT_NR 1
1100 #define ZFCP_POOL_STATUS_READ_NR ZFCP_STATUS_READS_RECOM
1101 #define ZFCP_POOL_DATA_GID_PN_NR 1
1103 /* struct used by memory pools for fsf_requests */
1104 struct zfcp_fsf_req_pool_element {
1105 struct zfcp_fsf_req fsf_req;
1106 struct fsf_qtcb qtcb;
1109 /********************** ZFCP SPECIFIC DEFINES ********************************/
1111 #define ZFCP_FSFREQ_CLEANUP_TIMEOUT HZ/10
1113 #define ZFCP_KNOWN 0x00000001
1114 #define ZFCP_REQ_AUTO_CLEANUP 0x00000002
1115 #define ZFCP_WAIT_FOR_SBAL 0x00000004
1116 #define ZFCP_REQ_NO_QTCB 0x00000008
1118 #define ZFCP_SET 0x00000100
1119 #define ZFCP_CLEAR 0x00000200
1121 #define ZFCP_INTERRUPTIBLE 1
1122 #define ZFCP_UNINTERRUPTIBLE 0
1124 #ifndef atomic_test_mask
1125 #define atomic_test_mask(mask, target) \
1126 ((atomic_read(target) & mask) == mask)
1127 #endif
1129 extern void _zfcp_hex_dump(char *, int);
1130 #define ZFCP_HEX_DUMP(level, addr, count) \
1131 if (ZFCP_LOG_CHECK(level)) { \
1132 _zfcp_hex_dump(addr, count); \
1135 #define zfcp_get_busid_by_adapter(adapter) (adapter->ccw_device->dev.bus_id)
1136 #define zfcp_get_busid_by_port(port) (zfcp_get_busid_by_adapter(port->adapter))
1137 #define zfcp_get_busid_by_unit(unit) (zfcp_get_busid_by_port(unit->port))
1140 * functions needed for reference/usage counting
1143 static inline void
1144 zfcp_unit_get(struct zfcp_unit *unit)
1146 atomic_inc(&unit->refcount);
1149 static inline void
1150 zfcp_unit_put(struct zfcp_unit *unit)
1152 if (atomic_dec_return(&unit->refcount) == 0)
1153 wake_up(&unit->remove_wq);
1156 static inline void
1157 zfcp_unit_wait(struct zfcp_unit *unit)
1159 wait_event(unit->remove_wq, atomic_read(&unit->refcount) == 0);
1162 static inline void
1163 zfcp_port_get(struct zfcp_port *port)
1165 atomic_inc(&port->refcount);
1168 static inline void
1169 zfcp_port_put(struct zfcp_port *port)
1171 if (atomic_dec_return(&port->refcount) == 0)
1172 wake_up(&port->remove_wq);
1175 static inline void
1176 zfcp_port_wait(struct zfcp_port *port)
1178 wait_event(port->remove_wq, atomic_read(&port->refcount) == 0);
1181 static inline void
1182 zfcp_adapter_get(struct zfcp_adapter *adapter)
1184 atomic_inc(&adapter->refcount);
1187 static inline void
1188 zfcp_adapter_put(struct zfcp_adapter *adapter)
1190 if (atomic_dec_return(&adapter->refcount) == 0)
1191 wake_up(&adapter->remove_wq);
1194 static inline void
1195 zfcp_adapter_wait(struct zfcp_adapter *adapter)
1197 wait_event(adapter->remove_wq, atomic_read(&adapter->refcount) == 0);
1200 #endif /* ZFCP_DEF_H */