blob: 05db1660855e606317c8223f3760e932403e2872 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Andrew Vasquezfa90c542005-10-27 11:10:08 -07002 * QLogic Fibre Channel HBA Driver
Andrew Vasquez01e58d82008-04-03 13:13:13 -07003 * Copyright (c) 2003-2008 QLogic Corporation
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Andrew Vasquezfa90c542005-10-27 11:10:08 -07005 * See LICENSE.qla2xxx for copyright and licensing details.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
7#include "qla_def.h"
8
9#include <linux/moduleparam.h>
10#include <linux/vmalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/delay.h>
Christoph Hellwig39a11242006-02-14 18:46:22 +010012#include <linux/kthread.h>
Daniel Walkere1e82b62008-05-12 22:21:10 -070013#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
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 */
23char qla2x00_version_str[40];
24
25/*
26 * SRB allocation cache
27 */
Christoph Lametere18b8902006-12-06 20:33:20 -080028static struct kmem_cache *srb_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Linus Torvalds1da177e2005-04-16 15:20:36 -070030int ql2xlogintimeout = 20;
31module_param(ql2xlogintimeout, int, S_IRUGO|S_IRUSR);
32MODULE_PARM_DESC(ql2xlogintimeout,
33 "Login timeout value in seconds.");
34
Andrew Vasqueza7b61842007-05-07 07:42:59 -070035int qlport_down_retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036module_param(qlport_down_retry, int, S_IRUGO|S_IRUSR);
37MODULE_PARM_DESC(qlport_down_retry,
Jesper Juhl900d9f92006-06-30 02:33:07 -070038 "Maximum number of command retries to a port that returns "
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 "a PORT-DOWN status.");
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041int ql2xplogiabsentdevice;
42module_param(ql2xplogiabsentdevice, int, S_IRUGO|S_IWUSR);
43MODULE_PARM_DESC(ql2xplogiabsentdevice,
44 "Option to enable PLOGI to devices that are not present after "
Jesper Juhl900d9f92006-06-30 02:33:07 -070045 "a Fabric scan. This is needed for several broken switches. "
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 "Default is 0 - no PLOGI. 1 - perfom PLOGI.");
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048int ql2xloginretrycount = 0;
49module_param(ql2xloginretrycount, int, S_IRUGO|S_IRUSR);
50MODULE_PARM_DESC(ql2xloginretrycount,
51 "Specify an alternate value for the NVRAM login retry count.");
52
Andrew Vasqueza7a167b2006-06-23 16:10:29 -070053int ql2xallocfwdump = 1;
54module_param(ql2xallocfwdump, int, S_IRUGO|S_IRUSR);
55MODULE_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
Andrew Vasquez11010fe2006-10-06 09:54:59 -070060int ql2xextended_error_logging;
Andrew Vasquez27d94032007-03-12 10:41:30 -070061module_param(ql2xextended_error_logging, int, S_IRUGO|S_IWUSR);
Andrew Vasquez11010fe2006-10-06 09:54:59 -070062MODULE_PARM_DESC(ql2xextended_error_logging,
Andrew Vasquez01819442006-06-23 16:11:10 -070063 "Option to enable extended error logging, "
64 "Default is 0 - no logging. 1 - log errors.");
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066static void qla2x00_free_device(scsi_qla_host_t *);
67
68static void qla2x00_config_dma_addressing(scsi_qla_host_t *ha);
69
Andrew Vasquez7e47e5c2008-04-24 15:21:26 -070070int ql2xfdmienable=1;
Andrew Vasquezcca53352005-08-26 19:08:30 -070071module_param(ql2xfdmienable, int, S_IRUGO|S_IRUSR);
72MODULE_PARM_DESC(ql2xfdmienable,
73 "Enables FDMI registratons "
74 "Default is 0 - no FDMI. 1 - perfom FDMI.");
75
Andrew Vasquezdf7baa52006-10-13 09:33:39 -070076#define MAX_Q_DEPTH 32
77static int ql2xmaxqdepth = MAX_Q_DEPTH;
78module_param(ql2xmaxqdepth, int, S_IRUGO|S_IWUSR);
79MODULE_PARM_DESC(ql2xmaxqdepth,
80 "Maximum queue depth to report for target devices.");
81
82int ql2xqfullrampup = 120;
83module_param(ql2xqfullrampup, int, S_IRUGO|S_IWUSR);
84MODULE_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
Andrew Vasqueze5896bd2008-07-10 16:55:52 -070089int ql2xiidmaenable=1;
90module_param(ql2xiidmaenable, int, S_IRUGO|S_IRUSR);
91MODULE_PARM_DESC(ql2xiidmaenable,
92 "Enables iIDMA settings "
93 "Default is 1 - perform iIDMA. 0 - no iIDMA.");
94
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096/*
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -070097 * SCSI host template entry points
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 */
99static int qla2xxx_slave_configure(struct scsi_device * device);
f4f051e2005-04-17 15:02:26 -0500100static int qla2xxx_slave_alloc(struct scsi_device *);
Andrew Vasquez1e99e332006-11-22 08:24:48 -0800101static int qla2xxx_scan_finished(struct Scsi_Host *, unsigned long time);
102static void qla2xxx_scan_start(struct Scsi_Host *);
f4f051e2005-04-17 15:02:26 -0500103static void qla2xxx_slave_destroy(struct scsi_device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104static int qla2x00_queuecommand(struct scsi_cmnd *cmd,
105 void (*fn)(struct scsi_cmnd *));
Andrew Vasquezfca29702005-07-06 10:31:47 -0700106static int qla24xx_queuecommand(struct scsi_cmnd *cmd,
107 void (*fn)(struct scsi_cmnd *));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108static int qla2xxx_eh_abort(struct scsi_cmnd *);
109static int qla2xxx_eh_device_reset(struct scsi_cmnd *);
Andrew Vasquez523ec772008-04-03 13:13:24 -0700110static int qla2xxx_eh_target_reset(struct scsi_cmnd *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111static int qla2xxx_eh_bus_reset(struct scsi_cmnd *);
112static int qla2xxx_eh_host_reset(struct scsi_cmnd *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Andrew Vasquezce7e4af2005-08-26 19:09:30 -0700114static int qla2x00_change_queue_depth(struct scsi_device *, int);
115static int qla2x00_change_queue_type(struct scsi_device *, int);
116
Adrian Bunka824ebb2008-01-17 09:02:15 -0800117static struct scsi_host_template qla2x00_driver_template = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 .module = THIS_MODULE,
Andrew Vasquezcb630672006-05-17 15:09:45 -0700119 .name = QLA2XXX_DRIVER_NAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 .queuecommand = qla2x00_queuecommand,
121
122 .eh_abort_handler = qla2xxx_eh_abort,
123 .eh_device_reset_handler = qla2xxx_eh_device_reset,
Andrew Vasquez523ec772008-04-03 13:13:24 -0700124 .eh_target_reset_handler = qla2xxx_eh_target_reset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 .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
f4f051e2005-04-17 15:02:26 -0500130 .slave_alloc = qla2xxx_slave_alloc,
131 .slave_destroy = qla2xxx_slave_destroy,
Andrew Vasquez1e99e332006-11-22 08:24:48 -0800132 .scan_finished = qla2xxx_scan_finished,
133 .scan_start = qla2xxx_scan_start,
Andrew Vasquezce7e4af2005-08-26 19:09:30 -0700134 .change_queue_depth = qla2x00_change_queue_depth,
135 .change_queue_type = qla2x00_change_queue_type,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 .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,
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700146 .shost_attrs = qla2x00_host_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147};
148
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700149struct scsi_host_template qla24xx_driver_template = {
Andrew Vasquezfca29702005-07-06 10:31:47 -0700150 .module = THIS_MODULE,
Andrew Vasquezcb630672006-05-17 15:09:45 -0700151 .name = QLA2XXX_DRIVER_NAME,
Andrew Vasquezfca29702005-07-06 10:31:47 -0700152 .queuecommand = qla24xx_queuecommand,
153
154 .eh_abort_handler = qla2xxx_eh_abort,
155 .eh_device_reset_handler = qla2xxx_eh_device_reset,
Andrew Vasquez523ec772008-04-03 13:13:24 -0700156 .eh_target_reset_handler = qla2xxx_eh_target_reset,
Andrew Vasquezfca29702005-07-06 10:31:47 -0700157 .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,
Andrew Vasquezed677082007-03-12 10:41:27 -0700164 .scan_finished = qla2xxx_scan_finished,
165 .scan_start = qla2xxx_scan_start,
Andrew Vasquezce7e4af2005-08-26 19:09:30 -0700166 .change_queue_depth = qla2x00_change_queue_depth,
167 .change_queue_type = qla2x00_change_queue_type,
Andrew Vasquezfca29702005-07-06 10:31:47 -0700168 .this_id = -1,
169 .cmd_per_lun = 3,
170 .use_clustering = ENABLE_CLUSTERING,
171 .sg_tablesize = SG_ALL,
172
173 .max_sectors = 0xFFFF,
Andrew Vasquezafb046e2005-08-26 19:09:40 -0700174 .shost_attrs = qla2x00_host_attrs,
Andrew Vasquezfca29702005-07-06 10:31:47 -0700175};
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177static struct scsi_transport_template *qla2xxx_transport_template = NULL;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700178struct scsi_transport_template *qla2xxx_transport_vport_template = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180/* TODO Convert to inlines
181 *
182 * Timer routines
183 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700185__inline__ void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800186qla2x00_start_timer(scsi_qla_host_t *vha, void *func, unsigned long interval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800188 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
195
196static inline void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800197qla2x00_restart_timer(scsi_qla_host_t *vha, unsigned long interval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800199 mod_timer(&vha->timer, jiffies + interval * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200}
201
Adrian Bunka824ebb2008-01-17 09:02:15 -0800202static __inline__ void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800203qla2x00_stop_timer(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800205 del_timer_sync(&vha->timer);
206 vha->timer_active = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209static int qla2x00_do_dpc(void *data);
210
211static void qla2x00_rst_aen(scsi_qla_host_t *);
212
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800213static int qla2x00_mem_alloc(struct qla_hw_data *, uint16_t, uint16_t);
214static void qla2x00_mem_free(struct qla_hw_data *);
215static void qla2x00_sp_free_dma(srb_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217/* -------------------------------------------------------------------------- */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218static char *
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800219qla2x00_pci_info_str(struct scsi_qla_host *vha, char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800221 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 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
Andrew Vasquezfca29702005-07-06 10:31:47 -0700242static char *
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800243qla24xx_pci_info_str(struct scsi_qla_host *vha, char *str)
Andrew Vasquezfca29702005-07-06 10:31:47 -0700244{
245 static char *pci_bus_modes[] = { "33", "66", "100", "133", };
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800246 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezfca29702005-07-06 10:31:47 -0700247 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)
Andrew Vasquezc87a0d82008-04-03 13:13:21 -0700263 strcat(str, "2.5GT/s ");
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700264 else if (lspeed == 2)
Andrew Vasquezc87a0d82008-04-03 13:13:21 -0700265 strcat(str, "5.0GT/s ");
Andrew Vasquezfca29702005-07-06 10:31:47 -0700266 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
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800293static char *
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800294qla2x00_fw_version_str(struct scsi_qla_host *vha, char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
296 char un_str[10];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800297 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 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
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800332static char *
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800333qla24xx_fw_version_str(struct scsi_qla_host *vha, char *str)
Andrew Vasquezfca29702005-07-06 10:31:47 -0700334{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800335 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezf0883ac2005-07-08 17:58:43 -0700336 sprintf(str, "%d.%02d.%02d ", ha->fw_major_version,
337 ha->fw_minor_version,
338 ha->fw_subminor_version);
339
Andrew Vasquezfca29702005-07-06 10:31:47 -0700340 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] ");
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -0700346 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] ");
Harihara Kadayam4d4df192008-04-03 13:13:26 -0700352 if (ha->fw_attributes & BIT_10)
353 strcat(str, "[84XX] ");
Andrew Vasquezfca29702005-07-06 10:31:47 -0700354 if (ha->fw_attributes & BIT_13)
355 strcat(str, "[Experimental]");
356 return str;
Andrew Vasquezfca29702005-07-06 10:31:47 -0700357}
358
359static inline srb_t *
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800360qla2x00_get_new_sp(scsi_qla_host_t *vha, fc_port_t *fcport,
Andrew Vasquezfca29702005-07-06 10:31:47 -0700361 struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
362{
363 srb_t *sp;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800364 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezfca29702005-07-06 10:31:47 -0700365
366 sp = mempool_alloc(ha->srb_mempool, GFP_ATOMIC);
367 if (!sp)
368 return sp;
369
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800370 sp->vha = vha;
Andrew Vasquezfca29702005-07-06 10:31:47 -0700371 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380static int
f4f051e2005-04-17 15:02:26 -0500381qla2x00_queuecommand(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800383 scsi_qla_host_t *vha = shost_priv(cmd->device->host);
bdf79622005-04-17 15:06:53 -0500384 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400385 struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800386 struct qla_hw_data *ha = vha->hw;
f4f051e2005-04-17 15:02:26 -0500387 srb_t *sp;
388 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Seokmann Ju14e660e2007-09-20 14:07:36 -0700390 if (unlikely(pci_channel_offline(ha->pdev))) {
391 cmd->result = DID_REQUEUE << 16;
392 goto qc_fail_command;
393 }
394
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400395 rval = fc_remote_port_chkready(rport);
396 if (rval) {
397 cmd->result = rval;
f4f051e2005-04-17 15:02:26 -0500398 goto qc_fail_command;
399 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
andrew.vasquez@qlogic.com387f96b2006-02-07 08:45:45 -0800401 /* Close window on fcport/rport state-transitioning. */
Mike Christie7b594132008-08-17 15:24:40 -0500402 if (fcport->drport)
403 goto qc_target_busy;
andrew.vasquez@qlogic.com387f96b2006-02-07 08:45:45 -0800404
f4f051e2005-04-17 15:02:26 -0500405 if (atomic_read(&fcport->state) != FCS_ONLINE) {
406 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD ||
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800407 atomic_read(&vha->loop_state) == LOOP_DEAD) {
f4f051e2005-04-17 15:02:26 -0500408 cmd->result = DID_NO_CONNECT << 16;
409 goto qc_fail_command;
410 }
Mike Christie7b594132008-08-17 15:24:40 -0500411 goto qc_target_busy;
f4f051e2005-04-17 15:02:26 -0500412 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800414 spin_unlock_irq(vha->host->host_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800416 sp = qla2x00_get_new_sp(vha, fcport, cmd, done);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700417 if (!sp)
f4f051e2005-04-17 15:02:26 -0500418 goto qc_host_busy_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800420 rval = ha->isp_ops->start_scsi(sp);
f4f051e2005-04-17 15:02:26 -0500421 if (rval != QLA_SUCCESS)
422 goto qc_host_busy_free_sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800424 spin_lock_irq(vha->host->host_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
f4f051e2005-04-17 15:02:26 -0500426 return 0;
427
428qc_host_busy_free_sp:
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800429 qla2x00_sp_free_dma(sp);
f4f051e2005-04-17 15:02:26 -0500430 mempool_free(sp, ha->srb_mempool);
431
432qc_host_busy_lock:
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800433 spin_lock_irq(vha->host->host_lock);
f4f051e2005-04-17 15:02:26 -0500434 return SCSI_MLQUEUE_HOST_BUSY;
435
Mike Christie7b594132008-08-17 15:24:40 -0500436qc_target_busy:
437 return SCSI_MLQUEUE_TARGET_BUSY;
438
f4f051e2005-04-17 15:02:26 -0500439qc_fail_command:
440 done(cmd);
441
442 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443}
444
Andrew Vasquezfca29702005-07-06 10:31:47 -0700445
446static int
447qla24xx_queuecommand(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
448{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800449 scsi_qla_host_t *vha = shost_priv(cmd->device->host);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700450 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400451 struct fc_rport *rport = starget_to_rport(scsi_target(cmd->device));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800452 struct qla_hw_data *ha = vha->hw;
453 struct scsi_qla_host *base_vha = pci_get_drvdata(ha->pdev);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700454 srb_t *sp;
455 int rval;
456
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800457 if (unlikely(pci_channel_offline(ha->pdev))) {
Seokmann Ju14e660e2007-09-20 14:07:36 -0700458 cmd->result = DID_REQUEUE << 16;
459 goto qc24_fail_command;
460 }
461
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -0400462 rval = fc_remote_port_chkready(rport);
463 if (rval) {
464 cmd->result = rval;
Andrew Vasquezfca29702005-07-06 10:31:47 -0700465 goto qc24_fail_command;
466 }
467
andrew.vasquez@qlogic.com387f96b2006-02-07 08:45:45 -0800468 /* Close window on fcport/rport state-transitioning. */
Mike Christie7b594132008-08-17 15:24:40 -0500469 if (fcport->drport)
470 goto qc24_target_busy;
andrew.vasquez@qlogic.com387f96b2006-02-07 08:45:45 -0800471
Andrew Vasquezfca29702005-07-06 10:31:47 -0700472 if (atomic_read(&fcport->state) != FCS_ONLINE) {
473 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD ||
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800474 atomic_read(&base_vha->loop_state) == LOOP_DEAD) {
Andrew Vasquezfca29702005-07-06 10:31:47 -0700475 cmd->result = DID_NO_CONNECT << 16;
476 goto qc24_fail_command;
477 }
Mike Christie7b594132008-08-17 15:24:40 -0500478 goto qc24_target_busy;
Andrew Vasquezfca29702005-07-06 10:31:47 -0700479 }
480
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800481 spin_unlock_irq(vha->host->host_lock);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700482
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800483 sp = qla2x00_get_new_sp(base_vha, fcport, cmd, done);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700484 if (!sp)
485 goto qc24_host_busy_lock;
486
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800487 rval = ha->isp_ops->start_scsi(sp);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700488 if (rval != QLA_SUCCESS)
489 goto qc24_host_busy_free_sp;
490
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800491 spin_lock_irq(vha->host->host_lock);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700492
493 return 0;
494
495qc24_host_busy_free_sp:
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800496 qla2x00_sp_free_dma(sp);
497 mempool_free(sp, ha->srb_mempool);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700498
499qc24_host_busy_lock:
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800500 spin_lock_irq(vha->host->host_lock);
Andrew Vasquezfca29702005-07-06 10:31:47 -0700501 return SCSI_MLQUEUE_HOST_BUSY;
502
Mike Christie7b594132008-08-17 15:24:40 -0500503qc24_target_busy:
504 return SCSI_MLQUEUE_TARGET_BUSY;
505
Andrew Vasquezfca29702005-07-06 10:31:47 -0700506qc24_fail_command:
507 done(cmd);
508
509 return 0;
510}
511
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513/*
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:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 * cmd = Scsi Command to wait on.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 *
521 * Return:
522 * Not Found : 0
523 * Found : 1
524 */
525static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800526qla2x00_eh_wait_on_command(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
Andrew Vasquezfe74c712005-08-26 19:10:10 -0700528#define ABORT_POLLING_PERIOD 1000
529#define ABORT_WAIT_ITER ((10 * 1000) / (ABORT_POLLING_PERIOD))
f4f051e2005-04-17 15:02:26 -0500530 unsigned long wait_iter = ABORT_WAIT_ITER;
531 int ret = QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
f4f051e2005-04-17 15:02:26 -0500533 while (CMD_SP(cmd)) {
Andrew Vasquezfe74c712005-08-26 19:10:10 -0700534 msleep(ABORT_POLLING_PERIOD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
f4f051e2005-04-17 15:02:26 -0500536 if (--wait_iter)
537 break;
538 }
539 if (CMD_SP(cmd))
540 ret = QLA_FUNCTION_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
f4f051e2005-04-17 15:02:26 -0500542 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
544
545/*
546 * qla2x00_wait_for_hba_online
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700547 * Wait till the HBA is online after going through
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 * <= MAX_RETRIES_OF_ISP_ABORT or
549 * finally HBA is disabled ie marked offline
550 *
551 * Input:
552 * ha - pointer to host adapter structure
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700553 *
554 * Note:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 * 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 */
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -0800562int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800563qla2x00_wait_for_hba_online(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
Andrew Vasquezfca29702005-07-06 10:31:47 -0700565 int return_status;
566 unsigned long wait_online;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800567 struct qla_hw_data *ha = vha->hw;
568 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700570 wait_online = jiffies + (MAX_LOOP_TIMEOUT * HZ);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800571 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)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
576 msleep(1000);
577 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800578 if (base_vha->flags.online)
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700579 return_status = QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 else
581 return_status = QLA_FUNCTION_FAILED;
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 return (return_status);
584}
585
586/*
587 * qla2x00_wait_for_loop_ready
588 * Wait for MAX_LOOP_TIMEOUT(5 min) value for loop
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700589 * to be in LOOP_READY state.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 * Input:
591 * ha - pointer to host adapter structure
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700592 *
593 * Note:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 * Does context switching-Release SPIN_LOCK
595 * (if any) before calling this routine.
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700596 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 *
598 * Return:
599 * Success (LOOP_READY) : 0
600 * Failed (LOOP_NOT_READY) : 1
601 */
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700602static inline int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800603qla2x00_wait_for_loop_ready(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604{
605 int return_status = QLA_SUCCESS;
606 unsigned long loop_timeout ;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800607 struct qla_hw_data *ha = vha->hw;
608 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
610 /* wait for 5 min at the max for loop to be ready */
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700611 loop_timeout = jiffies + (MAX_LOOP_TIMEOUT * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800613 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) {
Ravi Anand57680082006-05-17 15:08:44 -0700617 return_status = QLA_FUNCTION_FAILED;
618 break;
619 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 msleep(1000);
621 if (time_after_eq(jiffies, loop_timeout)) {
622 return_status = QLA_FUNCTION_FAILED;
623 break;
624 }
625 }
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700626 return (return_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627}
628
Seokmann Ju5f3a9a22008-07-10 16:55:47 -0700629void
630qla2x00_abort_fcport_cmds(fc_port_t *fcport)
631{
632 int cnt;
633 unsigned long flags;
634 srb_t *sp;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800635 scsi_qla_host_t *vha = fcport->vha;
636 struct qla_hw_data *ha = vha->hw;
637 struct req_que *req = ha->req;
Seokmann Ju5f3a9a22008-07-10 16:55:47 -0700638
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800639 spin_lock_irqsave(&ha->hardware_lock, flags);
Seokmann Ju5f3a9a22008-07-10 16:55:47 -0700640 for (cnt = 1; cnt < MAX_OUTSTANDING_COMMANDS; cnt++) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800641 sp = req->outstanding_cmds[cnt];
Seokmann Ju5f3a9a22008-07-10 16:55:47 -0700642 if (!sp)
643 continue;
644 if (sp->fcport != fcport)
645 continue;
646
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800647 spin_unlock_irqrestore(&ha->hardware_lock, flags);
648 if (ha->isp_ops->abort_command(vha, sp)) {
Seokmann Ju5f3a9a22008-07-10 16:55:47 -0700649 DEBUG2(qla_printk(KERN_WARNING, ha,
650 "Abort failed -- %lx\n", sp->cmd->serial_number));
651 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800652 if (qla2x00_eh_wait_on_command(sp->cmd) !=
Seokmann Ju5f3a9a22008-07-10 16:55:47 -0700653 QLA_SUCCESS)
654 DEBUG2(qla_printk(KERN_WARNING, ha,
655 "Abort failed while waiting -- %lx\n",
656 sp->cmd->serial_number));
657
658 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800659 spin_lock_irqsave(&ha->hardware_lock, flags);
Seokmann Ju5f3a9a22008-07-10 16:55:47 -0700660 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800661 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Seokmann Ju5f3a9a22008-07-10 16:55:47 -0700662}
663
Andrew Vasquez07db5182006-10-02 12:00:49 -0700664static void
665qla2x00_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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681/**************************************************************************
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:
Michael Reed2ea00202006-04-27 16:25:30 -0700694* Only return FAILED if command not returned by firmware.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695**************************************************************************/
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800696static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697qla2xxx_eh_abort(struct scsi_cmnd *cmd)
698{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800699 scsi_qla_host_t *vha = shost_priv(cmd->device->host);
f4f051e2005-04-17 15:02:26 -0500700 srb_t *sp;
701 int ret, i;
702 unsigned int id, lun;
703 unsigned long serial;
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700704 unsigned long flags;
Michael Reed2ea00202006-04-27 16:25:30 -0700705 int wait = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800706 struct qla_hw_data *ha = vha->hw;
707 struct req_que *req = ha->req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Andrew Vasquez07db5182006-10-02 12:00:49 -0700709 qla2x00_block_error_handler(cmd);
710
f4f051e2005-04-17 15:02:26 -0500711 if (!CMD_SP(cmd))
Michael Reed2ea00202006-04-27 16:25:30 -0700712 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Michael Reed2ea00202006-04-27 16:25:30 -0700714 ret = SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
f4f051e2005-04-17 15:02:26 -0500716 id = cmd->device->id;
717 lun = cmd->device->lun;
718 serial = cmd->serial_number;
719
720 /* Check active list for command command. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800721 spin_lock_irqsave(&ha->hardware_lock, flags);
f4f051e2005-04-17 15:02:26 -0500722 for (i = 1; i < MAX_OUTSTANDING_COMMANDS; i++) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800723 sp = req->outstanding_cmds[i];
f4f051e2005-04-17 15:02:26 -0500724
725 if (sp == NULL)
726 continue;
727
728 if (sp->cmd != cmd)
729 continue;
730
Andrew Vasquez75bc4192006-05-17 15:09:22 -0700731 DEBUG2(printk("%s(%ld): aborting sp %p from RISC. pid=%ld.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800732 __func__, vha->host_no, sp, serial));
f4f051e2005-04-17 15:02:26 -0500733
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800734 spin_unlock_irqrestore(&ha->hardware_lock, flags);
735 if (ha->isp_ops->abort_command(vha, sp)) {
f4f051e2005-04-17 15:02:26 -0500736 DEBUG2(printk("%s(%ld): abort_command "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800737 "mbx failed.\n", __func__, vha->host_no));
Michael Reed5bff55d2008-10-24 15:13:47 -0700738 ret = FAILED;
f4f051e2005-04-17 15:02:26 -0500739 } else {
740 DEBUG3(printk("%s(%ld): abort_command "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800741 "mbx success.\n", __func__, vha->host_no));
Michael Reed2ea00202006-04-27 16:25:30 -0700742 wait = 1;
f4f051e2005-04-17 15:02:26 -0500743 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800744 spin_lock_irqsave(&ha->hardware_lock, flags);
f4f051e2005-04-17 15:02:26 -0500745
746 break;
747 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800748 spin_unlock_irqrestore(&ha->hardware_lock, flags);
f4f051e2005-04-17 15:02:26 -0500749
750 /* Wait for the command to be returned. */
Michael Reed2ea00202006-04-27 16:25:30 -0700751 if (wait) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800752 if (qla2x00_eh_wait_on_command(cmd) != QLA_SUCCESS) {
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700753 qla_printk(KERN_ERR, ha,
f4f051e2005-04-17 15:02:26 -0500754 "scsi(%ld:%d:%d): Abort handler timed out -- %lx "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800755 "%x.\n", vha->host_no, id, lun, serial, ret);
Michael Reed2ea00202006-04-27 16:25:30 -0700756 ret = FAILED;
f4f051e2005-04-17 15:02:26 -0500757 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700760 qla_printk(KERN_INFO, ha,
Michael Reed2ea00202006-04-27 16:25:30 -0700761 "scsi(%ld:%d:%d): Abort command issued -- %d %lx %x.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800762 vha->host_no, id, lun, wait, serial, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
f4f051e2005-04-17 15:02:26 -0500764 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765}
766
Andrew Vasquez523ec772008-04-03 13:13:24 -0700767enum nexus_wait_type {
768 WAIT_HOST = 0,
769 WAIT_TARGET,
770 WAIT_LUN,
771};
772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800774qla2x00_eh_wait_for_pending_commands(scsi_qla_host_t *vha, unsigned int t,
Andrew Vasquez523ec772008-04-03 13:13:24 -0700775 unsigned int l, enum nexus_wait_type type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776{
Andrew Vasquez523ec772008-04-03 13:13:24 -0700777 int cnt, match, status;
778 srb_t *sp;
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700779 unsigned long flags;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800780 struct qla_hw_data *ha = vha->hw;
781 struct req_que *req = ha->req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Andrew Vasquez523ec772008-04-03 13:13:24 -0700783 status = QLA_SUCCESS;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800784 spin_lock_irqsave(&ha->hardware_lock, flags);
Andrew Vasquez523ec772008-04-03 13:13:24 -0700785 for (cnt = 1; status == QLA_SUCCESS && cnt < MAX_OUTSTANDING_COMMANDS;
786 cnt++) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800787 sp = req->outstanding_cmds[cnt];
Andrew Vasquez523ec772008-04-03 13:13:24 -0700788 if (!sp)
789 continue;
Andrew Vasquez19851f12008-08-13 21:37:00 -0700790
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800791 if (vha->vp_idx != sp->fcport->vha->vp_idx)
Andrew Vasquez523ec772008-04-03 13:13:24 -0700792 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 }
Andrew Vasquez523ec772008-04-03 13:13:24 -0700806 if (!match)
807 continue;
808
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800809 spin_unlock_irqrestore(&ha->hardware_lock, flags);
810 status = qla2x00_eh_wait_on_command(sp->cmd);
811 spin_lock_irqsave(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800813 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Andrew Vasquez523ec772008-04-03 13:13:24 -0700814
815 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816}
817
Andrew Vasquez523ec772008-04-03 13:13:24 -0700818static char *reset_errors[] = {
819 "HBA not online",
820 "HBA not ready",
821 "Task management failed",
822 "Waiting for command completions",
823};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
Andrew Vasquez523ec772008-04-03 13:13:24 -0700825static 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{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800829 scsi_qla_host_t *vha = shost_priv(cmd->device->host);
Andrew Vasquez523ec772008-04-03 13:13:24 -0700830 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
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800838 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);
Andrew Vasquez523ec772008-04-03 13:13:24 -0700840
841 err = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800842 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS)
Andrew Vasquez523ec772008-04-03 13:13:24 -0700843 goto eh_reset_failed;
844 err = 1;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800845 if (qla2x00_wait_for_loop_ready(vha) != QLA_SUCCESS)
Andrew Vasquez523ec772008-04-03 13:13:24 -0700846 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;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800851 if (qla2x00_eh_wait_for_pending_commands(vha, cmd->device->id,
Andrew Vasquez523ec772008-04-03 13:13:24 -0700852 cmd->device->lun, type) != QLA_SUCCESS)
853 goto eh_reset_failed;
854
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800855 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);
Andrew Vasquez523ec772008-04-03 13:13:24 -0700857
858 return SUCCESS;
859
860 eh_reset_failed:
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800861 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,
Andrew Vasquez523ec772008-04-03 13:13:24 -0700863 reset_errors[err]);
864 return FAILED;
865}
866
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800867static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868qla2xxx_eh_device_reset(struct scsi_cmnd *cmd)
869{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800870 scsi_qla_host_t *vha = shost_priv(cmd->device->host);
871 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Andrew Vasquez523ec772008-04-03 13:13:24 -0700873 return __qla2xxx_eh_generic_reset("DEVICE", WAIT_LUN, cmd,
874 ha->isp_ops->lun_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875}
876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877static int
Andrew Vasquez523ec772008-04-03 13:13:24 -0700878qla2xxx_eh_target_reset(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800880 scsi_qla_host_t *vha = shost_priv(cmd->device->host);
881 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Andrew Vasquez523ec772008-04-03 13:13:24 -0700883 return __qla2xxx_eh_generic_reset("TARGET", WAIT_TARGET, cmd,
884 ha->isp_ops->target_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885}
886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887/**************************************************************************
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**************************************************************************/
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800902static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903qla2xxx_eh_bus_reset(struct scsi_cmnd *cmd)
904{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800905 scsi_qla_host_t *vha = shost_priv(cmd->device->host);
bdf79622005-04-17 15:06:53 -0500906 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700907 int ret = FAILED;
f4f051e2005-04-17 15:02:26 -0500908 unsigned int id, lun;
909 unsigned long serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Andrew Vasquez07db5182006-10-02 12:00:49 -0700911 qla2x00_block_error_handler(cmd);
912
f4f051e2005-04-17 15:02:26 -0500913 id = cmd->device->id;
914 lun = cmd->device->lun;
915 serial = cmd->serial_number;
916
Vladislav Bolkhovitinb0328be2006-08-01 13:48:15 -0700917 if (!fcport)
f4f051e2005-04-17 15:02:26 -0500918 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800920 qla_printk(KERN_INFO, vha->hw,
921 "scsi(%ld:%d:%d): LOOP RESET ISSUED.\n", vha->host_no, id, lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800923 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 DEBUG2(printk("%s failed:board disabled\n",__func__));
f4f051e2005-04-17 15:02:26 -0500925 goto eh_bus_reset_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 }
927
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800928 if (qla2x00_wait_for_loop_ready(vha) == QLA_SUCCESS) {
929 if (qla2x00_loop_reset(vha) == QLA_SUCCESS)
f4f051e2005-04-17 15:02:26 -0500930 ret = SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 }
f4f051e2005-04-17 15:02:26 -0500932 if (ret == FAILED)
933 goto eh_bus_reset_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Andrew Vasquez9a41a622005-09-20 13:25:53 -0700935 /* Flush outstanding commands. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800936 if (qla2x00_eh_wait_for_pending_commands(vha, 0, 0, WAIT_HOST) !=
Andrew Vasquez523ec772008-04-03 13:13:24 -0700937 QLA_SUCCESS)
Andrew Vasquez9a41a622005-09-20 13:25:53 -0700938 ret = FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939
f4f051e2005-04-17 15:02:26 -0500940eh_bus_reset_done:
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800941 qla_printk(KERN_INFO, vha->hw, "%s: reset %s\n", __func__,
f4f051e2005-04-17 15:02:26 -0500942 (ret == FAILED) ? "failed" : "succeded");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
f4f051e2005-04-17 15:02:26 -0500944 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945}
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**************************************************************************/
Adrian Bunke5f82ab2006-11-08 19:55:50 -0800962static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963qla2xxx_eh_host_reset(struct scsi_cmnd *cmd)
964{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800965 scsi_qla_host_t *vha = shost_priv(cmd->device->host);
bdf79622005-04-17 15:06:53 -0500966 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800967 struct qla_hw_data *ha = vha->hw;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -0700968 int ret = FAILED;
f4f051e2005-04-17 15:02:26 -0500969 unsigned int id, lun;
970 unsigned long serial;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800971 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
Andrew Vasquez07db5182006-10-02 12:00:49 -0700973 qla2x00_block_error_handler(cmd);
974
f4f051e2005-04-17 15:02:26 -0500975 id = cmd->device->id;
976 lun = cmd->device->lun;
977 serial = cmd->serial_number;
978
Vladislav Bolkhovitinb0328be2006-08-01 13:48:15 -0700979 if (!fcport)
f4f051e2005-04-17 15:02:26 -0500980 return ret;
981
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 qla_printk(KERN_INFO, ha,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800983 "scsi(%ld:%d:%d): ADAPTER RESET ISSUED.\n", vha->host_no, id, lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800985 if (qla2x00_wait_for_hba_online(vha) != QLA_SUCCESS)
f4f051e2005-04-17 15:02:26 -0500986 goto eh_host_reset_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
988 /*
989 * Fixme-may be dpc thread is active and processing
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -0700990 * loop_resync,so wait a while for it to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 * 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 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -0800996 qla2x00_wait_for_loop_ready(vha);
997 if (vha != base_vha) {
998 if (qla2x00_vp_abort_isp(vha))
f4f051e2005-04-17 15:02:26 -0500999 goto eh_host_reset_lock;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001000 } 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);
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001011 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001013 /* Waiting for command to be returned to OS.*/
1014 if (qla2x00_eh_wait_for_pending_commands(vha, 0, 0, WAIT_HOST) ==
1015 QLA_SUCCESS)
f4f051e2005-04-17 15:02:26 -05001016 ret = SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
f4f051e2005-04-17 15:02:26 -05001018eh_host_reset_lock:
f4f051e2005-04-17 15:02:26 -05001019 qla_printk(KERN_INFO, ha, "%s: reset %s\n", __func__,
1020 (ret == FAILED) ? "failed" : "succeded");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
f4f051e2005-04-17 15:02:26 -05001022 return ret;
1023}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
1025/*
1026* qla2x00_loop_reset
1027* Issue loop reset.
1028*
1029* Input:
1030* ha = adapter block pointer.
1031*
1032* Returns:
1033* 0 = success
1034*/
Andrew Vasqueza4722cf2008-01-17 09:02:12 -08001035int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001036qla2x00_loop_reset(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037{
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001038 int ret;
bdf79622005-04-17 15:06:53 -05001039 struct fc_port *fcport;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001040 struct qla_hw_data *ha = vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001042 if (ha->flags.enable_lip_full_login) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001043 ret = qla2x00_full_login_lip(vha);
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001044 if (ret != QLA_SUCCESS) {
1045 DEBUG2_3(printk("%s(%ld): bus_reset failed: "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001046 "full_login_lip=%d.\n", __func__, vha->host_no,
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001047 ret));
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001048 } else
1049 qla2x00_wait_for_loop_ready(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 }
1051
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001052 if (ha->flags.enable_lip_reset) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001053 ret = qla2x00_lip_reset(vha);
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001054 if (ret != QLA_SUCCESS) {
1055 DEBUG2_3(printk("%s(%ld): bus_reset failed: "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001056 "lip_reset=%d.\n", __func__, vha->host_no, ret));
1057 } else
1058 qla2x00_wait_for_loop_ready(vha);
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001059 }
1060
1061 if (ha->flags.enable_target_reset) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001062 list_for_each_entry(fcport, &vha->vp_fcports, list) {
bdf79622005-04-17 15:06:53 -05001063 if (fcport->port_type != FCT_TARGET)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 continue;
1065
Andrew Vasquez523ec772008-04-03 13:13:24 -07001066 ret = ha->isp_ops->target_reset(fcport, 0);
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001067 if (ret != QLA_SUCCESS) {
1068 DEBUG2_3(printk("%s(%ld): bus_reset failed: "
1069 "target_reset=%d d_id=%x.\n", __func__,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001070 vha->host_no, ret, fcport->d_id.b24));
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001071 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 }
1073 }
1074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 /* Issue marker command only when we are going to start the I/O */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001076 vha->marker_needed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
Andrew Vasquez0c8c39a2006-12-13 19:20:30 -08001078 return QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079}
1080
Andrew Vasquezdf4bf0b2008-01-31 12:33:46 -08001081void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001082qla2x00_abort_all_cmds(scsi_qla_host_t *vha, int res)
Andrew Vasquezdf4bf0b2008-01-31 12:33:46 -08001083{
1084 int cnt;
1085 unsigned long flags;
1086 srb_t *sp;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001087 struct qla_hw_data *ha = vha->hw;
1088 struct req_que *req = ha->req;
Andrew Vasquezdf4bf0b2008-01-31 12:33:46 -08001089
1090 spin_lock_irqsave(&ha->hardware_lock, flags);
1091 for (cnt = 1; cnt < MAX_OUTSTANDING_COMMANDS; cnt++) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001092 sp = req->outstanding_cmds[cnt];
Andrew Vasquezdf4bf0b2008-01-31 12:33:46 -08001093 if (sp) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001094 req->outstanding_cmds[cnt] = NULL;
Andrew Vasquezdf4bf0b2008-01-31 12:33:46 -08001095 sp->cmd->result = res;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001096 qla2x00_sp_compl(vha, sp);
Andrew Vasquezdf4bf0b2008-01-31 12:33:46 -08001097 }
1098 }
1099 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1100}
1101
f4f051e2005-04-17 15:02:26 -05001102static int
1103qla2xxx_slave_alloc(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104{
bdf79622005-04-17 15:06:53 -05001105 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04001107 if (!rport || fc_remote_port_chkready(rport))
f4f051e2005-04-17 15:02:26 -05001108 return -ENXIO;
1109
James.Smart@Emulex.Com19a7b4a2005-10-18 12:03:35 -04001110 sdev->hostdata = *(fc_port_t **)rport->dd_data;
f4f051e2005-04-17 15:02:26 -05001111
1112 return 0;
1113}
1114
1115static int
1116qla2xxx_slave_configure(struct scsi_device *sdev)
1117{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001118 scsi_qla_host_t *vha = shost_priv(sdev->host);
1119 struct qla_hw_data *ha = vha->hw;
8482e1182005-04-17 15:04:54 -05001120 struct fc_rport *rport = starget_to_rport(sdev->sdev_target);
1121
f4f051e2005-04-17 15:02:26 -05001122 if (sdev->tagged_supported)
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001123 scsi_activate_tcq(sdev, ha->req->max_q_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 else
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001125 scsi_deactivate_tcq(sdev, ha->req->max_q_depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Andrew Vasquez85821c92008-07-10 16:55:48 -07001127 rport->dev_loss_tmo = ha->port_down_retry_count;
8482e1182005-04-17 15:04:54 -05001128
f4f051e2005-04-17 15:02:26 -05001129 return 0;
1130}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
f4f051e2005-04-17 15:02:26 -05001132static void
1133qla2xxx_slave_destroy(struct scsi_device *sdev)
1134{
1135 sdev->hostdata = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136}
1137
Andrew Vasquezce7e4af2005-08-26 19:09:30 -07001138static int
1139qla2x00_change_queue_depth(struct scsi_device *sdev, int qdepth)
1140{
1141 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), qdepth);
1142 return sdev->queue_depth;
1143}
1144
1145static int
1146qla2x00_change_queue_type(struct scsi_device *sdev, int tag_type)
1147{
1148 if (sdev->tagged_supported) {
1149 scsi_set_tag_type(sdev, tag_type);
1150 if (tag_type)
1151 scsi_activate_tcq(sdev, sdev->queue_depth);
1152 else
1153 scsi_deactivate_tcq(sdev, sdev->queue_depth);
1154 } else
1155 tag_type = 0;
1156
1157 return tag_type;
1158}
1159
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160/**
1161 * qla2x00_config_dma_addressing() - Configure OS DMA addressing method.
1162 * @ha: HA context
1163 *
1164 * At exit, the @ha's flags.enable_64bit_addressing set to indicated
1165 * supported addressing method.
1166 */
1167static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001168qla2x00_config_dma_addressing(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001170 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001171 /* Assume a 32bit DMA mask. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 ha->flags.enable_64bit_addressing = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001174 if (!dma_set_mask(&ha->pdev->dev, DMA_64BIT_MASK)) {
1175 /* Any upper-dword bits set? */
1176 if (MSD(dma_get_required_mask(&ha->pdev->dev)) &&
1177 !pci_set_consistent_dma_mask(ha->pdev, DMA_64BIT_MASK)) {
1178 /* Ok, a 64bit DMA mask is applicable. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 ha->flags.enable_64bit_addressing = 1;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001180 ha->isp_ops->calc_req_entries = qla2x00_calc_iocbs_64;
1181 ha->isp_ops->build_iocbs = qla2x00_build_scsi_iocbs_64;
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001182 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 }
Andrew Vasquez7524f9b2005-08-26 19:08:00 -07001185
1186 dma_set_mask(&ha->pdev->dev, DMA_32BIT_MASK);
1187 pci_set_consistent_dma_mask(ha->pdev, DMA_32BIT_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188}
1189
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001190static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001191qla2x00_enable_intrs(struct qla_hw_data *ha)
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001192{
1193 unsigned long flags = 0;
1194 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1195
1196 spin_lock_irqsave(&ha->hardware_lock, flags);
1197 ha->interrupts_on = 1;
1198 /* enable risc and host interrupts */
1199 WRT_REG_WORD(&reg->ictrl, ICR_EN_INT | ICR_EN_RISC);
1200 RD_REG_WORD(&reg->ictrl);
1201 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1202
1203}
1204
1205static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001206qla2x00_disable_intrs(struct qla_hw_data *ha)
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001207{
1208 unsigned long flags = 0;
1209 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
1210
1211 spin_lock_irqsave(&ha->hardware_lock, flags);
1212 ha->interrupts_on = 0;
1213 /* disable risc and host interrupts */
1214 WRT_REG_WORD(&reg->ictrl, 0);
1215 RD_REG_WORD(&reg->ictrl);
1216 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1217}
1218
1219static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001220qla24xx_enable_intrs(struct qla_hw_data *ha)
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001221{
1222 unsigned long flags = 0;
1223 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1224
1225 spin_lock_irqsave(&ha->hardware_lock, flags);
1226 ha->interrupts_on = 1;
1227 WRT_REG_DWORD(&reg->ictrl, ICRX_EN_RISC_INT);
1228 RD_REG_DWORD(&reg->ictrl);
1229 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1230}
1231
1232static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001233qla24xx_disable_intrs(struct qla_hw_data *ha)
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001234{
1235 unsigned long flags = 0;
1236 struct device_reg_24xx __iomem *reg = &ha->iobase->isp24;
1237
1238 spin_lock_irqsave(&ha->hardware_lock, flags);
1239 ha->interrupts_on = 0;
1240 WRT_REG_DWORD(&reg->ictrl, 0);
1241 RD_REG_DWORD(&reg->ictrl);
1242 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1243}
1244
1245static struct isp_operations qla2100_isp_ops = {
1246 .pci_config = qla2100_pci_config,
1247 .reset_chip = qla2x00_reset_chip,
1248 .chip_diag = qla2x00_chip_diag,
1249 .config_rings = qla2x00_config_rings,
1250 .reset_adapter = qla2x00_reset_adapter,
1251 .nvram_config = qla2x00_nvram_config,
1252 .update_fw_options = qla2x00_update_fw_options,
1253 .load_risc = qla2x00_load_risc,
1254 .pci_info_str = qla2x00_pci_info_str,
1255 .fw_version_str = qla2x00_fw_version_str,
1256 .intr_handler = qla2100_intr_handler,
1257 .enable_intrs = qla2x00_enable_intrs,
1258 .disable_intrs = qla2x00_disable_intrs,
1259 .abort_command = qla2x00_abort_command,
Andrew Vasquez523ec772008-04-03 13:13:24 -07001260 .target_reset = qla2x00_abort_target,
1261 .lun_reset = qla2x00_lun_reset,
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001262 .fabric_login = qla2x00_login_fabric,
1263 .fabric_logout = qla2x00_fabric_logout,
1264 .calc_req_entries = qla2x00_calc_iocbs_32,
1265 .build_iocbs = qla2x00_build_scsi_iocbs_32,
1266 .prep_ms_iocb = qla2x00_prep_ms_iocb,
1267 .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb,
1268 .read_nvram = qla2x00_read_nvram_data,
1269 .write_nvram = qla2x00_write_nvram_data,
1270 .fw_dump = qla2100_fw_dump,
1271 .beacon_on = NULL,
1272 .beacon_off = NULL,
1273 .beacon_blink = NULL,
1274 .read_optrom = qla2x00_read_optrom_data,
1275 .write_optrom = qla2x00_write_optrom_data,
1276 .get_flash_version = qla2x00_get_flash_version,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001277 .start_scsi = qla2x00_start_scsi,
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001278};
1279
1280static struct isp_operations qla2300_isp_ops = {
1281 .pci_config = qla2300_pci_config,
1282 .reset_chip = qla2x00_reset_chip,
1283 .chip_diag = qla2x00_chip_diag,
1284 .config_rings = qla2x00_config_rings,
1285 .reset_adapter = qla2x00_reset_adapter,
1286 .nvram_config = qla2x00_nvram_config,
1287 .update_fw_options = qla2x00_update_fw_options,
1288 .load_risc = qla2x00_load_risc,
1289 .pci_info_str = qla2x00_pci_info_str,
1290 .fw_version_str = qla2x00_fw_version_str,
1291 .intr_handler = qla2300_intr_handler,
1292 .enable_intrs = qla2x00_enable_intrs,
1293 .disable_intrs = qla2x00_disable_intrs,
1294 .abort_command = qla2x00_abort_command,
Andrew Vasquez523ec772008-04-03 13:13:24 -07001295 .target_reset = qla2x00_abort_target,
1296 .lun_reset = qla2x00_lun_reset,
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001297 .fabric_login = qla2x00_login_fabric,
1298 .fabric_logout = qla2x00_fabric_logout,
1299 .calc_req_entries = qla2x00_calc_iocbs_32,
1300 .build_iocbs = qla2x00_build_scsi_iocbs_32,
1301 .prep_ms_iocb = qla2x00_prep_ms_iocb,
1302 .prep_ms_fdmi_iocb = qla2x00_prep_ms_fdmi_iocb,
1303 .read_nvram = qla2x00_read_nvram_data,
1304 .write_nvram = qla2x00_write_nvram_data,
1305 .fw_dump = qla2300_fw_dump,
1306 .beacon_on = qla2x00_beacon_on,
1307 .beacon_off = qla2x00_beacon_off,
1308 .beacon_blink = qla2x00_beacon_blink,
1309 .read_optrom = qla2x00_read_optrom_data,
1310 .write_optrom = qla2x00_write_optrom_data,
1311 .get_flash_version = qla2x00_get_flash_version,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001312 .start_scsi = qla2x00_start_scsi,
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001313};
1314
1315static struct isp_operations qla24xx_isp_ops = {
1316 .pci_config = qla24xx_pci_config,
1317 .reset_chip = qla24xx_reset_chip,
1318 .chip_diag = qla24xx_chip_diag,
1319 .config_rings = qla24xx_config_rings,
1320 .reset_adapter = qla24xx_reset_adapter,
1321 .nvram_config = qla24xx_nvram_config,
1322 .update_fw_options = qla24xx_update_fw_options,
1323 .load_risc = qla24xx_load_risc,
1324 .pci_info_str = qla24xx_pci_info_str,
1325 .fw_version_str = qla24xx_fw_version_str,
1326 .intr_handler = qla24xx_intr_handler,
1327 .enable_intrs = qla24xx_enable_intrs,
1328 .disable_intrs = qla24xx_disable_intrs,
1329 .abort_command = qla24xx_abort_command,
Andrew Vasquez523ec772008-04-03 13:13:24 -07001330 .target_reset = qla24xx_abort_target,
1331 .lun_reset = qla24xx_lun_reset,
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001332 .fabric_login = qla24xx_login_fabric,
1333 .fabric_logout = qla24xx_fabric_logout,
1334 .calc_req_entries = NULL,
1335 .build_iocbs = NULL,
1336 .prep_ms_iocb = qla24xx_prep_ms_iocb,
1337 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
1338 .read_nvram = qla24xx_read_nvram_data,
1339 .write_nvram = qla24xx_write_nvram_data,
1340 .fw_dump = qla24xx_fw_dump,
1341 .beacon_on = qla24xx_beacon_on,
1342 .beacon_off = qla24xx_beacon_off,
1343 .beacon_blink = qla24xx_beacon_blink,
1344 .read_optrom = qla24xx_read_optrom_data,
1345 .write_optrom = qla24xx_write_optrom_data,
1346 .get_flash_version = qla24xx_get_flash_version,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001347 .start_scsi = qla24xx_start_scsi,
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001348};
1349
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001350static struct isp_operations qla25xx_isp_ops = {
1351 .pci_config = qla25xx_pci_config,
1352 .reset_chip = qla24xx_reset_chip,
1353 .chip_diag = qla24xx_chip_diag,
1354 .config_rings = qla24xx_config_rings,
1355 .reset_adapter = qla24xx_reset_adapter,
1356 .nvram_config = qla24xx_nvram_config,
1357 .update_fw_options = qla24xx_update_fw_options,
1358 .load_risc = qla24xx_load_risc,
1359 .pci_info_str = qla24xx_pci_info_str,
1360 .fw_version_str = qla24xx_fw_version_str,
1361 .intr_handler = qla24xx_intr_handler,
1362 .enable_intrs = qla24xx_enable_intrs,
1363 .disable_intrs = qla24xx_disable_intrs,
1364 .abort_command = qla24xx_abort_command,
Andrew Vasquez523ec772008-04-03 13:13:24 -07001365 .target_reset = qla24xx_abort_target,
1366 .lun_reset = qla24xx_lun_reset,
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001367 .fabric_login = qla24xx_login_fabric,
1368 .fabric_logout = qla24xx_fabric_logout,
1369 .calc_req_entries = NULL,
1370 .build_iocbs = NULL,
1371 .prep_ms_iocb = qla24xx_prep_ms_iocb,
1372 .prep_ms_fdmi_iocb = qla24xx_prep_ms_fdmi_iocb,
1373 .read_nvram = qla25xx_read_nvram_data,
1374 .write_nvram = qla25xx_write_nvram_data,
1375 .fw_dump = qla25xx_fw_dump,
1376 .beacon_on = qla24xx_beacon_on,
1377 .beacon_off = qla24xx_beacon_off,
1378 .beacon_blink = qla24xx_beacon_blink,
Andrew Vasquez338c9162007-09-20 14:07:33 -07001379 .read_optrom = qla25xx_read_optrom_data,
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001380 .write_optrom = qla24xx_write_optrom_data,
1381 .get_flash_version = qla24xx_get_flash_version,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001382 .start_scsi = qla24xx_start_scsi,
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001383};
1384
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001385static inline void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001386qla2x00_set_isp_flags(struct qla_hw_data *ha)
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001387{
1388 ha->device_type = DT_EXTENDED_IDS;
1389 switch (ha->pdev->device) {
1390 case PCI_DEVICE_ID_QLOGIC_ISP2100:
1391 ha->device_type |= DT_ISP2100;
1392 ha->device_type &= ~DT_EXTENDED_IDS;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001393 ha->fw_srisc_address = RISC_START_ADDRESS_2100;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001394 break;
1395 case PCI_DEVICE_ID_QLOGIC_ISP2200:
1396 ha->device_type |= DT_ISP2200;
1397 ha->device_type &= ~DT_EXTENDED_IDS;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001398 ha->fw_srisc_address = RISC_START_ADDRESS_2100;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001399 break;
1400 case PCI_DEVICE_ID_QLOGIC_ISP2300:
1401 ha->device_type |= DT_ISP2300;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001402 ha->device_type |= DT_ZIO_SUPPORTED;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001403 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001404 break;
1405 case PCI_DEVICE_ID_QLOGIC_ISP2312:
1406 ha->device_type |= DT_ISP2312;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001407 ha->device_type |= DT_ZIO_SUPPORTED;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001408 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001409 break;
1410 case PCI_DEVICE_ID_QLOGIC_ISP2322:
1411 ha->device_type |= DT_ISP2322;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001412 ha->device_type |= DT_ZIO_SUPPORTED;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001413 if (ha->pdev->subsystem_vendor == 0x1028 &&
1414 ha->pdev->subsystem_device == 0x0170)
1415 ha->device_type |= DT_OEM_001;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001416 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001417 break;
1418 case PCI_DEVICE_ID_QLOGIC_ISP6312:
1419 ha->device_type |= DT_ISP6312;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001420 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001421 break;
1422 case PCI_DEVICE_ID_QLOGIC_ISP6322:
1423 ha->device_type |= DT_ISP6322;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001424 ha->fw_srisc_address = RISC_START_ADDRESS_2300;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001425 break;
1426 case PCI_DEVICE_ID_QLOGIC_ISP2422:
1427 ha->device_type |= DT_ISP2422;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001428 ha->device_type |= DT_ZIO_SUPPORTED;
Andrew Vasqueze4289242007-07-19 15:05:56 -07001429 ha->device_type |= DT_FWI2;
Andrew Vasquezc76f2c02007-07-19 15:05:57 -07001430 ha->device_type |= DT_IIDMA;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001431 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001432 break;
1433 case PCI_DEVICE_ID_QLOGIC_ISP2432:
1434 ha->device_type |= DT_ISP2432;
andrew.vasquez@qlogic.com4a59f712006-03-09 14:27:39 -08001435 ha->device_type |= DT_ZIO_SUPPORTED;
Andrew Vasqueze4289242007-07-19 15:05:56 -07001436 ha->device_type |= DT_FWI2;
Andrew Vasquezc76f2c02007-07-19 15:05:57 -07001437 ha->device_type |= DT_IIDMA;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001438 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001439 break;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001440 case PCI_DEVICE_ID_QLOGIC_ISP8432:
1441 ha->device_type |= DT_ISP8432;
1442 ha->device_type |= DT_ZIO_SUPPORTED;
1443 ha->device_type |= DT_FWI2;
1444 ha->device_type |= DT_IIDMA;
1445 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
1446 break;
andrew.vasquez@qlogic.com044cc6c2006-03-09 14:27:13 -08001447 case PCI_DEVICE_ID_QLOGIC_ISP5422:
1448 ha->device_type |= DT_ISP5422;
Andrew Vasqueze4289242007-07-19 15:05:56 -07001449 ha->device_type |= DT_FWI2;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001450 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001451 break;
andrew.vasquez@qlogic.com044cc6c2006-03-09 14:27:13 -08001452 case PCI_DEVICE_ID_QLOGIC_ISP5432:
1453 ha->device_type |= DT_ISP5432;
Andrew Vasqueze4289242007-07-19 15:05:56 -07001454 ha->device_type |= DT_FWI2;
Andrew Vasquez441d1072006-05-17 15:09:34 -07001455 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001456 break;
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001457 case PCI_DEVICE_ID_QLOGIC_ISP2532:
1458 ha->device_type |= DT_ISP2532;
1459 ha->device_type |= DT_ZIO_SUPPORTED;
1460 ha->device_type |= DT_FWI2;
1461 ha->device_type |= DT_IIDMA;
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001462 ha->fw_srisc_address = RISC_START_ADDRESS_2400;
1463 break;
1464 }
1465}
1466
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001468qla2x00_iospace_config(struct qla_hw_data *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469{
Andrew Vasquez37765412008-01-17 09:02:09 -08001470 resource_size_t pio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
Andrew Vasquez285d0322007-10-19 15:59:17 -07001472 if (pci_request_selected_regions(ha->pdev, ha->bars,
1473 QLA2XXX_DRIVER_NAME)) {
1474 qla_printk(KERN_WARNING, ha,
1475 "Failed to reserve PIO/MMIO regions (%s)\n",
1476 pci_name(ha->pdev));
1477
1478 goto iospace_error_exit;
1479 }
1480 if (!(ha->bars & 1))
1481 goto skip_pio;
1482
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 /* We only need PIO for Flash operations on ISP2312 v2 chips. */
1484 pio = pci_resource_start(ha->pdev, 0);
Andrew Vasquez37765412008-01-17 09:02:09 -08001485 if (pci_resource_flags(ha->pdev, 0) & IORESOURCE_IO) {
1486 if (pci_resource_len(ha->pdev, 0) < MIN_IOBASE_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 qla_printk(KERN_WARNING, ha,
1488 "Invalid PCI I/O region size (%s)...\n",
1489 pci_name(ha->pdev));
1490 pio = 0;
1491 }
1492 } else {
1493 qla_printk(KERN_WARNING, ha,
1494 "region #0 not a PIO resource (%s)...\n",
1495 pci_name(ha->pdev));
1496 pio = 0;
1497 }
Andrew Vasquez285d0322007-10-19 15:59:17 -07001498 ha->pio_address = pio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
Andrew Vasquez285d0322007-10-19 15:59:17 -07001500skip_pio:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 /* Use MMIO operations for all accesses. */
Andrew Vasquez37765412008-01-17 09:02:09 -08001502 if (!(pci_resource_flags(ha->pdev, 1) & IORESOURCE_MEM)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 qla_printk(KERN_ERR, ha,
Andrew Vasquez37765412008-01-17 09:02:09 -08001504 "region #1 not an MMIO resource (%s), aborting\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 pci_name(ha->pdev));
1506 goto iospace_error_exit;
1507 }
Andrew Vasquez37765412008-01-17 09:02:09 -08001508 if (pci_resource_len(ha->pdev, 1) < MIN_IOBASE_LEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 qla_printk(KERN_ERR, ha,
1510 "Invalid PCI mem region size (%s), aborting\n",
1511 pci_name(ha->pdev));
1512 goto iospace_error_exit;
1513 }
1514
Andrew Vasquez37765412008-01-17 09:02:09 -08001515 ha->iobase = ioremap(pci_resource_start(ha->pdev, 1), MIN_IOBASE_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 if (!ha->iobase) {
1517 qla_printk(KERN_ERR, ha,
1518 "cannot remap MMIO (%s), aborting\n", pci_name(ha->pdev));
1519
1520 goto iospace_error_exit;
1521 }
1522
1523 return (0);
1524
1525iospace_error_exit:
1526 return (-ENOMEM);
1527}
1528
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001529static void
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001530qla2xxx_scan_start(struct Scsi_Host *shost)
1531{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001532 scsi_qla_host_t *vha = shost_priv(shost);
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001533
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001534 set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
1535 set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
1536 set_bit(RSCN_UPDATE, &vha->dpc_flags);
1537 set_bit(NPIV_CONFIG_NEEDED, &vha->dpc_flags);
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001538}
1539
1540static int
1541qla2xxx_scan_finished(struct Scsi_Host *shost, unsigned long time)
1542{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001543 scsi_qla_host_t *vha = shost_priv(shost);
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001544
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001545 if (!vha->host)
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001546 return 1;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001547 if (time > vha->hw->loop_reset_delay * HZ)
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001548 return 1;
1549
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001550 return atomic_read(&vha->loop_state) == LOOP_READY;
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001551}
1552
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553/*
1554 * PCI driver interface
1555 */
Andrew Vasquez7ee61392006-06-23 16:11:22 -07001556static int __devinit
1557qla2x00_probe_one(struct pci_dev *pdev, const struct pci_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558{
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001559 int ret = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 struct Scsi_Host *host;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001561 scsi_qla_host_t *base_vha = NULL;
1562 struct qla_hw_data *ha;
Andrew Vasquez29856e22007-08-12 18:22:52 -07001563 char pci_info[30];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 char fw_str[30];
Andrew Vasquez54333832005-11-09 15:49:04 -08001565 struct scsi_host_template *sht;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001566 int bars, mem_only, max_id = 0;
1567 uint16_t req_length = 0, rsp_length = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
Andrew Vasquez285d0322007-10-19 15:59:17 -07001569 bars = pci_select_bars(pdev, IORESOURCE_MEM | IORESOURCE_IO);
1570 sht = &qla2x00_driver_template;
1571 if (pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2422 ||
1572 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2432 ||
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001573 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP8432 ||
Andrew Vasquez285d0322007-10-19 15:59:17 -07001574 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5422 ||
1575 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5432 ||
1576 pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2532) {
1577 bars = pci_select_bars(pdev, IORESOURCE_MEM);
1578 sht = &qla24xx_driver_template;
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +11001579 mem_only = 1;
Andrew Vasquez285d0322007-10-19 15:59:17 -07001580 }
1581
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +11001582 if (mem_only) {
1583 if (pci_enable_device_mem(pdev))
1584 goto probe_out;
1585 } else {
1586 if (pci_enable_device(pdev))
1587 goto probe_out;
1588 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
Jesse Barnes09276782008-10-18 17:33:19 -07001590 /* This may fail but that's ok */
1591 pci_enable_pcie_error_reporting(pdev);
Seokmann Ju14e660e2007-09-20 14:07:36 -07001592
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001593 ha = kzalloc(sizeof(struct qla_hw_data), GFP_KERNEL);
1594 if (!ha) {
1595 DEBUG(printk("Unable to allocate memory for ha\n"));
1596 goto probe_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001598 ha->pdev = pdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
1600 /* Clear our data area */
Andrew Vasquez285d0322007-10-19 15:59:17 -07001601 ha->bars = bars;
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +11001602 ha->mem_only = mem_only;
Andrew Vasquezdf4bf0b2008-01-31 12:33:46 -08001603 spin_lock_init(&ha->hardware_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
andrew.vasquez@qlogic.comea5b6382006-03-09 14:27:08 -08001605 /* Set ISP-type information. */
1606 qla2x00_set_isp_flags(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 /* Configure PCI I/O space */
1608 ret = qla2x00_iospace_config(ha);
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001609 if (ret)
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001610 goto probe_hw_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 qla_printk(KERN_INFO, ha,
Andrew Vasquez54333832005-11-09 15:49:04 -08001613 "Found an ISP%04X, irq %d, iobase 0x%p\n", pdev->device, pdev->irq,
1614 ha->iobase);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 ha->prev_topology = 0;
Andrew Vasquezfca29702005-07-06 10:31:47 -07001617 ha->init_cb_size = sizeof(init_cb_t);
Andrew Vasquezd8b45212006-10-02 12:00:43 -07001618 ha->link_data_rate = PORT_SPEED_UNKNOWN;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08001619 ha->optrom_size = OPTROM_SIZE_2300;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001621 /* Assign ISP specific operations. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001622 max_id = MAX_TARGETS_2200;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 if (IS_QLA2100(ha)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001624 max_id = MAX_TARGETS_2100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 ha->mbx_count = MAILBOX_REGISTER_COUNT_2100;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001626 req_length = REQUEST_ENTRY_CNT_2100;
1627 rsp_length = RESPONSE_ENTRY_CNT_2100;
1628 ha->max_loop_id = SNS_LAST_LOOP_ID_2100;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001629 ha->gid_list_info_size = 4;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001630 ha->isp_ops = &qla2100_isp_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 } else if (IS_QLA2200(ha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 ha->mbx_count = MAILBOX_REGISTER_COUNT;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001633 req_length = REQUEST_ENTRY_CNT_2200;
1634 rsp_length = RESPONSE_ENTRY_CNT_2100;
1635 ha->max_loop_id = SNS_LAST_LOOP_ID_2100;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001636 ha->gid_list_info_size = 4;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001637 ha->isp_ops = &qla2100_isp_ops;
Andrew Vasquezfca29702005-07-06 10:31:47 -07001638 } else if (IS_QLA23XX(ha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 ha->mbx_count = MAILBOX_REGISTER_COUNT;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001640 req_length = REQUEST_ENTRY_CNT_2200;
1641 rsp_length = RESPONSE_ENTRY_CNT_2300;
1642 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001643 ha->gid_list_info_size = 6;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08001644 if (IS_QLA2322(ha) || IS_QLA6322(ha))
1645 ha->optrom_size = OPTROM_SIZE_2322;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001646 ha->isp_ops = &qla2300_isp_ops;
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001647 } else if (IS_QLA24XX_TYPE(ha)) {
Andrew Vasquezfca29702005-07-06 10:31:47 -07001648 ha->mbx_count = MAILBOX_REGISTER_COUNT;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001649 req_length = REQUEST_ENTRY_CNT_24XX;
1650 rsp_length = RESPONSE_ENTRY_CNT_2300;
1651 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001652 ha->init_cb_size = sizeof(struct mid_init_cb_24xx);
Andrew Vasquezfca29702005-07-06 10:31:47 -07001653 ha->gid_list_info_size = 8;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08001654 ha->optrom_size = OPTROM_SIZE_24XX;
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001655 ha->isp_ops = &qla24xx_isp_ops;
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001656 } else if (IS_QLA25XX(ha)) {
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001657 ha->mbx_count = MAILBOX_REGISTER_COUNT;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001658 req_length = REQUEST_ENTRY_CNT_24XX;
1659 rsp_length = RESPONSE_ENTRY_CNT_2300;
1660 ha->max_loop_id = SNS_LAST_LOOP_ID_2300;
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001661 ha->init_cb_size = sizeof(struct mid_init_cb_24xx);
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07001662 ha->gid_list_info_size = 8;
1663 ha->optrom_size = OPTROM_SIZE_25XX;
1664 ha->isp_ops = &qla25xx_isp_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
matthias@kaehlcke.net6c2f5272008-05-12 22:21:11 -07001667 mutex_init(&ha->vport_lock);
Marcus Barrow0b05a1f2008-01-17 09:02:13 -08001668 init_completion(&ha->mbx_cmd_comp);
1669 complete(&ha->mbx_cmd_comp);
1670 init_completion(&ha->mbx_intr_comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001672 set_bit(0, (unsigned long *) ha->vp_idx_map);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001674 ret = qla2x00_mem_alloc(ha, req_length, rsp_length);
1675 if (!ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 qla_printk(KERN_WARNING, ha,
1677 "[ERROR] Failed to allocate memory for adapter\n");
1678
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001679 goto probe_hw_failed;
1680 }
1681
1682 ha->req->max_q_depth = MAX_Q_DEPTH;
1683 if (ql2xmaxqdepth != 0 && ql2xmaxqdepth <= 0xffffU)
1684 ha->req->max_q_depth = ql2xmaxqdepth;
1685
1686 base_vha = qla2x00_create_host(sht, ha);
1687 if (!base_vha) {
1688 qla_printk(KERN_WARNING, ha,
1689 "[ERROR] Failed to allocate memory for scsi_host\n");
1690
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001691 ret = -ENOMEM;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001692 goto probe_hw_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 }
1694
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001695 pci_set_drvdata(pdev, base_vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001697 qla2x00_config_dma_addressing(base_vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001699 host = base_vha->host;
1700 host->can_queue = ha->req->length + 128;
1701 if (IS_QLA2XXX_MIDTYPE(ha)) {
1702 base_vha->mgmt_svr_loop_id = 10 + base_vha->vp_idx;
1703 } else {
1704 base_vha->mgmt_svr_loop_id = MANAGEMENT_SERVER +
1705 base_vha->vp_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001707 if (IS_QLA2100(ha))
1708 host->sg_tablesize = 32;
1709 host->max_id = max_id;
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001710 host->this_id = 255;
1711 host->cmd_per_lun = 3;
Seokmann Ju711c1d92008-07-10 16:55:51 -07001712 host->unique_id = host->host_no;
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001713 host->max_cmd_len = MAX_CMDSZ;
Andrew Vasquez75bc4192006-05-17 15:09:22 -07001714 host->max_channel = MAX_BUSES - 1;
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001715 host->max_lun = MAX_LUNS;
1716 host->transportt = qla2xxx_transport_template;
1717
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001718 if (qla2x00_initialize_adapter(base_vha)) {
1719 qla_printk(KERN_WARNING, ha,
1720 "Failed to initialize adapter\n");
1721
1722 DEBUG2(printk("scsi(%ld): Failed to initialize adapter - "
1723 "Adapter flags %x.\n",
1724 base_vha->host_no, base_vha->device_flags));
1725
1726 ret = -ENODEV;
1727 goto probe_failed;
1728 }
1729
1730 /* Set up the irqs */
Andrew Vasqueza8488ab2007-01-29 10:22:19 -08001731 ret = qla2x00_request_irqs(ha);
1732 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 goto probe_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001735 /*
1736 * Startup the kernel thread for this host adapter
1737 */
1738 ha->dpc_thread = kthread_create(qla2x00_do_dpc, ha,
1739 "%s_dpc", base_vha->host_str);
1740 if (IS_ERR(ha->dpc_thread)) {
1741 qla_printk(KERN_WARNING, ha,
1742 "Unable to start DPC thread!\n");
1743 ret = PTR_ERR(ha->dpc_thread);
1744 goto probe_failed;
1745 }
1746
1747 list_add_tail(&base_vha->list, &ha->vp_list);
1748 base_vha->host->irq = ha->pdev->irq;
1749
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 /* Initialized the timer */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001751 qla2x00_start_timer(base_vha, qla2x00_timer, WATCH_INTERVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
1753 DEBUG2(printk("DEBUG: detect hba %ld at address = %p\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001754 base_vha->host_no, ha));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001756 base_vha->flags.init_done = 1;
1757 base_vha->flags.online = 1;
Andrew Vasquezd19044c2006-11-22 08:22:19 -08001758
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001759 ret = scsi_add_host(host, &pdev->dev);
1760 if (ret)
1761 goto probe_failed;
1762
Andrew Vasquez048feec2008-09-11 22:19:45 -07001763 ha->isp_ops->enable_intrs(ha);
1764
Andrew Vasquez1e99e332006-11-22 08:24:48 -08001765 scsi_scan_host(host);
1766
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001767 qla2x00_alloc_sysfs_attr(base_vha);
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001768
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001769 qla2x00_init_host_attr(base_vha);
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001770
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001771 qla2x00_dfs_setup(base_vha);
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001772
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 qla_printk(KERN_INFO, ha, "\n"
1774 " QLogic Fibre Channel HBA Driver: %s\n"
1775 " QLogic %s - %s\n"
Andrew Vasquez54333832005-11-09 15:49:04 -08001776 " ISP%04X: %s @ %s hdma%c, host#=%ld, fw=%s\n",
1777 qla2x00_version_str, ha->model_number,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001778 ha->model_desc ? ha->model_desc : "", pdev->device,
1779 ha->isp_ops->pci_info_str(base_vha, pci_info), pci_name(pdev),
1780 ha->flags.enable_64bit_addressing ? '+' : '-', base_vha->host_no,
1781 ha->isp_ops->fw_version_str(base_vha, fw_str));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 return 0;
1784
1785probe_failed:
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001786 qla2x00_free_device(base_vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001788 scsi_host_put(base_vha->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001790probe_hw_failed:
1791 if (ha->iobase)
1792 iounmap(ha->iobase);
1793
1794 pci_release_selected_regions(ha->pdev, ha->bars);
1795 kfree(ha);
1796 ha = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001798probe_out:
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001799 pci_disable_device(pdev);
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001800 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802
Adrian Bunk4c993f72008-01-14 00:55:16 -08001803static void
Andrew Vasquez7ee61392006-06-23 16:11:22 -07001804qla2x00_remove_one(struct pci_dev *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001806 scsi_qla_host_t *base_vha, *vha, *temp;
1807 struct qla_hw_data *ha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001809 base_vha = pci_get_drvdata(pdev);
1810 ha = base_vha->hw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001812 list_for_each_entry_safe(vha, temp, &ha->vp_list, list) {
1813 if (vha && vha->fc_vport)
1814 fc_vport_terminate(vha->fc_vport);
1815 }
Andrew Vasquezc795c1e2008-08-13 21:37:01 -07001816
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001817 set_bit(UNLOADING, &base_vha->dpc_flags);
Andrew Vasquezc795c1e2008-08-13 21:37:01 -07001818
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001819 qla2x00_dfs_remove(base_vha);
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001820
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001821 qla84xx_put_chip(base_vha);
Harihara Kadayam4d4df192008-04-03 13:13:26 -07001822
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001823 qla2x00_free_sysfs_attr(base_vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001825 fc_remove_host(base_vha->host);
bdf79622005-04-17 15:06:53 -05001826
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001827 scsi_remove_host(base_vha->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001829 qla2x00_free_device(base_vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001831 scsi_host_put(base_vha->host);
1832
1833 if (ha->iobase)
1834 iounmap(ha->iobase);
1835
1836 pci_release_selected_regions(ha->pdev, ha->bars);
1837 kfree(ha);
1838 ha = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
Bernhard Walle665db932007-03-28 00:49:49 +02001840 pci_disable_device(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 pci_set_drvdata(pdev, NULL);
1842}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
1844static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001845qla2x00_free_device(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001847 struct qla_hw_data *ha = vha->hw;
1848 qla2x00_abort_all_cmds(vha, DID_NO_CONNECT << 16);
Andrew Vasquezdf4bf0b2008-01-31 12:33:46 -08001849
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 /* Disable timer */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001851 if (vha->timer_active)
1852 qla2x00_stop_timer(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001854 vha->flags.online = 0;
Andrew Vasquezdf4bf0b2008-01-31 12:33:46 -08001855
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 /* Kill the kernel thread for this host */
Christoph Hellwig39a11242006-02-14 18:46:22 +01001857 if (ha->dpc_thread) {
1858 struct task_struct *t = ha->dpc_thread;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
Christoph Hellwig39a11242006-02-14 18:46:22 +01001860 /*
1861 * qla2xxx_wake_dpc checks for ->dpc_thread
1862 * so we need to zero it out.
1863 */
1864 ha->dpc_thread = NULL;
1865 kthread_stop(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 }
1867
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001868 if (ha->flags.fce_enabled)
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001869 qla2x00_disable_fce_trace(vha, NULL, NULL);
Andrew Vasquezdf613b92008-01-17 09:02:17 -08001870
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001871 if (ha->eft)
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001872 qla2x00_disable_eft_trace(vha);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07001873
Andrew Vasquezf6ef3b12005-08-26 19:10:20 -07001874 /* Stop currently executing firmware. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001875 qla2x00_try_to_stop_firmware(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
Andrew Vasquezf6ef3b12005-08-26 19:10:20 -07001877 /* turn-off interrupts on the card */
1878 if (ha->interrupts_on)
Andrew Vasquezfd34f552007-07-19 15:06:00 -07001879 ha->isp_ops->disable_intrs(ha);
Andrew Vasquezf6ef3b12005-08-26 19:10:20 -07001880
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001881 qla2x00_free_irqs(vha);
1882
Andrew Vasquezf6ef3b12005-08-26 19:10:20 -07001883 qla2x00_mem_free(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884}
1885
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001886static inline void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001887qla2x00_schedule_rport_del(struct scsi_qla_host *vha, fc_port_t *fcport,
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001888 int defer)
1889{
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001890 struct fc_rport *rport;
1891
1892 if (!fcport->rport)
1893 return;
1894
1895 rport = fcport->rport;
1896 if (defer) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001897 spin_lock_irq(vha->host->host_lock);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001898 fcport->drport = rport;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001899 spin_unlock_irq(vha->host->host_lock);
1900 set_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags);
1901 qla2xxx_wake_dpc(vha);
Seokmann Ju5f3a9a22008-07-10 16:55:47 -07001902 } else
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001903 fc_remote_port_delete(rport);
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001904}
1905
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 * qla2x00_mark_device_lost Updates fcport state when device goes offline.
1908 *
1909 * Input: ha = adapter block pointer. fcport = port structure pointer.
1910 *
1911 * Return: None.
1912 *
1913 * Context:
1914 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001915void qla2x00_mark_device_lost(scsi_qla_host_t *vha, fc_port_t *fcport,
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08001916 int do_login, int defer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917{
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07001918 if (atomic_read(&fcport->state) == FCS_ONLINE &&
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001919 vha->vp_idx == fcport->vp_idx) {
1920 atomic_set(&fcport->state, FCS_DEVICE_LOST);
1921 qla2x00_schedule_rport_del(vha, fcport, defer);
1922 }
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07001923 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 * We may need to retry the login, so don't change the state of the
1925 * port but do the retries.
1926 */
1927 if (atomic_read(&fcport->state) != FCS_DEVICE_DEAD)
1928 atomic_set(&fcport->state, FCS_DEVICE_LOST);
1929
1930 if (!do_login)
1931 return;
1932
1933 if (fcport->login_retry == 0) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001934 fcport->login_retry = vha->hw->login_retry_count;
1935 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
1937 DEBUG(printk("scsi(%ld): Port login retry: "
1938 "%02x%02x%02x%02x%02x%02x%02x%02x, "
1939 "id = 0x%04x retry cnt=%d\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001940 vha->host_no,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 fcport->port_name[0],
1942 fcport->port_name[1],
1943 fcport->port_name[2],
1944 fcport->port_name[3],
1945 fcport->port_name[4],
1946 fcport->port_name[5],
1947 fcport->port_name[6],
1948 fcport->port_name[7],
1949 fcport->loop_id,
1950 fcport->login_retry));
1951 }
1952}
1953
1954/*
1955 * qla2x00_mark_all_devices_lost
1956 * Updates fcport state when device goes offline.
1957 *
1958 * Input:
1959 * ha = adapter block pointer.
1960 * fcport = port structure pointer.
1961 *
1962 * Return:
1963 * None.
1964 *
1965 * Context:
1966 */
1967void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001968qla2x00_mark_all_devices_lost(scsi_qla_host_t *vha, int defer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969{
1970 fc_port_t *fcport;
1971
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001972 list_for_each_entry(fcport, &vha->vp_fcports, list) {
1973 if (vha->vp_idx != fcport->vp_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 /*
1976 * No point in marking the device as lost, if the device is
1977 * already DEAD.
1978 */
1979 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD)
1980 continue;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001981 if (atomic_read(&fcport->state) == FCS_ONLINE) {
1982 atomic_set(&fcport->state, FCS_DEVICE_LOST);
1983 qla2x00_schedule_rport_del(vha, fcport, defer);
1984 } else
1985 atomic_set(&fcport->state, FCS_DEVICE_LOST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 }
1987}
1988
1989/*
1990* qla2x00_mem_alloc
1991* Allocates adapter memory.
1992*
1993* Returns:
1994* 0 = success.
Andrew Vasqueze8711082008-01-31 12:33:48 -08001995* !0 = failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996*/
Andrew Vasqueze8711082008-01-31 12:33:48 -08001997static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08001998qla2x00_mem_alloc(struct qla_hw_data *ha, uint16_t req_len, uint16_t rsp_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999{
2000 char name[16];
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002001 struct req_que *req = NULL;
2002 struct rsp_que *rsp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002004 ha->init_cb_size = sizeof(init_cb_t);
2005 if (IS_QLA2XXX_MIDTYPE(ha))
2006 ha->init_cb_size = sizeof(struct mid_init_cb_24xx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
Andrew Vasqueze8711082008-01-31 12:33:48 -08002008 ha->init_cb = dma_alloc_coherent(&ha->pdev->dev, ha->init_cb_size,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002009 &ha->init_cb_dma, GFP_KERNEL);
Andrew Vasqueze8711082008-01-31 12:33:48 -08002010 if (!ha->init_cb)
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002011 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002013 ha->gid_list = dma_alloc_coherent(&ha->pdev->dev, GID_LIST_SIZE,
2014 &ha->gid_list_dma, GFP_KERNEL);
2015 if (!ha->gid_list)
Andrew Vasqueze8711082008-01-31 12:33:48 -08002016 goto fail_free_init_cb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Andrew Vasqueze8711082008-01-31 12:33:48 -08002018 ha->srb_mempool = mempool_create_slab_pool(SRB_MIN_REQ, srb_cachep);
2019 if (!ha->srb_mempool)
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002020 goto fail_free_gid_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
Andrew Vasqueze8711082008-01-31 12:33:48 -08002022 /* Get memory for cached NVRAM */
2023 ha->nvram = kzalloc(MAX_NVRAM_SIZE, GFP_KERNEL);
2024 if (!ha->nvram)
2025 goto fail_free_srb_mempool;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002027 snprintf(name, sizeof(name), "%s_%d", QLA2XXX_DRIVER_NAME,
2028 ha->pdev->device);
2029 ha->s_dma_pool = dma_pool_create(name, &ha->pdev->dev,
2030 DMA_POOL_SIZE, 8, 0);
2031 if (!ha->s_dma_pool)
2032 goto fail_free_nvram;
2033
Andrew Vasqueze8711082008-01-31 12:33:48 -08002034 /* Allocate memory for SNS commands */
2035 if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002036 /* Get consistent memory allocated for SNS commands */
Andrew Vasqueze8711082008-01-31 12:33:48 -08002037 ha->sns_cmd = dma_alloc_coherent(&ha->pdev->dev,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002038 sizeof(struct sns_cmd_pkt), &ha->sns_cmd_dma, GFP_KERNEL);
Andrew Vasqueze8711082008-01-31 12:33:48 -08002039 if (!ha->sns_cmd)
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002040 goto fail_dma_pool;
Andrew Vasqueze8711082008-01-31 12:33:48 -08002041 } else {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002042 /* Get consistent memory allocated for MS IOCB */
Andrew Vasqueze8711082008-01-31 12:33:48 -08002043 ha->ms_iocb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002044 &ha->ms_iocb_dma);
Andrew Vasqueze8711082008-01-31 12:33:48 -08002045 if (!ha->ms_iocb)
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002046 goto fail_dma_pool;
2047 /* Get consistent memory allocated for CT SNS commands */
Andrew Vasqueze8711082008-01-31 12:33:48 -08002048 ha->ct_sns = dma_alloc_coherent(&ha->pdev->dev,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002049 sizeof(struct ct_sns_pkt), &ha->ct_sns_dma, GFP_KERNEL);
Andrew Vasqueze8711082008-01-31 12:33:48 -08002050 if (!ha->ct_sns)
2051 goto fail_free_ms_iocb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 }
2053
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002054 /* Allocate memory for request ring */
2055 req = kzalloc(sizeof(struct req_que), GFP_KERNEL);
2056 if (!req) {
2057 DEBUG(printk("Unable to allocate memory for req\n"));
2058 goto fail_req;
2059 }
2060 ha->req = req;
2061 req->length = req_len;
2062 req->ring = dma_alloc_coherent(&ha->pdev->dev,
2063 (req->length + 1) * sizeof(request_t),
2064 &req->dma, GFP_KERNEL);
2065 if (!req->ring) {
2066 DEBUG(printk("Unable to allocate memory for req_ring\n"));
2067 goto fail_req_ring;
2068 }
2069 /* Allocate memory for response ring */
2070 rsp = kzalloc(sizeof(struct rsp_que), GFP_KERNEL);
2071 if (!rsp) {
2072 DEBUG(printk("Unable to allocate memory for rsp\n"));
2073 goto fail_rsp;
2074 }
2075 ha->rsp = rsp;
2076 rsp->hw = ha;
2077 rsp->length = rsp_len;
Andrew Vasqueze8711082008-01-31 12:33:48 -08002078
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002079 rsp->ring = dma_alloc_coherent(&ha->pdev->dev,
2080 (rsp->length + 1) * sizeof(response_t),
2081 &rsp->dma, GFP_KERNEL);
2082 if (!rsp->ring) {
2083 DEBUG(printk("Unable to allocate memory for rsp_ring\n"));
2084 goto fail_rsp_ring;
2085 }
2086
2087 INIT_LIST_HEAD(&ha->vp_list);
2088 return 1;
2089
2090fail_rsp_ring:
2091 kfree(rsp);
2092 ha->rsp = NULL;
2093fail_rsp:
2094 dma_free_coherent(&ha->pdev->dev, (req->length + 1) *
2095 sizeof(request_t), req->ring, req->dma);
2096 req->ring = NULL;
2097 req->dma = 0;
2098fail_req_ring:
2099 kfree(req);
2100 ha->req = NULL;
2101fail_req:
2102 dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt),
2103 ha->ct_sns, ha->ct_sns_dma);
2104 ha->ct_sns = NULL;
2105 ha->ct_sns_dma = 0;
Andrew Vasqueze8711082008-01-31 12:33:48 -08002106fail_free_ms_iocb:
2107 dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma);
2108 ha->ms_iocb = NULL;
2109 ha->ms_iocb_dma = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002110fail_dma_pool:
2111 dma_pool_destroy(ha->s_dma_pool);
2112 ha->s_dma_pool = NULL;
Andrew Vasqueze8711082008-01-31 12:33:48 -08002113fail_free_nvram:
2114 kfree(ha->nvram);
2115 ha->nvram = NULL;
2116fail_free_srb_mempool:
2117 mempool_destroy(ha->srb_mempool);
2118 ha->srb_mempool = NULL;
Andrew Vasqueze8711082008-01-31 12:33:48 -08002119fail_free_gid_list:
2120 dma_free_coherent(&ha->pdev->dev, GID_LIST_SIZE, ha->gid_list,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002121 ha->gid_list_dma);
Andrew Vasqueze8711082008-01-31 12:33:48 -08002122 ha->gid_list = NULL;
2123 ha->gid_list_dma = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002124fail_free_init_cb:
2125 dma_free_coherent(&ha->pdev->dev, ha->init_cb_size, ha->init_cb,
2126 ha->init_cb_dma);
2127 ha->init_cb = NULL;
2128 ha->init_cb_dma = 0;
Andrew Vasqueze8711082008-01-31 12:33:48 -08002129fail:
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002130 DEBUG(printk("%s: Memory allocation failure\n", __func__));
Andrew Vasqueze8711082008-01-31 12:33:48 -08002131 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132}
2133
2134/*
2135* qla2x00_mem_free
2136* Frees all adapter allocated memory.
2137*
2138* Input:
2139* ha = adapter block pointer.
2140*/
Adrian Bunka824ebb2008-01-17 09:02:15 -08002141static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002142qla2x00_mem_free(struct qla_hw_data *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002144 struct req_que *req = ha->req;
2145 struct rsp_que *rsp = ha->rsp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146
Andrew Vasqueze8711082008-01-31 12:33:48 -08002147 if (ha->srb_mempool)
2148 mempool_destroy(ha->srb_mempool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
Andrew Vasquezdf613b92008-01-17 09:02:17 -08002150 if (ha->fce)
2151 dma_free_coherent(&ha->pdev->dev, FCE_SIZE, ha->fce,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002152 ha->fce_dma);
Andrew Vasquezdf613b92008-01-17 09:02:17 -08002153
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002154 if (ha->fw_dump) {
2155 if (ha->eft)
2156 dma_free_coherent(&ha->pdev->dev,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002157 ntohl(ha->fw_dump->eft_size), ha->eft, ha->eft_dma);
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002158 vfree(ha->fw_dump);
2159 }
2160
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 if (ha->sns_cmd)
2162 dma_free_coherent(&ha->pdev->dev, sizeof(struct sns_cmd_pkt),
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002163 ha->sns_cmd, ha->sns_cmd_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164
2165 if (ha->ct_sns)
2166 dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt),
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002167 ha->ct_sns, ha->ct_sns_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168
Andrew Vasquez88729e52006-06-23 16:10:50 -07002169 if (ha->sfp_data)
2170 dma_pool_free(ha->s_dma_pool, ha->sfp_data, ha->sfp_data_dma);
2171
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 if (ha->ms_iocb)
2173 dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma);
2174
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 if (ha->s_dma_pool)
2176 dma_pool_destroy(ha->s_dma_pool);
2177
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002178
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 if (ha->gid_list)
2180 dma_free_coherent(&ha->pdev->dev, GID_LIST_SIZE, ha->gid_list,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002181 ha->gid_list_dma);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002184 if (ha->init_cb)
2185 dma_free_coherent(&ha->pdev->dev, ha->init_cb_size,
2186 ha->init_cb, ha->init_cb_dma);
2187 vfree(ha->optrom_buffer);
2188 kfree(ha->nvram);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
Andrew Vasqueze8711082008-01-31 12:33:48 -08002190 ha->srb_mempool = NULL;
Andrew Vasqueza7a167b2006-06-23 16:10:29 -07002191 ha->eft = NULL;
2192 ha->eft_dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 ha->sns_cmd = NULL;
2194 ha->sns_cmd_dma = 0;
2195 ha->ct_sns = NULL;
2196 ha->ct_sns_dma = 0;
2197 ha->ms_iocb = NULL;
2198 ha->ms_iocb_dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 ha->init_cb = NULL;
2200 ha->init_cb_dma = 0;
2201
2202 ha->s_dma_pool = NULL;
2203
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 ha->gid_list = NULL;
2205 ha->gid_list_dma = 0;
2206
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 ha->fw_dump = NULL;
Andrew Vasquezfca29702005-07-06 10:31:47 -07002208 ha->fw_dumped = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 ha->fw_dump_reading = 0;
andrew.vasquez@qlogic.com854165f2006-01-31 16:05:17 -08002210
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002211 if (rsp) {
2212 if (rsp->ring)
2213 dma_free_coherent(&ha->pdev->dev,
2214 (rsp->length + 1) * sizeof(response_t),
2215 rsp->ring, rsp->dma);
2216
2217 kfree(rsp);
2218 rsp = NULL;
2219 }
2220
2221 if (req) {
2222 if (req->ring)
2223 dma_free_coherent(&ha->pdev->dev,
2224 (req->length + 1) * sizeof(request_t),
2225 req->ring, req->dma);
2226
2227 kfree(req);
2228 req = NULL;
2229 }
2230}
2231
2232struct scsi_qla_host *qla2x00_create_host(struct scsi_host_template *sht,
2233 struct qla_hw_data *ha)
2234{
2235 struct Scsi_Host *host;
2236 struct scsi_qla_host *vha = NULL;
2237
2238 host = scsi_host_alloc(sht, sizeof(scsi_qla_host_t));
2239 if (host == NULL) {
2240 printk(KERN_WARNING
2241 "qla2xxx: Couldn't allocate host from scsi layer!\n");
2242 goto fail;
2243 }
2244
2245 /* Clear our data area */
2246 vha = shost_priv(host);
2247 memset(vha, 0, sizeof(scsi_qla_host_t));
2248
2249 vha->host = host;
2250 vha->host_no = host->host_no;
2251 vha->hw = ha;
2252
2253 INIT_LIST_HEAD(&vha->vp_fcports);
2254 INIT_LIST_HEAD(&vha->work_list);
2255 INIT_LIST_HEAD(&vha->list);
2256
2257 sprintf(vha->host_str, "%s_%ld", QLA2XXX_DRIVER_NAME, vha->host_no);
2258 return vha;
2259
2260fail:
2261 return vha;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262}
2263
Adrian Bunk01ef66b2008-04-24 15:21:27 -07002264static struct qla_work_evt *
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002265qla2x00_alloc_work(struct scsi_qla_host *vha, enum qla_work_type type,
Andrew Vasquez0971de72008-04-03 13:13:18 -07002266 int locked)
2267{
2268 struct qla_work_evt *e;
2269
2270 e = kzalloc(sizeof(struct qla_work_evt), locked ? GFP_ATOMIC:
2271 GFP_KERNEL);
2272 if (!e)
2273 return NULL;
2274
2275 INIT_LIST_HEAD(&e->list);
2276 e->type = type;
2277 e->flags = QLA_EVT_FLAG_FREE;
2278 return e;
2279}
2280
Adrian Bunk01ef66b2008-04-24 15:21:27 -07002281static int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002282qla2x00_post_work(struct scsi_qla_host *vha, struct qla_work_evt *e, int locked)
Andrew Vasquez0971de72008-04-03 13:13:18 -07002283{
Andrew Mortonbf6583b2008-07-24 08:31:48 -07002284 unsigned long uninitialized_var(flags);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002285 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0971de72008-04-03 13:13:18 -07002286
2287 if (!locked)
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002288 spin_lock_irqsave(&ha->hardware_lock, flags);
2289 list_add_tail(&e->list, &vha->work_list);
2290 qla2xxx_wake_dpc(vha);
Andrew Vasquez0971de72008-04-03 13:13:18 -07002291 if (!locked)
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002292 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Andrew Vasquez0971de72008-04-03 13:13:18 -07002293 return QLA_SUCCESS;
2294}
2295
2296int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002297qla2x00_post_aen_work(struct scsi_qla_host *vha, enum fc_host_event_code code,
Andrew Vasquez0971de72008-04-03 13:13:18 -07002298 u32 data)
2299{
2300 struct qla_work_evt *e;
2301
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002302 e = qla2x00_alloc_work(vha, QLA_EVT_AEN, 1);
Andrew Vasquez0971de72008-04-03 13:13:18 -07002303 if (!e)
2304 return QLA_FUNCTION_FAILED;
2305
2306 e->u.aen.code = code;
2307 e->u.aen.data = data;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002308 return qla2x00_post_work(vha, e, 1);
Andrew Vasquez0971de72008-04-03 13:13:18 -07002309}
2310
Andrew Vasquezcb8dacb2008-04-03 13:13:19 -07002311int
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002312qla2x00_post_hwe_work(struct scsi_qla_host *vha, uint16_t code, uint16_t d1,
Andrew Vasquezcb8dacb2008-04-03 13:13:19 -07002313 uint16_t d2, uint16_t d3)
2314{
2315 struct qla_work_evt *e;
2316
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002317 e = qla2x00_alloc_work(vha, QLA_EVT_HWE_LOG, 1);
Andrew Vasquezcb8dacb2008-04-03 13:13:19 -07002318 if (!e)
2319 return QLA_FUNCTION_FAILED;
2320
2321 e->u.hwe.code = code;
2322 e->u.hwe.d1 = d1;
2323 e->u.hwe.d2 = d2;
2324 e->u.hwe.d3 = d3;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002325 return qla2x00_post_work(vha, e, 1);
Andrew Vasquezcb8dacb2008-04-03 13:13:19 -07002326}
2327
Andrew Vasquez0971de72008-04-03 13:13:18 -07002328static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002329qla2x00_do_work(struct scsi_qla_host *vha)
Andrew Vasquez0971de72008-04-03 13:13:18 -07002330{
2331 struct qla_work_evt *e;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002332 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez0971de72008-04-03 13:13:18 -07002333
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002334 spin_lock_irq(&ha->hardware_lock);
2335 while (!list_empty(&vha->work_list)) {
2336 e = list_entry(vha->work_list.next, struct qla_work_evt, list);
Andrew Vasquez0971de72008-04-03 13:13:18 -07002337 list_del_init(&e->list);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002338 spin_unlock_irq(&ha->hardware_lock);
Andrew Vasquez0971de72008-04-03 13:13:18 -07002339
2340 switch (e->type) {
2341 case QLA_EVT_AEN:
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002342 fc_host_post_event(vha->host, fc_get_event_number(),
Andrew Vasquez0971de72008-04-03 13:13:18 -07002343 e->u.aen.code, e->u.aen.data);
2344 break;
Andrew Vasquezcb8dacb2008-04-03 13:13:19 -07002345 case QLA_EVT_HWE_LOG:
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002346 qla2xxx_hw_event_log(vha, e->u.hwe.code, e->u.hwe.d1,
Andrew Vasquezcb8dacb2008-04-03 13:13:19 -07002347 e->u.hwe.d2, e->u.hwe.d3);
2348 break;
Andrew Vasquez0971de72008-04-03 13:13:18 -07002349 }
2350 if (e->flags & QLA_EVT_FLAG_FREE)
2351 kfree(e);
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002352 spin_lock_irq(&ha->hardware_lock);
Andrew Vasquez0971de72008-04-03 13:13:18 -07002353 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002354 spin_unlock_irq(&ha->hardware_lock);
2355}
2356/* Relogins all the fcports of a vport
2357 * Context: dpc thread
2358 */
2359void qla2x00_relogin(struct scsi_qla_host *vha)
2360{
2361 fc_port_t *fcport;
2362 uint8_t status;
2363 uint16_t next_loopid = 0;
2364 struct qla_hw_data *ha = vha->hw;
2365
2366 list_for_each_entry(fcport, &vha->vp_fcports, list) {
2367 /*
2368 * If the port is not ONLINE then try to login
2369 * to it if we haven't run out of retries.
2370 */
2371 if (atomic_read(&fcport->state) !=
2372 FCS_ONLINE && fcport->login_retry) {
2373
2374 if (fcport->flags & FCF_FABRIC_DEVICE) {
2375 if (fcport->flags & FCF_TAPE_PRESENT)
2376 ha->isp_ops->fabric_logout(vha,
2377 fcport->loop_id,
2378 fcport->d_id.b.domain,
2379 fcport->d_id.b.area,
2380 fcport->d_id.b.al_pa);
2381
2382 status = qla2x00_fabric_login(vha, fcport,
2383 &next_loopid);
2384 } else
2385 status = qla2x00_local_device_login(vha,
2386 fcport);
2387
2388 fcport->login_retry--;
2389 if (status == QLA_SUCCESS) {
2390 fcport->old_loop_id = fcport->loop_id;
2391
2392 DEBUG(printk("scsi(%ld): port login OK: logged "
2393 "in ID 0x%x\n", vha->host_no, fcport->loop_id));
2394
2395 qla2x00_update_fcport(vha, fcport);
2396
2397 } else if (status == 1) {
2398 set_bit(RELOGIN_NEEDED, &vha->dpc_flags);
2399 /* retry the login again */
2400 DEBUG(printk("scsi(%ld): Retrying"
2401 " %d login again loop_id 0x%x\n",
2402 vha->host_no, fcport->login_retry,
2403 fcport->loop_id));
2404 } else {
2405 fcport->login_retry = 0;
2406 }
2407
2408 if (fcport->login_retry == 0 && status != QLA_SUCCESS)
2409 fcport->loop_id = FC_NO_LOOP_ID;
2410 }
2411 if (test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags))
2412 break;
2413 }
Andrew Vasquez0971de72008-04-03 13:13:18 -07002414}
2415
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416/**************************************************************************
2417* qla2x00_do_dpc
2418* This kernel thread is a task that is schedule by the interrupt handler
2419* to perform the background processing for interrupts.
2420*
2421* Notes:
2422* This task always run in the context of a kernel thread. It
2423* is kick-off by the driver's detect code and starts up
2424* up one per adapter. It immediately goes to sleep and waits for
2425* some fibre event. When either the interrupt handler or
2426* the timer routine detects a event it will one of the task
2427* bits then wake us up.
2428**************************************************************************/
2429static int
2430qla2x00_do_dpc(void *data)
2431{
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002432 int rval;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002433 scsi_qla_host_t *base_vha;
2434 struct qla_hw_data *ha;
Seokmann Ju99363ef2008-01-31 12:33:51 -08002435
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002436 ha = (struct qla_hw_data *)data;
2437 base_vha = pci_get_drvdata(ha->pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 set_user_nice(current, -20);
2440
Christoph Hellwig39a11242006-02-14 18:46:22 +01002441 while (!kthread_should_stop()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 DEBUG3(printk("qla2x00: DPC handler sleeping\n"));
2443
Christoph Hellwig39a11242006-02-14 18:46:22 +01002444 set_current_state(TASK_INTERRUPTIBLE);
2445 schedule();
2446 __set_current_state(TASK_RUNNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447
2448 DEBUG3(printk("qla2x00: DPC handler waking up\n"));
2449
2450 /* Initialization not yet finished. Don't do anything yet. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002451 if (!base_vha->flags.init_done)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 continue;
2453
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002454 DEBUG3(printk("scsi(%ld): DPC handler\n", base_vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455
2456 ha->dpc_active = 1;
2457
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 if (ha->flags.mbox_busy) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 ha->dpc_active = 0;
2460 continue;
2461 }
2462
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002463 qla2x00_do_work(base_vha);
Andrew Vasquez0971de72008-04-03 13:13:18 -07002464
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002465 if (test_and_clear_bit(ISP_ABORT_NEEDED,
2466 &base_vha->dpc_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467
2468 DEBUG(printk("scsi(%ld): dpc: sched "
2469 "qla2x00_abort_isp ha = %p\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002470 base_vha->host_no, ha));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 if (!(test_and_set_bit(ABORT_ISP_ACTIVE,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002472 &base_vha->dpc_flags))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002474 if (qla2x00_abort_isp(base_vha)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 /* failed. retry later */
2476 set_bit(ISP_ABORT_NEEDED,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002477 &base_vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002479 clear_bit(ABORT_ISP_ACTIVE,
2480 &base_vha->dpc_flags);
Seokmann Ju99363ef2008-01-31 12:33:51 -08002481 }
2482
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 DEBUG(printk("scsi(%ld): dpc: qla2x00_abort_isp end\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002484 base_vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 }
2486
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002487 if (test_bit(FCPORT_UPDATE_NEEDED, &base_vha->dpc_flags)) {
2488 qla2x00_update_fcports(base_vha);
2489 clear_bit(FCPORT_UPDATE_NEEDED, &base_vha->dpc_flags);
Andrew Vasquezc9c5ced2008-07-24 08:31:49 -07002490 }
andrew.vasquez@qlogic.comd97994d2006-01-20 14:53:13 -08002491
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002492 if (test_and_clear_bit(RESET_MARKER_NEEDED,
2493 &base_vha->dpc_flags) &&
2494 (!(test_and_set_bit(RESET_ACTIVE, &base_vha->dpc_flags)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495
2496 DEBUG(printk("scsi(%ld): qla2x00_reset_marker()\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002497 base_vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002499 qla2x00_rst_aen(base_vha);
2500 clear_bit(RESET_ACTIVE, &base_vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 }
2502
2503 /* Retry each device up to login retry count */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002504 if ((test_and_clear_bit(RELOGIN_NEEDED,
2505 &base_vha->dpc_flags)) &&
2506 !test_bit(LOOP_RESYNC_NEEDED, &base_vha->dpc_flags) &&
2507 atomic_read(&base_vha->loop_state) != LOOP_DOWN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508
2509 DEBUG(printk("scsi(%ld): qla2x00_port_login()\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002510 base_vha->host_no));
2511 qla2x00_relogin(base_vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 DEBUG(printk("scsi(%ld): qla2x00_port_login - end\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002514 base_vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 }
2516
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002517 if (test_and_clear_bit(LOOP_RESYNC_NEEDED,
2518 &base_vha->dpc_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519
2520 DEBUG(printk("scsi(%ld): qla2x00_loop_resync()\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002521 base_vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522
2523 if (!(test_and_set_bit(LOOP_RESYNC_ACTIVE,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002524 &base_vha->dpc_flags))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002526 rval = qla2x00_loop_resync(base_vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002528 clear_bit(LOOP_RESYNC_ACTIVE,
2529 &base_vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 }
2531
2532 DEBUG(printk("scsi(%ld): qla2x00_loop_resync - end\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002533 base_vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 }
2535
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002536 if (test_bit(NPIV_CONFIG_NEEDED, &base_vha->dpc_flags) &&
2537 atomic_read(&base_vha->loop_state) == LOOP_READY) {
2538 clear_bit(NPIV_CONFIG_NEEDED, &base_vha->dpc_flags);
2539 qla2xxx_flash_npiv_conf(base_vha);
Andrew Vasquez272976c2008-09-11 21:22:50 -07002540 }
2541
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 if (!ha->interrupts_on)
Andrew Vasquezfd34f552007-07-19 15:06:00 -07002543 ha->isp_ops->enable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002545 if (test_and_clear_bit(BEACON_BLINK_NEEDED,
2546 &base_vha->dpc_flags))
2547 ha->isp_ops->beacon_blink(base_vha);
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08002548
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002549 qla2x00_do_dpc_all_vps(base_vha);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002550
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 ha->dpc_active = 0;
2552 } /* End of while(1) */
2553
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002554 DEBUG(printk("scsi(%ld): DPC handler exiting\n", base_vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555
2556 /*
2557 * Make sure that nobody tries to wake us up again.
2558 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 ha->dpc_active = 0;
2560
Christoph Hellwig39a11242006-02-14 18:46:22 +01002561 return 0;
2562}
2563
2564void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002565qla2xxx_wake_dpc(struct scsi_qla_host *vha)
Christoph Hellwig39a11242006-02-14 18:46:22 +01002566{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002567 struct qla_hw_data *ha = vha->hw;
Andrew Vasquezc795c1e2008-08-13 21:37:01 -07002568 struct task_struct *t = ha->dpc_thread;
2569
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002570 if (!test_bit(UNLOADING, &vha->dpc_flags) && t)
Andrew Vasquezc795c1e2008-08-13 21:37:01 -07002571 wake_up_process(t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572}
2573
2574/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575* qla2x00_rst_aen
2576* Processes asynchronous reset.
2577*
2578* Input:
2579* ha = adapter block pointer.
2580*/
2581static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002582qla2x00_rst_aen(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002584 if (vha->flags.online && !vha->flags.reset_active &&
2585 !atomic_read(&vha->loop_down_timer) &&
2586 !(test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 do {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002588 clear_bit(RESET_MARKER_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589
2590 /*
2591 * Issue marker command only when we are going to start
2592 * the I/O.
2593 */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002594 vha->marker_needed = 1;
2595 } while (!atomic_read(&vha->loop_down_timer) &&
2596 (test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 }
2598}
2599
f4f051e2005-04-17 15:02:26 -05002600static void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002601qla2x00_sp_free_dma(srb_t *sp)
f4f051e2005-04-17 15:02:26 -05002602{
2603 struct scsi_cmnd *cmd = sp->cmd;
2604
2605 if (sp->flags & SRB_DMA_VALID) {
FUJITA Tomonori385d70b2007-05-26 01:55:38 +09002606 scsi_dma_unmap(cmd);
f4f051e2005-04-17 15:02:26 -05002607 sp->flags &= ~SRB_DMA_VALID;
2608 }
Andrew Vasquezfca29702005-07-06 10:31:47 -07002609 CMD_SP(cmd) = NULL;
f4f051e2005-04-17 15:02:26 -05002610}
2611
2612void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002613qla2x00_sp_compl(scsi_qla_host_t *vha, srb_t *sp)
f4f051e2005-04-17 15:02:26 -05002614{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002615 struct qla_hw_data *ha = vha->hw;
f4f051e2005-04-17 15:02:26 -05002616 struct scsi_cmnd *cmd = sp->cmd;
2617
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002618 qla2x00_sp_free_dma(sp);
f4f051e2005-04-17 15:02:26 -05002619
f4f051e2005-04-17 15:02:26 -05002620 mempool_free(sp, ha->srb_mempool);
2621
2622 cmd->scsi_done(cmd);
2623}
bdf79622005-04-17 15:06:53 -05002624
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625/**************************************************************************
2626* qla2x00_timer
2627*
2628* Description:
2629* One second timer
2630*
2631* Context: Interrupt
2632***************************************************************************/
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002633void
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002634qla2x00_timer(scsi_qla_host_t *vha)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 unsigned long cpu_flags = 0;
2637 fc_port_t *fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 int start_dpc = 0;
2639 int index;
2640 srb_t *sp;
f4f051e2005-04-17 15:02:26 -05002641 int t;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002642 struct qla_hw_data *ha = vha->hw;
2643 struct req_que *req = ha->req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 /*
2645 * Ports - Port down timer.
2646 *
2647 * Whenever, a port is in the LOST state we start decrementing its port
2648 * down timer every second until it reaches zero. Once it reaches zero
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002649 * the port it marked DEAD.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 */
2651 t = 0;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002652 list_for_each_entry(fcport, &vha->vp_fcports, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 if (fcport->port_type != FCT_TARGET)
2654 continue;
2655
2656 if (atomic_read(&fcport->state) == FCS_DEVICE_LOST) {
2657
2658 if (atomic_read(&fcport->port_down_timer) == 0)
2659 continue;
2660
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002661 if (atomic_dec_and_test(&fcport->port_down_timer) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 atomic_set(&fcport->state, FCS_DEVICE_DEAD);
Andrew Vasquezfa2a1ce2005-07-06 10:32:07 -07002663
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 DEBUG(printk("scsi(%ld): fcport-%d - port retry count: "
Andrew Vasquezfca29702005-07-06 10:31:47 -07002665 "%d remaining\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002666 vha->host_no,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 t, atomic_read(&fcport->port_down_timer)));
2668 }
2669 t++;
2670 } /* End of for fcport */
2671
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672
2673 /* Loop down handler. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002674 if (atomic_read(&vha->loop_down_timer) > 0 &&
2675 !(test_bit(ABORT_ISP_ACTIVE, &vha->dpc_flags))
2676 && vha->flags.online) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002678 if (atomic_read(&vha->loop_down_timer) ==
2679 vha->loop_down_abort_time) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680
2681 DEBUG(printk("scsi(%ld): Loop Down - aborting the "
2682 "queues before time expire\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002683 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002685 if (!IS_QLA2100(ha) && vha->link_down_timeout)
2686 atomic_set(&vha->loop_state, LOOP_DEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687
2688 /* Schedule an ISP abort to return any tape commands. */
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002689 /* NPIV - scan physical port only */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002690 if (!vha->vp_idx) {
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002691 spin_lock_irqsave(&ha->hardware_lock,
2692 cpu_flags);
2693 for (index = 1;
2694 index < MAX_OUTSTANDING_COMMANDS;
2695 index++) {
2696 fc_port_t *sfcp;
bdf79622005-04-17 15:06:53 -05002697
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002698 sp = req->outstanding_cmds[index];
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002699 if (!sp)
2700 continue;
2701 sfcp = sp->fcport;
2702 if (!(sfcp->flags & FCF_TAPE_PRESENT))
2703 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002705 set_bit(ISP_ABORT_NEEDED,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002706 &vha->dpc_flags);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07002707 break;
2708 }
2709 spin_unlock_irqrestore(&ha->hardware_lock,
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002710 cpu_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 }
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002712 set_bit(ABORT_QUEUES_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 start_dpc++;
2714 }
2715
2716 /* if the loop has been down for 4 minutes, reinit adapter */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002717 if (atomic_dec_and_test(&vha->loop_down_timer) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 DEBUG(printk("scsi(%ld): Loop down exceed 4 mins - "
2719 "restarting queues.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002720 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002722 set_bit(RESTART_QUEUES_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 start_dpc++;
2724
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002725 if (!(vha->device_flags & DFLG_NO_CABLE) &&
2726 !vha->vp_idx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 DEBUG(printk("scsi(%ld): Loop down - "
2728 "aborting ISP.\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002729 vha->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 qla_printk(KERN_WARNING, ha,
2731 "Loop down - aborting ISP.\n");
2732
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002733 set_bit(ISP_ABORT_NEEDED, &vha->dpc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 }
2735 }
Andrew Vasquezfca29702005-07-06 10:31:47 -07002736 DEBUG3(printk("scsi(%ld): Loop Down - seconds remaining %d\n",
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002737 vha->host_no,
2738 atomic_read(&vha->loop_down_timer)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 }
2740
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08002741 /* Check if beacon LED needs to be blinked */
2742 if (ha->beacon_blink_led == 1) {
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002743 set_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags);
andrew.vasquez@qlogic.comf6df1442006-01-31 16:05:07 -08002744 start_dpc++;
2745 }
2746
Andrew Vasquez550bf572008-04-24 15:21:23 -07002747 /* Process any deferred work. */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002748 if (!list_empty(&vha->work_list))
Andrew Vasquez550bf572008-04-24 15:21:23 -07002749 start_dpc++;
2750
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 /* Schedule the DPC routine if needed */
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002752 if ((test_bit(ISP_ABORT_NEEDED, &vha->dpc_flags) ||
2753 test_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags) ||
2754 test_bit(FCPORT_UPDATE_NEEDED, &vha->dpc_flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 start_dpc ||
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002756 test_bit(RESET_MARKER_NEEDED, &vha->dpc_flags) ||
2757 test_bit(BEACON_BLINK_NEEDED, &vha->dpc_flags) ||
2758 test_bit(VP_DPC_NEEDED, &vha->dpc_flags) ||
2759 test_bit(RELOGIN_NEEDED, &vha->dpc_flags)))
2760 qla2xxx_wake_dpc(vha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002762 qla2x00_restart_timer(vha, WATCH_INTERVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763}
2764
Andrew Vasquez54333832005-11-09 15:49:04 -08002765/* Firmware interface routines. */
2766
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002767#define FW_BLOBS 6
Andrew Vasquez54333832005-11-09 15:49:04 -08002768#define FW_ISP21XX 0
2769#define FW_ISP22XX 1
2770#define FW_ISP2300 2
2771#define FW_ISP2322 3
andrew.vasquez@qlogic.com48c02fd2006-03-09 14:27:18 -08002772#define FW_ISP24XX 4
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002773#define FW_ISP25XX 5
Andrew Vasquez54333832005-11-09 15:49:04 -08002774
Andrew Vasquezbb8ee492006-10-02 12:00:48 -07002775#define FW_FILE_ISP21XX "ql2100_fw.bin"
2776#define FW_FILE_ISP22XX "ql2200_fw.bin"
2777#define FW_FILE_ISP2300 "ql2300_fw.bin"
2778#define FW_FILE_ISP2322 "ql2322_fw.bin"
2779#define FW_FILE_ISP24XX "ql2400_fw.bin"
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002780#define FW_FILE_ISP25XX "ql2500_fw.bin"
Andrew Vasquezbb8ee492006-10-02 12:00:48 -07002781
Daniel Walkere1e82b62008-05-12 22:21:10 -07002782static DEFINE_MUTEX(qla_fw_lock);
Andrew Vasquez54333832005-11-09 15:49:04 -08002783
2784static struct fw_blob qla_fw_blobs[FW_BLOBS] = {
Andrew Vasquezbb8ee492006-10-02 12:00:48 -07002785 { .name = FW_FILE_ISP21XX, .segs = { 0x1000, 0 }, },
2786 { .name = FW_FILE_ISP22XX, .segs = { 0x1000, 0 }, },
2787 { .name = FW_FILE_ISP2300, .segs = { 0x800, 0 }, },
2788 { .name = FW_FILE_ISP2322, .segs = { 0x800, 0x1c000, 0x1e000, 0 }, },
2789 { .name = FW_FILE_ISP24XX, },
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002790 { .name = FW_FILE_ISP25XX, },
Andrew Vasquez54333832005-11-09 15:49:04 -08002791};
2792
2793struct fw_blob *
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002794qla2x00_request_firmware(scsi_qla_host_t *vha)
Andrew Vasquez54333832005-11-09 15:49:04 -08002795{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002796 struct qla_hw_data *ha = vha->hw;
Andrew Vasquez54333832005-11-09 15:49:04 -08002797 struct fw_blob *blob;
2798
2799 blob = NULL;
2800 if (IS_QLA2100(ha)) {
2801 blob = &qla_fw_blobs[FW_ISP21XX];
2802 } else if (IS_QLA2200(ha)) {
2803 blob = &qla_fw_blobs[FW_ISP22XX];
andrew.vasquez@qlogic.com48c02fd2006-03-09 14:27:18 -08002804 } else if (IS_QLA2300(ha) || IS_QLA2312(ha) || IS_QLA6312(ha)) {
Andrew Vasquez54333832005-11-09 15:49:04 -08002805 blob = &qla_fw_blobs[FW_ISP2300];
andrew.vasquez@qlogic.com48c02fd2006-03-09 14:27:18 -08002806 } else if (IS_QLA2322(ha) || IS_QLA6322(ha)) {
Andrew Vasquez54333832005-11-09 15:49:04 -08002807 blob = &qla_fw_blobs[FW_ISP2322];
Harihara Kadayam4d4df192008-04-03 13:13:26 -07002808 } else if (IS_QLA24XX_TYPE(ha)) {
Andrew Vasquez54333832005-11-09 15:49:04 -08002809 blob = &qla_fw_blobs[FW_ISP24XX];
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002810 } else if (IS_QLA25XX(ha)) {
2811 blob = &qla_fw_blobs[FW_ISP25XX];
Andrew Vasquez54333832005-11-09 15:49:04 -08002812 }
2813
Daniel Walkere1e82b62008-05-12 22:21:10 -07002814 mutex_lock(&qla_fw_lock);
Andrew Vasquez54333832005-11-09 15:49:04 -08002815 if (blob->fw)
2816 goto out;
2817
2818 if (request_firmware(&blob->fw, blob->name, &ha->pdev->dev)) {
2819 DEBUG2(printk("scsi(%ld): Failed to load firmware image "
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002820 "(%s).\n", vha->host_no, blob->name));
Andrew Vasquez54333832005-11-09 15:49:04 -08002821 blob->fw = NULL;
2822 blob = NULL;
2823 goto out;
2824 }
2825
2826out:
Daniel Walkere1e82b62008-05-12 22:21:10 -07002827 mutex_unlock(&qla_fw_lock);
Andrew Vasquez54333832005-11-09 15:49:04 -08002828 return blob;
2829}
2830
2831static void
2832qla2x00_release_firmware(void)
2833{
2834 int idx;
2835
Daniel Walkere1e82b62008-05-12 22:21:10 -07002836 mutex_lock(&qla_fw_lock);
Andrew Vasquez54333832005-11-09 15:49:04 -08002837 for (idx = 0; idx < FW_BLOBS; idx++)
2838 if (qla_fw_blobs[idx].fw)
2839 release_firmware(qla_fw_blobs[idx].fw);
Daniel Walkere1e82b62008-05-12 22:21:10 -07002840 mutex_unlock(&qla_fw_lock);
Andrew Vasquez54333832005-11-09 15:49:04 -08002841}
2842
Seokmann Ju14e660e2007-09-20 14:07:36 -07002843static pci_ers_result_t
2844qla2xxx_pci_error_detected(struct pci_dev *pdev, pci_channel_state_t state)
2845{
2846 switch (state) {
2847 case pci_channel_io_normal:
2848 return PCI_ERS_RESULT_CAN_RECOVER;
2849 case pci_channel_io_frozen:
2850 pci_disable_device(pdev);
2851 return PCI_ERS_RESULT_NEED_RESET;
2852 case pci_channel_io_perm_failure:
2853 qla2x00_remove_one(pdev);
2854 return PCI_ERS_RESULT_DISCONNECT;
2855 }
2856 return PCI_ERS_RESULT_NEED_RESET;
2857}
2858
2859static pci_ers_result_t
2860qla2xxx_pci_mmio_enabled(struct pci_dev *pdev)
2861{
2862 int risc_paused = 0;
2863 uint32_t stat;
2864 unsigned long flags;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002865 scsi_qla_host_t *base_vha = pci_get_drvdata(pdev);
2866 struct qla_hw_data *ha = base_vha->hw;
Seokmann Ju14e660e2007-09-20 14:07:36 -07002867 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
2868 struct device_reg_24xx __iomem *reg24 = &ha->iobase->isp24;
2869
2870 spin_lock_irqsave(&ha->hardware_lock, flags);
2871 if (IS_QLA2100(ha) || IS_QLA2200(ha)){
2872 stat = RD_REG_DWORD(&reg->hccr);
2873 if (stat & HCCR_RISC_PAUSE)
2874 risc_paused = 1;
2875 } else if (IS_QLA23XX(ha)) {
2876 stat = RD_REG_DWORD(&reg->u.isp2300.host_status);
2877 if (stat & HSR_RISC_PAUSED)
2878 risc_paused = 1;
2879 } else if (IS_FWI2_CAPABLE(ha)) {
2880 stat = RD_REG_DWORD(&reg24->host_status);
2881 if (stat & HSRX_RISC_PAUSED)
2882 risc_paused = 1;
2883 }
2884 spin_unlock_irqrestore(&ha->hardware_lock, flags);
2885
2886 if (risc_paused) {
2887 qla_printk(KERN_INFO, ha, "RISC paused -- mmio_enabled, "
2888 "Dumping firmware!\n");
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002889 ha->isp_ops->fw_dump(base_vha, 0);
Seokmann Ju14e660e2007-09-20 14:07:36 -07002890
2891 return PCI_ERS_RESULT_NEED_RESET;
2892 } else
2893 return PCI_ERS_RESULT_RECOVERED;
2894}
2895
2896static pci_ers_result_t
2897qla2xxx_pci_slot_reset(struct pci_dev *pdev)
2898{
2899 pci_ers_result_t ret = PCI_ERS_RESULT_DISCONNECT;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002900 scsi_qla_host_t *base_vha = pci_get_drvdata(pdev);
2901 struct qla_hw_data *ha = base_vha->hw;
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +11002902 int rc;
Seokmann Ju14e660e2007-09-20 14:07:36 -07002903
Benjamin Herrenschmidt09483912007-12-20 15:28:09 +11002904 if (ha->mem_only)
2905 rc = pci_enable_device_mem(pdev);
2906 else
2907 rc = pci_enable_device(pdev);
2908
2909 if (rc) {
Seokmann Ju14e660e2007-09-20 14:07:36 -07002910 qla_printk(KERN_WARNING, ha,
2911 "Can't re-enable PCI device after reset.\n");
2912
2913 return ret;
2914 }
2915 pci_set_master(pdev);
2916
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002917 if (ha->isp_ops->pci_config(base_vha))
Seokmann Ju14e660e2007-09-20 14:07:36 -07002918 return ret;
2919
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002920 set_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
2921 if (qla2x00_abort_isp(base_vha) == QLA_SUCCESS)
Seokmann Ju14e660e2007-09-20 14:07:36 -07002922 ret = PCI_ERS_RESULT_RECOVERED;
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002923 clear_bit(ABORT_ISP_ACTIVE, &base_vha->dpc_flags);
Seokmann Ju14e660e2007-09-20 14:07:36 -07002924
2925 return ret;
2926}
2927
2928static void
2929qla2xxx_pci_resume(struct pci_dev *pdev)
2930{
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002931 scsi_qla_host_t *base_vha = pci_get_drvdata(pdev);
2932 struct qla_hw_data *ha = base_vha->hw;
Seokmann Ju14e660e2007-09-20 14:07:36 -07002933 int ret;
2934
Anirban Chakrabortye315cd22008-11-06 10:40:51 -08002935 ret = qla2x00_wait_for_hba_online(base_vha);
Seokmann Ju14e660e2007-09-20 14:07:36 -07002936 if (ret != QLA_SUCCESS) {
2937 qla_printk(KERN_ERR, ha,
2938 "the device failed to resume I/O "
2939 "from slot/link_reset");
2940 }
2941 pci_cleanup_aer_uncorrect_error_status(pdev);
2942}
2943
2944static struct pci_error_handlers qla2xxx_err_handler = {
2945 .error_detected = qla2xxx_pci_error_detected,
2946 .mmio_enabled = qla2xxx_pci_mmio_enabled,
2947 .slot_reset = qla2xxx_pci_slot_reset,
2948 .resume = qla2xxx_pci_resume,
2949};
2950
Andrew Vasquez54333832005-11-09 15:49:04 -08002951static struct pci_device_id qla2xxx_pci_tbl[] = {
Andrew Vasquez47f5e062006-05-17 15:09:39 -07002952 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2100) },
2953 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2200) },
2954 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2300) },
2955 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2312) },
2956 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2322) },
2957 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6312) },
2958 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP6322) },
2959 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2422) },
2960 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2432) },
Harihara Kadayam4d4df192008-04-03 13:13:26 -07002961 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP8432) },
Andrew Vasquez47f5e062006-05-17 15:09:39 -07002962 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5422) },
2963 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP5432) },
Andrew Vasquezc3a2f0d2007-07-19 20:37:34 -07002964 { PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, PCI_DEVICE_ID_QLOGIC_ISP2532) },
Andrew Vasquez54333832005-11-09 15:49:04 -08002965 { 0 },
2966};
2967MODULE_DEVICE_TABLE(pci, qla2xxx_pci_tbl);
2968
Andrew Vasquezfca29702005-07-06 10:31:47 -07002969static struct pci_driver qla2xxx_pci_driver = {
Andrew Vasquezcb630672006-05-17 15:09:45 -07002970 .name = QLA2XXX_DRIVER_NAME,
James Bottomley0a21ef12005-12-01 12:51:50 -06002971 .driver = {
2972 .owner = THIS_MODULE,
2973 },
Andrew Vasquezfca29702005-07-06 10:31:47 -07002974 .id_table = qla2xxx_pci_tbl,
Andrew Vasquez7ee61392006-06-23 16:11:22 -07002975 .probe = qla2x00_probe_one,
Adrian Bunk4c993f72008-01-14 00:55:16 -08002976 .remove = qla2x00_remove_one,
Seokmann Ju14e660e2007-09-20 14:07:36 -07002977 .err_handler = &qla2xxx_err_handler,
Andrew Vasquezfca29702005-07-06 10:31:47 -07002978};
2979
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980/**
2981 * qla2x00_module_init - Module initialization.
2982 **/
2983static int __init
2984qla2x00_module_init(void)
2985{
Andrew Vasquezfca29702005-07-06 10:31:47 -07002986 int ret = 0;
2987
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 /* Allocate cache for SRBs. */
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04002989 srb_cachep = kmem_cache_create("qla2xxx_srbs", sizeof(srb_t), 0,
Paul Mundt20c2df82007-07-20 10:11:58 +09002990 SLAB_HWCACHE_ALIGN, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 if (srb_cachep == NULL) {
2992 printk(KERN_ERR
2993 "qla2xxx: Unable to allocate SRB cache...Failing load!\n");
2994 return -ENOMEM;
2995 }
2996
2997 /* Derive version string. */
2998 strcpy(qla2x00_version_str, QLA2XXX_VERSION);
Andrew Vasquez11010fe2006-10-06 09:54:59 -07002999 if (ql2xextended_error_logging)
Andrew Vasquez01819442006-06-23 16:11:10 -07003000 strcat(qla2x00_version_str, "-debug");
3001
Andrew Vasquez1c97a122005-04-21 16:13:36 -04003002 qla2xxx_transport_template =
3003 fc_attach_transport(&qla2xxx_transport_functions);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003004 if (!qla2xxx_transport_template) {
3005 kmem_cache_destroy(srb_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 return -ENODEV;
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003007 }
3008 qla2xxx_transport_vport_template =
3009 fc_attach_transport(&qla2xxx_transport_vport_functions);
3010 if (!qla2xxx_transport_vport_template) {
3011 kmem_cache_destroy(srb_cachep);
3012 fc_release_transport(qla2xxx_transport_template);
3013 return -ENODEV;
3014 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015
Andrew Vasquezfd9a29f02008-05-12 22:21:08 -07003016 printk(KERN_INFO "QLogic Fibre Channel HBA Driver: %s\n",
3017 qla2x00_version_str);
Andrew Vasquez7ee61392006-06-23 16:11:22 -07003018 ret = pci_register_driver(&qla2xxx_pci_driver);
Andrew Vasquezfca29702005-07-06 10:31:47 -07003019 if (ret) {
3020 kmem_cache_destroy(srb_cachep);
3021 fc_release_transport(qla2xxx_transport_template);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003022 fc_release_transport(qla2xxx_transport_vport_template);
Andrew Vasquezfca29702005-07-06 10:31:47 -07003023 }
3024 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025}
3026
3027/**
3028 * qla2x00_module_exit - Module cleanup.
3029 **/
3030static void __exit
3031qla2x00_module_exit(void)
3032{
Andrew Vasquez7ee61392006-06-23 16:11:22 -07003033 pci_unregister_driver(&qla2xxx_pci_driver);
Andrew Vasquez54333832005-11-09 15:49:04 -08003034 qla2x00_release_firmware();
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04003035 kmem_cache_destroy(srb_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 fc_release_transport(qla2xxx_transport_template);
Seokmann Ju2c3dfe32007-07-05 13:16:51 -07003037 fc_release_transport(qla2xxx_transport_vport_template);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038}
3039
3040module_init(qla2x00_module_init);
3041module_exit(qla2x00_module_exit);
3042
3043MODULE_AUTHOR("QLogic Corporation");
3044MODULE_DESCRIPTION("QLogic Fibre Channel HBA Driver");
3045MODULE_LICENSE("GPL");
3046MODULE_VERSION(QLA2XXX_VERSION);
Andrew Vasquezbb8ee492006-10-02 12:00:48 -07003047MODULE_FIRMWARE(FW_FILE_ISP21XX);
3048MODULE_FIRMWARE(FW_FILE_ISP22XX);
3049MODULE_FIRMWARE(FW_FILE_ISP2300);
3050MODULE_FIRMWARE(FW_FILE_ISP2322);
3051MODULE_FIRMWARE(FW_FILE_ISP24XX);
Andrew Vasquez61623fc2008-01-31 12:33:45 -08003052MODULE_FIRMWARE(FW_FILE_ISP25XX);