[SCSI] qla4xxx: Code Clean up - remove "marker_needed"
[firefly-linux-kernel-4.4.55.git] / drivers / scsi / qla4xxx / ql4_def.h
1 /*
2  * QLogic iSCSI HBA Driver
3  * Copyright (c)  2003-2006 QLogic Corporation
4  *
5  * See LICENSE.qla4xxx for copyright and licensing details.
6  */
7
8 #ifndef __QL4_DEF_H
9 #define __QL4_DEF_H
10
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/types.h>
14 #include <linux/module.h>
15 #include <linux/list.h>
16 #include <linux/pci.h>
17 #include <linux/dma-mapping.h>
18 #include <linux/sched.h>
19 #include <linux/slab.h>
20 #include <linux/dmapool.h>
21 #include <linux/mempool.h>
22 #include <linux/spinlock.h>
23 #include <linux/workqueue.h>
24 #include <linux/delay.h>
25 #include <linux/interrupt.h>
26 #include <linux/mutex.h>
27
28 #include <net/tcp.h>
29 #include <scsi/scsi.h>
30 #include <scsi/scsi_host.h>
31 #include <scsi/scsi_device.h>
32 #include <scsi/scsi_cmnd.h>
33 #include <scsi/scsi_transport.h>
34 #include <scsi/scsi_transport_iscsi.h>
35
36
37 #ifndef PCI_DEVICE_ID_QLOGIC_ISP4010
38 #define PCI_DEVICE_ID_QLOGIC_ISP4010    0x4010
39 #endif
40
41 #ifndef PCI_DEVICE_ID_QLOGIC_ISP4022
42 #define PCI_DEVICE_ID_QLOGIC_ISP4022    0x4022
43 #endif
44
45 #ifndef PCI_DEVICE_ID_QLOGIC_ISP4032
46 #define PCI_DEVICE_ID_QLOGIC_ISP4032    0x4032
47 #endif
48
49 #define QLA_SUCCESS                     0
50 #define QLA_ERROR                       1
51
52 /*
53  * Data bit definitions
54  */
55 #define BIT_0   0x1
56 #define BIT_1   0x2
57 #define BIT_2   0x4
58 #define BIT_3   0x8
59 #define BIT_4   0x10
60 #define BIT_5   0x20
61 #define BIT_6   0x40
62 #define BIT_7   0x80
63 #define BIT_8   0x100
64 #define BIT_9   0x200
65 #define BIT_10  0x400
66 #define BIT_11  0x800
67 #define BIT_12  0x1000
68 #define BIT_13  0x2000
69 #define BIT_14  0x4000
70 #define BIT_15  0x8000
71 #define BIT_16  0x10000
72 #define BIT_17  0x20000
73 #define BIT_18  0x40000
74 #define BIT_19  0x80000
75 #define BIT_20  0x100000
76 #define BIT_21  0x200000
77 #define BIT_22  0x400000
78 #define BIT_23  0x800000
79 #define BIT_24  0x1000000
80 #define BIT_25  0x2000000
81 #define BIT_26  0x4000000
82 #define BIT_27  0x8000000
83 #define BIT_28  0x10000000
84 #define BIT_29  0x20000000
85 #define BIT_30  0x40000000
86 #define BIT_31  0x80000000
87
88 /*
89  * Host adapter default definitions
90  ***********************************/
91 #define MAX_HBAS                16
92 #define MAX_BUSES               1
93 #define MAX_TARGETS             (MAX_PRST_DEV_DB_ENTRIES +  MAX_DEV_DB_ENTRIES)
94 #define MAX_LUNS                0xffff
95 #define MAX_AEN_ENTRIES         256 /* should be > EXT_DEF_MAX_AEN_QUEUE */
96 #define MAX_DDB_ENTRIES         (MAX_PRST_DEV_DB_ENTRIES + MAX_DEV_DB_ENTRIES)
97 #define MAX_PDU_ENTRIES         32
98 #define INVALID_ENTRY           0xFFFF
99 #define MAX_CMDS_TO_RISC        1024
100 #define MAX_SRBS                MAX_CMDS_TO_RISC
101 #define MBOX_AEN_REG_COUNT      5
102 #define MAX_INIT_RETRIES        5
103
104 /*
105  * Buffer sizes
106  */
107 #define REQUEST_QUEUE_DEPTH             MAX_CMDS_TO_RISC
108 #define RESPONSE_QUEUE_DEPTH            64
109 #define QUEUE_SIZE                      64
110 #define DMA_BUFFER_SIZE                 512
111
112 /*
113  * Misc
114  */
115 #define MAC_ADDR_LEN                    6       /* in bytes */
116 #define IP_ADDR_LEN                     4       /* in bytes */
117 #define IPv6_ADDR_LEN                   16      /* IPv6 address size */
118 #define DRIVER_NAME                     "qla4xxx"
119
120 #define MAX_LINKED_CMDS_PER_LUN         3
121 #define MAX_REQS_SERVICED_PER_INTR      16
122
123 #define ISCSI_IPADDR_SIZE               4       /* IP address size */
124 #define ISCSI_ALIAS_SIZE                32      /* ISCSI Alias name size */
125 #define ISCSI_NAME_SIZE                 0xE0    /* ISCSI Name size */
126
127 #define LSDW(x) ((u32)((u64)(x)))
128 #define MSDW(x) ((u32)((((u64)(x)) >> 16) >> 16))
129
130 /*
131  * Retry & Timeout Values
132  */
133 #define MBOX_TOV                        60
134 #define SOFT_RESET_TOV                  30
135 #define RESET_INTR_TOV                  3
136 #define SEMAPHORE_TOV                   10
137 #define ADAPTER_INIT_TOV                120
138 #define ADAPTER_RESET_TOV               180
139 #define EXTEND_CMD_TOV                  60
140 #define WAIT_CMD_TOV                    30
141 #define EH_WAIT_CMD_TOV                 120
142 #define FIRMWARE_UP_TOV                 60
143 #define RESET_FIRMWARE_TOV              30
144 #define LOGOUT_TOV                      10
145 #define IOCB_TOV_MARGIN                 10
146 #define RELOGIN_TOV                     18
147 #define ISNS_DEREG_TOV                  5
148
149 #define MAX_RESET_HA_RETRIES            2
150
151 /*
152  * SCSI Request Block structure  (srb)  that is placed
153  * on cmd->SCp location of every I/O     [We have 22 bytes available]
154  */
155 struct srb {
156         struct list_head list;  /* (8)   */
157         struct scsi_qla_host *ha;       /* HA the SP is queued on */
158         struct ddb_entry        *ddb;
159         uint16_t flags;         /* (1) Status flags. */
160
161 #define SRB_DMA_VALID           BIT_3   /* DMA Buffer mapped. */
162 #define SRB_GOT_SENSE           BIT_4   /* sense data recieved. */
163         uint8_t state;          /* (1) Status flags. */
164
165 #define SRB_NO_QUEUE_STATE       0      /* Request is in between states */
166 #define SRB_FREE_STATE           1
167 #define SRB_ACTIVE_STATE         3
168 #define SRB_ACTIVE_TIMEOUT_STATE 4
169 #define SRB_SUSPENDED_STATE      7      /* Request in suspended state */
170
171         struct scsi_cmnd *cmd;  /* (4) SCSI command block */
172         dma_addr_t dma_handle;  /* (4) for unmap of single transfers */
173         atomic_t ref_count;     /* reference count for this srb */
174         uint32_t fw_ddb_index;
175         uint8_t err_id;         /* error id */
176 #define SRB_ERR_PORT       1    /* Request failed because "port down" */
177 #define SRB_ERR_LOOP       2    /* Request failed because "loop down" */
178 #define SRB_ERR_DEVICE     3    /* Request failed because "device error" */
179 #define SRB_ERR_OTHER      4
180
181         uint16_t reserved;
182         uint16_t iocb_tov;
183         uint16_t iocb_cnt;      /* Number of used iocbs */
184         uint16_t cc_stat;
185         u_long r_start;         /* Time we recieve a cmd from OS */
186         u_long u_start;         /* Time when we handed the cmd to F/W */
187
188         /* Used for extended sense / status continuation */
189         uint8_t *req_sense_ptr;
190         uint16_t req_sense_len;
191         uint16_t reserved2;
192 };
193
194 /*
195  * Asynchronous Event Queue structure
196  */
197 struct aen {
198         uint32_t mbox_sts[MBOX_AEN_REG_COUNT];
199 };
200
201 struct ql4_aen_log {
202         int count;
203         struct aen entry[MAX_AEN_ENTRIES];
204 };
205
206 /*
207  * Device Database (DDB) structure
208  */
209 struct ddb_entry {
210         struct list_head list;  /* ddb list */
211         struct scsi_qla_host *ha;
212         struct iscsi_cls_session *sess;
213         struct iscsi_cls_conn *conn;
214
215         atomic_t state;         /* DDB State */
216
217         unsigned long flags;    /* DDB Flags */
218
219         unsigned long dev_scan_wait_to_start_relogin;
220         unsigned long dev_scan_wait_to_complete_relogin;
221
222         uint16_t os_target_id;  /* Target ID */
223         uint16_t fw_ddb_index;  /* DDB firmware index */
224         uint16_t options;
225         uint32_t fw_ddb_device_state; /* F/W Device State  -- see ql4_fw.h */
226
227         uint32_t CmdSn;
228         uint16_t target_session_id;
229         uint16_t connection_id;
230         uint16_t exe_throttle;  /* Max mumber of cmds outstanding
231                                  * simultaneously */
232         uint16_t task_mgmt_timeout; /* Min time for task mgmt cmds to
233                                      * complete */
234         uint16_t default_relogin_timeout; /*  Max time to wait for
235                                            *  relogin to complete */
236         uint16_t tcp_source_port_num;
237         uint32_t default_time2wait; /* Default Min time between
238                                      * relogins (+aens) */
239
240         atomic_t port_down_timer; /* Device connection timer */
241         atomic_t retry_relogin_timer; /* Min Time between relogins
242                                        * (4000 only) */
243         atomic_t relogin_timer; /* Max Time to wait for relogin to complete */
244         atomic_t relogin_retry_count; /* Num of times relogin has been
245                                        * retried */
246
247         uint16_t port;
248         uint32_t tpgt;
249         uint8_t ip_addr[IP_ADDR_LEN];
250         uint8_t iscsi_name[ISCSI_NAME_SIZE];    /* 72 x48 */
251         uint8_t iscsi_alias[0x20];
252         uint8_t isid[6];
253         uint16_t iscsi_max_burst_len;
254         uint16_t iscsi_max_outsnd_r2t;
255         uint16_t iscsi_first_burst_len;
256         uint16_t iscsi_max_rcv_data_seg_len;
257         uint16_t iscsi_max_snd_data_seg_len;
258
259         struct in6_addr remote_ipv6_addr;
260         struct in6_addr link_local_ipv6_addr;
261 };
262
263 /*
264  * DDB states.
265  */
266 #define DDB_STATE_DEAD          0       /* We can no longer talk to
267                                          * this device */
268 #define DDB_STATE_ONLINE        1       /* Device ready to accept
269                                          * commands */
270 #define DDB_STATE_MISSING       2       /* Device logged off, trying
271                                          * to re-login */
272
273 /*
274  * DDB flags.
275  */
276 #define DF_RELOGIN              0       /* Relogin to device */
277 #define DF_NO_RELOGIN           1       /* Do not relogin if IOCTL
278                                          * logged it out */
279 #define DF_ISNS_DISCOVERED      2       /* Device was discovered via iSNS */
280 #define DF_FO_MASKED            3
281
282
283 #include "ql4_fw.h"
284 #include "ql4_nvram.h"
285
286 /*
287  * Linux Host Adapter structure
288  */
289 struct scsi_qla_host {
290         /* Linux adapter configuration data */
291         unsigned long flags;
292
293 #define AF_ONLINE                       0 /* 0x00000001 */
294 #define AF_INIT_DONE                    1 /* 0x00000002 */
295 #define AF_MBOX_COMMAND                 2 /* 0x00000004 */
296 #define AF_MBOX_COMMAND_DONE            3 /* 0x00000008 */
297 #define AF_INTERRUPTS_ON                6 /* 0x00000040 */
298 #define AF_GET_CRASH_RECORD             7 /* 0x00000080 */
299 #define AF_LINK_UP                      8 /* 0x00000100 */
300 #define AF_IRQ_ATTACHED                 10 /* 0x00000400 */
301 #define AF_DISABLE_ACB_COMPLETE         11 /* 0x00000800 */
302
303         unsigned long dpc_flags;
304
305 #define DPC_RESET_HA                    1 /* 0x00000002 */
306 #define DPC_RETRY_RESET_HA              2 /* 0x00000004 */
307 #define DPC_RELOGIN_DEVICE              3 /* 0x00000008 */
308 #define DPC_RESET_HA_DESTROY_DDB_LIST   4 /* 0x00000010 */
309 #define DPC_RESET_HA_INTR               5 /* 0x00000020 */
310 #define DPC_ISNS_RESTART                7 /* 0x00000080 */
311 #define DPC_AEN                         9 /* 0x00000200 */
312 #define DPC_GET_DHCP_IP_ADDR            15 /* 0x00008000 */
313 #define DPC_LINK_CHANGED                18 /* 0x00040000 */
314
315         struct Scsi_Host *host; /* pointer to host data */
316         uint32_t tot_ddbs;
317
318         uint16_t        iocb_cnt;
319
320         /* SRB cache. */
321 #define SRB_MIN_REQ     128
322         mempool_t *srb_mempool;
323
324         /* pci information */
325         struct pci_dev *pdev;
326
327         struct isp_reg __iomem *reg; /* Base I/O address */
328         unsigned long pio_address;
329         unsigned long pio_length;
330 #define MIN_IOBASE_LEN          0x100
331
332         uint16_t req_q_count;
333         uint8_t rsvd1[2];
334
335         unsigned long host_no;
336
337         /* NVRAM registers */
338         struct eeprom_data *nvram;
339         spinlock_t hardware_lock ____cacheline_aligned;
340         uint32_t   eeprom_cmd_data;
341
342         /* Counters for general statistics */
343         uint64_t isr_count;
344         uint64_t adapter_error_count;
345         uint64_t device_error_count;
346         uint64_t total_io_count;
347         uint64_t total_mbytes_xferred;
348         uint64_t link_failure_count;
349         uint64_t invalid_crc_count;
350         uint32_t bytes_xfered;
351         uint32_t spurious_int_count;
352         uint32_t aborted_io_count;
353         uint32_t io_timeout_count;
354         uint32_t mailbox_timeout_count;
355         uint32_t seconds_since_last_intr;
356         uint32_t seconds_since_last_heartbeat;
357         uint32_t mac_index;
358
359         /* Info Needed for Management App */
360         /* --- From GetFwVersion --- */
361         uint32_t firmware_version[2];
362         uint32_t patch_number;
363         uint32_t build_number;
364         uint32_t board_id;
365
366         /* --- From Init_FW --- */
367         /* init_cb_t *init_cb; */
368         uint16_t firmware_options;
369         uint16_t tcp_options;
370         uint8_t ip_address[IP_ADDR_LEN];
371         uint8_t subnet_mask[IP_ADDR_LEN];
372         uint8_t gateway[IP_ADDR_LEN];
373         uint8_t alias[32];
374         uint8_t name_string[256];
375         uint8_t heartbeat_interval;
376         uint8_t rsvd;
377
378         /* --- From FlashSysInfo --- */
379         uint8_t my_mac[MAC_ADDR_LEN];
380         uint8_t serial_number[16];
381
382         /* --- From GetFwState --- */
383         uint32_t firmware_state;
384         uint32_t addl_fw_state;
385
386         /* Linux kernel thread */
387         struct workqueue_struct *dpc_thread;
388         struct work_struct dpc_work;
389
390         /* Linux timer thread */
391         struct timer_list timer;
392         uint32_t timer_active;
393
394         /* Recovery Timers */
395         uint32_t port_down_retry_count;
396         uint32_t discovery_wait;
397         atomic_t check_relogin_timeouts;
398         uint32_t retry_reset_ha_cnt;
399         uint32_t isp_reset_timer;       /* reset test timer */
400         uint32_t nic_reset_timer;       /* simulated nic reset test timer */
401         int eh_start;
402         struct list_head free_srb_q;
403         uint16_t free_srb_q_count;
404         uint16_t num_srbs_allocated;
405
406         /* DMA Memory Block */
407         void *queues;
408         dma_addr_t queues_dma;
409         unsigned long queues_len;
410
411 #define MEM_ALIGN_VALUE \
412             ((max(REQUEST_QUEUE_DEPTH, RESPONSE_QUEUE_DEPTH)) * \
413              sizeof(struct queue_entry))
414         /* request and response queue variables */
415         dma_addr_t request_dma;
416         struct queue_entry *request_ring;
417         struct queue_entry *request_ptr;
418         dma_addr_t response_dma;
419         struct queue_entry *response_ring;
420         struct queue_entry *response_ptr;
421         dma_addr_t shadow_regs_dma;
422         struct shadow_regs *shadow_regs;
423         uint16_t request_in;    /* Current indexes. */
424         uint16_t request_out;
425         uint16_t response_in;
426         uint16_t response_out;
427
428         /* aen queue variables */
429         uint16_t aen_q_count;   /* Number of available aen_q entries */
430         uint16_t aen_in;        /* Current indexes */
431         uint16_t aen_out;
432         struct aen aen_q[MAX_AEN_ENTRIES];
433
434         struct ql4_aen_log aen_log;/* tracks all aens */
435
436         /* This mutex protects several threads to do mailbox commands
437          * concurrently.
438          */
439         struct mutex  mbox_sem;
440
441         /* temporary mailbox status registers */
442         volatile uint8_t mbox_status_count;
443         volatile uint32_t mbox_status[MBOX_REG_COUNT];
444
445         /* local device database list (contains internal ddb entries) */
446         struct list_head ddb_list;
447
448         /* Map ddb_list entry by FW ddb index */
449         struct ddb_entry *fw_ddb_index_map[MAX_DDB_ENTRIES];
450
451         /* Saved srb for status continuation entry processing */
452         struct srb *status_srb;
453
454         /* IPv6 support info from InitFW */
455         uint8_t acb_version;
456         uint8_t ipv4_addr_state;
457         uint16_t ipv4_options;
458
459         uint32_t resvd2;
460         uint32_t ipv6_options;
461         uint32_t ipv6_addl_options;
462         uint8_t ipv6_link_local_state;
463         uint8_t ipv6_addr0_state;
464         uint8_t ipv6_addr1_state;
465         uint8_t ipv6_default_router_state;
466         struct in6_addr ipv6_link_local_addr;
467         struct in6_addr ipv6_addr0;
468         struct in6_addr ipv6_addr1;
469         struct in6_addr ipv6_default_router_addr;
470 };
471
472 static inline int is_ipv4_enabled(struct scsi_qla_host *ha)
473 {
474         return ((ha->ipv4_options & IPOPT_IPv4_PROTOCOL_ENABLE) != 0);
475 }
476
477 static inline int is_ipv6_enabled(struct scsi_qla_host *ha)
478 {
479         return ((ha->ipv6_options & IPV6_OPT_IPV6_PROTOCOL_ENABLE) != 0);
480 }
481
482 static inline int is_qla4010(struct scsi_qla_host *ha)
483 {
484         return ha->pdev->device == PCI_DEVICE_ID_QLOGIC_ISP4010;
485 }
486
487 static inline int is_qla4022(struct scsi_qla_host *ha)
488 {
489         return ha->pdev->device == PCI_DEVICE_ID_QLOGIC_ISP4022;
490 }
491
492 static inline int is_qla4032(struct scsi_qla_host *ha)
493 {
494         return ha->pdev->device == PCI_DEVICE_ID_QLOGIC_ISP4032;
495 }
496
497 static inline int adapter_up(struct scsi_qla_host *ha)
498 {
499         return (test_bit(AF_ONLINE, &ha->flags) != 0) &&
500                 (test_bit(AF_LINK_UP, &ha->flags) != 0);
501 }
502
503 static inline struct scsi_qla_host* to_qla_host(struct Scsi_Host *shost)
504 {
505         return (struct scsi_qla_host *)shost->hostdata;
506 }
507
508 static inline void __iomem* isp_semaphore(struct scsi_qla_host *ha)
509 {
510         return (is_qla4010(ha) ?
511                 &ha->reg->u1.isp4010.nvram :
512                 &ha->reg->u1.isp4022.semaphore);
513 }
514
515 static inline void __iomem* isp_nvram(struct scsi_qla_host *ha)
516 {
517         return (is_qla4010(ha) ?
518                 &ha->reg->u1.isp4010.nvram :
519                 &ha->reg->u1.isp4022.nvram);
520 }
521
522 static inline void __iomem* isp_ext_hw_conf(struct scsi_qla_host *ha)
523 {
524         return (is_qla4010(ha) ?
525                 &ha->reg->u2.isp4010.ext_hw_conf :
526                 &ha->reg->u2.isp4022.p0.ext_hw_conf);
527 }
528
529 static inline void __iomem* isp_port_status(struct scsi_qla_host *ha)
530 {
531         return (is_qla4010(ha) ?
532                 &ha->reg->u2.isp4010.port_status :
533                 &ha->reg->u2.isp4022.p0.port_status);
534 }
535
536 static inline void __iomem* isp_port_ctrl(struct scsi_qla_host *ha)
537 {
538         return (is_qla4010(ha) ?
539                 &ha->reg->u2.isp4010.port_ctrl :
540                 &ha->reg->u2.isp4022.p0.port_ctrl);
541 }
542
543 static inline void __iomem* isp_port_error_status(struct scsi_qla_host *ha)
544 {
545         return (is_qla4010(ha) ?
546                 &ha->reg->u2.isp4010.port_err_status :
547                 &ha->reg->u2.isp4022.p0.port_err_status);
548 }
549
550 static inline void __iomem * isp_gp_out(struct scsi_qla_host *ha)
551 {
552         return (is_qla4010(ha) ?
553                 &ha->reg->u2.isp4010.gp_out :
554                 &ha->reg->u2.isp4022.p0.gp_out);
555 }
556
557 static inline int eeprom_ext_hw_conf_offset(struct scsi_qla_host *ha)
558 {
559         return (is_qla4010(ha) ?
560                 offsetof(struct eeprom_data, isp4010.ext_hw_conf) / 2 :
561                 offsetof(struct eeprom_data, isp4022.ext_hw_conf) / 2);
562 }
563
564 int ql4xxx_sem_spinlock(struct scsi_qla_host * ha, u32 sem_mask, u32 sem_bits);
565 void ql4xxx_sem_unlock(struct scsi_qla_host * ha, u32 sem_mask);
566 int ql4xxx_sem_lock(struct scsi_qla_host * ha, u32 sem_mask, u32 sem_bits);
567
568 static inline int ql4xxx_lock_flash(struct scsi_qla_host *a)
569 {
570         if (is_qla4010(a))
571                 return ql4xxx_sem_spinlock(a, QL4010_FLASH_SEM_MASK,
572                                            QL4010_FLASH_SEM_BITS);
573         else
574                 return ql4xxx_sem_spinlock(a, QL4022_FLASH_SEM_MASK,
575                                            (QL4022_RESOURCE_BITS_BASE_CODE |
576                                             (a->mac_index)) << 13);
577 }
578
579 static inline void ql4xxx_unlock_flash(struct scsi_qla_host *a)
580 {
581         if (is_qla4010(a))
582                 ql4xxx_sem_unlock(a, QL4010_FLASH_SEM_MASK);
583         else
584                 ql4xxx_sem_unlock(a, QL4022_FLASH_SEM_MASK);
585 }
586
587 static inline int ql4xxx_lock_nvram(struct scsi_qla_host *a)
588 {
589         if (is_qla4010(a))
590                 return ql4xxx_sem_spinlock(a, QL4010_NVRAM_SEM_MASK,
591                                            QL4010_NVRAM_SEM_BITS);
592         else
593                 return ql4xxx_sem_spinlock(a, QL4022_NVRAM_SEM_MASK,
594                                            (QL4022_RESOURCE_BITS_BASE_CODE |
595                                             (a->mac_index)) << 10);
596 }
597
598 static inline void ql4xxx_unlock_nvram(struct scsi_qla_host *a)
599 {
600         if (is_qla4010(a))
601                 ql4xxx_sem_unlock(a, QL4010_NVRAM_SEM_MASK);
602         else
603                 ql4xxx_sem_unlock(a, QL4022_NVRAM_SEM_MASK);
604 }
605
606 static inline int ql4xxx_lock_drvr(struct scsi_qla_host *a)
607 {
608         if (is_qla4010(a))
609                 return ql4xxx_sem_lock(a, QL4010_DRVR_SEM_MASK,
610                                        QL4010_DRVR_SEM_BITS);
611         else
612                 return ql4xxx_sem_lock(a, QL4022_DRVR_SEM_MASK,
613                                        (QL4022_RESOURCE_BITS_BASE_CODE |
614                                         (a->mac_index)) << 1);
615 }
616
617 static inline void ql4xxx_unlock_drvr(struct scsi_qla_host *a)
618 {
619         if (is_qla4010(a))
620                 ql4xxx_sem_unlock(a, QL4010_DRVR_SEM_MASK);
621         else
622                 ql4xxx_sem_unlock(a, QL4022_DRVR_SEM_MASK);
623 }
624
625 /*---------------------------------------------------------------------------*/
626
627 /* Defines for qla4xxx_initialize_adapter() and qla4xxx_recover_adapter() */
628 #define PRESERVE_DDB_LIST       0
629 #define REBUILD_DDB_LIST        1
630
631 /* Defines for process_aen() */
632 #define PROCESS_ALL_AENS         0
633 #define FLUSH_DDB_CHANGED_AENS   1
634 #define RELOGIN_DDB_CHANGED_AENS 2
635
636 #endif  /*_QLA4XXX_H */