]> bbs.cooldavid.org Git - net-next-2.6.git/blob - drivers/scsi/qla2xxx/qla_os.c
[SCSI] qla2xxx: Code changes for vport bus reset
[net-next-2.6.git] / drivers / scsi / qla2xxx / qla_os.c
1 /*
2  * QLogic Fibre Channel HBA Driver
3  * Copyright (c)  2003-2008 QLogic Corporation
4  *
5  * See LICENSE.qla2xxx for copyright and licensing details.
6  */
7 #include "qla_def.h"
8
9 #include <linux/moduleparam.h>
10 #include <linux/vmalloc.h>
11 #include <linux/delay.h>
12 #include <linux/kthread.h>
13 #include <linux/mutex.h>
14
15 #include <scsi/scsi_tcq.h>
16 #include <scsi/scsicam.h>
17 #include <scsi/scsi_transport.h>
18 #include <scsi/scsi_transport_fc.h>
19
20 /*
21  * Driver version
22  */
23 char qla2x00_version_str[40];
24
25 /*
26  * SRB allocation cache
27  */
28 static struct kmem_cache *srb_cachep;
29
30 int ql2xlogintimeout = 20;
31 module_param(ql2xlogintimeout, int, S_IRUGO|S_IRUSR);
32 MODULE_PARM_DESC(ql2xlogintimeout,
33                 "Login timeout value in seconds.");
34
35 int qlport_down_retry;
36 module_param(qlport_down_retry, int, S_IRUGO|S_IRUSR);
37 MODULE_PARM_DESC(qlport_down_retry,
38                 "Maximum number of command retries to a port that returns "
39                 "a PORT-DOWN status.");
40
41 int ql2xplogiabsentdevice;
42 module_param(ql2xplogiabsentdevice, int, S_IRUGO|S_IWUSR);
43 MODULE_PARM_DESC(ql2xplogiabsentdevice,
44                 "Option to enable PLOGI to devices that are not present after "
45                 "a Fabric scan.  This is needed for several broken switches. "
46                 "Default is 0 - no PLOGI. 1 - perfom PLOGI.");
47
48 int ql2xloginretrycount = 0;
49 module_param(ql2xloginretrycount, int, S_IRUGO|S_IRUSR);
50 MODULE_PARM_DESC(ql2xloginretrycount,
51                 "Specify an alternate value for the NVRAM login retry count.");
52
53 int ql2xallocfwdump = 1;
54 module_param(ql2xallocfwdump, int, S_IRUGO|S_IRUSR);
55 MODULE_PARM_DESC(ql2xallocfwdump,
56                 "Option to enable allocation of memory for a firmware dump "
57                 "during HBA initialization.  Memory allocation requirements "
58                 "vary by ISP type.  Default is 1 - allocate memory.");
59
60 int ql2xextended_error_logging;
61 module_param(ql2xextended_error_logging, int, S_IRUGO|S_IWUSR);
62 MODULE_PARM_DESC(ql2xextended_error_logging,
63                 "Option to enable extended error logging, "
64                 "Default is 0 - no logging. 1 - log errors.");
65
66 static void qla2x00_free_device(scsi_qla_host_t *);
67
68 static void qla2x00_config_dma_addressing(scsi_qla_host_t *ha);
69
70 int ql2xfdmienable=1;
71 module_param(ql2xfdmienable, int, S_IRUGO|S_IRUSR);
72 MODULE_PARM_DESC(ql2xfdmienable,
73                 "Enables FDMI registratons "
74                 "Default is 0 - no FDMI. 1 - perfom FDMI.");
75
76 #define MAX_Q_DEPTH    32
77 static int ql2xmaxqdepth = MAX_Q_DEPTH;
78 module_param(ql2xmaxqdepth, int, S_IRUGO|S_IWUSR);
79 MODULE_PARM_DESC(ql2xmaxqdepth,
80                 "Maximum queue depth to report for target devices.");
81
82 int ql2xqfullrampup = 120;
83 module_param(ql2xqfullrampup, int, S_IRUGO|S_IWUSR);
84 MODULE_PARM_DESC(ql2xqfullrampup,
85                 "Number of seconds to wait to begin to ramp-up the queue "
86                 "depth for a device after a queue-full condition has been "
87                 "detected.  Default is 120 seconds.");
88
89 int ql2xiidmaenable=1;
90 module_param(ql2xiidmaenable, int, S_IRUGO|S_IRUSR);
91 MODULE_PARM_DESC(ql2xiidmaenable,
92                 "Enables iIDMA settings "
93                 "Default is 1 - perform iIDMA. 0 - no iIDMA.");
94
95
96 /*
97  * SCSI host template entry points
98  */
99 static int qla2xxx_slave_configure(struct scsi_device * device);
100 static int qla2xxx_slave_alloc(struct scsi_device *);
101 static int qla2xxx_scan_finished(struct Scsi_Host *, unsigned long time);
102 static void qla2xxx_scan_start(struct Scsi_Host *);
103 static void qla2xxx_slave_destroy(struct scsi_device *);
104 static int qla2x00_queuecommand(struct scsi_cmnd *cmd,
105                 void (*fn)(struct scsi_cmnd *));
106 static int qla24xx_queuecommand(struct scsi_cmnd *cmd,
107                 void (*fn)(struct scsi_cmnd *));
108 static int qla2xxx_eh_abort(struct scsi_cmnd *);
109 static int qla2xxx_eh_device_reset(struct scsi_cmnd *);
110 static int qla2xxx_eh_target_reset(struct scsi_cmnd *);
111 static int qla2xxx_eh_bus_reset(struct scsi_cmnd *);
112 static int qla2xxx_eh_host_reset(struct scsi_cmnd *);
113
114 static int qla2x00_change_queue_depth(struct scsi_device *, int);
115 static int qla2x00_change_queue_type(struct scsi_device *, int);
116
117 static struct scsi_host_template qla2x00_driver_template = {
118         .module                 = THIS_MODULE,
119         .name                   = QLA2XXX_DRIVER_NAME,
120         .queuecommand           = qla2x00_queuecommand,
121
122         .eh_abort_handler       = qla2xxx_eh_abort,
123         .eh_device_reset_handler = qla2xxx_eh_device_reset,
124         .eh_target_reset_handler = qla2xxx_eh_target_reset,
125         .eh_bus_reset_handler   = qla2xxx_eh_bus_reset,
126         .eh_host_reset_handler  = qla2xxx_eh_host_reset,
127
128         .slave_configure        = qla2xxx_slave_configure,
129
130         .slave_alloc            = qla2xxx_slave_alloc,
131         .slave_destroy          = qla2xxx_slave_destroy,
132         .scan_finished          = qla2xxx_scan_finished,
133         .scan_start             = qla2xxx_scan_start,
134         .change_queue_depth     = qla2x00_change_queue_depth,
135         .change_queue_type      = qla2x00_change_queue_type,
136         .this_id                = -1,
137         .cmd_per_lun            = 3,
138         .use_clustering         = ENABLE_CLUSTERING,
139         .sg_tablesize           = SG_ALL,
140
141         /*
142          * The RISC allows for each command to transfer (2^32-1) bytes of data,
143          * which equates to 0x800000 sectors.
144          */
145         .max_sectors            = 0xFFFF,
146         .shost_attrs            = qla2x00_host_attrs,
147 };
148
149 struct scsi_host_template qla24xx_driver_template = {
150         .module                 = THIS_MODULE,
151         .name                   = QLA2XXX_DRIVER_NAME,
152         .queuecommand           = qla24xx_queuecommand,
153
154         .eh_abort_handler       = qla2xxx_eh_abort,
155         .eh_device_reset_handler = qla2xxx_eh_device_reset,
156         .eh_target_reset_handler = qla2xxx_eh_target_reset,
157         .eh_bus_reset_handler   = qla2xxx_eh_bus_reset,
158         .eh_host_reset_handler  = qla2xxx_eh_host_reset,
159
160         .slave_configure        = qla2xxx_slave_configure,
161
162         .slave_alloc            = qla2xxx_slave_alloc,
163         .slave_destroy          = qla2xxx_slave_destroy,
164         .scan_finished          = qla2xxx_scan_finished,
165         .scan_start             = qla2xxx_scan_start,
166         .change_queue_depth     = qla2x00_change_queue_depth,
167         .change_queue_type      = qla2x00_change_queue_type,
168         .this_id                = -1,
169         .cmd_per_lun            = 3,
170         .use_clustering         = ENABLE_CLUSTERING,
171         .sg_tablesize           = SG_ALL,
172
173         .max_sectors            = 0xFFFF,
174         .shost_attrs            = qla2x00_host_attrs,
175 };
176
177 static struct scsi_transport_template *qla2xxx_transport_template = NULL;
178 struct scsi_transport_template *qla2xxx_transport_vport_template = NULL;
179
180 /* TODO Convert to inlines
181  *
182  * Timer routines
183  */
184
185 __inline__ void
186 qla2x00_start_timer(scsi_qla_host_t *vha, void *func, unsigned long interval)
187 {
188         init_timer(&vha->timer);
189         vha->timer.expires = jiffies + interval * HZ;
190         vha->timer.data = (unsigned long)vha;
191         vha->timer.function = (void (*)(unsigned long))func;
192         add_timer(&vha->timer);
193         vha->timer_active = 1;
194 }
195
196 static inline void
197 qla2x00_restart_timer(scsi_qla_host_t *vha, unsigned long interval)
198 {
199         mod_timer(&vha->timer, jiffies + interval * HZ);
200 }
201
202 static __inline__ void
203 qla2x00_stop_timer(scsi_qla_host_t *vha)
204 {
205         del_timer_sync(&vha->timer);
206         vha->timer_active = 0;
207 }
208
209 static int qla2x00_do_dpc(void *data);
210
211 static void qla2x00_rst_aen(scsi_qla_host_t *);
212
213 static int qla2x00_mem_alloc(struct qla_hw_data *, uint16_t, uint16_t);
214 static void qla2x00_mem_free(struct qla_hw_data *);
215 static void qla2x00_sp_free_dma(srb_t *);
216
217 /* -------------------------------------------------------------------------- */
218 static char *
219 qla2x00_pci_info_str(struct scsi_qla_host *vha, char *str)
220 {
221         struct qla_hw_data *ha = vha->hw;
222         static char *pci_bus_modes[] = {
223                 "33", "66", "100", "133",
224         };
225         uint16_t pci_bus;
226
227         strcpy(str, "PCI");
228         pci_bus = (ha->pci_attr & (BIT_9 | BIT_10)) >> 9;
229         if (pci_bus) {
230                 strcat(str, "-X (");
231                 strcat(str, pci_bus_modes[pci_bus]);
232         } else {
233                 pci_bus = (ha->pci_attr & BIT_8) >> 8;
234                 strcat(str, " (");
235                 strcat(str, pci_bus_modes[pci_bus]);
236         }
237         strcat(str, " MHz)");
238
239         return (str);
240 }
241
242 static char *
243 qla24xx_pci_info_str(struct scsi_qla_host *vha, char *str)
244 {
245         static char *pci_bus_modes[] = { "33", "66", "100", "133", };
246         struct qla_hw_data *ha = vha->hw;
247         uint32_t pci_bus;
248         int pcie_reg;
249
250         pcie_reg = pci_find_capability(ha->pdev, PCI_CAP_ID_EXP);
251         if (pcie_reg) {
252                 char lwstr[6];
253                 uint16_t pcie_lstat, lspeed, lwidth;
254
255                 pcie_reg += 0x12;
256                 pci_read_config_word(ha->pdev, pcie_reg, &pcie_lstat);
257                 lspeed = pcie_lstat & (BIT_0 | BIT_1 | BIT_2 | BIT_3);
258                 lwidth = (pcie_lstat &
259                     (BIT_4 | BIT_5 | BIT_6 | BIT_7 | BIT_8 | BIT_9)) >> 4;
260
261                 strcpy(str, "PCIe (");
262                 if (lspeed == 1)
263                         strcat(str, "2.5GT/s ");
264                 else if (lspeed == 2)
265                         strcat(str, "5.0GT/s ");
266                 else
267                         strcat(str, "<unknown> ");
268                 snprintf(lwstr, sizeof(lwstr), "x%d)", lwidth);
269                 strcat(str, lwstr);
270
271                 return str;
272         }
273
274         strcpy(str, "PCI");
275         pci_bus = (ha->pci_attr & CSRX_PCIX_BUS_MODE_MASK) >> 8;
276         if (pci_bus == 0 || pci_bus == 8) {
277                 strcat(str, " (");
278                 strcat(str, pci_bus_modes[pci_bus >> 3]);
279         } else {
280                 strcat(str, "-X ");
281                 if (pci_bus & BIT_2)
282                         strcat(str, "Mode 2");
283                 else
284                         strcat(str, "Mode 1");
285                 strcat(str, " (");
286                 strcat(str, pci_bus_modes[pci_bus & ~BIT_2]);
287         }
288         strcat(str, " MHz)");
289
290         return str;
291 }
292
293 static char *
294 qla2x00_fw_version_str(struct scsi_qla_host *vha, char *str)
295 {
296         char un_str[10];
297         struct qla_hw_data *ha = vha->hw;
298
299         sprintf(str, "%d.%02d.%02d ", ha->fw_major_version,
300             ha->fw_minor_version,
301             ha->fw_subminor_version);
302
303         if (ha->fw_attributes & BIT_9) {
304                 strcat(str, "FLX");
305                 return (str);
306         }
307
308         switch (ha->fw_attributes & 0xFF) {
309         case 0x7:
310                 strcat(str, "EF");
311                 break;
312         case 0x17:
313                 strcat(str, "TP");
314                 break;
315         case 0x37:
316                 strcat(str, "IP");
317                 break;
318         case 0x77:
319                 strcat(str, "VI");
320                 break;
321         default:
322                 sprintf(un_str, "(%x)", ha->fw_attributes);
323                 strcat(str, un_str);
324                 break;
325         }
326         if (ha->fw_attributes & 0x100)
327                 strcat(str, "X");
328
329         return (str);
330 }
331
332 static char *
333 qla24xx_fw_version_str(struct scsi_qla_host *vha, char *str)
334 {
335         struct qla_hw_data *ha = vha->hw;
336         sprintf(str, "%d.%02d.%02d ", ha->fw_major_version,
337             ha->fw_minor_version,
338             ha->fw_subminor_version);
339
340         if (ha->fw_attributes & BIT_0)
341                 strcat(str, "[Class 2] ");
342         if (ha->fw_attributes & BIT_1)
343                 strcat(str, "[IP] ");
344         if (ha->fw_attributes & BIT_2)
345                 strcat(str, "[Multi-ID] ");
346         if (ha->fw_attributes & BIT_3)
347                 strcat(str, "[SB-2] ");
348         if (ha->fw_attributes & BIT_4)
349                 strcat(str, "[T10 CRC] ");
350         if (ha->fw_attributes & BIT_5)
351                 strcat(str, "[VI] ");
352         if (ha->fw_attributes & BIT_10)
353                 strcat(str, "[84XX] ");
354         if (ha->fw_attributes & BIT_13)
355                 strcat(str, "[Experimental]");
356         return str;
357 }
358
359 static inline srb_t *
360 qla2x00_get_new_sp(scsi_qla_host_t *vha, fc_port_t *fcport,
361     struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
362 {
363         srb_t *sp;
364         struct qla_hw_data *ha = vha->hw;
365
366         sp = mempool_alloc(ha->srb_mempool, GFP_ATOMIC);
367         if (!sp)
368                 return sp;
369
370         sp->vha = vha;
371         sp->fcport = fcport;
372         sp->cmd = cmd;
373         sp->flags = 0;
374         CMD_SP(cmd) = (void *)sp;
375         cmd->scsi_done = done;
376
377         return sp;
378 }
379
380 static int
381 qla2x00_queuecommand(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
382 {
383         scsi_qla_host_t *vha = shost_priv(cmd->device->host);
384         fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
385         struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device));
386         struct qla_hw_data *ha = vha->hw;
387         srb_t *sp;
388         int rval;
389
390         if (unlikely(pci_channel_offline(ha->pdev))) {
391                 cmd->result = DID_REQUEUE << 16;
392                 goto qc_fail_command;
393         }
394
395         rval = fc_remote_port_chkready(rport);
396         if (rval) {
397                 cmd->result = rval;
398                 goto qc_fail_command;
399         }
400
401         /* Close window on fcport/rport state-transitioning. */
402         if (fcport->drport)
403                 goto qc_target_busy;
404
405         if (atomic_read(&fcport->state) != FCS_ONLINE) {
406                 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD ||
407                     atomic_read(&vha->loop_state) == LOOP_DEAD) {
408                         cmd->result = DID_NO_CONNECT << 16;
409                         goto qc_fail_command;
410                 }
411                 goto qc_target_busy;
412         }
413
414         spin_unlock_irq(vha->host->host_lock);
415
416         sp = qla2x00_get_new_sp(vha, fcport, cmd, done);
417         if (!sp)
418                 goto qc_host_busy_lock;
419
420         rval = ha->isp_ops->start_scsi(sp);
421         if (rval != QLA_SUCCESS)
422                 goto qc_host_busy_free_sp;
423
424         spin_lock_irq(vha->host->host_lock);
425
426         return 0;
427
428 qc_host_busy_free_sp:
429         qla2x00_sp_free_dma(sp);
430         mempool_free(sp, ha->srb_mempool);
431
432 qc_host_busy_lock:
433         spin_lock_irq(vha->host->host_lock);
434         return SCSI_MLQUEUE_HOST_BUSY;
435
436 qc_target_busy:
437         return SCSI_MLQUEUE_TARGET_BUSY;
438
439 qc_fail_command:
440         done(cmd);
441
442         return 0;
443 }
444
445
446 static int
447 qla24xx_queuecommand(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
448 {
449         scsi_qla_host_t *vha = shost_priv(cmd->device->host);
450         fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
451         struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device));
452         struct qla_hw_data *ha = vha->hw;
453         struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
454         srb_t *sp;
455         int rval;
456
457         if (unlikely(pci_channel_offline(ha->pdev))) {
458                 cmd->result = DID_REQUEUE << 16;
459                 goto qc24_fail_command;
460         }
461
462         rval = fc_remote_port_chkready(rport);
463         if (rval) {
464                 cmd->result = rval;
465                 goto qc24_fail_command;
466         }
467
468         /* Close window on fcport/rport state-transitioning. */
469         if (fcport->drport)
470                 goto qc24_target_busy;
471
472         if (atomic_read(&fcport->state) != FCS_ONLINE) {
473                 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD ||
474                     atomic_read(&base_vha->loop_state) == LOOP_DEAD) {
475                         cmd->result = DID_NO_CONNECT << 16;
476                         goto qc24_fail_command;
477                 }
478                 goto qc24_target_busy;
479         }
480
481         spin_unlock_irq(vha->host->host_lock);
482
483         sp = qla2x00_get_new_sp(base_vha, fcport, cmd, done);
484         if (!sp)
485                 goto qc24_host_busy_lock;
486
487         rval = ha->isp_ops->start_scsi(sp);
488         if (rval != QLA_SUCCESS)
489                 goto qc24_host_busy_free_sp;
490
491         spin_lock_irq(vha->host->host_lock);
492
493         return 0;
494
495 qc24_host_busy_free_sp:
496         qla2x00_sp_free_dma(sp);
497         mempool_free(sp, ha->srb_mempool);
498
499 qc24_host_busy_lock:
500         spin_lock_irq(vha->host->host_lock);
501         return SCSI_MLQUEUE_HOST_BUSY;
502
503 qc24_target_busy:
504         return SCSI_MLQUEUE_TARGET_BUSY;
505
506 qc24_fail_command:
507         done(cmd);
508
509         return 0;
510 }
511
512
513 /*
514  * qla2x00_eh_wait_on_command
515  *    Waits for the command to be returned by the Firmware for some
516  *    max time.
517  *
518  * Input:
519  *    cmd = Scsi Command to wait on.
520  *
521  * Return:
522  *    Not Found : 0
523  *    Found : 1
524  */
525 static int
526 qla2x00_eh_wait_on_command(struct scsi_cmnd *cmd)
527 {
528 #define ABORT_POLLING_PERIOD    1000
529 #define ABORT_WAIT_ITER         ((10 * 1000) / (ABORT_POLLING_PERIOD))
530         unsigned long wait_iter = ABORT_WAIT_ITER;
531         int ret = QLA_SUCCESS;
532
533         while (CMD_SP(cmd)) {
534                 msleep(ABORT_POLLING_PERIOD);
535
536                 if (--wait_iter)
537                         break;
538         }
539         if (CMD_SP(cmd))
540                 ret = QLA_FUNCTION_FAILED;
541
542         return ret;
543 }
544
545 /*
546  * qla2x00_wait_for_hba_online
547  *    Wait till the HBA is online after going through
548  *    <= MAX_RETRIES_OF_ISP_ABORT  or
549  *    finally HBA is disabled ie marked offline
550  *
551  * Input:
552  *     ha - pointer to host adapter structure
553  *
554  * Note:
555  *    Does context switching-Release SPIN_LOCK
556  *    (if any) before calling this routine.
557  *
558  * Return:
559  *    Success (Adapter is online) : 0
560  *    Failed  (Adapter is offline/disabled) : 1
561  */
562 int
563 qla2x00_wait_for_hba_online(scsi_qla_host_t *vha)
564 {
565         int             return_status;
566         unsigned long   wait_online;
567         struct qla_hw_data *ha = vha->hw;
568         scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
569
570         wait_online = jiffies + (MAX_LOOP_TIMEOUT * HZ);
571         while (((test_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags)) ||
572             test_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags) ||
573             test_bit(ISP_ABORT_RETRY, &base_vha->dpc_flags) ||
574             ha->dpc_active) && time_before(jiffies, wait_online)) {
575
576                 msleep(1000);
577         }
578         if (base_vha->flags.online)
579                 return_status = QLA_SUCCESS;
580         else
581                 return_status = QLA_FUNCTION_FAILED;
582
583         return (return_status);
584 }
585
586 /*
587  * qla2x00_wait_for_loop_ready
588  *    Wait for MAX_LOOP_TIMEOUT(5 min) value for loop
589  *    to be in LOOP_READY state.
590  * Input:
591  *     ha - pointer to host adapter structure
592  *
593  * Note:
594  *    Does context switching-Release SPIN_LOCK
595  *    (if any) before calling this routine.
596  *
597  *
598  * Return:
599  *    Success (LOOP_READY) : 0
600  *    Failed  (LOOP_NOT_READY) : 1
601  */
602 static inline int
603 qla2x00_wait_for_loop_ready(scsi_qla_host_t *vha)
604 {
605         int      return_status = QLA_SUCCESS;
606         unsigned long loop_timeout ;
607         struct qla_hw_data *ha = vha->hw;
608         scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
609
610         /* wait for 5 min at the max for loop to be ready */
611         loop_timeout = jiffies + (MAX_LOOP_TIMEOUT * HZ);
612
613         while ((!atomic_read(&base_vha->loop_down_timer) &&
614             atomic_read(&base_vha->loop_state) == LOOP_DOWN) ||
615             atomic_read(&base_vha->loop_state) != LOOP_READY) {
616                 if (atomic_read(&base_vha->loop_state) == LOOP_DEAD) {
617                         return_status = QLA_FUNCTION_FAILED;
618                         break;
619                 }
620                 msleep(1000);
621                 if (time_after_eq(jiffies, loop_timeout)) {
622                         return_status = QLA_FUNCTION_FAILED;
623                         break;
624                 }
625         }
626         return (return_status);
627 }
628
629 void
630 qla2x00_abort_fcport_cmds(fc_port_t *fcport)
631 {
632         int cnt;
633         unsigned long flags;
634         srb_t *sp;
635         scsi_qla_host_t *vha = fcport->vha;
636         struct qla_hw_data *ha = vha->hw;
637         struct req_que *req = ha->req;
638
639         spin_lock_irqsave(&ha->hardware_lock, flags);
640         for (cnt = 1; cnt < MAX_OUTSTANDING_COMMANDS; cnt++) {
641                 sp = req->outstanding_cmds[cnt];
642                 if (!sp)
643                         continue;
644                 if (sp->fcport != fcport)
645                         continue;
646
647                 spin_unlock_irqrestore(&ha->hardware_lock, flags);
648                 if (ha->isp_ops->abort_command(vha, sp)) {
649                         DEBUG2(qla_printk(KERN_WARNING, ha,
650                             "Abort failed --  %lx\n", sp->cmd->serial_number));
651                 } else {
652                         if (qla2x00_eh_wait_on_command(sp->cmd) !=
653                             QLA_SUCCESS)
654                                 DEBUG2(qla_printk(KERN_WARNING, ha,
655                                     "Abort failed while waiting --  %lx\n",
656                                     sp->cmd->serial_number));
657
658                 }
659                 spin_lock_irqsave(&ha->hardware_lock, flags);
660         }
661         spin_unlock_irqrestore(&ha->hardware_lock, flags);
662 }
663
664 static void
665 qla2x00_block_error_handler(struct scsi_cmnd *cmnd)
666 {
667         struct Scsi_Host *shost = cmnd->device->host;
668         struct fc_rport *rport = starget_to_rport(scsi_target(cmnd->device));
669         unsigned long flags;
670
671         spin_lock_irqsave(shost->host_lock, flags);
672         while (rport->port_state == FC_PORTSTATE_BLOCKED) {
673                 spin_unlock_irqrestore(shost->host_lock, flags);
674                 msleep(1000);
675                 spin_lock_irqsave(shost->host_lock, flags);
676         }
677         spin_unlock_irqrestore(shost->host_lock, flags);
678         return;
679 }
680
681 /**************************************************************************
682 * qla2xxx_eh_abort
683 *
684 * Description:
685 *    The abort function will abort the specified command.
686 *
687 * Input:
688 *    cmd = Linux SCSI command packet to be aborted.
689 *
690 * Returns:
691 *    Either SUCCESS or FAILED.
692 *
693 * Note:
694 *    Only return FAILED if command not returned by firmware.
695 **************************************************************************/
696 static int
697 qla2xxx_eh_abort(struct scsi_cmnd *cmd)
698 {
699         scsi_qla_host_t *vha = shost_priv(cmd->device->host);
700         srb_t *sp;
701         int ret, i;
702         unsigned int id, lun;
703         unsigned long serial;
704         unsigned long flags;
705         int wait = 0;
706         struct qla_hw_data *ha = vha->hw;
707         struct req_que *req = ha->req;
708
709         qla2x00_block_error_handler(cmd);
710
711         if (!CMD_SP(cmd))
712                 return SUCCESS;
713
714         ret = SUCCESS;
715
716         id = cmd->device->id;
717         lun = cmd->device->lun;
718         serial = cmd->serial_number;
719
720         /* Check active list for command command. */
721         spin_lock_irqsave(&ha->hardware_lock, flags);
722         for (i = 1; i < MAX_OUTSTANDING_COMMANDS; i++) {
723                 sp = req->outstanding_cmds[i];
724
725                 if (sp == NULL)
726                         continue;
727
728                 if (sp->cmd != cmd)
729                         continue;
730
731                 DEBUG2(printk("%s(%ld): aborting sp %p from RISC. pid=%ld.\n",
732                     __func__, vha->host_no, sp, serial));
733
734                 spin_unlock_irqrestore(&ha->hardware_lock, flags);
735                 if (ha->isp_ops->abort_command(vha, sp)) {
736                         DEBUG2(printk("%s(%ld): abort_command "
737                             "mbx failed.\n", __func__, vha->host_no));
738                         ret = FAILED;
739                 } else {
740                         DEBUG3(printk("%s(%ld): abort_command "
741                             "mbx success.\n", __func__, vha->host_no));
742                         wait = 1;
743                 }
744                 spin_lock_irqsave(&ha->hardware_lock, flags);
745
746                 break;
747         }
748         spin_unlock_irqrestore(&ha->hardware_lock, flags);
749
750         /* Wait for the command to be returned. */
751         if (wait) {
752                 if (qla2x00_eh_wait_on_command(cmd) != QLA_SUCCESS) {
753                         qla_printk(KERN_ERR, ha,
754                             "scsi(%ld:%d:%d): Abort handler timed out -- %lx "
755                             "%x.\n", vha->host_no, id, lun, serial, ret);
756                         ret = FAILED;
757                 }
758         }
759
760         qla_printk(KERN_INFO, ha,
761             "scsi(%ld:%d:%d): Abort command issued -- %d %lx %x.\n",
762             vha->host_no, id, lun, wait, serial, ret);
763
764         return ret;
765 }
766
767 enum nexus_wait_type {
768         WAIT_HOST = 0,
769         WAIT_TARGET,
770         WAIT_LUN,
771 };
772
773 static int
774 qla2x00_eh_wait_for_pending_commands(scsi_qla_host_t *vha, unsigned int t,
775     unsigned int l, enum nexus_wait_type type)
776 {
777         int cnt, match, status;
778         srb_t *sp;
779         unsigned long flags;
780         struct qla_hw_data *ha = vha->hw;
781         struct req_que *req = ha->req;
782
783         status = QLA_SUCCESS;
784         spin_lock_irqsave(&ha->hardware_lock, flags);
785         for (cnt = 1; status == QLA_SUCCESS && cnt < MAX_OUTSTANDING_COMMANDS;
786             cnt++) {
787                 sp = req->outstanding_cmds[cnt];
788                 if (!sp)
789                         continue;
790
791                 if (vha->vp_idx != sp->fcport->vha->vp_idx)
792                         continue;
793                 match = 0;
794                 switch (type) {
795                 case WAIT_HOST:
796                         match = 1;
797                         break;
798                 case WAIT_TARGET:
799                         match = sp->cmd->device->id == t;
800                         break;
801                 case WAIT_LUN:
802                         match = (sp->cmd->device->id == t &&
803                             sp->cmd->device->lun == l);
804                         break;
805                 }
806                 if (!match)
807                         continue;
808
809                 spin_unlock_irqrestore(&ha->hardware_lock, flags);
810                 status = qla2x00_eh_wait_on_command(sp->cmd);
811                 spin_lock_irqsave(&ha->hardware_lock, flags);
812         }
813         spin_unlock_irqrestore(&ha->hardware_lock, flags);
814
815         return status;
816 }
817
818 static char *reset_errors[] = {
819         "HBA not online",
820         "HBA not ready",
821         "Task management failed",
822         "Waiting for command completions",
823 };
824
825 static int
826 __qla2xxx_eh_generic_reset(char *name, enum nexus_wait_type type,
827     struct scsi_cmnd *cmd, int (*do_reset)(struct fc_port *, unsigned int))
828 {
829         scsi_qla_host_t *vha = shost_priv(cmd->device->host);
830         fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
831         int err;
832
833         qla2x00_block_error_handler(cmd);
834
835         if (!fcport)
836                 return FAILED;
837
838         qla_printk(KERN_INFO, vha->hw, "scsi(%ld:%d:%d): %s RESET ISSUED.\n",
839             vha->host_no, cmd->device->id, cmd->device->lun, name);
840
841         err = 0;
842         if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS)
843                 goto eh_reset_failed;
844         err = 1;
845         if (qla2x00_wait_for_loop_ready(vha) != QLA_SUCCESS)
846                 goto eh_reset_failed;
847         err = 2;
848         if (do_reset(fcport, cmd->device->lun) != QLA_SUCCESS)
849                 goto eh_reset_failed;
850         err = 3;
851         if (qla2x00_eh_wait_for_pending_commands(vha, cmd->device->id,
852             cmd->device->lun, type) != QLA_SUCCESS)
853                 goto eh_reset_failed;
854
855         qla_printk(KERN_INFO, vha->hw, "scsi(%ld:%d:%d): %s RESET SUCCEEDED.\n",
856             vha->host_no, cmd->device->id, cmd->device->lun, name);
857
858         return SUCCESS;
859
860  eh_reset_failed:
861         qla_printk(KERN_INFO, vha->hw, "scsi(%ld:%d:%d): %s RESET FAILED: %s.\n"
862             , vha->host_no, cmd->device->id, cmd->device->lun, name,
863             reset_errors[err]);
864         return FAILED;
865 }
866
867 static int
868 qla2xxx_eh_device_reset(struct scsi_cmnd *cmd)
869 {
870         scsi_qla_host_t *vha = shost_priv(cmd->device->host);
871         struct qla_hw_data *ha = vha->hw;
872
873         return __qla2xxx_eh_generic_reset("DEVICE", WAIT_LUN, cmd,
874             ha->isp_ops->lun_reset);
875 }
876
877 static int
878 qla2xxx_eh_target_reset(struct scsi_cmnd *cmd)
879 {
880         scsi_qla_host_t *vha = shost_priv(cmd->device->host);
881         struct qla_hw_data *ha = vha->hw;
882
883         return __qla2xxx_eh_generic_reset("TARGET", WAIT_TARGET, cmd,
884             ha->isp_ops->target_reset);
885 }
886
887 /**************************************************************************
888 * qla2xxx_eh_bus_reset
889 *
890 * Description:
891 *    The bus reset function will reset the bus and abort any executing
892 *    commands.
893 *
894 * Input:
895 *    cmd = Linux SCSI command packet of the command that cause the
896 *          bus reset.
897 *
898 * Returns:
899 *    SUCCESS/FAILURE (defined as macro in scsi.h).
900 *
901 **************************************************************************/
902 static int
903 qla2xxx_eh_bus_reset(struct scsi_cmnd *cmd)
904 {
905         scsi_qla_host_t *vha = shost_priv(cmd->device->host);
906         fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
907         int ret = FAILED;
908         unsigned int id, lun;
909         unsigned long serial;
910
911         qla2x00_block_error_handler(cmd);
912
913         id = cmd->device->id;
914         lun = cmd->device->lun;
915         serial = cmd->serial_number;
916
917         if (!fcport)
918                 return ret;
919
920         qla_printk(KERN_INFO, vha->hw,
921             "scsi(%ld:%d:%d): BUS RESET ISSUED.\n", vha->host_no, id, lun);
922
923         if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
924                 DEBUG2(printk("%s failed:board disabled\n",__func__));
925                 goto eh_bus_reset_done;
926         }
927
928         if (qla2x00_wait_for_loop_ready(vha) == QLA_SUCCESS) {
929                 if (qla2x00_loop_reset(vha) == QLA_SUCCESS)
930                         ret = SUCCESS;
931         }
932         if (ret == FAILED)
933                 goto eh_bus_reset_done;
934
935         /* Flush outstanding commands. */
936         if (qla2x00_eh_wait_for_pending_commands(vha, 0, 0, WAIT_HOST) !=
937             QLA_SUCCESS)
938                 ret = FAILED;
939
940 eh_bus_reset_done:
941         qla_printk(KERN_INFO, vha->hw, "%s: reset %s\n", __func__,
942             (ret == FAILED) ? "failed" : "succeded");
943
944         return ret;
945 }
946
947 /**************************************************************************
948 * qla2xxx_eh_host_reset
949 *
950 * Description:
951 *    The reset function will reset the Adapter.
952 *
953 * Input:
954 *      cmd = Linux SCSI command packet of the command that cause the
955 *            adapter reset.
956 *
957 * Returns:
958 *      Either SUCCESS or FAILED.
959 *
960 * Note:
961 **************************************************************************/
962 static int
963 qla2xxx_eh_host_reset(struct scsi_cmnd *cmd)
964 {
965         scsi_qla_host_t *vha = shost_priv(cmd->device->host);
966         fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
967         struct qla_hw_data *ha = vha->hw;
968         int ret = FAILED;
969         unsigned int id, lun;
970         unsigned long serial;
971         scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
972
973         qla2x00_block_error_handler(cmd);
974
975         id = cmd->device->id;
976         lun = cmd->device->lun;
977         serial = cmd->serial_number;
978
979         if (!fcport)
980                 return ret;
981
982         qla_printk(KERN_INFO, ha,
983             "scsi(%ld:%d:%d): ADAPTER RESET ISSUED.\n", vha->host_no, id, lun);
984
985         if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS)
986                 goto eh_host_reset_lock;
987
988         /*
989          * Fixme-may be dpc thread is active and processing
990          * loop_resync,so wait a while for it to
991          * be completed and then issue big hammer.Otherwise
992          * it may cause I/O failure as big hammer marks the
993          * devices as lost kicking of the port_down_timer
994          * while dpc is stuck for the mailbox to complete.
995          */
996         qla2x00_wait_for_loop_ready(vha);
997         if (vha != base_vha) {
998                 if (qla2x00_vp_abort_isp(vha))
999                         goto eh_host_reset_lock;
1000         } else {
1001                 set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
1002                 if (qla2x00_abort_isp(base_vha)) {
1003                         clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
1004                         /* failed. schedule dpc to try */
1005                         set_bit(ISP_ABORT_NEEDED, &base_vha->dpc_flags);
1006
1007                         if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS)
1008                                 goto eh_host_reset_lock;
1009                 }
1010                 clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
1011         }
1012
1013         /* Waiting for command to be returned to OS.*/
1014         if (qla2x00_eh_wait_for_pending_commands(vha, 0, 0, WAIT_HOST) ==
1015                 QLA_SUCCESS)
1016                 ret = SUCCESS;
1017
1018 eh_host_reset_lock:
1019         qla_printk(KERN_INFO, ha, "%s: reset %s\n", __func__,
1020             (ret == FAILED) ? "failed" : "succeded");
1021
1022         return ret;
1023 }
1024
1025 /*
1026 * qla2x00_loop_reset
1027 *      Issue loop reset.
1028 *
1029 * Input:
1030 *      ha = adapter block pointer.
1031 *
1032 * Returns:
1033 *      0 = success
1034 */
1035 int
1036 qla2x00_loop_reset(scsi_qla_host_t *vha)
1037 {
1038         int ret;
1039         struct fc_port *fcport;
1040         struct qla_hw_data *ha = vha->hw;
1041
1042         if (ha->flags.enable_lip_full_login && !vha->vp_idx) {
1043                 ret = qla2x00_full_login_lip(vha);
1044                 if (ret != QLA_SUCCESS) {
1045                         DEBUG2_3(printk("%s(%ld): failed: "
1046                             "full_login_lip=%d.\n", __func__, vha->host_no,
1047                             ret));
1048                 }
1049                 atomic_set(&vha->loop_state, LOOP_DOWN);
1050                 atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
1051                 qla2x00_mark_all_devices_lost(vha, 0);
1052                 qla2x00_wait_for_loop_ready(vha);
1053         }
1054
1055         if (ha->flags.enable_lip_reset && !vha->vp_idx) {
1056                 ret = qla2x00_lip_reset(vha);
1057                 if (ret != QLA_SUCCESS) {
1058                         DEBUG2_3(printk("%s(%ld): failed: "
1059                             "lip_reset=%d.\n", __func__, vha->host_no, ret));
1060                 } else
1061                         qla2x00_wait_for_loop_ready(vha);
1062         }
1063
1064         if (ha->flags.enable_target_reset) {
1065                 list_for_each_entry(fcport, &vha->vp_fcports, list) {
1066                         if (fcport->port_type != FCT_TARGET)
1067                                 continue;
1068
1069                         ret = ha->isp_ops->target_reset(fcport, 0);
1070                         if (ret != QLA_SUCCESS) {
1071                                 DEBUG2_3(printk("%s(%ld): bus_reset failed: "
1072                                     "target_reset=%d d_id=%x.\n", __func__,
1073                                     vha->host_no, ret, fcport->d_id.b24));
1074                         }
1075                 }
1076         }
1077
1078         /* Issue marker command only when we are going to start the I/O */
1079         vha->marker_needed = 1;
1080
1081         return QLA_SUCCESS;
1082 }
1083
1084 void
1085 qla2x00_abort_all_cmds(scsi_qla_host_t *vha, int res)
1086 {
1087         int cnt;
1088         unsigned long flags;
1089         srb_t *sp;
1090         struct qla_hw_data *ha = vha->hw;
1091         struct req_que *req = ha->req;
1092
1093         spin_lock_irqsave(&ha->hardware_lock, flags);
1094         for (cnt = 1; cnt < MAX_OUTSTANDING_COMMANDS; cnt++) {
1095                 sp = req->outstanding_cmds[cnt];
1096                 if (sp) {
1097                         req->outstanding_cmds[cnt] = NULL;
1098                         sp->cmd->result = res;
1099                         qla2x00_sp_compl(vha, sp);
1100                 }
1101         }
1102         spin_unlock_irqrestore(&ha->hardware_lock, flags);
1103 }
1104
1105 static int
1106 qla2xxx_slave_alloc(struct scsi_device *sdev)
1107 {
1108         struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
1109
1110         if (!rport || fc_remote_port_chkready(rport))
1111                 return -ENXIO;
1112
1113         sdev->hostdata = *(fc_port_t **)rport->dd_data;
1114
1115         return 0;
1116 }
1117
1118 static int
1119 qla2xxx_slave_configure(struct scsi_device *sdev)
1120 {
1121         scsi_qla_host_t *vha = shost_priv(sdev->host);
1122         struct qla_hw_data *ha = vha->hw;
1123         struct fc_rport *rport = starget_to_rport(sdev->sdev_target);
1124
1125         if (sdev->tagged_supported)
1126                 scsi_activate_tcq(sdev, ha->req->max_q_depth);
1127         else
1128                 scsi_deactivate_tcq(sdev, ha->req->max_q_depth);
1129
1130         rport->dev_loss_tmo = ha->port_down_retry_count;
1131
1132         return 0;
1133 }
1134
1135 static void
1136 qla2xxx_slave_destroy(struct scsi_device *sdev)
1137 {
1138         sdev->hostdata = NULL;
1139 }
1140
1141 static int
1142 qla2x00_change_queue_depth(struct scsi_device *sdev, int qdepth)
1143 {
1144         scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), qdepth);
1145         return sdev->queue_depth;
1146 }
1147
1148 static int
1149 qla2x00_change_queue_type(struct scsi_device *sdev, int tag_type)
1150 {
1151         if (sdev->tagged_supported) {
1152                 scsi_set_tag_type(sdev, tag_type);
1153                 if (tag_type)
1154                         scsi_activate_tcq(sdev, sdev->queue_depth);
1155                 else
1156                         scsi_deactivate_tcq(sdev, sdev->queue_depth);
1157         } else
1158                 tag_type = 0;
1159
1160         return tag_type;
1161 }
1162
1163 /**
1164  * qla2x00_config_dma_addressing() - Configure OS DMA addressing method.
1165  * @ha: HA context
1166  *
1167  * At exit, the @ha's flags.enable_64bit_addressing set to indicated
1168  * supported addressing method.
1169  */
1170 static void
1171 qla2x00_config_dma_addressing(scsi_qla_host_t *vha)
1172 {
1173         struct qla_hw_data *ha = vha->hw;
1174         /* Assume a 32bit DMA mask. */
1175         ha->flags.enable_64bit_addressing = 0;
1176
1177         if (!dma_set_mask(&ha->pdev->dev, DMA_64BIT_MASK)) {
1178                 /* Any upper-dword bits set? */
1179                 if (MSD(dma_get_required_mask(&ha->pdev->dev)) &&
1180                     !pci_set_consistent_dma_mask(ha->pdev, DMA_64BIT_MASK)) {
1181                         /* Ok, a 64bit DMA mask is applicable. */
1182                         ha->flags.enable_64bit_addressing = 1;
1183                         ha->isp_ops->calc_req_entries = qla2x00_calc_iocbs_64;
1184                         ha->isp_ops->build_iocbs = qla2x00_build_scsi_iocbs_64;
1185                         return;
1186                 }
1187         }
1188
1189         dma_set_mask(&ha->pdev->dev, DMA_32BIT_MASK);
1190         pci_set_consistent_dma_mask(ha->pdev, DMA_32BIT_MASK);
1191 }
1192
1193 static void
1194 qla2x00_enable_intrs(struct qla_hw_data *ha)
1195 {
1196         unsigned long flags = 0;
1197         struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1198
1199         spin_lock_irqsave(&ha->hardware_lock, flags);
1200         ha->interrupts_on = 1;
1201         /* enable risc and host interrupts */
1202         WRT_REG_WORD(&reg->ictrl, ICR_EN_INT | ICR_EN_RISC);
1203         RD_REG_WORD(&reg->ictrl);
1204         spin_unlock_irqrestore(&ha->hardware_lock, flags);
1205
1206 }
1207
1208 static void
1209 qla2x00_disable_intrs(struct qla_hw_data *ha)
1210 {
1211         unsigned long flags = 0;
1212         struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1213
1214         spin_lock_irqsave(&ha->hardware_lock, flags);
1215         ha->interrupts_on = 0;
1216         /* disable risc and host interrupts */
1217         WRT_REG_WORD(&reg->ictrl, 0);
1218         RD_REG_WORD(&reg->ictrl);
1219         spin_unlock_irqrestore(&ha->hardware_lock, flags);
1220 }
1221
1222 static void
1223 qla24xx_enable_intrs(struct qla_hw_data *ha)
1224 {
1225         unsigned long flags = 0;
1226         struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1227
1228         spin_lock_irqsave(&ha->hardware_lock, flags);
1229         ha->interrupts_on = 1;
1230         WRT_REG_DWORD(&reg->ictrl, ICRX_EN_RISC_INT);
1231         RD_REG_DWORD(&reg->ictrl);
1232         spin_unlock_irqrestore(&ha->hardware_lock, flags);
1233 }
1234
1235 static void
1236 qla24xx_disable_intrs(struct qla_hw_data *ha)
1237 {
1238         unsigned long flags = 0;
1239         struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1240
1241         spin_lock_irqsave(&ha->hardware_lock, flags);
1242         ha->interrupts_on = 0;
1243         WRT_REG_DWORD(&reg->ictrl, 0);
1244         RD_REG_DWORD(&reg->ictrl);
1245         spin_unlock_irqrestore(&ha->hardware_lock, flags);
1246 }
1247
1248 static struct isp_operations qla2100_isp_ops = {
1249         .pci_config             = qla2100_pci_config,
1250         .reset_chip             = qla2x00_reset_chip,
1251         .chip_diag              = qla2x00_chip_diag,
1252         .config_rings           = qla2x00_config_rings,
1253         .reset_adapter          = qla2x00_reset_adapter,
1254         .nvram_config           = qla2x00_nvram_config,
1255         .update_fw_options      = qla2x00_update_fw_options,
1256         .load_risc              = qla2x00_load_risc,
1257         .pci_info_str           = qla2x00_pci_info_str,
1258         .fw_version_str         = qla2x00_fw_version_str,
1259         .intr_handler           = qla2100_intr_handler,
1260         .enable_intrs           = qla2x00_enable_intrs,
1261         .disable_intrs          = qla2x00_disable_intrs,
1262         .abort_command          = qla2x00_abort_command,
1263         .target_reset           = qla2x00_abort_target,
1264         .lun_reset              = qla2x00_lun_reset,
1265         .fabric_login           = qla2x00_login_fabric,
1266         .fabric_logout          = qla2x00_fabric_logout,
1267         .calc_req_entries       = qla2x00_calc_iocbs_32,
1268         .build_iocbs            = qla2x00_build_scsi_iocbs_32,
1269         .prep_ms_iocb           = qla2x00_prep_ms_iocb,
1270         .prep_ms_fdmi_iocb      = qla2x00_prep_ms_fdmi_iocb,
1271         .read_nvram             = qla2x00_read_nvram_data,
1272         .write_nvram            = qla2x00_write_nvram_data,
1273         .fw_dump                = qla2100_fw_dump,
1274         .beacon_on              = NULL,
1275         .beacon_off             = NULL,
1276         .beacon_blink           = NULL,
1277         .read_optrom            = qla2x00_read_optrom_data,
1278         .write_optrom           = qla2x00_write_optrom_data,
1279         .get_flash_version      = qla2x00_get_flash_version,
1280         .start_scsi             = qla2x00_start_scsi,
1281 };
1282
1283 static struct isp_operations qla2300_isp_ops = {
1284         .pci_config             = qla2300_pci_config,
1285         .reset_chip             = qla2x00_reset_chip,
1286         .chip_diag              = qla2x00_chip_diag,
1287         .config_rings           = qla2x00_config_rings,
1288         .reset_adapter          = qla2x00_reset_adapter,
1289         .nvram_config           = qla2x00_nvram_config,
1290         .update_fw_options      = qla2x00_update_fw_options,
1291         .load_risc              = qla2x00_load_risc,
1292         .pci_info_str           = qla2x00_pci_info_str,
1293         .fw_version_str         = qla2x00_fw_version_str,
1294         .intr_handler           = qla2300_intr_handler,
1295         .enable_intrs           = qla2x00_enable_intrs,
1296         .disable_intrs          = qla2x00_disable_intrs,
1297         .abort_command          = qla2x00_abort_command,
1298         .target_reset           = qla2x00_abort_target,
1299         .lun_reset              = qla2x00_lun_reset,
1300         .fabric_login           = qla2x00_login_fabric,
1301         .fabric_logout          = qla2x00_fabric_logout,
1302         .calc_req_entries       = qla2x00_calc_iocbs_32,
1303         .build_iocbs            = qla2x00_build_scsi_iocbs_32,
1304         .prep_ms_iocb           = qla2x00_prep_ms_iocb,
1305         .prep_ms_fdmi_iocb      = qla2x00_prep_ms_fdmi_iocb,
1306         .read_nvram             = qla2x00_read_nvram_data,
1307         .write_nvram            = qla2x00_write_nvram_data,
1308         .fw_dump                = qla2300_fw_dump,
1309         .beacon_on              = qla2x00_beacon_on,
1310         .beacon_off             = qla2x00_beacon_off,
1311         .beacon_blink           = qla2x00_beacon_blink,
1312         .read_optrom            = qla2x00_read_optrom_data,
1313         .write_optrom           = qla2x00_write_optrom_data,
1314         .get_flash_version      = qla2x00_get_flash_version,
1315         .start_scsi             = qla2x00_start_scsi,
1316 };
1317
1318 static struct isp_operations qla24xx_isp_ops = {
1319         .pci_config             = qla24xx_pci_config,
1320         .reset_chip             = qla24xx_reset_chip,
1321         .chip_diag              = qla24xx_chip_diag,
1322         .config_rings           = qla24xx_config_rings,
1323         .reset_adapter          = qla24xx_reset_adapter,
1324         .nvram_config           = qla24xx_nvram_config,
1325         .update_fw_options      = qla24xx_update_fw_options,
1326         .load_risc              = qla24xx_load_risc,
1327         .pci_info_str           = qla24xx_pci_info_str,
1328         .fw_version_str         = qla24xx_fw_version_str,
1329         .intr_handler           = qla24xx_intr_handler,
1330         .enable_intrs           = qla24xx_enable_intrs,
1331         .disable_intrs          = qla24xx_disable_intrs,
1332         .abort_command          = qla24xx_abort_command,
1333         .target_reset           = qla24xx_abort_target,
1334         .lun_reset              = qla24xx_lun_reset,
1335         .fabric_login           = qla24xx_login_fabric,
1336         .fabric_logout          = qla24xx_fabric_logout,
1337         .calc_req_entries       = NULL,
1338         .build_iocbs            = NULL,
1339         .prep_ms_iocb           = qla24xx_prep_ms_iocb,
1340         .prep_ms_fdmi_iocb      = qla24xx_prep_ms_fdmi_iocb,
1341         .read_nvram             = qla24xx_read_nvram_data,
1342         .write_nvram            = qla24xx_write_nvram_data,
1343         .fw_dump                = qla24xx_fw_dump,
1344         .beacon_on              = qla24xx_beacon_on,
1345         .beacon_off             = qla24xx_beacon_off,
1346         .beacon_blink           = qla24xx_beacon_blink,
1347         .read_optrom            = qla24xx_read_optrom_data,
1348         .write_optrom           = qla24xx_write_optrom_data,
1349         .get_flash_version      = qla24xx_get_flash_version,
1350         .start_scsi             = qla24xx_start_scsi,
1351 };
1352
1353 static struct isp_operations qla25xx_isp_ops = {
1354         .pci_config             = qla25xx_pci_config,
1355         .reset_chip             = qla24xx_reset_chip,
1356         .chip_diag              = qla24xx_chip_diag,
1357         .config_rings           = qla24xx_config_rings,
1358         .reset_adapter          = qla24xx_reset_adapter,
1359         .nvram_config           = qla24xx_nvram_config,
1360         .update_fw_options      = qla24xx_update_fw_options,
1361         .load_risc              = qla24xx_load_risc,
1362         .pci_info_str           = qla24xx_pci_info_str,
1363         .fw_version_str         = qla24xx_fw_version_str,
1364         .intr_handler           = qla24xx_intr_handler,
1365         .enable_intrs           = qla24xx_enable_intrs,
1366         .disable_intrs          = qla24xx_disable_intrs,
1367         .abort_command          = qla24xx_abort_command,
1368         .target_reset           = qla24xx_abort_target,
1369         .lun_reset              = qla24xx_lun_reset,
1370         .fabric_login           = qla24xx_login_fabric,
1371         .fabric_logout          = qla24xx_fabric_logout,
1372         .calc_req_entries       = NULL,
1373         .build_iocbs            = NULL,
1374         .prep_ms_iocb           = qla24xx_prep_ms_iocb,
1375         .prep_ms_fdmi_iocb      = qla24xx_prep_ms_fdmi_iocb,
1376         .read_nvram             = qla25xx_read_nvram_data,
1377         .write_nvram            = qla25xx_write_nvram_data,
1378         .fw_dump                = qla25xx_fw_dump,
1379         .beacon_on              = qla24xx_beacon_on,
1380         .beacon_off             = qla24xx_beacon_off,
1381         .beacon_blink           = qla24xx_beacon_blink,
1382         .read_optrom            = qla25xx_read_optrom_data,
1383         .write_optrom           = qla24xx_write_optrom_data,
1384         .get_flash_version      = qla24xx_get_flash_version,
1385         .start_scsi             = qla24xx_start_scsi,
1386 };
1387
1388 static inline void
1389 qla2x00_set_isp_flags(struct qla_hw_data *ha)
1390 {
1391         ha->device_type = DT_EXTENDED_IDS;
1392         switch (ha->pdev->device) {
1393         case PCI_DEVICE_ID_QLOGIC_ISP2100:
1394                 ha->device_type |= DT_ISP2100;
1395                 ha->device_type &= ~DT_EXTENDED_IDS;
1396                 ha->fw_srisc_address = RISC_START_ADDRESS_2100;
1397                 break;
1398         case PCI_DEVICE_ID_QLOGIC_ISP2200:
1399                 ha->device_type |= DT_ISP2200;
1400                 ha->device_type &= ~DT_EXTENDED_IDS;
1401                 ha->fw_srisc_address = RISC_START_ADDRESS_2100;
1402                 break;
1403         case PCI_DEVICE_ID_QLOGIC_ISP2300:
1404                 ha->device_type |= DT_ISP2300;
1405                 ha->device_type |= DT_ZIO_SUPPORTED;
1406                 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
1407                 break;
1408         case PCI_DEVICE_ID_QLOGIC_ISP2312:
1409                 ha->device_type |= DT_ISP2312;
1410                 ha->device_type |= DT_ZIO_SUPPORTED;
1411                 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
1412                 break;
1413         case PCI_DEVICE_ID_QLOGIC_ISP2322:
1414                 ha->device_type |= DT_ISP2322;
1415                 ha->device_type |= DT_ZIO_SUPPORTED;
1416                 if (ha->pdev->subsystem_vendor == 0x1028 &&
1417                     ha->pdev->subsystem_device == 0x0170)
1418                         ha->device_type |= DT_OEM_001;
1419                 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
1420                 break;
1421         case PCI_DEVICE_ID_QLOGIC_ISP6312:
1422                 ha->device_type |= DT_ISP6312;
1423                 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
1424                 break;
1425         case PCI_DEVICE_ID_QLOGIC_ISP6322:
1426                 ha->device_type |= DT_ISP6322;
1427                 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
1428                 break;
1429         case PCI_DEVICE_ID_QLOGIC_ISP2422:
1430                 ha->device_type |= DT_ISP2422;
1431                 ha->device_type |= DT_ZIO_SUPPORTED;
1432                 ha->device_type |= DT_FWI2;
1433                 ha->device_type |= DT_IIDMA;
1434                 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
1435                 break;
1436         case PCI_DEVICE_ID_QLOGIC_ISP2432:
1437                 ha->device_type |= DT_ISP2432;
1438                 ha->device_type |= DT_ZIO_SUPPORTED;
1439                 ha->device_type |= DT_FWI2;
1440                 ha->device_type |= DT_IIDMA;
1441                 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
1442                 break;
1443         case PCI_DEVICE_ID_QLOGIC_ISP8432:
1444                 ha->device_type |= DT_ISP8432;
1445                 ha->device_type |= DT_ZIO_SUPPORTED;
1446                 ha->device_type |= DT_FWI2;
1447                 ha->device_type |= DT_IIDMA;
1448                 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
1449                 break;
1450         case PCI_DEVICE_ID_QLOGIC_ISP5422:
1451                 ha->device_type |= DT_ISP5422;
1452                 ha->device_type |= DT_FWI2;
1453                 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
1454                 break;
1455         case PCI_DEVICE_ID_QLOGIC_ISP5432:
1456                 ha->device_type |= DT_ISP5432;
1457                 ha->device_type |= DT_FWI2;
1458                 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
1459                 break;
1460         case PCI_DEVICE_ID_QLOGIC_ISP2532:
1461                 ha->device_type |= DT_ISP2532;
1462                 ha->device_type |= DT_ZIO_SUPPORTED;
1463                 ha->device_type |= DT_FWI2;
1464                 ha->device_type |= DT_IIDMA;
1465                 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
1466                 break;
1467         }
1468 }
1469
1470 static int
1471 qla2x00_iospace_config(struct qla_hw_data *ha)
1472 {
1473         resource_size_t pio;
1474
1475         if (pci_request_selected_regions(ha->pdev, ha->bars,
1476             QLA2XXX_DRIVER_NAME)) {
1477                 qla_printk(KERN_WARNING, ha,
1478                     "Failed to reserve PIO/MMIO regions (%s)\n",
1479                     pci_name(ha->pdev));
1480
1481                 goto iospace_error_exit;
1482         }
1483         if (!(ha->bars & 1))
1484                 goto skip_pio;
1485
1486         /* We only need PIO for Flash operations on ISP2312 v2 chips. */
1487         pio = pci_resource_start(ha->pdev, 0);
1488         if (pci_resource_flags(ha->pdev, 0) & IORESOURCE_IO) {
1489                 if (pci_resource_len(ha->pdev, 0) < MIN_IOBASE_LEN) {
1490                         qla_printk(KERN_WARNING, ha,
1491                             "Invalid PCI I/O region size (%s)...\n",
1492                                 pci_name(ha->pdev));
1493                         pio = 0;
1494                 }
1495         } else {
1496                 qla_printk(KERN_WARNING, ha,
1497                     "region #0 not a PIO resource (%s)...\n",
1498                     pci_name(ha->pdev));
1499                 pio = 0;
1500         }
1501         ha->pio_address = pio;
1502
1503 skip_pio:
1504         /* Use MMIO operations for all accesses. */
1505         if (!(pci_resource_flags(ha->pdev, 1) & IORESOURCE_MEM)) {
1506                 qla_printk(KERN_ERR, ha,
1507                     "region #1 not an MMIO resource (%s), aborting\n",
1508                     pci_name(ha->pdev));
1509                 goto iospace_error_exit;
1510         }
1511         if (pci_resource_len(ha->pdev, 1) < MIN_IOBASE_LEN) {
1512                 qla_printk(KERN_ERR, ha,
1513                     "Invalid PCI mem region size (%s), aborting\n",
1514                         pci_name(ha->pdev));
1515                 goto iospace_error_exit;
1516         }
1517
1518         ha->iobase = ioremap(pci_resource_start(ha->pdev, 1), MIN_IOBASE_LEN);
1519         if (!ha->iobase) {
1520                 qla_printk(KERN_ERR, ha,
1521                     "cannot remap MMIO (%s), aborting\n", pci_name(ha->pdev));
1522
1523                 goto iospace_error_exit;
1524         }
1525
1526         return (0);
1527
1528 iospace_error_exit:
1529         return (-ENOMEM);
1530 }
1531
1532 static void
1533 qla2xxx_scan_start(struct Scsi_Host *shost)
1534 {
1535         scsi_qla_host_t *vha = shost_priv(shost);
1536
1537         set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
1538         set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
1539         set_bit(RSCN_UPDATE, &vha->dpc_flags);
1540         set_bit(NPIV_CONFIG_NEEDED, &vha->dpc_flags);
1541 }
1542
1543 static int
1544 qla2xxx_scan_finished(struct Scsi_Host *shost, unsigned long time)
1545 {
1546         scsi_qla_host_t *vha = shost_priv(shost);
1547
1548         if (!vha->host)
1549                 return 1;
1550         if (time > vha->hw->loop_reset_delay * HZ)
1551                 return 1;
1552
1553         return atomic_read(&vha->loop_state) == LOOP_READY;
1554 }
1555
1556 /*
1557  * PCI driver interface
1558  */
1559 static int __devinit
1560 qla2x00_probe_one(struct pci_dev *pdev, const struct pci_device_id *id)
1561 {
1562         int     ret = -ENODEV;
1563         struct Scsi_Host *host;
1564         scsi_qla_host_t *base_vha = NULL;
1565         struct qla_hw_data *ha;
1566         char pci_info[30];
1567         char fw_str[30];
1568         struct scsi_host_template *sht;
1569         int bars, max_id, mem_only = 0;
1570         uint16_t req_length = 0, rsp_length = 0;
1571
1572         bars = pci_select_bars(pdev, IORESOURCE_MEM | IORESOURCE_IO);
1573         sht = &qla2x00_driver_template;
1574         if (pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2422 ||
1575             pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2432 ||
1576             pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8432 ||
1577             pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5422 ||
1578             pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5432 ||
1579             pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2532) {
1580                 bars = pci_select_bars(pdev, IORESOURCE_MEM);
1581                 sht = &qla24xx_driver_template;
1582                 mem_only = 1;
1583         }
1584
1585         if (mem_only) {
1586                 if (pci_enable_device_mem(pdev))
1587                         goto probe_out;
1588         } else {
1589                 if (pci_enable_device(pdev))
1590                         goto probe_out;
1591         }
1592
1593         /* This may fail but that's ok */
1594         pci_enable_pcie_error_reporting(pdev);
1595
1596         ha = kzalloc(sizeof(struct qla_hw_data), GFP_KERNEL);
1597         if (!ha) {
1598                 DEBUG(printk("Unable to allocate memory for ha\n"));
1599                 goto probe_out;
1600         }
1601         ha->pdev = pdev;
1602
1603         /* Clear our data area */
1604         ha->bars = bars;
1605         ha->mem_only = mem_only;
1606         spin_lock_init(&ha->hardware_lock);
1607
1608         /* Set ISP-type information. */
1609         qla2x00_set_isp_flags(ha);
1610         /* Configure PCI I/O space */
1611         ret = qla2x00_iospace_config(ha);
1612         if (ret)
1613                 goto probe_hw_failed;
1614
1615         qla_printk(KERN_INFO, ha,
1616             "Found an ISP%04X, irq %d, iobase 0x%p\n", pdev->device, pdev->irq,
1617             ha->iobase);
1618
1619         ha->prev_topology = 0;
1620         ha->init_cb_size = sizeof(init_cb_t);
1621         ha->link_data_rate = PORT_SPEED_UNKNOWN;
1622         ha->optrom_size = OPTROM_SIZE_2300;
1623
1624         /* Assign ISP specific operations. */
1625         max_id = MAX_TARGETS_2200;
1626         if (IS_QLA2100(ha)) {
1627                 max_id = MAX_TARGETS_2100;
1628                 ha->mbx_count = MAILBOX_REGISTER_COUNT_2100;
1629                 req_length = REQUEST_ENTRY_CNT_2100;
1630                 rsp_length = RESPONSE_ENTRY_CNT_2100;
1631                 ha->max_loop_id = SNS_LAST_LOOP_ID_2100;
1632                 ha->gid_list_info_size = 4;
1633                 ha->isp_ops = &qla2100_isp_ops;
1634         } else if (IS_QLA2200(ha)) {
1635                 ha->mbx_count = MAILBOX_REGISTER_COUNT;
1636                 req_length = REQUEST_ENTRY_CNT_2200;
1637                 rsp_length = RESPONSE_ENTRY_CNT_2100;
1638                 ha->max_loop_id = SNS_LAST_LOOP_ID_2100;
1639                 ha->gid_list_info_size = 4;
1640                 ha->isp_ops = &qla2100_isp_ops;
1641         } else if (IS_QLA23XX(ha)) {
1642                 ha->mbx_count = MAILBOX_REGISTER_COUNT;
1643                 req_length = REQUEST_ENTRY_CNT_2200;
1644                 rsp_length = RESPONSE_ENTRY_CNT_2300;
1645                 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
1646                 ha->gid_list_info_size = 6;
1647                 if (IS_QLA2322(ha) || IS_QLA6322(ha))
1648                         ha->optrom_size = OPTROM_SIZE_2322;
1649                 ha->isp_ops = &qla2300_isp_ops;
1650         } else if (IS_QLA24XX_TYPE(ha)) {
1651                 ha->mbx_count = MAILBOX_REGISTER_COUNT;
1652                 req_length = REQUEST_ENTRY_CNT_24XX;
1653                 rsp_length = RESPONSE_ENTRY_CNT_2300;
1654                 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
1655                 ha->init_cb_size = sizeof(struct mid_init_cb_24xx);
1656                 ha->gid_list_info_size = 8;
1657                 ha->optrom_size = OPTROM_SIZE_24XX;
1658                 ha->isp_ops = &qla24xx_isp_ops;
1659         } else if (IS_QLA25XX(ha)) {
1660                 ha->mbx_count = MAILBOX_REGISTER_COUNT;
1661                 req_length = REQUEST_ENTRY_CNT_24XX;
1662                 rsp_length = RESPONSE_ENTRY_CNT_2300;
1663                 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
1664                 ha->init_cb_size = sizeof(struct mid_init_cb_24xx);
1665                 ha->gid_list_info_size = 8;
1666                 ha->optrom_size = OPTROM_SIZE_25XX;
1667                 ha->isp_ops = &qla25xx_isp_ops;
1668         }
1669
1670         mutex_init(&ha->vport_lock);
1671         init_completion(&ha->mbx_cmd_comp);
1672         complete(&ha->mbx_cmd_comp);
1673         init_completion(&ha->mbx_intr_comp);
1674
1675         set_bit(0, (unsigned long *) ha->vp_idx_map);
1676
1677         ret = qla2x00_mem_alloc(ha, req_length, rsp_length);
1678         if (!ret) {
1679                 qla_printk(KERN_WARNING, ha,
1680                     "[ERROR] Failed to allocate memory for adapter\n");
1681
1682                 goto probe_hw_failed;
1683         }
1684
1685         ha->req->max_q_depth = MAX_Q_DEPTH;
1686         if (ql2xmaxqdepth != 0 && ql2xmaxqdepth <= 0xffffU)
1687                 ha->req->max_q_depth = ql2xmaxqdepth;
1688
1689         base_vha = qla2x00_create_host(sht, ha);
1690         if (!base_vha) {
1691                 qla_printk(KERN_WARNING, ha,
1692                     "[ERROR] Failed to allocate memory for scsi_host\n");
1693
1694                 ret = -ENOMEM;
1695                 goto probe_hw_failed;
1696         }
1697
1698         pci_set_drvdata(pdev, base_vha);
1699
1700         qla2x00_config_dma_addressing(base_vha);
1701
1702         host = base_vha->host;
1703         host->can_queue = ha->req->length + 128;
1704         if (IS_QLA2XXX_MIDTYPE(ha)) {
1705                 base_vha->mgmt_svr_loop_id = 10 + base_vha->vp_idx;
1706         } else {
1707                 base_vha->mgmt_svr_loop_id = MANAGEMENT_SERVER +
1708                                                 base_vha->vp_idx;
1709         }
1710         if (IS_QLA2100(ha))
1711                 host->sg_tablesize = 32;
1712         host->max_id = max_id;
1713         host->this_id = 255;
1714         host->cmd_per_lun = 3;
1715         host->unique_id = host->host_no;
1716         host->max_cmd_len = MAX_CMDSZ;
1717         host->max_channel = MAX_BUSES - 1;
1718         host->max_lun = MAX_LUNS;
1719         host->transportt = qla2xxx_transport_template;
1720
1721         if (qla2x00_initialize_adapter(base_vha)) {
1722                 qla_printk(KERN_WARNING, ha,
1723                     "Failed to initialize adapter\n");
1724
1725                 DEBUG2(printk("scsi(%ld): Failed to initialize adapter - "
1726                     "Adapter flags %x.\n",
1727                     base_vha->host_no, base_vha->device_flags));
1728
1729                 ret = -ENODEV;
1730                 goto probe_failed;
1731         }
1732
1733         /* Set up the irqs */
1734         ret = qla2x00_request_irqs(ha);
1735         if (ret)
1736                 goto probe_failed;
1737
1738         /*
1739          * Startup the kernel thread for this host adapter
1740          */
1741         ha->dpc_thread = kthread_create(qla2x00_do_dpc, ha,
1742                         "%s_dpc", base_vha->host_str);
1743         if (IS_ERR(ha->dpc_thread)) {
1744                 qla_printk(KERN_WARNING, ha,
1745                     "Unable to start DPC thread!\n");
1746                 ret = PTR_ERR(ha->dpc_thread);
1747                 goto probe_failed;
1748         }
1749
1750         list_add_tail(&base_vha->list, &ha->vp_list);
1751         base_vha->host->irq = ha->pdev->irq;
1752
1753         /* Initialized the timer */
1754         qla2x00_start_timer(base_vha, qla2x00_timer, WATCH_INTERVAL);
1755
1756         DEBUG2(printk("DEBUG: detect hba %ld at address = %p\n",
1757             base_vha->host_no, ha));
1758
1759         base_vha->flags.init_done = 1;
1760         base_vha->flags.online = 1;
1761
1762         ret = scsi_add_host(host, &pdev->dev);
1763         if (ret)
1764                 goto probe_failed;
1765
1766         ha->isp_ops->enable_intrs(ha);
1767
1768         scsi_scan_host(host);
1769
1770         qla2x00_alloc_sysfs_attr(base_vha);
1771
1772         qla2x00_init_host_attr(base_vha);
1773
1774         qla2x00_dfs_setup(base_vha);
1775
1776         qla_printk(KERN_INFO, ha, "\n"
1777             " QLogic Fibre Channel HBA Driver: %s\n"
1778             "  QLogic %s - %s\n"
1779             "  ISP%04X: %s @ %s hdma%c, host#=%ld, fw=%s\n",
1780             qla2x00_version_str, ha->model_number,
1781             ha->model_desc ? ha->model_desc : "", pdev->device,
1782             ha->isp_ops->pci_info_str(base_vha, pci_info), pci_name(pdev),
1783             ha->flags.enable_64bit_addressing ? '+' : '-', base_vha->host_no,
1784             ha->isp_ops->fw_version_str(base_vha, fw_str));
1785
1786         return 0;
1787
1788 probe_failed:
1789         qla2x00_free_device(base_vha);
1790
1791         scsi_host_put(base_vha->host);
1792
1793 probe_hw_failed:
1794         if (ha->iobase)
1795                 iounmap(ha->iobase);
1796
1797         pci_release_selected_regions(ha->pdev, ha->bars);
1798         kfree(ha);
1799         ha = NULL;
1800
1801 probe_out:
1802         pci_disable_device(pdev);
1803         return ret;
1804 }
1805
1806 static void
1807 qla2x00_remove_one(struct pci_dev *pdev)
1808 {
1809         scsi_qla_host_t *base_vha, *vha, *temp;
1810         struct qla_hw_data  *ha;
1811
1812         base_vha = pci_get_drvdata(pdev);
1813         ha = base_vha->hw;
1814
1815         list_for_each_entry_safe(vha, temp, &ha->vp_list, list) {
1816                 if (vha && vha->fc_vport)
1817                         fc_vport_terminate(vha->fc_vport);
1818         }
1819
1820         set_bit(UNLOADING, &base_vha->dpc_flags);
1821
1822         qla2x00_dfs_remove(base_vha);
1823
1824         qla84xx_put_chip(base_vha);
1825
1826         qla2x00_free_sysfs_attr(base_vha);
1827
1828         fc_remove_host(base_vha->host);
1829
1830         scsi_remove_host(base_vha->host);
1831
1832         qla2x00_free_device(base_vha);
1833
1834         scsi_host_put(base_vha->host);
1835
1836         if (ha->iobase)
1837                 iounmap(ha->iobase);
1838
1839         pci_release_selected_regions(ha->pdev, ha->bars);
1840         kfree(ha);
1841         ha = NULL;
1842
1843         pci_disable_device(pdev);
1844         pci_set_drvdata(pdev, NULL);
1845 }
1846
1847 static void
1848 qla2x00_free_device(scsi_qla_host_t *vha)
1849 {
1850         struct qla_hw_data *ha = vha->hw;
1851         qla2x00_abort_all_cmds(vha, DID_NO_CONNECT << 16);
1852
1853         /* Disable timer */
1854         if (vha->timer_active)
1855                 qla2x00_stop_timer(vha);
1856
1857         vha->flags.online = 0;
1858
1859         /* Kill the kernel thread for this host */
1860         if (ha->dpc_thread) {
1861                 struct task_struct *t = ha->dpc_thread;
1862
1863                 /*
1864                  * qla2xxx_wake_dpc checks for ->dpc_thread
1865                  * so we need to zero it out.
1866                  */
1867                 ha->dpc_thread = NULL;
1868                 kthread_stop(t);
1869         }
1870
1871         if (ha->flags.fce_enabled)
1872                 qla2x00_disable_fce_trace(vha, NULL, NULL);
1873
1874         if (ha->eft)
1875                 qla2x00_disable_eft_trace(vha);
1876
1877         /* Stop currently executing firmware. */
1878         qla2x00_try_to_stop_firmware(vha);
1879
1880         /* turn-off interrupts on the card */
1881         if (ha->interrupts_on)
1882                 ha->isp_ops->disable_intrs(ha);
1883
1884         qla2x00_free_irqs(vha);
1885
1886         qla2x00_mem_free(ha);
1887 }
1888
1889 static inline void
1890 qla2x00_schedule_rport_del(struct scsi_qla_host *vha, fc_port_t *fcport,
1891     int defer)
1892 {
1893         struct fc_rport *rport;
1894
1895         if (!fcport->rport)
1896                 return;
1897
1898         rport = fcport->rport;
1899         if (defer) {
1900                 spin_lock_irq(vha->host->host_lock);
1901                 fcport->drport = rport;
1902                 spin_unlock_irq(vha->host->host_lock);
1903                 set_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags);
1904                 qla2xxx_wake_dpc(vha);
1905         } else
1906                 fc_remote_port_delete(rport);
1907 }
1908
1909 /*
1910  * qla2x00_mark_device_lost Updates fcport state when device goes offline.
1911  *
1912  * Input: ha = adapter block pointer.  fcport = port structure pointer.
1913  *
1914  * Return: None.
1915  *
1916  * Context:
1917  */
1918 void qla2x00_mark_device_lost(scsi_qla_host_t *vha, fc_port_t *fcport,
1919     int do_login, int defer)
1920 {
1921         if (atomic_read(&fcport->state) == FCS_ONLINE &&
1922             vha->vp_idx == fcport->vp_idx) {
1923                 atomic_set(&fcport->state, FCS_DEVICE_LOST);
1924                 qla2x00_schedule_rport_del(vha, fcport, defer);
1925         }
1926         /*
1927          * We may need to retry the login, so don't change the state of the
1928          * port but do the retries.
1929          */
1930         if (atomic_read(&fcport->state) != FCS_DEVICE_DEAD)
1931                 atomic_set(&fcport->state, FCS_DEVICE_LOST);
1932
1933         if (!do_login)
1934                 return;
1935
1936         if (fcport->login_retry == 0) {
1937                 fcport->login_retry = vha->hw->login_retry_count;
1938                 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
1939
1940                 DEBUG(printk("scsi(%ld): Port login retry: "
1941                     "%02x%02x%02x%02x%02x%02x%02x%02x, "
1942                     "id = 0x%04x retry cnt=%d\n",
1943                     vha->host_no,
1944                     fcport->port_name[0],
1945                     fcport->port_name[1],
1946                     fcport->port_name[2],
1947                     fcport->port_name[3],
1948                     fcport->port_name[4],
1949                     fcport->port_name[5],
1950                     fcport->port_name[6],
1951                     fcport->port_name[7],
1952                     fcport->loop_id,
1953                     fcport->login_retry));
1954         }
1955 }
1956
1957 /*
1958  * qla2x00_mark_all_devices_lost
1959  *      Updates fcport state when device goes offline.
1960  *
1961  * Input:
1962  *      ha = adapter block pointer.
1963  *      fcport = port structure pointer.
1964  *
1965  * Return:
1966  *      None.
1967  *
1968  * Context:
1969  */
1970 void
1971 qla2x00_mark_all_devices_lost(scsi_qla_host_t *vha, int defer)
1972 {
1973         fc_port_t *fcport;
1974
1975         list_for_each_entry(fcport, &vha->vp_fcports, list) {
1976                 if (vha->vp_idx != fcport->vp_idx)
1977                         continue;
1978                 /*
1979                  * No point in marking the device as lost, if the device is
1980                  * already DEAD.
1981                  */
1982                 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD)
1983                         continue;
1984                 if (atomic_read(&fcport->state) == FCS_ONLINE) {
1985                         atomic_set(&fcport->state, FCS_DEVICE_LOST);
1986                         qla2x00_schedule_rport_del(vha, fcport, defer);
1987                 } else
1988                         atomic_set(&fcport->state, FCS_DEVICE_LOST);
1989         }
1990 }
1991
1992 /*
1993 * qla2x00_mem_alloc
1994 *      Allocates adapter memory.
1995 *
1996 * Returns:
1997 *      0  = success.
1998 *      !0  = failure.
1999 */
2000 static int
2001 qla2x00_mem_alloc(struct qla_hw_data *ha, uint16_t req_len, uint16_t rsp_len)
2002 {
2003         char    name[16];
2004         struct req_que *req = NULL;
2005         struct rsp_que *rsp = NULL;
2006
2007         ha->init_cb_size = sizeof(init_cb_t);
2008         if (IS_QLA2XXX_MIDTYPE(ha))
2009                 ha->init_cb_size = sizeof(struct mid_init_cb_24xx);
2010
2011         ha->init_cb = dma_alloc_coherent(&ha->pdev->dev, ha->init_cb_size,
2012                 &ha->init_cb_dma, GFP_KERNEL);
2013         if (!ha->init_cb)
2014                 goto fail;
2015
2016         ha->gid_list = dma_alloc_coherent(&ha->pdev->dev, GID_LIST_SIZE,
2017                 &ha->gid_list_dma, GFP_KERNEL);
2018         if (!ha->gid_list)
2019                 goto fail_free_init_cb;
2020
2021         ha->srb_mempool = mempool_create_slab_pool(SRB_MIN_REQ, srb_cachep);
2022         if (!ha->srb_mempool)
2023                 goto fail_free_gid_list;
2024
2025         /* Get memory for cached NVRAM */
2026         ha->nvram = kzalloc(MAX_NVRAM_SIZE, GFP_KERNEL);
2027         if (!ha->nvram)
2028                 goto fail_free_srb_mempool;
2029
2030         snprintf(name, sizeof(name), "%s_%d", QLA2XXX_DRIVER_NAME,
2031                 ha->pdev->device);
2032         ha->s_dma_pool = dma_pool_create(name, &ha->pdev->dev,
2033                 DMA_POOL_SIZE, 8, 0);
2034         if (!ha->s_dma_pool)
2035                 goto fail_free_nvram;
2036
2037         /* Allocate memory for SNS commands */
2038         if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
2039         /* Get consistent memory allocated for SNS commands */
2040                 ha->sns_cmd = dma_alloc_coherent(&ha->pdev->dev,
2041                 sizeof(struct sns_cmd_pkt), &ha->sns_cmd_dma, GFP_KERNEL);
2042                 if (!ha->sns_cmd)
2043                         goto fail_dma_pool;
2044         } else {
2045         /* Get consistent memory allocated for MS IOCB */
2046                 ha->ms_iocb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
2047                         &ha->ms_iocb_dma);
2048                 if (!ha->ms_iocb)
2049                         goto fail_dma_pool;
2050         /* Get consistent memory allocated for CT SNS commands */
2051                 ha->ct_sns = dma_alloc_coherent(&ha->pdev->dev,
2052                         sizeof(struct ct_sns_pkt), &ha->ct_sns_dma, GFP_KERNEL);
2053                 if (!ha->ct_sns)
2054                         goto fail_free_ms_iocb;
2055         }
2056
2057         /* Allocate memory for request ring */
2058         req = kzalloc(sizeof(struct req_que), GFP_KERNEL);
2059         if (!req) {
2060                 DEBUG(printk("Unable to allocate memory for req\n"));
2061                 goto fail_req;
2062         }
2063         ha->req = req;
2064         req->length = req_len;
2065         req->ring = dma_alloc_coherent(&ha->pdev->dev,
2066                 (req->length + 1) * sizeof(request_t),
2067                 &req->dma, GFP_KERNEL);
2068         if (!req->ring) {
2069                 DEBUG(printk("Unable to allocate memory for req_ring\n"));
2070                 goto fail_req_ring;
2071         }
2072         /* Allocate memory for response ring */
2073         rsp = kzalloc(sizeof(struct rsp_que), GFP_KERNEL);
2074         if (!rsp) {
2075                 DEBUG(printk("Unable to allocate memory for rsp\n"));
2076                 goto fail_rsp;
2077         }
2078         ha->rsp = rsp;
2079         rsp->hw = ha;
2080         rsp->length = rsp_len;
2081
2082         rsp->ring = dma_alloc_coherent(&ha->pdev->dev,
2083                 (rsp->length + 1) * sizeof(response_t),
2084                 &rsp->dma, GFP_KERNEL);
2085         if (!rsp->ring) {
2086                 DEBUG(printk("Unable to allocate memory for rsp_ring\n"));
2087                 goto fail_rsp_ring;
2088         }
2089
2090         INIT_LIST_HEAD(&ha->vp_list);
2091         return 1;
2092
2093 fail_rsp_ring:
2094         kfree(rsp);
2095         ha->rsp = NULL;
2096 fail_rsp:
2097         dma_free_coherent(&ha->pdev->dev, (req->length + 1) *
2098                 sizeof(request_t), req->ring, req->dma);
2099         req->ring = NULL;
2100         req->dma = 0;
2101 fail_req_ring:
2102         kfree(req);
2103         ha->req = NULL;
2104 fail_req:
2105         dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt),
2106                 ha->ct_sns, ha->ct_sns_dma);
2107         ha->ct_sns = NULL;
2108         ha->ct_sns_dma = 0;
2109 fail_free_ms_iocb:
2110         dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma);
2111         ha->ms_iocb = NULL;
2112         ha->ms_iocb_dma = 0;
2113 fail_dma_pool:
2114         dma_pool_destroy(ha->s_dma_pool);
2115         ha->s_dma_pool = NULL;
2116 fail_free_nvram:
2117         kfree(ha->nvram);
2118         ha->nvram = NULL;
2119 fail_free_srb_mempool:
2120         mempool_destroy(ha->srb_mempool);
2121         ha->srb_mempool = NULL;
2122 fail_free_gid_list:
2123         dma_free_coherent(&ha->pdev->dev, GID_LIST_SIZE, ha->gid_list,
2124         ha->gid_list_dma);
2125         ha->gid_list = NULL;
2126         ha->gid_list_dma = 0;
2127 fail_free_init_cb:
2128         dma_free_coherent(&ha->pdev->dev, ha->init_cb_size, ha->init_cb,
2129         ha->init_cb_dma);
2130         ha->init_cb = NULL;
2131         ha->init_cb_dma = 0;
2132 fail:
2133         DEBUG(printk("%s: Memory allocation failure\n", __func__));
2134         return -ENOMEM;
2135 }
2136
2137 /*
2138 * qla2x00_mem_free
2139 *      Frees all adapter allocated memory.
2140 *
2141 * Input:
2142 *      ha = adapter block pointer.
2143 */
2144 static void
2145 qla2x00_mem_free(struct qla_hw_data *ha)
2146 {
2147         struct req_que *req = ha->req;
2148         struct rsp_que *rsp = ha->rsp;
2149
2150         if (ha->srb_mempool)
2151                 mempool_destroy(ha->srb_mempool);
2152
2153         if (ha->fce)
2154                 dma_free_coherent(&ha->pdev->dev, FCE_SIZE, ha->fce,
2155                 ha->fce_dma);
2156
2157         if (ha->fw_dump) {
2158                 if (ha->eft)
2159                         dma_free_coherent(&ha->pdev->dev,
2160                         ntohl(ha->fw_dump->eft_size), ha->eft, ha->eft_dma);
2161                 vfree(ha->fw_dump);
2162         }
2163
2164         if (ha->sns_cmd)
2165                 dma_free_coherent(&ha->pdev->dev, sizeof(struct sns_cmd_pkt),
2166                 ha->sns_cmd, ha->sns_cmd_dma);
2167
2168         if (ha->ct_sns)
2169                 dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt),
2170                 ha->ct_sns, ha->ct_sns_dma);
2171
2172         if (ha->sfp_data)
2173                 dma_pool_free(ha->s_dma_pool, ha->sfp_data, ha->sfp_data_dma);
2174
2175         if (ha->ms_iocb)
2176                 dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma);
2177
2178         if (ha->s_dma_pool)
2179                 dma_pool_destroy(ha->s_dma_pool);
2180
2181
2182         if (ha->gid_list)
2183                 dma_free_coherent(&ha->pdev->dev, GID_LIST_SIZE, ha->gid_list,
2184                 ha->gid_list_dma);
2185
2186
2187         if (ha->init_cb)
2188                 dma_free_coherent(&ha->pdev->dev, ha->init_cb_size,
2189                 ha->init_cb, ha->init_cb_dma);
2190         vfree(ha->optrom_buffer);
2191         kfree(ha->nvram);
2192
2193         ha->srb_mempool = NULL;
2194         ha->eft = NULL;
2195         ha->eft_dma = 0;
2196         ha->sns_cmd = NULL;
2197         ha->sns_cmd_dma = 0;
2198         ha->ct_sns = NULL;
2199         ha->ct_sns_dma = 0;
2200         ha->ms_iocb = NULL;
2201         ha->ms_iocb_dma = 0;
2202         ha->init_cb = NULL;
2203         ha->init_cb_dma = 0;
2204
2205         ha->s_dma_pool = NULL;
2206
2207         ha->gid_list = NULL;
2208         ha->gid_list_dma = 0;
2209
2210         ha->fw_dump = NULL;
2211         ha->fw_dumped = 0;
2212         ha->fw_dump_reading = 0;
2213
2214         if (rsp) {
2215                 if (rsp->ring)
2216                         dma_free_coherent(&ha->pdev->dev,
2217                         (rsp->length + 1) * sizeof(response_t),
2218                         rsp->ring, rsp->dma);
2219
2220                 kfree(rsp);
2221                 rsp = NULL;
2222         }
2223
2224         if (req) {
2225                 if (req->ring)
2226                         dma_free_coherent(&ha->pdev->dev,
2227                         (req->length + 1) * sizeof(request_t),
2228                         req->ring, req->dma);
2229
2230                 kfree(req);
2231                 req = NULL;
2232         }
2233 }
2234
2235 struct scsi_qla_host *qla2x00_create_host(struct scsi_host_template *sht,
2236                                                 struct qla_hw_data *ha)
2237 {
2238         struct Scsi_Host *host;
2239         struct scsi_qla_host *vha = NULL;
2240
2241         host = scsi_host_alloc(sht, sizeof(scsi_qla_host_t));
2242         if (host == NULL) {
2243                 printk(KERN_WARNING
2244                 "qla2xxx: Couldn't allocate host from scsi layer!\n");
2245                 goto fail;
2246         }
2247
2248         /* Clear our data area */
2249         vha = shost_priv(host);
2250         memset(vha, 0, sizeof(scsi_qla_host_t));
2251
2252         vha->host = host;
2253         vha->host_no = host->host_no;
2254         vha->hw = ha;
2255
2256         INIT_LIST_HEAD(&vha->vp_fcports);
2257         INIT_LIST_HEAD(&vha->work_list);
2258         INIT_LIST_HEAD(&vha->list);
2259
2260         sprintf(vha->host_str, "%s_%ld", QLA2XXX_DRIVER_NAME, vha->host_no);
2261         return vha;
2262
2263 fail:
2264         return vha;
2265 }
2266
2267 static struct qla_work_evt *
2268 qla2x00_alloc_work(struct scsi_qla_host *vha, enum qla_work_type type,
2269     int locked)
2270 {
2271         struct qla_work_evt *e;
2272
2273         e = kzalloc(sizeof(struct qla_work_evt), locked ? GFP_ATOMIC:
2274             GFP_KERNEL);
2275         if (!e)
2276                 return NULL;
2277
2278         INIT_LIST_HEAD(&e->list);
2279         e->type = type;
2280         e->flags = QLA_EVT_FLAG_FREE;
2281         return e;
2282 }
2283
2284 static int
2285 qla2x00_post_work(struct scsi_qla_host *vha, struct qla_work_evt *e, int locked)
2286 {
2287         unsigned long uninitialized_var(flags);
2288         struct qla_hw_data *ha = vha->hw;
2289
2290         if (!locked)
2291                 spin_lock_irqsave(&ha->hardware_lock, flags);
2292         list_add_tail(&e->list, &vha->work_list);
2293         qla2xxx_wake_dpc(vha);
2294         if (!locked)
2295                 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2296         return QLA_SUCCESS;
2297 }
2298
2299 int
2300 qla2x00_post_aen_work(struct scsi_qla_host *vha, enum fc_host_event_code code,
2301     u32 data)
2302 {
2303         struct qla_work_evt *e;
2304
2305         e = qla2x00_alloc_work(vha, QLA_EVT_AEN, 1);
2306         if (!e)
2307                 return QLA_FUNCTION_FAILED;
2308
2309         e->u.aen.code = code;
2310         e->u.aen.data = data;
2311         return qla2x00_post_work(vha, e, 1);
2312 }
2313
2314 int
2315 qla2x00_post_hwe_work(struct scsi_qla_host *vha, uint16_t code, uint16_t d1,
2316     uint16_t d2, uint16_t d3)
2317 {
2318         struct qla_work_evt *e;
2319
2320         e = qla2x00_alloc_work(vha, QLA_EVT_HWE_LOG, 1);
2321         if (!e)
2322                 return QLA_FUNCTION_FAILED;
2323
2324         e->u.hwe.code = code;
2325         e->u.hwe.d1 = d1;
2326         e->u.hwe.d2 = d2;
2327         e->u.hwe.d3 = d3;
2328         return qla2x00_post_work(vha, e, 1);
2329 }
2330
2331 static void
2332 qla2x00_do_work(struct scsi_qla_host *vha)
2333 {
2334         struct qla_work_evt *e;
2335         struct qla_hw_data *ha = vha->hw;
2336
2337         spin_lock_irq(&ha->hardware_lock);
2338         while (!list_empty(&vha->work_list)) {
2339                 e = list_entry(vha->work_list.next, struct qla_work_evt, list);
2340                 list_del_init(&e->list);
2341                 spin_unlock_irq(&ha->hardware_lock);
2342
2343                 switch (e->type) {
2344                 case QLA_EVT_AEN:
2345                         fc_host_post_event(vha->host, fc_get_event_number(),
2346                             e->u.aen.code, e->u.aen.data);
2347                         break;
2348                 case QLA_EVT_HWE_LOG:
2349                         qla2xxx_hw_event_log(vha, e->u.hwe.code, e->u.hwe.d1,
2350                             e->u.hwe.d2, e->u.hwe.d3);
2351                         break;
2352                 }
2353                 if (e->flags & QLA_EVT_FLAG_FREE)
2354                         kfree(e);
2355                 spin_lock_irq(&ha->hardware_lock);
2356         }
2357         spin_unlock_irq(&ha->hardware_lock);
2358 }
2359 /* Relogins all the fcports of a vport
2360  * Context: dpc thread
2361  */
2362 void qla2x00_relogin(struct scsi_qla_host *vha)
2363 {
2364         fc_port_t       *fcport;
2365         uint8_t         status;
2366         uint16_t        next_loopid = 0;
2367         struct qla_hw_data *ha = vha->hw;
2368
2369         list_for_each_entry(fcport, &vha->vp_fcports, list) {
2370         /*
2371          * If the port is not ONLINE then try to login
2372          * to it if we haven't run out of retries.
2373          */
2374                 if (atomic_read(&fcport->state) !=
2375                         FCS_ONLINE && fcport->login_retry) {
2376
2377                         if (fcport->flags & FCF_FABRIC_DEVICE) {
2378                                 if (fcport->flags & FCF_TAPE_PRESENT)
2379                                         ha->isp_ops->fabric_logout(vha,
2380                                                         fcport->loop_id,
2381                                                         fcport->d_id.b.domain,
2382                                                         fcport->d_id.b.area,
2383                                                         fcport->d_id.b.al_pa);
2384
2385                                 status = qla2x00_fabric_login(vha, fcport,
2386                                                         &next_loopid);
2387                         } else
2388                                 status = qla2x00_local_device_login(vha,
2389                                                                 fcport);
2390
2391                         fcport->login_retry--;
2392                         if (status == QLA_SUCCESS) {
2393                                 fcport->old_loop_id = fcport->loop_id;
2394
2395                                 DEBUG(printk("scsi(%ld): port login OK: logged "
2396                                 "in ID 0x%x\n", vha->host_no, fcport->loop_id));
2397
2398                                 qla2x00_update_fcport(vha, fcport);
2399
2400                         } else if (status == 1) {
2401                                 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
2402                                 /* retry the login again */
2403                                 DEBUG(printk("scsi(%ld): Retrying"
2404                                 " %d login again loop_id 0x%x\n",
2405                                 vha->host_no, fcport->login_retry,
2406                                                 fcport->loop_id));
2407                         } else {
2408                                 fcport->login_retry = 0;
2409                         }
2410
2411                         if (fcport->login_retry == 0 && status != QLA_SUCCESS)
2412                                 fcport->loop_id = FC_NO_LOOP_ID;
2413                 }
2414                 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
2415                         break;
2416         }
2417 }
2418
2419 /**************************************************************************
2420 * qla2x00_do_dpc
2421 *   This kernel thread is a task that is schedule by the interrupt handler
2422 *   to perform the background processing for interrupts.
2423 *
2424 * Notes:
2425 * This task always run in the context of a kernel thread.  It
2426 * is kick-off by the driver's detect code and starts up
2427 * up one per adapter. It immediately goes to sleep and waits for
2428 * some fibre event.  When either the interrupt handler or
2429 * the timer routine detects a event it will one of the task
2430 * bits then wake us up.
2431 **************************************************************************/
2432 static int
2433 qla2x00_do_dpc(void *data)
2434 {
2435         int             rval;
2436         scsi_qla_host_t *base_vha;
2437         struct qla_hw_data *ha;
2438
2439         ha = (struct qla_hw_data *)data;
2440         base_vha = pci_get_drvdata(ha->pdev);
2441
2442         set_user_nice(current, -20);
2443
2444         while (!kthread_should_stop()) {
2445                 DEBUG3(printk("qla2x00: DPC handler sleeping\n"));
2446
2447                 set_current_state(TASK_INTERRUPTIBLE);
2448                 schedule();
2449                 __set_current_state(TASK_RUNNING);
2450
2451                 DEBUG3(printk("qla2x00: DPC handler waking up\n"));
2452
2453                 /* Initialization not yet finished. Don't do anything yet. */
2454                 if (!base_vha->flags.init_done)
2455                         continue;
2456
2457                 DEBUG3(printk("scsi(%ld): DPC handler\n", base_vha->host_no));
2458
2459                 ha->dpc_active = 1;
2460
2461                 if (ha->flags.mbox_busy) {
2462                         ha->dpc_active = 0;
2463                         continue;
2464                 }
2465
2466                 qla2x00_do_work(base_vha);
2467
2468                 if (test_and_clear_bit(ISP_ABORT_NEEDED,
2469                                                 &base_vha->dpc_flags)) {
2470
2471                         DEBUG(printk("scsi(%ld): dpc: sched "
2472                             "qla2x00_abort_isp ha = %p\n",
2473                             base_vha->host_no, ha));
2474                         if (!(test_and_set_bit(ABORT_ISP_ACTIVE,
2475                             &base_vha->dpc_flags))) {
2476
2477                                 if (qla2x00_abort_isp(base_vha)) {
2478                                         /* failed. retry later */
2479                                         set_bit(ISP_ABORT_NEEDED,
2480                                             &base_vha->dpc_flags);
2481                                 }
2482                                 clear_bit(ABORT_ISP_ACTIVE,
2483                                                 &base_vha->dpc_flags);
2484                         }
2485
2486                         DEBUG(printk("scsi(%ld): dpc: qla2x00_abort_isp end\n",
2487                             base_vha->host_no));
2488                 }
2489
2490                 if (test_bit(FCPORT_UPDATE_NEEDED, &base_vha->dpc_flags)) {
2491                         qla2x00_update_fcports(base_vha);
2492                         clear_bit(FCPORT_UPDATE_NEEDED, &base_vha->dpc_flags);
2493                 }
2494
2495                 if (test_and_clear_bit(RESET_MARKER_NEEDED,
2496                                                         &base_vha->dpc_flags) &&
2497                     (!(test_and_set_bit(RESET_ACTIVE, &base_vha->dpc_flags)))) {
2498
2499                         DEBUG(printk("scsi(%ld): qla2x00_reset_marker()\n",
2500                             base_vha->host_no));
2501
2502                         qla2x00_rst_aen(base_vha);
2503                         clear_bit(RESET_ACTIVE, &base_vha->dpc_flags);
2504                 }
2505
2506                 /* Retry each device up to login retry count */
2507                 if ((test_and_clear_bit(RELOGIN_NEEDED,
2508                                                 &base_vha->dpc_flags)) &&
2509                     !test_bit(LOOP_RESYNC_NEEDED, &base_vha->dpc_flags) &&
2510                     atomic_read(&base_vha->loop_state) != LOOP_DOWN) {
2511
2512                         DEBUG(printk("scsi(%ld): qla2x00_port_login()\n",
2513                                         base_vha->host_no));
2514                         qla2x00_relogin(base_vha);
2515
2516                         DEBUG(printk("scsi(%ld): qla2x00_port_login - end\n",
2517                             base_vha->host_no));
2518                 }
2519
2520                 if (test_and_clear_bit(LOOP_RESYNC_NEEDED,
2521                                                         &base_vha->dpc_flags)) {
2522
2523                         DEBUG(printk("scsi(%ld): qla2x00_loop_resync()\n",
2524                                 base_vha->host_no));
2525
2526                         if (!(test_and_set_bit(LOOP_RESYNC_ACTIVE,
2527                             &base_vha->dpc_flags))) {
2528
2529                                 rval = qla2x00_loop_resync(base_vha);
2530
2531                                 clear_bit(LOOP_RESYNC_ACTIVE,
2532                                                 &base_vha->dpc_flags);
2533                         }
2534
2535                         DEBUG(printk("scsi(%ld): qla2x00_loop_resync - end\n",
2536                             base_vha->host_no));
2537                 }
2538
2539                 if (test_bit(NPIV_CONFIG_NEEDED, &base_vha->dpc_flags) &&
2540                     atomic_read(&base_vha->loop_state) == LOOP_READY) {
2541                         clear_bit(NPIV_CONFIG_NEEDED, &base_vha->dpc_flags);
2542                         qla2xxx_flash_npiv_conf(base_vha);
2543                 }
2544
2545                 if (!ha->interrupts_on)
2546                         ha->isp_ops->enable_intrs(ha);
2547
2548                 if (test_and_clear_bit(BEACON_BLINK_NEEDED,
2549                                         &base_vha->dpc_flags))
2550                         ha->isp_ops->beacon_blink(base_vha);
2551
2552                 qla2x00_do_dpc_all_vps(base_vha);
2553
2554                 ha->dpc_active = 0;
2555         } /* End of while(1) */
2556
2557         DEBUG(printk("scsi(%ld): DPC handler exiting\n", base_vha->host_no));
2558
2559         /*
2560          * Make sure that nobody tries to wake us up again.
2561          */
2562         ha->dpc_active = 0;
2563
2564         return 0;
2565 }
2566
2567 void
2568 qla2xxx_wake_dpc(struct scsi_qla_host *vha)
2569 {
2570         struct qla_hw_data *ha = vha->hw;
2571         struct task_struct *t = ha->dpc_thread;
2572
2573         if (!test_bit(UNLOADING, &vha->dpc_flags) && t)
2574                 wake_up_process(t);
2575 }
2576
2577 /*
2578 *  qla2x00_rst_aen
2579 *      Processes asynchronous reset.
2580 *
2581 * Input:
2582 *      ha  = adapter block pointer.
2583 */
2584 static void
2585 qla2x00_rst_aen(scsi_qla_host_t *vha)
2586 {
2587         if (vha->flags.online && !vha->flags.reset_active &&
2588             !atomic_read(&vha->loop_down_timer) &&
2589             !(test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags))) {
2590                 do {
2591                         clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
2592
2593                         /*
2594                          * Issue marker command only when we are going to start
2595                          * the I/O.
2596                          */
2597                         vha->marker_needed = 1;
2598                 } while (!atomic_read(&vha->loop_down_timer) &&
2599                     (test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags)));
2600         }
2601 }
2602
2603 static void
2604 qla2x00_sp_free_dma(srb_t *sp)
2605 {
2606         struct scsi_cmnd *cmd = sp->cmd;
2607
2608         if (sp->flags & SRB_DMA_VALID) {
2609                 scsi_dma_unmap(cmd);
2610                 sp->flags &= ~SRB_DMA_VALID;
2611         }
2612         CMD_SP(cmd) = NULL;
2613 }
2614
2615 void
2616 qla2x00_sp_compl(scsi_qla_host_t *vha, srb_t *sp)
2617 {
2618         struct qla_hw_data *ha = vha->hw;
2619         struct scsi_cmnd *cmd = sp->cmd;
2620
2621         qla2x00_sp_free_dma(sp);
2622
2623         mempool_free(sp, ha->srb_mempool);
2624
2625         cmd->scsi_done(cmd);
2626 }
2627
2628 /**************************************************************************
2629 *   qla2x00_timer
2630 *
2631 * Description:
2632 *   One second timer
2633 *
2634 * Context: Interrupt
2635 ***************************************************************************/
2636 void
2637 qla2x00_timer(scsi_qla_host_t *vha)
2638 {
2639         unsigned long   cpu_flags = 0;
2640         fc_port_t       *fcport;
2641         int             start_dpc = 0;
2642         int             index;
2643         srb_t           *sp;
2644         int             t;
2645         struct qla_hw_data *ha = vha->hw;
2646         struct req_que *req = ha->req;
2647         /*
2648          * Ports - Port down timer.
2649          *
2650          * Whenever, a port is in the LOST state we start decrementing its port
2651          * down timer every second until it reaches zero. Once  it reaches zero
2652          * the port it marked DEAD.
2653          */
2654         t = 0;
2655         list_for_each_entry(fcport, &vha->vp_fcports, list) {
2656                 if (fcport->port_type != FCT_TARGET)
2657                         continue;
2658
2659                 if (atomic_read(&fcport->state) == FCS_DEVICE_LOST) {
2660
2661                         if (atomic_read(&fcport->port_down_timer) == 0)
2662                                 continue;
2663
2664                         if (atomic_dec_and_test(&fcport->port_down_timer) != 0)
2665                                 atomic_set(&fcport->state, FCS_DEVICE_DEAD);
2666
2667                         DEBUG(printk("scsi(%ld): fcport-%d - port retry count: "
2668                             "%d remaining\n",
2669                             vha->host_no,
2670                             t, atomic_read(&fcport->port_down_timer)));
2671                 }
2672                 t++;
2673         } /* End of for fcport  */
2674
2675
2676         /* Loop down handler. */
2677         if (atomic_read(&vha->loop_down_timer) > 0 &&
2678             !(test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags))
2679                 && vha->flags.online) {
2680
2681                 if (atomic_read(&vha->loop_down_timer) ==
2682                     vha->loop_down_abort_time) {
2683
2684                         DEBUG(printk("scsi(%ld): Loop Down - aborting the "
2685                             "queues before time expire\n",
2686                             vha->host_no));
2687
2688                         if (!IS_QLA2100(ha) && vha->link_down_timeout)
2689                                 atomic_set(&vha->loop_state, LOOP_DEAD);
2690
2691                         /* Schedule an ISP abort to return any tape commands. */
2692                         /* NPIV - scan physical port only */
2693                         if (!vha->vp_idx) {
2694                                 spin_lock_irqsave(&ha->hardware_lock,
2695                                     cpu_flags);
2696                                 for (index = 1;
2697                                     index < MAX_OUTSTANDING_COMMANDS;
2698                                     index++) {
2699                                         fc_port_t *sfcp;
2700
2701                                         sp = req->outstanding_cmds[index];
2702                                         if (!sp)
2703                                                 continue;
2704                                         sfcp = sp->fcport;
2705                                         if (!(sfcp->flags & FCF_TAPE_PRESENT))
2706                                                 continue;
2707
2708                                         set_bit(ISP_ABORT_NEEDED,
2709                                                         &vha->dpc_flags);
2710                                         break;
2711                                 }
2712                                 spin_unlock_irqrestore(&ha->hardware_lock,
2713                                                                 cpu_flags);
2714                         }
2715                         set_bit(ABORT_QUEUES_NEEDED, &vha->dpc_flags);
2716                         start_dpc++;
2717                 }
2718
2719                 /* if the loop has been down for 4 minutes, reinit adapter */
2720                 if (atomic_dec_and_test(&vha->loop_down_timer) != 0) {
2721                         DEBUG(printk("scsi(%ld): Loop down exceed 4 mins - "
2722                             "restarting queues.\n",
2723                             vha->host_no));
2724
2725                         set_bit(RESTART_QUEUES_NEEDED, &vha->dpc_flags);
2726                         start_dpc++;
2727
2728                         if (!(vha->device_flags & DFLG_NO_CABLE) &&
2729                             !vha->vp_idx) {
2730                                 DEBUG(printk("scsi(%ld): Loop down - "
2731                                     "aborting ISP.\n",
2732                                     vha->host_no));
2733                                 qla_printk(KERN_WARNING, ha,
2734                                     "Loop down - aborting ISP.\n");
2735
2736                                 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
2737                         }
2738                 }
2739                 DEBUG3(printk("scsi(%ld): Loop Down - seconds remaining %d\n",
2740                     vha->host_no,
2741                     atomic_read(&vha->loop_down_timer)));
2742         }
2743
2744         /* Check if beacon LED needs to be blinked */
2745         if (ha->beacon_blink_led == 1) {
2746                 set_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags);
2747                 start_dpc++;
2748         }
2749
2750         /* Process any deferred work. */
2751         if (!list_empty(&vha->work_list))
2752                 start_dpc++;
2753
2754         /* Schedule the DPC routine if needed */
2755         if ((test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags) ||
2756             test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags) ||
2757             test_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags) ||
2758             start_dpc ||
2759             test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags) ||
2760             test_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags) ||
2761             test_bit(VP_DPC_NEEDED, &vha->dpc_flags) ||
2762             test_bit(RELOGIN_NEEDED, &vha->dpc_flags)))
2763                 qla2xxx_wake_dpc(vha);
2764
2765         qla2x00_restart_timer(vha, WATCH_INTERVAL);
2766 }
2767
2768 /* Firmware interface routines. */
2769
2770 #define FW_BLOBS        6
2771 #define FW_ISP21XX      0
2772 #define FW_ISP22XX      1
2773 #define FW_ISP2300      2
2774 #define FW_ISP2322      3
2775 #define FW_ISP24XX      4
2776 #define FW_ISP25XX      5
2777
2778 #define FW_FILE_ISP21XX "ql2100_fw.bin"
2779 #define FW_FILE_ISP22XX "ql2200_fw.bin"
2780 #define FW_FILE_ISP2300 "ql2300_fw.bin"
2781 #define FW_FILE_ISP2322 "ql2322_fw.bin"
2782 #define FW_FILE_ISP24XX "ql2400_fw.bin"
2783 #define FW_FILE_ISP25XX "ql2500_fw.bin"
2784
2785 static DEFINE_MUTEX(qla_fw_lock);
2786
2787 static struct fw_blob qla_fw_blobs[FW_BLOBS] = {
2788         { .name = FW_FILE_ISP21XX, .segs = { 0x1000, 0 }, },
2789         { .name = FW_FILE_ISP22XX, .segs = { 0x1000, 0 }, },
2790         { .name = FW_FILE_ISP2300, .segs = { 0x800, 0 }, },
2791         { .name = FW_FILE_ISP2322, .segs = { 0x800, 0x1c000, 0x1e000, 0 }, },
2792         { .name = FW_FILE_ISP24XX, },
2793         { .name = FW_FILE_ISP25XX, },
2794 };
2795
2796 struct fw_blob *
2797 qla2x00_request_firmware(scsi_qla_host_t *vha)
2798 {
2799         struct qla_hw_data *ha = vha->hw;
2800         struct fw_blob *blob;
2801
2802         blob = NULL;
2803         if (IS_QLA2100(ha)) {
2804                 blob = &qla_fw_blobs[FW_ISP21XX];
2805         } else if (IS_QLA2200(ha)) {
2806                 blob = &qla_fw_blobs[FW_ISP22XX];
2807         } else if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
2808                 blob = &qla_fw_blobs[FW_ISP2300];
2809         } else if (IS_QLA2322(ha) || IS_QLA6322(ha)) {
2810                 blob = &qla_fw_blobs[FW_ISP2322];
2811         } else if (IS_QLA24XX_TYPE(ha)) {
2812                 blob = &qla_fw_blobs[FW_ISP24XX];
2813         } else if (IS_QLA25XX(ha)) {
2814                 blob = &qla_fw_blobs[FW_ISP25XX];
2815         }
2816
2817         mutex_lock(&qla_fw_lock);
2818         if (blob->fw)
2819                 goto out;
2820
2821         if (request_firmware(&blob->fw, blob->name, &ha->pdev->dev)) {
2822                 DEBUG2(printk("scsi(%ld): Failed to load firmware image "
2823                     "(%s).\n", vha->host_no, blob->name));
2824                 blob->fw = NULL;
2825                 blob = NULL;
2826                 goto out;
2827         }
2828
2829 out:
2830         mutex_unlock(&qla_fw_lock);
2831         return blob;
2832 }
2833
2834 static void
2835 qla2x00_release_firmware(void)
2836 {
2837         int idx;
2838
2839         mutex_lock(&qla_fw_lock);
2840         for (idx = 0; idx < FW_BLOBS; idx++)
2841                 if (qla_fw_blobs[idx].fw)
2842                         release_firmware(qla_fw_blobs[idx].fw);
2843         mutex_unlock(&qla_fw_lock);
2844 }
2845
2846 static pci_ers_result_t
2847 qla2xxx_pci_error_detected(struct pci_dev *pdev, pci_channel_state_t state)
2848 {
2849         switch (state) {
2850         case pci_channel_io_normal:
2851                 return PCI_ERS_RESULT_CAN_RECOVER;
2852         case pci_channel_io_frozen:
2853                 pci_disable_device(pdev);
2854                 return PCI_ERS_RESULT_NEED_RESET;
2855         case pci_channel_io_perm_failure:
2856                 qla2x00_remove_one(pdev);
2857                 return PCI_ERS_RESULT_DISCONNECT;
2858         }
2859         return PCI_ERS_RESULT_NEED_RESET;
2860 }
2861
2862 static pci_ers_result_t
2863 qla2xxx_pci_mmio_enabled(struct pci_dev *pdev)
2864 {
2865         int risc_paused = 0;
2866         uint32_t stat;
2867         unsigned long flags;
2868         scsi_qla_host_t *base_vha = pci_get_drvdata(pdev);
2869         struct qla_hw_data *ha = base_vha->hw;
2870         struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
2871         struct device_reg_24xx __iomem *reg24 = &ha->iobase->isp24;
2872
2873         spin_lock_irqsave(&ha->hardware_lock, flags);
2874         if (IS_QLA2100(ha) || IS_QLA2200(ha)){
2875                 stat = RD_REG_DWORD(&reg->hccr);
2876                 if (stat & HCCR_RISC_PAUSE)
2877                         risc_paused = 1;
2878         } else if (IS_QLA23XX(ha)) {
2879                 stat = RD_REG_DWORD(&reg->u.isp2300.host_status);
2880                 if (stat & HSR_RISC_PAUSED)
2881                         risc_paused = 1;
2882         } else if (IS_FWI2_CAPABLE(ha)) {
2883                 stat = RD_REG_DWORD(&reg24->host_status);
2884                 if (stat & HSRX_RISC_PAUSED)
2885                         risc_paused = 1;
2886         }
2887         spin_unlock_irqrestore(&ha->hardware_lock, flags);
2888
2889         if (risc_paused) {
2890                 qla_printk(KERN_INFO, ha, "RISC paused -- mmio_enabled, "
2891                     "Dumping firmware!\n");
2892                 ha->isp_ops->fw_dump(base_vha, 0);
2893
2894                 return PCI_ERS_RESULT_NEED_RESET;
2895         } else
2896                 return PCI_ERS_RESULT_RECOVERED;
2897 }
2898
2899 static pci_ers_result_t
2900 qla2xxx_pci_slot_reset(struct pci_dev *pdev)
2901 {
2902         pci_ers_result_t ret = PCI_ERS_RESULT_DISCONNECT;
2903         scsi_qla_host_t *base_vha = pci_get_drvdata(pdev);
2904         struct qla_hw_data *ha = base_vha->hw;
2905         int rc;
2906
2907         if (ha->mem_only)
2908                 rc = pci_enable_device_mem(pdev);
2909         else
2910                 rc = pci_enable_device(pdev);
2911
2912         if (rc) {
2913                 qla_printk(KERN_WARNING, ha,
2914                     "Can't re-enable PCI device after reset.\n");
2915
2916                 return ret;
2917         }
2918         pci_set_master(pdev);
2919
2920         if (ha->isp_ops->pci_config(base_vha))
2921                 return ret;
2922
2923         set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
2924         if (qla2x00_abort_isp(base_vha) == QLA_SUCCESS)
2925                 ret =  PCI_ERS_RESULT_RECOVERED;
2926         clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
2927
2928         return ret;
2929 }
2930
2931 static void
2932 qla2xxx_pci_resume(struct pci_dev *pdev)
2933 {
2934         scsi_qla_host_t *base_vha = pci_get_drvdata(pdev);
2935         struct qla_hw_data *ha = base_vha->hw;
2936         int ret;
2937
2938         ret = qla2x00_wait_for_hba_online(base_vha);
2939         if (ret != QLA_SUCCESS) {
2940                 qla_printk(KERN_ERR, ha,
2941                     "the device failed to resume I/O "
2942                     "from slot/link_reset");
2943         }
2944         pci_cleanup_aer_uncorrect_error_status(pdev);
2945 }
2946
2947 static struct pci_error_handlers qla2xxx_err_handler = {
2948         .error_detected = qla2xxx_pci_error_detected,
2949         .mmio_enabled = qla2xxx_pci_mmio_enabled,
2950         .slot_reset = qla2xxx_pci_slot_reset,
2951         .resume = qla2xxx_pci_resume,
2952 };
2953
2954 static struct pci_device_id qla2xxx_pci_tbl[] = {
2955         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2100) },
2956         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2200) },
2957         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2300) },
2958         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2312) },
2959         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2322) },
2960         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6312) },
2961         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6322) },
2962         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2422) },
2963         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2432) },
2964         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8432) },
2965         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5422) },
2966         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5432) },
2967         { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2532) },
2968         { 0 },
2969 };
2970 MODULE_DEVICE_TABLE(pci, qla2xxx_pci_tbl);
2971
2972 static struct pci_driver qla2xxx_pci_driver = {
2973         .name           = QLA2XXX_DRIVER_NAME,
2974         .driver         = {
2975                 .owner          = THIS_MODULE,
2976         },
2977         .id_table       = qla2xxx_pci_tbl,
2978         .probe          = qla2x00_probe_one,
2979         .remove         = qla2x00_remove_one,
2980         .err_handler    = &qla2xxx_err_handler,
2981 };
2982
2983 /**
2984  * qla2x00_module_init - Module initialization.
2985  **/
2986 static int __init
2987 qla2x00_module_init(void)
2988 {
2989         int ret = 0;
2990
2991         /* Allocate cache for SRBs. */
2992         srb_cachep = kmem_cache_create("qla2xxx_srbs", sizeof(srb_t), 0,
2993             SLAB_HWCACHE_ALIGN, NULL);
2994         if (srb_cachep == NULL) {
2995                 printk(KERN_ERR
2996                     "qla2xxx: Unable to allocate SRB cache...Failing load!\n");
2997                 return -ENOMEM;
2998         }
2999
3000         /* Derive version string. */
3001         strcpy(qla2x00_version_str, QLA2XXX_VERSION);
3002         if (ql2xextended_error_logging)
3003                 strcat(qla2x00_version_str, "-debug");
3004
3005         qla2xxx_transport_template =
3006             fc_attach_transport(&qla2xxx_transport_functions);
3007         if (!qla2xxx_transport_template) {
3008                 kmem_cache_destroy(srb_cachep);
3009                 return -ENODEV;
3010         }
3011         qla2xxx_transport_vport_template =
3012             fc_attach_transport(&qla2xxx_transport_vport_functions);
3013         if (!qla2xxx_transport_vport_template) {
3014                 kmem_cache_destroy(srb_cachep);
3015                 fc_release_transport(qla2xxx_transport_template);
3016                 return -ENODEV;
3017         }
3018
3019         printk(KERN_INFO "QLogic Fibre Channel HBA Driver: %s\n",
3020             qla2x00_version_str);
3021         ret = pci_register_driver(&qla2xxx_pci_driver);
3022         if (ret) {
3023                 kmem_cache_destroy(srb_cachep);
3024                 fc_release_transport(qla2xxx_transport_template);
3025                 fc_release_transport(qla2xxx_transport_vport_template);
3026         }
3027         return ret;
3028 }
3029
3030 /**
3031  * qla2x00_module_exit - Module cleanup.
3032  **/
3033 static void __exit
3034 qla2x00_module_exit(void)
3035 {
3036         pci_unregister_driver(&qla2xxx_pci_driver);
3037         qla2x00_release_firmware();
3038         kmem_cache_destroy(srb_cachep);
3039         fc_release_transport(qla2xxx_transport_template);
3040         fc_release_transport(qla2xxx_transport_vport_template);
3041 }
3042
3043 module_init(qla2x00_module_init);
3044 module_exit(qla2x00_module_exit);
3045
3046 MODULE_AUTHOR("QLogic Corporation");
3047 MODULE_DESCRIPTION("QLogic Fibre Channel HBA Driver");
3048 MODULE_LICENSE("GPL");
3049 MODULE_VERSION(QLA2XXX_VERSION);
3050 MODULE_FIRMWARE(FW_FILE_ISP21XX);
3051 MODULE_FIRMWARE(FW_FILE_ISP22XX);
3052 MODULE_FIRMWARE(FW_FILE_ISP2300);
3053 MODULE_FIRMWARE(FW_FILE_ISP2322);
3054 MODULE_FIRMWARE(FW_FILE_ISP24XX);
3055 MODULE_FIRMWARE(FW_FILE_ISP25XX);