blob: 306fcd0cae310bb8e25778de2d410dce50157787 [file] [log] [blame]
Swen Schillig41fa2ad2007-09-07 09:15:31 +02001/*
Andreas Herrmann4a9d2d82006-05-22 18:14:08 +02002 * This file is part of the zfcp device driver for
3 * FCP adapters for IBM System z9 and zSeries.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Andreas Herrmann4a9d2d82006-05-22 18:14:08 +02005 * (C) Copyright IBM Corp. 2002, 2006
Swen Schillig41fa2ad2007-09-07 09:15:31 +02006 *
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)
10 * any later version.
11 *
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.
16 *
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.
20 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#ifndef ZFCP_DEF_H
23#define ZFCP_DEF_H
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025/*************************** INCLUDES *****************************************/
26
27#include <linux/init.h>
28#include <linux/moduleparam.h>
29#include <linux/miscdevice.h>
30#include <linux/major.h>
31#include <linux/blkdev.h>
32#include <linux/delay.h>
33#include <linux/timer.h>
Heiko Carstensdd52e0e2006-09-18 22:28:49 +020034#include <linux/slab.h>
35#include <linux/mempool.h>
36#include <linux/syscalls.h>
FUJITA Tomonorif1346372007-07-30 23:01:32 +090037#include <linux/scatterlist.h>
Heiko Carstensdd52e0e2006-09-18 22:28:49 +020038#include <linux/ioctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <scsi/scsi.h>
40#include <scsi/scsi_tcq.h>
41#include <scsi/scsi_cmnd.h>
42#include <scsi/scsi_device.h>
43#include <scsi/scsi_host.h>
44#include <scsi/scsi_transport.h>
45#include <scsi/scsi_transport_fc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/ccwdev.h>
47#include <asm/qdio.h>
48#include <asm/debug.h>
49#include <asm/ebcdic.h>
Christof Schmitt2b604c92008-03-31 11:15:28 +020050#include "zfcp_dbf.h"
Heiko Carstensdd52e0e2006-09-18 22:28:49 +020051#include "zfcp_fsf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54/********************* GENERAL DEFINES *********************************/
55
56/* zfcp version number, it consists of major, minor, and patch-level number */
Andreas Herrmann58b3ac02006-08-02 11:06:21 +020057#define ZFCP_VERSION "4.8.0"
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59/**
60 * zfcp_sg_to_address - determine kernel address from struct scatterlist
61 * @list: struct scatterlist
62 * Return: kernel address
63 */
64static inline void *
65zfcp_sg_to_address(struct scatterlist *list)
66{
Jens Axboe73fc4f02007-10-23 09:17:53 +020067 return sg_virt(list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068}
69
70/**
71 * zfcp_address_to_sg - set up struct scatterlist from kernel address
72 * @address: kernel address
73 * @list: struct scatterlist
Jens Axboe933543292007-10-26 13:55:40 +020074 * @size: buffer size
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 */
76static inline void
Jens Axboe933543292007-10-26 13:55:40 +020077zfcp_address_to_sg(void *address, struct scatterlist *list, unsigned int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078{
Jens Axboe933543292007-10-26 13:55:40 +020079 sg_set_buf(list, address, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080}
81
Andreas Herrmann06506d02006-05-22 18:18:19 +020082#define REQUEST_LIST_SIZE 128
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084/********************* SCSI SPECIFIC DEFINES *********************************/
Andreas Herrmannf6c0e7a2006-08-02 11:05:52 +020085#define ZFCP_SCSI_ER_TIMEOUT (10*HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87/********************* CIO/QDIO SPECIFIC DEFINES *****************************/
88
89/* Adapter Identification Parameters */
90#define ZFCP_CONTROL_UNIT_TYPE 0x1731
91#define ZFCP_CONTROL_UNIT_MODEL 0x03
92#define ZFCP_DEVICE_TYPE 0x1732
93#define ZFCP_DEVICE_MODEL 0x03
94#define ZFCP_DEVICE_MODEL_PRIV 0x04
Swen Schillig41fa2ad2007-09-07 09:15:31 +020095
Linus Torvalds1da177e2005-04-16 15:20:36 -070096/* allow as many chained SBALs as are supported by hardware */
97#define ZFCP_MAX_SBALS_PER_REQ FSF_MAX_SBALS_PER_REQ
98#define ZFCP_MAX_SBALS_PER_CT_REQ FSF_MAX_SBALS_PER_REQ
99#define ZFCP_MAX_SBALS_PER_ELS_REQ FSF_MAX_SBALS_PER_ELS_REQ
100
101/* DMQ bug workaround: don't use last SBALE */
102#define ZFCP_MAX_SBALES_PER_SBAL (QDIO_MAX_ELEMENTS_PER_BUFFER - 1)
103
104/* index of last SBALE (with respect to DMQ bug workaround) */
105#define ZFCP_LAST_SBALE_PER_SBAL (ZFCP_MAX_SBALES_PER_SBAL - 1)
106
107/* max. number of (data buffer) SBALEs in largest SBAL chain */
108#define ZFCP_MAX_SBALES_PER_REQ \
109 (ZFCP_MAX_SBALS_PER_REQ * ZFCP_MAX_SBALES_PER_SBAL - 2)
110 /* request ID + QTCB in SBALE 0 + 1 of first SBAL in chain */
111
Swen Schillig8d1a0062006-10-12 11:43:44 +0200112#define ZFCP_MAX_SECTORS (ZFCP_MAX_SBALES_PER_REQ * 8)
113 /* max. number of (data buffer) SBALEs in largest SBAL chain
114 multiplied with number of sectors per 4k block */
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116/* FIXME(tune): free space should be one max. SBAL chain plus what? */
117#define ZFCP_QDIO_PCI_INTERVAL (QDIO_MAX_BUFFERS_PER_Q \
118 - (ZFCP_MAX_SBALS_PER_REQ + 4))
119
120#define ZFCP_SBAL_TIMEOUT (5*HZ)
121
Christof Schmitt18edcdb2007-11-05 12:37:45 +0100122#define ZFCP_TYPE2_RECOVERY_TIME 8 /* seconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
124/* queue polling (values in microseconds) */
125#define ZFCP_MAX_INPUT_THRESHOLD 5000 /* FIXME: tune */
126#define ZFCP_MAX_OUTPUT_THRESHOLD 1000 /* FIXME: tune */
127#define ZFCP_MIN_INPUT_THRESHOLD 1 /* ignored by QDIO layer */
128#define ZFCP_MIN_OUTPUT_THRESHOLD 1 /* ignored by QDIO layer */
129
130#define QDIO_SCSI_QFMT 1 /* 1 for FSF */
Swen Schilligb4e44592007-07-18 10:55:13 +0200131#define QBUFF_PER_PAGE (PAGE_SIZE / sizeof(struct qdio_buffer))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133/********************* FSF SPECIFIC DEFINES *********************************/
134
135#define ZFCP_ULP_INFO_VERSION 26
136#define ZFCP_QTCB_VERSION FSF_QTCB_CURRENT_VERSION
137/* ATTENTION: value must not be used by hardware */
138#define FSF_QTCB_UNSOLICITED_STATUS 0x6305
139#define ZFCP_STATUS_READ_FAILED_THRESHOLD 3
140#define ZFCP_STATUS_READS_RECOM FSF_STATUS_READS_RECOM
Andreas Herrmann22753fa2005-06-13 13:15:15 +0200141
142/* Do 1st retry in 1 second, then double the timeout for each following retry */
Christof Schmitt18edcdb2007-11-05 12:37:45 +0100143#define ZFCP_EXCHANGE_CONFIG_DATA_FIRST_SLEEP 1
Andreas Herrmann22753fa2005-06-13 13:15:15 +0200144#define ZFCP_EXCHANGE_CONFIG_DATA_RETRIES 7
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146/* timeout value for "default timer" for fsf requests */
Andreas Herrmann2abbe862006-09-18 22:29:56 +0200147#define ZFCP_FSF_REQUEST_TIMEOUT (60*HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149/*************** FIBRE CHANNEL PROTOCOL SPECIFIC DEFINES ********************/
150
151typedef unsigned long long wwn_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152typedef unsigned long long fcp_lun_t;
153/* data length field may be at variable position in FCP-2 FCP_CMND IU */
154typedef unsigned int fcp_dl_t;
155
156#define ZFCP_FC_SERVICE_CLASS_DEFAULT FSF_CLASS_3
157
158/* timeout for name-server lookup (in seconds) */
159#define ZFCP_NS_GID_PN_TIMEOUT 10
160
161/* largest SCSI command we can process */
162/* FCP-2 (FCP_CMND IU) allows up to (255-3+16) */
163#define ZFCP_MAX_SCSI_CMND_LENGTH 255
164/* maximum number of commands in LUN queue (tagged queueing) */
165#define ZFCP_CMND_PER_LUN 32
166
167/* task attribute values in FCP-2 FCP_CMND IU */
168#define SIMPLE_Q 0
169#define HEAD_OF_Q 1
170#define ORDERED_Q 2
171#define ACA_Q 4
172#define UNTAGGED 5
173
174/* task management flags in FCP-2 FCP_CMND IU */
175#define FCP_CLEAR_ACA 0x40
176#define FCP_TARGET_RESET 0x20
177#define FCP_LOGICAL_UNIT_RESET 0x10
178#define FCP_CLEAR_TASK_SET 0x04
179#define FCP_ABORT_TASK_SET 0x02
180
181#define FCP_CDB_LENGTH 16
182
183#define ZFCP_DID_MASK 0x00FFFFFF
184
185/* FCP(-2) FCP_CMND IU */
186struct fcp_cmnd_iu {
187 fcp_lun_t fcp_lun; /* FCP logical unit number */
188 u8 crn; /* command reference number */
189 u8 reserved0:5; /* reserved */
190 u8 task_attribute:3; /* task attribute */
191 u8 task_management_flags; /* task management flags */
192 u8 add_fcp_cdb_length:6; /* additional FCP_CDB length */
193 u8 rddata:1; /* read data */
194 u8 wddata:1; /* write data */
195 u8 fcp_cdb[FCP_CDB_LENGTH];
196} __attribute__((packed));
197
198/* FCP(-2) FCP_RSP IU */
199struct fcp_rsp_iu {
200 u8 reserved0[10];
201 union {
202 struct {
203 u8 reserved1:3;
204 u8 fcp_conf_req:1;
205 u8 fcp_resid_under:1;
206 u8 fcp_resid_over:1;
207 u8 fcp_sns_len_valid:1;
208 u8 fcp_rsp_len_valid:1;
209 } bits;
210 u8 value;
211 } validity;
212 u8 scsi_status;
213 u32 fcp_resid;
214 u32 fcp_sns_len;
215 u32 fcp_rsp_len;
216} __attribute__((packed));
217
218
219#define RSP_CODE_GOOD 0
220#define RSP_CODE_LENGTH_MISMATCH 1
221#define RSP_CODE_FIELD_INVALID 2
222#define RSP_CODE_RO_MISMATCH 3
223#define RSP_CODE_TASKMAN_UNSUPP 4
224#define RSP_CODE_TASKMAN_FAILED 5
225
226/* see fc-fs */
Andreas Herrmann06506d02006-05-22 18:18:19 +0200227#define LS_RSCN 0x61040000
228#define LS_LOGO 0x05000000
229#define LS_PLOGI 0x03000000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231struct fcp_rscn_head {
232 u8 command;
233 u8 page_length; /* always 0x04 */
234 u16 payload_len;
235} __attribute__((packed));
236
237struct fcp_rscn_element {
238 u8 reserved:2;
239 u8 event_qual:4;
240 u8 addr_format:2;
241 u32 nport_did:24;
242} __attribute__((packed));
243
244#define ZFCP_PORT_ADDRESS 0x0
245#define ZFCP_AREA_ADDRESS 0x1
246#define ZFCP_DOMAIN_ADDRESS 0x2
247#define ZFCP_FABRIC_ADDRESS 0x3
248
249#define ZFCP_PORTS_RANGE_PORT 0xFFFFFF
250#define ZFCP_PORTS_RANGE_AREA 0xFFFF00
251#define ZFCP_PORTS_RANGE_DOMAIN 0xFF0000
252#define ZFCP_PORTS_RANGE_FABRIC 0x000000
253
254#define ZFCP_NO_PORTS_PER_AREA 0x100
255#define ZFCP_NO_PORTS_PER_DOMAIN 0x10000
256#define ZFCP_NO_PORTS_PER_FABRIC 0x1000000
257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258/* see fc-ph */
259struct fcp_logo {
260 u32 command;
261 u32 nport_did;
262 wwn_t nport_wwpn;
263} __attribute__((packed));
264
265/*
266 * FC-FS stuff
267 */
268#define R_A_TOV 10 /* seconds */
269#define ZFCP_ELS_TIMEOUT (2 * R_A_TOV)
270
271#define ZFCP_LS_RLS 0x0f
272#define ZFCP_LS_ADISC 0x52
273#define ZFCP_LS_RPS 0x56
274#define ZFCP_LS_RSCN 0x61
275#define ZFCP_LS_RNID 0x78
276
277struct zfcp_ls_rjt_par {
278 u8 action;
279 u8 reason_code;
280 u8 reason_expl;
281 u8 vendor_unique;
282} __attribute__ ((packed));
283
284struct zfcp_ls_adisc {
285 u8 code;
286 u8 field[3];
287 u32 hard_nport_id;
288 u64 wwpn;
289 u64 wwnn;
290 u32 nport_id;
291} __attribute__ ((packed));
292
293struct zfcp_ls_adisc_acc {
294 u8 code;
295 u8 field[3];
296 u32 hard_nport_id;
297 u64 wwpn;
298 u64 wwnn;
299 u32 nport_id;
300} __attribute__ ((packed));
301
302struct zfcp_rc_entry {
303 u8 code;
304 const char *description;
305};
306
307/*
308 * FC-GS-2 stuff
309 */
310#define ZFCP_CT_REVISION 0x01
311#define ZFCP_CT_DIRECTORY_SERVICE 0xFC
312#define ZFCP_CT_NAME_SERVER 0x02
313#define ZFCP_CT_SYNCHRONOUS 0x00
314#define ZFCP_CT_GID_PN 0x0121
315#define ZFCP_CT_MAX_SIZE 0x1020
316#define ZFCP_CT_ACCEPT 0x8002
317#define ZFCP_CT_REJECT 0x8001
318
319/*
320 * FC-GS-4 stuff
321 */
322#define ZFCP_CT_TIMEOUT (3 * R_A_TOV)
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324/******************** LOGGING MACROS AND DEFINES *****************************/
325
326/*
327 * Logging may be applied on certain kinds of driver operations
328 * independently. Additionally, different log-levels are supported for
329 * each of these areas.
330 */
331
332#define ZFCP_NAME "zfcp"
333
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334/* independent log areas */
335#define ZFCP_LOG_AREA_OTHER 0
336#define ZFCP_LOG_AREA_SCSI 1
337#define ZFCP_LOG_AREA_FSF 2
338#define ZFCP_LOG_AREA_CONFIG 3
339#define ZFCP_LOG_AREA_CIO 4
340#define ZFCP_LOG_AREA_QDIO 5
341#define ZFCP_LOG_AREA_ERP 6
342#define ZFCP_LOG_AREA_FC 7
343
344/* log level values*/
345#define ZFCP_LOG_LEVEL_NORMAL 0
346#define ZFCP_LOG_LEVEL_INFO 1
347#define ZFCP_LOG_LEVEL_DEBUG 2
348#define ZFCP_LOG_LEVEL_TRACE 3
349
350/*
351 * this allows removal of logging code by the preprocessor
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200352 * (the most detailed log level still to be compiled in is specified,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 * higher log levels are removed)
354 */
355#define ZFCP_LOG_LEVEL_LIMIT ZFCP_LOG_LEVEL_TRACE
356
357/* get "loglevel" nibble assignment */
358#define ZFCP_GET_LOG_VALUE(zfcp_lognibble) \
359 ((atomic_read(&zfcp_data.loglevel) >> (zfcp_lognibble<<2)) & 0xF)
360
361/* set "loglevel" nibble */
362#define ZFCP_SET_LOG_NIBBLE(value, zfcp_lognibble) \
363 (value << (zfcp_lognibble << 2))
364
365/* all log-level defaults are combined to generate initial log-level */
366#define ZFCP_LOG_LEVEL_DEFAULTS \
367 (ZFCP_SET_LOG_NIBBLE(ZFCP_LOG_LEVEL_NORMAL, ZFCP_LOG_AREA_OTHER) | \
368 ZFCP_SET_LOG_NIBBLE(ZFCP_LOG_LEVEL_NORMAL, ZFCP_LOG_AREA_SCSI) | \
369 ZFCP_SET_LOG_NIBBLE(ZFCP_LOG_LEVEL_NORMAL, ZFCP_LOG_AREA_FSF) | \
370 ZFCP_SET_LOG_NIBBLE(ZFCP_LOG_LEVEL_NORMAL, ZFCP_LOG_AREA_CONFIG) | \
371 ZFCP_SET_LOG_NIBBLE(ZFCP_LOG_LEVEL_NORMAL, ZFCP_LOG_AREA_CIO) | \
372 ZFCP_SET_LOG_NIBBLE(ZFCP_LOG_LEVEL_NORMAL, ZFCP_LOG_AREA_QDIO) | \
373 ZFCP_SET_LOG_NIBBLE(ZFCP_LOG_LEVEL_NORMAL, ZFCP_LOG_AREA_ERP) | \
374 ZFCP_SET_LOG_NIBBLE(ZFCP_LOG_LEVEL_NORMAL, ZFCP_LOG_AREA_FC))
375
376/* check whether we have the right level for logging */
377#define ZFCP_LOG_CHECK(level) \
378 ((ZFCP_GET_LOG_VALUE(ZFCP_LOG_AREA)) >= level)
379
380/* logging routine for zfcp */
381#define _ZFCP_LOG(fmt, args...) \
Harvey Harrison2a2cf6b2008-04-17 07:46:21 +0200382 printk(KERN_ERR ZFCP_NAME": %s(%d): " fmt, __func__, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 __LINE__ , ##args)
384
385#define ZFCP_LOG(level, fmt, args...) \
386do { \
387 if (ZFCP_LOG_CHECK(level)) \
388 _ZFCP_LOG(fmt, ##args); \
389} while (0)
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391#if ZFCP_LOG_LEVEL_LIMIT < ZFCP_LOG_LEVEL_NORMAL
Heiko Carstens39b083f2006-09-20 15:58:51 +0200392# define ZFCP_LOG_NORMAL(fmt, args...) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393#else
394# define ZFCP_LOG_NORMAL(fmt, args...) \
395do { \
396 if (ZFCP_LOG_CHECK(ZFCP_LOG_LEVEL_NORMAL)) \
397 printk(KERN_ERR ZFCP_NAME": " fmt, ##args); \
398} while (0)
399#endif
400
401#if ZFCP_LOG_LEVEL_LIMIT < ZFCP_LOG_LEVEL_INFO
Heiko Carstens39b083f2006-09-20 15:58:51 +0200402# define ZFCP_LOG_INFO(fmt, args...) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403#else
404# define ZFCP_LOG_INFO(fmt, args...) \
405do { \
406 if (ZFCP_LOG_CHECK(ZFCP_LOG_LEVEL_INFO)) \
407 printk(KERN_ERR ZFCP_NAME": " fmt, ##args); \
408} while (0)
409#endif
410
411#if ZFCP_LOG_LEVEL_LIMIT < ZFCP_LOG_LEVEL_DEBUG
Heiko Carstens39b083f2006-09-20 15:58:51 +0200412# define ZFCP_LOG_DEBUG(fmt, args...) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413#else
414# define ZFCP_LOG_DEBUG(fmt, args...) \
415 ZFCP_LOG(ZFCP_LOG_LEVEL_DEBUG, fmt , ##args)
416#endif
417
418#if ZFCP_LOG_LEVEL_LIMIT < ZFCP_LOG_LEVEL_TRACE
Heiko Carstens39b083f2006-09-20 15:58:51 +0200419# define ZFCP_LOG_TRACE(fmt, args...) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420#else
421# define ZFCP_LOG_TRACE(fmt, args...) \
422 ZFCP_LOG(ZFCP_LOG_LEVEL_TRACE, fmt , ##args)
423#endif
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425/*************** ADAPTER/PORT/UNIT AND FSF_REQ STATUS FLAGS ******************/
426
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200427/*
428 * Note, the leftmost status byte is common among adapter, port
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 * and unit
430 */
431#define ZFCP_COMMON_FLAGS 0xfff00000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433/* common status bits */
434#define ZFCP_STATUS_COMMON_REMOVE 0x80000000
435#define ZFCP_STATUS_COMMON_RUNNING 0x40000000
436#define ZFCP_STATUS_COMMON_ERP_FAILED 0x20000000
437#define ZFCP_STATUS_COMMON_UNBLOCKED 0x10000000
438#define ZFCP_STATUS_COMMON_OPENING 0x08000000
439#define ZFCP_STATUS_COMMON_OPEN 0x04000000
440#define ZFCP_STATUS_COMMON_CLOSING 0x02000000
441#define ZFCP_STATUS_COMMON_ERP_INUSE 0x01000000
442#define ZFCP_STATUS_COMMON_ACCESS_DENIED 0x00800000
Andreas Herrmannd736a272005-06-13 13:23:57 +0200443#define ZFCP_STATUS_COMMON_ACCESS_BOXED 0x00400000
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445/* adapter status */
446#define ZFCP_STATUS_ADAPTER_QDIOUP 0x00000002
447#define ZFCP_STATUS_ADAPTER_REGISTERED 0x00000004
448#define ZFCP_STATUS_ADAPTER_XCONFIG_OK 0x00000008
449#define ZFCP_STATUS_ADAPTER_HOST_CON_INIT 0x00000010
450#define ZFCP_STATUS_ADAPTER_ERP_THREAD_UP 0x00000020
451#define ZFCP_STATUS_ADAPTER_ERP_THREAD_KILL 0x00000080
452#define ZFCP_STATUS_ADAPTER_ERP_PENDING 0x00000100
453#define ZFCP_STATUS_ADAPTER_LINK_UNPLUGGED 0x00000200
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200454#define ZFCP_STATUS_ADAPTER_XPORT_OK 0x00000800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456/* FC-PH/FC-GS well-known address identifiers for generic services */
457#define ZFCP_DID_MANAGEMENT_SERVICE 0xFFFFFA
458#define ZFCP_DID_TIME_SERVICE 0xFFFFFB
459#define ZFCP_DID_DIRECTORY_SERVICE 0xFFFFFC
460#define ZFCP_DID_ALIAS_SERVICE 0xFFFFF8
461#define ZFCP_DID_KEY_DISTRIBUTION_SERVICE 0xFFFFF7
462
463/* remote port status */
464#define ZFCP_STATUS_PORT_PHYS_OPEN 0x00000001
465#define ZFCP_STATUS_PORT_DID_DID 0x00000002
466#define ZFCP_STATUS_PORT_PHYS_CLOSING 0x00000004
467#define ZFCP_STATUS_PORT_NO_WWPN 0x00000008
468#define ZFCP_STATUS_PORT_NO_SCSI_ID 0x00000010
469#define ZFCP_STATUS_PORT_INVALID_WWPN 0x00000020
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471/* for ports with well known addresses */
472#define ZFCP_STATUS_PORT_WKA \
473 (ZFCP_STATUS_PORT_NO_WWPN | \
474 ZFCP_STATUS_PORT_NO_SCSI_ID)
475
476/* logical unit status */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477#define ZFCP_STATUS_UNIT_TEMPORARY 0x00000002
478#define ZFCP_STATUS_UNIT_SHARED 0x00000004
479#define ZFCP_STATUS_UNIT_READONLY 0x00000008
Andreas Herrmannad58f7d2006-03-10 00:56:16 +0100480#define ZFCP_STATUS_UNIT_REGISTERED 0x00000010
Christof Schmitt5f852be2007-05-08 11:16:52 +0200481#define ZFCP_STATUS_UNIT_SCSI_WORK_PENDING 0x00000020
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
483/* FSF request status (this does not have a common part) */
484#define ZFCP_STATUS_FSFREQ_NOT_INIT 0x00000000
485#define ZFCP_STATUS_FSFREQ_POOL 0x00000001
486#define ZFCP_STATUS_FSFREQ_TASK_MANAGEMENT 0x00000002
487#define ZFCP_STATUS_FSFREQ_COMPLETED 0x00000004
488#define ZFCP_STATUS_FSFREQ_ERROR 0x00000008
489#define ZFCP_STATUS_FSFREQ_CLEANUP 0x00000010
490#define ZFCP_STATUS_FSFREQ_ABORTING 0x00000020
491#define ZFCP_STATUS_FSFREQ_ABORTSUCCEEDED 0x00000040
492#define ZFCP_STATUS_FSFREQ_ABORTNOTNEEDED 0x00000080
493#define ZFCP_STATUS_FSFREQ_ABORTED 0x00000100
494#define ZFCP_STATUS_FSFREQ_TMFUNCFAILED 0x00000200
495#define ZFCP_STATUS_FSFREQ_TMFUNCNOTSUPP 0x00000400
496#define ZFCP_STATUS_FSFREQ_RETRY 0x00000800
497#define ZFCP_STATUS_FSFREQ_DISMISSED 0x00001000
498
499/*********************** ERROR RECOVERY PROCEDURE DEFINES ********************/
500
501#define ZFCP_MAX_ERPS 3
502
503#define ZFCP_ERP_FSFREQ_TIMEOUT (30 * HZ)
504#define ZFCP_ERP_MEMWAIT_TIMEOUT HZ
505
506#define ZFCP_STATUS_ERP_TIMEDOUT 0x10000000
507#define ZFCP_STATUS_ERP_CLOSE_ONLY 0x01000000
508#define ZFCP_STATUS_ERP_DISMISSING 0x00100000
509#define ZFCP_STATUS_ERP_DISMISSED 0x00200000
510#define ZFCP_STATUS_ERP_LOWMEM 0x00400000
511
512#define ZFCP_ERP_STEP_UNINITIALIZED 0x00000000
513#define ZFCP_ERP_STEP_FSF_XCONFIG 0x00000001
514#define ZFCP_ERP_STEP_PHYS_PORT_CLOSING 0x00000010
515#define ZFCP_ERP_STEP_PORT_CLOSING 0x00000100
516#define ZFCP_ERP_STEP_NAMESERVER_OPEN 0x00000200
517#define ZFCP_ERP_STEP_NAMESERVER_LOOKUP 0x00000400
518#define ZFCP_ERP_STEP_PORT_OPENING 0x00000800
519#define ZFCP_ERP_STEP_UNIT_CLOSING 0x00001000
520#define ZFCP_ERP_STEP_UNIT_OPENING 0x00002000
521
522/* Ordered by escalation level (necessary for proper erp-code operation) */
523#define ZFCP_ERP_ACTION_REOPEN_ADAPTER 0x4
524#define ZFCP_ERP_ACTION_REOPEN_PORT_FORCED 0x3
525#define ZFCP_ERP_ACTION_REOPEN_PORT 0x2
526#define ZFCP_ERP_ACTION_REOPEN_UNIT 0x1
527
528#define ZFCP_ERP_ACTION_RUNNING 0x1
529#define ZFCP_ERP_ACTION_READY 0x2
530
531#define ZFCP_ERP_SUCCEEDED 0x0
532#define ZFCP_ERP_FAILED 0x1
533#define ZFCP_ERP_CONTINUES 0x2
534#define ZFCP_ERP_EXIT 0x3
535#define ZFCP_ERP_DISMISSED 0x4
536#define ZFCP_ERP_NOMEM 0x5
537
538
539/******************** CFDC SPECIFIC STUFF *****************************/
540
541/* Firewall data channel sense data record */
542struct zfcp_cfdc_sense_data {
543 u32 signature; /* Request signature */
544 u32 devno; /* FCP adapter device number */
545 u32 command; /* Command code */
546 u32 fsf_status; /* FSF request status and status qualifier */
547 u8 fsf_status_qual[FSF_STATUS_QUALIFIER_SIZE];
548 u8 payloads[256]; /* Access conflicts list */
549 u8 control_file[0]; /* Access control table */
550};
551
552#define ZFCP_CFDC_SIGNATURE 0xCFDCACDF
553
554#define ZFCP_CFDC_CMND_DOWNLOAD_NORMAL 0x00010001
555#define ZFCP_CFDC_CMND_DOWNLOAD_FORCE 0x00010101
556#define ZFCP_CFDC_CMND_FULL_ACCESS 0x00000201
557#define ZFCP_CFDC_CMND_RESTRICTED_ACCESS 0x00000401
558#define ZFCP_CFDC_CMND_UPLOAD 0x00010002
559
560#define ZFCP_CFDC_DOWNLOAD 0x00000001
561#define ZFCP_CFDC_UPLOAD 0x00000002
562#define ZFCP_CFDC_WITH_CONTROL_FILE 0x00010000
563
564#define ZFCP_CFDC_DEV_NAME "zfcp_cfdc"
565#define ZFCP_CFDC_DEV_MAJOR MISC_MAJOR
566#define ZFCP_CFDC_DEV_MINOR MISC_DYNAMIC_MINOR
567
568#define ZFCP_CFDC_MAX_CONTROL_FILE_SIZE 127 * 1024
569
570/************************* STRUCTURE DEFINITIONS *****************************/
571
572struct zfcp_fsf_req;
573
574/* holds various memory pools of an adapter */
575struct zfcp_adapter_mempool {
576 mempool_t *fsf_req_erp;
577 mempool_t *fsf_req_scsi;
578 mempool_t *fsf_req_abort;
579 mempool_t *fsf_req_status_read;
580 mempool_t *data_status_read;
581 mempool_t *data_gid_pn;
582};
583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584/*
585 * header for CT_IU
586 */
587struct ct_hdr {
588 u8 revision; // 0x01
589 u8 in_id[3]; // 0x00
590 u8 gs_type; // 0xFC Directory Service
591 u8 gs_subtype; // 0x02 Name Server
592 u8 options; // 0x00 single bidirectional exchange
593 u8 reserved0;
594 u16 cmd_rsp_code; // 0x0121 GID_PN, or 0x0100 GA_NXT
595 u16 max_res_size; // <= (4096 - 16) / 4
596 u8 reserved1;
597 u8 reason_code;
598 u8 reason_code_expl;
599 u8 vendor_unique;
600} __attribute__ ((packed));
601
602/* nameserver request CT_IU -- for requests where
603 * a port name is required */
604struct ct_iu_gid_pn_req {
605 struct ct_hdr header;
606 wwn_t wwpn;
607} __attribute__ ((packed));
608
609/* FS_ACC IU and data unit for GID_PN nameserver request */
610struct ct_iu_gid_pn_resp {
611 struct ct_hdr header;
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200612 u32 d_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613} __attribute__ ((packed));
614
615typedef void (*zfcp_send_ct_handler_t)(unsigned long);
616
617/**
618 * struct zfcp_send_ct - used to pass parameters to function zfcp_fsf_send_ct
619 * @port: port where the request is sent to
620 * @req: scatter-gather list for request
621 * @resp: scatter-gather list for response
622 * @req_count: number of elements in request scatter-gather list
623 * @resp_count: number of elements in response scatter-gather list
624 * @handler: handler function (called for response to the request)
625 * @handler_data: data passed to handler function
626 * @pool: pointer to memory pool for ct request structure
627 * @timeout: FSF timeout for this request
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 * @completion: completion for synchronization purposes
629 * @status: used to pass error status to calling function
630 */
631struct zfcp_send_ct {
632 struct zfcp_port *port;
633 struct scatterlist *req;
634 struct scatterlist *resp;
635 unsigned int req_count;
636 unsigned int resp_count;
637 zfcp_send_ct_handler_t handler;
638 unsigned long handler_data;
639 mempool_t *pool;
640 int timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 struct completion *completion;
642 int status;
643};
644
645/* used for name server requests in error recovery */
646struct zfcp_gid_pn_data {
647 struct zfcp_send_ct ct;
648 struct scatterlist req;
649 struct scatterlist resp;
650 struct ct_iu_gid_pn_req ct_iu_req;
651 struct ct_iu_gid_pn_resp ct_iu_resp;
652 struct zfcp_port *port;
653};
654
655typedef void (*zfcp_send_els_handler_t)(unsigned long);
656
657/**
658 * struct zfcp_send_els - used to pass parameters to function zfcp_fsf_send_els
659 * @adapter: adapter where request is sent from
Andreas Herrmann64b29a132005-06-13 13:18:56 +0200660 * @port: port where ELS is destinated (port reference count has to be increased)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 * @d_id: destiniation id of port where request is sent to
662 * @req: scatter-gather list for request
663 * @resp: scatter-gather list for response
664 * @req_count: number of elements in request scatter-gather list
665 * @resp_count: number of elements in response scatter-gather list
666 * @handler: handler function (called for response to the request)
667 * @handler_data: data passed to handler function
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 * @completion: completion for synchronization purposes
669 * @ls_code: hex code of ELS command
670 * @status: used to pass error status to calling function
671 */
672struct zfcp_send_els {
673 struct zfcp_adapter *adapter;
Andreas Herrmann64b29a132005-06-13 13:18:56 +0200674 struct zfcp_port *port;
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200675 u32 d_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 struct scatterlist *req;
677 struct scatterlist *resp;
678 unsigned int req_count;
679 unsigned int resp_count;
680 zfcp_send_els_handler_t handler;
681 unsigned long handler_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 struct completion *completion;
683 int ls_code;
684 int status;
685};
686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687struct zfcp_qdio_queue {
688 struct qdio_buffer *buffer[QDIO_MAX_BUFFERS_PER_Q]; /* SBALs */
689 u8 free_index; /* index of next free bfr
690 in queue (free_count>0) */
691 atomic_t free_count; /* number of free buffers
692 in queue */
693 rwlock_t queue_lock; /* lock for operations on queue */
694 int distance_from_int; /* SBALs used since PCI indication
695 was last set */
696};
697
698struct zfcp_erp_action {
699 struct list_head list;
700 int action; /* requested action code */
701 struct zfcp_adapter *adapter; /* device which should be recovered */
702 struct zfcp_port *port;
703 struct zfcp_unit *unit;
704 volatile u32 status; /* recovery status */
705 u32 step; /* active step of this erp action */
706 struct zfcp_fsf_req *fsf_req; /* fsf request currently pending
707 for this action */
708 struct timer_list timer;
709};
710
Christof Schmittc9615852008-05-06 11:00:05 +0200711struct fsf_latency_record {
712 u32 min;
713 u32 max;
714 u64 sum;
715};
716
717struct latency_cont {
718 struct fsf_latency_record channel;
719 struct fsf_latency_record fabric;
720 u64 counter;
721};
722
723struct zfcp_latencies {
724 struct latency_cont read;
725 struct latency_cont write;
726 struct latency_cont cmd;
727 spinlock_t lock;
728};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730struct zfcp_adapter {
731 struct list_head list; /* list of adapters */
732 atomic_t refcount; /* reference count */
733 wait_queue_head_t remove_wq; /* can be used to wait for
734 refcount drop to zero */
6f71d9b2005-04-10 23:04:28 -0500735 wwn_t peer_wwnn; /* P2P peer WWNN */
736 wwn_t peer_wwpn; /* P2P peer WWPN */
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200737 u32 peer_d_id; /* P2P peer D_ID */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 struct ccw_device *ccw_device; /* S/390 ccw device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 u32 hydra_version; /* Hydra version */
740 u32 fsf_lic_version;
Maxim Shchetyninaef4a982005-09-13 21:51:16 +0200741 u32 adapter_features; /* FCP channel features */
742 u32 connection_features; /* host connection features */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 u32 hardware_version; /* of FCP channel */
Christof Schmittc9615852008-05-06 11:00:05 +0200744 u16 timer_ticks; /* time int for a tick */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 struct Scsi_Host *scsi_host; /* Pointer to mid-layer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 struct list_head port_list_head; /* remote port list */
747 struct list_head port_remove_lh; /* head of ports to be
748 removed */
749 u32 ports; /* number of remote ports */
Volker Sameskefea9d6c2006-08-02 11:05:16 +0200750 atomic_t reqs_active; /* # active FSF reqs */
751 unsigned long req_no; /* unique FSF req number */
752 struct list_head *req_list; /* list of pending reqs */
753 spinlock_t req_list_lock; /* request list lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 struct zfcp_qdio_queue request_queue; /* request queue */
755 u32 fsf_req_seq_no; /* FSF cmnd seq number */
756 wait_queue_head_t request_wq; /* can be used to wait for
757 more avaliable SBALs */
758 struct zfcp_qdio_queue response_queue; /* response queue */
759 rwlock_t abort_lock; /* Protects against SCSI
760 stack abort/command
761 completion races */
762 u16 status_read_failed; /* # failed status reads */
763 atomic_t status; /* status of this adapter */
764 struct list_head erp_ready_head; /* error recovery for this
765 adapter/devices */
766 struct list_head erp_running_head;
767 rwlock_t erp_lock;
768 struct semaphore erp_ready_sem;
769 wait_queue_head_t erp_thread_wqh;
770 wait_queue_head_t erp_done_wqh;
771 struct zfcp_erp_action erp_action; /* pending error recovery */
772 atomic_t erp_counter;
773 u32 erp_total_count; /* total nr of enqueued erp
774 actions */
775 u32 erp_low_mem_count; /* nr of erp actions waiting
776 for memory */
777 struct zfcp_port *nameserver_port; /* adapter's nameserver */
Martin Peschked79a83d2008-03-27 14:22:00 +0100778 debug_info_t *rec_dbf;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200779 debug_info_t *hba_dbf;
780 debug_info_t *san_dbf; /* debug feature areas */
781 debug_info_t *scsi_dbf;
Martin Peschked79a83d2008-03-27 14:22:00 +0100782 spinlock_t rec_dbf_lock;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200783 spinlock_t hba_dbf_lock;
784 spinlock_t san_dbf_lock;
785 spinlock_t scsi_dbf_lock;
Martin Peschked79a83d2008-03-27 14:22:00 +0100786 struct zfcp_rec_dbf_record rec_dbf_buf;
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200787 struct zfcp_hba_dbf_record hba_dbf_buf;
788 struct zfcp_san_dbf_record san_dbf_buf;
789 struct zfcp_scsi_dbf_record scsi_dbf_buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 struct zfcp_adapter_mempool pool; /* Adapter memory pools */
791 struct qdio_initialize qdio_init_data; /* for qdio_establish */
792 struct device generic_services; /* directory for WKA ports */
Andreas Herrmannf6cd94b2006-01-05 09:59:34 +0100793 struct fc_host_statistics *fc_stats;
794 struct fsf_qtcb_bottom_port *stats_reset_data;
795 unsigned long stats_reset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796};
797
798/*
799 * the struct device sysfs_device must be at the beginning of this structure.
800 * pointer to struct device is used to free port structure in release function
801 * of the device. don't change!
802 */
803struct zfcp_port {
804 struct device sysfs_device; /* sysfs device */
Andreas Herrmann3859f6a2005-08-27 11:07:54 -0700805 struct fc_rport *rport; /* rport of fc transport class */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 struct list_head list; /* list of remote ports */
807 atomic_t refcount; /* reference count */
808 wait_queue_head_t remove_wq; /* can be used to wait for
809 refcount drop to zero */
810 struct zfcp_adapter *adapter; /* adapter used to access port */
811 struct list_head unit_list_head; /* head of logical unit list */
812 struct list_head unit_remove_lh; /* head of luns to be removed
813 list */
814 u32 units; /* # of logical units in list */
815 atomic_t status; /* status of this remote port */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 wwn_t wwnn; /* WWNN if known */
817 wwn_t wwpn; /* WWPN */
Andreas Herrmann13e1e1f2005-09-19 16:56:17 +0200818 u32 d_id; /* D_ID */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 u32 handle; /* handle assigned by FSF */
820 struct zfcp_erp_action erp_action; /* pending error recovery */
821 atomic_t erp_counter;
Ralph Wuerthner75bfc282006-05-22 18:24:33 +0200822 u32 maxframe_size;
823 u32 supported_classes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824};
825
826/* the struct device sysfs_device must be at the beginning of this structure.
827 * pointer to struct device is used to free unit structure in release function
828 * of the device. don't change!
829 */
830struct zfcp_unit {
831 struct device sysfs_device; /* sysfs device */
832 struct list_head list; /* list of logical units */
833 atomic_t refcount; /* reference count */
834 wait_queue_head_t remove_wq; /* can be used to wait for
835 refcount drop to zero */
836 struct zfcp_port *port; /* remote port of unit */
837 atomic_t status; /* status of this logical unit */
Andreas Herrmann06506d02006-05-22 18:18:19 +0200838 unsigned int scsi_lun; /* own SCSI LUN */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 fcp_lun_t fcp_lun; /* own FCP_LUN */
840 u32 handle; /* handle assigned by FSF */
841 struct scsi_device *device; /* scsi device struct pointer */
842 struct zfcp_erp_action erp_action; /* pending error recovery */
843 atomic_t erp_counter;
Christof Schmittc9615852008-05-06 11:00:05 +0200844 struct zfcp_latencies latencies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845};
846
847/* FSF request */
848struct zfcp_fsf_req {
849 struct list_head list; /* list of FSF requests */
Volker Sameskefea9d6c2006-08-02 11:05:16 +0200850 unsigned long req_id; /* unique request ID */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 struct zfcp_adapter *adapter; /* adapter request belongs to */
852 u8 sbal_number; /* nr of SBALs free for use */
853 u8 sbal_first; /* first SBAL for this request */
854 u8 sbal_last; /* last possible SBAL for
855 this reuest */
856 u8 sbal_curr; /* current SBAL during creation
857 of request */
858 u8 sbale_curr; /* current SBALE during creation
859 of request */
860 wait_queue_head_t completion_wq; /* can be used by a routine
861 to wait for completion */
862 volatile u32 status; /* status of this request */
863 u32 fsf_command; /* FSF Command copy */
864 struct fsf_qtcb *qtcb; /* address of associated QTCB */
865 u32 seq_no; /* Sequence number of request */
Swen Schillig41fa2ad2007-09-07 09:15:31 +0200866 unsigned long data; /* private data of request */
867 struct timer_list timer; /* used for erp or scsi er */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 struct zfcp_erp_action *erp_action; /* used if this request is
869 issued on behalf of erp */
870 mempool_t *pool; /* used if request was alloacted
871 from emergency pool */
Maxim Shchetynin8a36e452005-09-13 21:50:38 +0200872 unsigned long long issued; /* request sent time (STCK) */
Andreas Herrmann059c97d2005-09-13 21:47:52 +0200873 struct zfcp_unit *unit;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874};
875
876typedef void zfcp_fsf_req_handler_t(struct zfcp_fsf_req*);
877
878/* driver data */
879struct zfcp_data {
880 struct scsi_host_template scsi_host_template;
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200881 struct scsi_transport_template *scsi_transport_template;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 atomic_t status; /* Module status flags */
883 struct list_head adapter_list_head; /* head of adapter list */
884 struct list_head adapter_remove_lh; /* head of adapters to be
885 removed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 u32 adapters; /* # of adapters in list */
887 rwlock_t config_lock; /* serialises changes
888 to adapter/port/unit
889 lists */
890 struct semaphore config_sema; /* serialises configuration
891 changes */
892 atomic_t loglevel; /* current loglevel */
893 char init_busid[BUS_ID_SIZE];
894 wwn_t init_wwpn;
895 fcp_lun_t init_fcp_lun;
896 char *driver_version;
Christoph Lametere18b8902006-12-06 20:33:20 -0800897 struct kmem_cache *fsf_req_qtcb_cache;
898 struct kmem_cache *sr_buffer_cache;
899 struct kmem_cache *gid_pn_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900};
901
902/**
903 * struct zfcp_sg_list - struct describing a scatter-gather list
904 * @sg: pointer to array of (struct scatterlist)
905 * @count: number of elements in scatter-gather list
906 */
907struct zfcp_sg_list {
908 struct scatterlist *sg;
909 unsigned int count;
910};
911
912/* number of elements for various memory pools */
913#define ZFCP_POOL_FSF_REQ_ERP_NR 1
914#define ZFCP_POOL_FSF_REQ_SCSI_NR 1
915#define ZFCP_POOL_FSF_REQ_ABORT_NR 1
916#define ZFCP_POOL_STATUS_READ_NR ZFCP_STATUS_READS_RECOM
917#define ZFCP_POOL_DATA_GID_PN_NR 1
918
919/* struct used by memory pools for fsf_requests */
Heiko Carstensdd52e0e2006-09-18 22:28:49 +0200920struct zfcp_fsf_req_qtcb {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 struct zfcp_fsf_req fsf_req;
922 struct fsf_qtcb qtcb;
923};
924
925/********************** ZFCP SPECIFIC DEFINES ********************************/
926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927#define ZFCP_REQ_AUTO_CLEANUP 0x00000002
928#define ZFCP_WAIT_FOR_SBAL 0x00000004
929#define ZFCP_REQ_NO_QTCB 0x00000008
930
931#define ZFCP_SET 0x00000100
932#define ZFCP_CLEAR 0x00000200
933
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934#ifndef atomic_test_mask
935#define atomic_test_mask(mask, target) \
936 ((atomic_read(target) & mask) == mask)
937#endif
938
939extern void _zfcp_hex_dump(char *, int);
940#define ZFCP_HEX_DUMP(level, addr, count) \
941 if (ZFCP_LOG_CHECK(level)) { \
942 _zfcp_hex_dump(addr, count); \
943 }
944
945#define zfcp_get_busid_by_adapter(adapter) (adapter->ccw_device->dev.bus_id)
946#define zfcp_get_busid_by_port(port) (zfcp_get_busid_by_adapter(port->adapter))
947#define zfcp_get_busid_by_unit(unit) (zfcp_get_busid_by_port(unit->port))
948
949/*
Heiko Carstensca2d02c2007-05-08 11:17:54 +0200950 * Helper functions for request ID management.
951 */
952static inline int zfcp_reqlist_hash(unsigned long req_id)
953{
954 return req_id % REQUEST_LIST_SIZE;
955}
956
957static inline void zfcp_reqlist_add(struct zfcp_adapter *adapter,
958 struct zfcp_fsf_req *fsf_req)
959{
960 unsigned int idx;
961
962 idx = zfcp_reqlist_hash(fsf_req->req_id);
963 list_add_tail(&fsf_req->list, &adapter->req_list[idx]);
964}
965
966static inline void zfcp_reqlist_remove(struct zfcp_adapter *adapter,
967 struct zfcp_fsf_req *fsf_req)
968{
969 list_del(&fsf_req->list);
970}
971
972static inline struct zfcp_fsf_req *
973zfcp_reqlist_find(struct zfcp_adapter *adapter, unsigned long req_id)
974{
975 struct zfcp_fsf_req *request;
976 unsigned int idx;
977
978 idx = zfcp_reqlist_hash(req_id);
979 list_for_each_entry(request, &adapter->req_list[idx], list)
980 if (request->req_id == req_id)
981 return request;
982 return NULL;
983}
984
Heiko Carstensd1ad09d2007-12-20 12:30:22 +0100985static inline struct zfcp_fsf_req *
986zfcp_reqlist_find_safe(struct zfcp_adapter *adapter, struct zfcp_fsf_req *req)
987{
988 struct zfcp_fsf_req *request;
989 unsigned int idx;
990
991 for (idx = 0; idx < REQUEST_LIST_SIZE; idx++) {
992 list_for_each_entry(request, &adapter->req_list[idx], list)
993 if (request == req)
994 return request;
995 }
996 return NULL;
997}
998
Heiko Carstensca2d02c2007-05-08 11:17:54 +0200999/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 * functions needed for reference/usage counting
1001 */
1002
1003static inline void
1004zfcp_unit_get(struct zfcp_unit *unit)
1005{
1006 atomic_inc(&unit->refcount);
1007}
1008
1009static inline void
1010zfcp_unit_put(struct zfcp_unit *unit)
1011{
1012 if (atomic_dec_return(&unit->refcount) == 0)
1013 wake_up(&unit->remove_wq);
1014}
1015
1016static inline void
1017zfcp_unit_wait(struct zfcp_unit *unit)
1018{
1019 wait_event(unit->remove_wq, atomic_read(&unit->refcount) == 0);
1020}
1021
1022static inline void
1023zfcp_port_get(struct zfcp_port *port)
1024{
1025 atomic_inc(&port->refcount);
1026}
1027
1028static inline void
1029zfcp_port_put(struct zfcp_port *port)
1030{
1031 if (atomic_dec_return(&port->refcount) == 0)
1032 wake_up(&port->remove_wq);
1033}
1034
1035static inline void
1036zfcp_port_wait(struct zfcp_port *port)
1037{
1038 wait_event(port->remove_wq, atomic_read(&port->refcount) == 0);
1039}
1040
1041static inline void
1042zfcp_adapter_get(struct zfcp_adapter *adapter)
1043{
1044 atomic_inc(&adapter->refcount);
1045}
1046
1047static inline void
1048zfcp_adapter_put(struct zfcp_adapter *adapter)
1049{
1050 if (atomic_dec_return(&adapter->refcount) == 0)
1051 wake_up(&adapter->remove_wq);
1052}
1053
1054static inline void
1055zfcp_adapter_wait(struct zfcp_adapter *adapter)
1056{
1057 wait_event(adapter->remove_wq, atomic_read(&adapter->refcount) == 0);
1058}
1059
1060#endif /* ZFCP_DEF_H */