blob: a325b66ea41c4beac912fae38e5053e084830b6f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * QLOGIC LINUX SOFTWARE
3 *
4 * QLogic ISP2x00 device driver for Linux 2.6.x
5 * Copyright (C) 2003-2004 QLogic Corporation
6 * (www.qlogic.com)
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2, or (at your option) any
11 * later version.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 */
19#include "qla_def.h"
20
21#include <linux/moduleparam.h>
22#include <linux/vmalloc.h>
23#include <linux/smp_lock.h>
24#include <linux/delay.h>
25
26#include <scsi/scsi_tcq.h>
27#include <scsi/scsicam.h>
28#include <scsi/scsi_transport.h>
29#include <scsi/scsi_transport_fc.h>
30
31/*
32 * Driver version
33 */
34char qla2x00_version_str[40];
35
36/*
37 * SRB allocation cache
38 */
Andrew Vasquez 354d6b22005-04-23 02:47:27 -040039static kmem_cache_t *srb_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41/*
42 * Ioctl related information.
43 */
Andrew Vasquez 354d6b22005-04-23 02:47:27 -040044static int num_hosts;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46int ql2xlogintimeout = 20;
47module_param(ql2xlogintimeout, int, S_IRUGO|S_IRUSR);
48MODULE_PARM_DESC(ql2xlogintimeout,
49 "Login timeout value in seconds.");
50
8482e1182005-04-17 15:04:54 -050051int qlport_down_retry = 30;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052module_param(qlport_down_retry, int, S_IRUGO|S_IRUSR);
53MODULE_PARM_DESC(qlport_down_retry,
54 "Maximum number of command retries to a port that returns"
55 "a PORT-DOWN status.");
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057int ql2xplogiabsentdevice;
58module_param(ql2xplogiabsentdevice, int, S_IRUGO|S_IWUSR);
59MODULE_PARM_DESC(ql2xplogiabsentdevice,
60 "Option to enable PLOGI to devices that are not present after "
61 "a Fabric scan. This is needed for several broken switches."
62 "Default is 0 - no PLOGI. 1 - perfom PLOGI.");
63
64int ql2xenablezio = 0;
65module_param(ql2xenablezio, int, S_IRUGO|S_IRUSR);
66MODULE_PARM_DESC(ql2xenablezio,
67 "Option to enable ZIO:If 1 then enable it otherwise"
68 " use the default set in the NVRAM."
69 " Default is 0 : disabled");
70
71int ql2xintrdelaytimer = 10;
72module_param(ql2xintrdelaytimer, int, S_IRUGO|S_IRUSR);
73MODULE_PARM_DESC(ql2xintrdelaytimer,
74 "ZIO: Waiting time for Firmware before it generates an "
75 "interrupt to the host to notify completion of request.");
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077int ql2xloginretrycount = 0;
78module_param(ql2xloginretrycount, int, S_IRUGO|S_IRUSR);
79MODULE_PARM_DESC(ql2xloginretrycount,
80 "Specify an alternate value for the NVRAM login retry count.");
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082static void qla2x00_free_device(scsi_qla_host_t *);
83
84static void qla2x00_config_dma_addressing(scsi_qla_host_t *ha);
85
86/*
87 * SCSI host template entry points
88 */
89static int qla2xxx_slave_configure(struct scsi_device * device);
f4f051e2005-04-17 15:02:26 -050090static int qla2xxx_slave_alloc(struct scsi_device *);
91static void qla2xxx_slave_destroy(struct scsi_device *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092static int qla2x00_queuecommand(struct scsi_cmnd *cmd,
93 void (*fn)(struct scsi_cmnd *));
94static int qla2xxx_eh_abort(struct scsi_cmnd *);
95static int qla2xxx_eh_device_reset(struct scsi_cmnd *);
96static int qla2xxx_eh_bus_reset(struct scsi_cmnd *);
97static int qla2xxx_eh_host_reset(struct scsi_cmnd *);
98static int qla2x00_loop_reset(scsi_qla_host_t *ha);
99static int qla2x00_device_reset(scsi_qla_host_t *, fc_port_t *);
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101static struct scsi_host_template qla2x00_driver_template = {
102 .module = THIS_MODULE,
103 .name = "qla2xxx",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 .queuecommand = qla2x00_queuecommand,
105
106 .eh_abort_handler = qla2xxx_eh_abort,
107 .eh_device_reset_handler = qla2xxx_eh_device_reset,
108 .eh_bus_reset_handler = qla2xxx_eh_bus_reset,
109 .eh_host_reset_handler = qla2xxx_eh_host_reset,
110
111 .slave_configure = qla2xxx_slave_configure,
112
f4f051e2005-04-17 15:02:26 -0500113 .slave_alloc = qla2xxx_slave_alloc,
114 .slave_destroy = qla2xxx_slave_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 .this_id = -1,
116 .cmd_per_lun = 3,
117 .use_clustering = ENABLE_CLUSTERING,
118 .sg_tablesize = SG_ALL,
119
120 /*
121 * The RISC allows for each command to transfer (2^32-1) bytes of data,
122 * which equates to 0x800000 sectors.
123 */
124 .max_sectors = 0xFFFF,
125};
126
127static struct scsi_transport_template *qla2xxx_transport_template = NULL;
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129/* TODO Convert to inlines
130 *
131 * Timer routines
132 */
133#define WATCH_INTERVAL 1 /* number of seconds */
134
135static void qla2x00_timer(scsi_qla_host_t *);
136
137static __inline__ void qla2x00_start_timer(scsi_qla_host_t *,
138 void *, unsigned long);
139static __inline__ void qla2x00_restart_timer(scsi_qla_host_t *, unsigned long);
140static __inline__ void qla2x00_stop_timer(scsi_qla_host_t *);
141
142static inline void
143qla2x00_start_timer(scsi_qla_host_t *ha, void *func, unsigned long interval)
144{
145 init_timer(&ha->timer);
146 ha->timer.expires = jiffies + interval * HZ;
147 ha->timer.data = (unsigned long)ha;
148 ha->timer.function = (void (*)(unsigned long))func;
149 add_timer(&ha->timer);
150 ha->timer_active = 1;
151}
152
153static inline void
154qla2x00_restart_timer(scsi_qla_host_t *ha, unsigned long interval)
155{
156 mod_timer(&ha->timer, jiffies + interval * HZ);
157}
158
159static __inline__ void
160qla2x00_stop_timer(scsi_qla_host_t *ha)
161{
162 del_timer_sync(&ha->timer);
163 ha->timer_active = 0;
164}
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166static int qla2x00_do_dpc(void *data);
167
168static void qla2x00_rst_aen(scsi_qla_host_t *);
169
170static uint8_t qla2x00_mem_alloc(scsi_qla_host_t *);
171static void qla2x00_mem_free(scsi_qla_host_t *ha);
172static int qla2x00_allocate_sp_pool( scsi_qla_host_t *ha);
173static void qla2x00_free_sp_pool(scsi_qla_host_t *ha);
f4f051e2005-04-17 15:02:26 -0500174static srb_t *qla2x00_get_new_sp(scsi_qla_host_t *);
175static void qla2x00_sp_free_dma(scsi_qla_host_t *, srb_t *);
176void qla2x00_sp_compl(scsi_qla_host_t *ha, srb_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178/* -------------------------------------------------------------------------- */
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180static char *
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700181qla2x00_pci_info_str(struct scsi_qla_host *ha, char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
183 static char *pci_bus_modes[] = {
184 "33", "66", "100", "133",
185 };
186 uint16_t pci_bus;
187
188 strcpy(str, "PCI");
189 pci_bus = (ha->pci_attr & (BIT_9 | BIT_10)) >> 9;
190 if (pci_bus) {
191 strcat(str, "-X (");
192 strcat(str, pci_bus_modes[pci_bus]);
193 } else {
194 pci_bus = (ha->pci_attr & BIT_8) >> 8;
195 strcat(str, " (");
196 strcat(str, pci_bus_modes[pci_bus]);
197 }
198 strcat(str, " MHz)");
199
200 return (str);
201}
202
203char *
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700204qla2x00_fw_version_str(struct scsi_qla_host *ha, char *str)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205{
206 char un_str[10];
207
208 sprintf(str, "%d.%02d.%02d ", ha->fw_major_version,
209 ha->fw_minor_version,
210 ha->fw_subminor_version);
211
212 if (ha->fw_attributes & BIT_9) {
213 strcat(str, "FLX");
214 return (str);
215 }
216
217 switch (ha->fw_attributes & 0xFF) {
218 case 0x7:
219 strcat(str, "EF");
220 break;
221 case 0x17:
222 strcat(str, "TP");
223 break;
224 case 0x37:
225 strcat(str, "IP");
226 break;
227 case 0x77:
228 strcat(str, "VI");
229 break;
230 default:
231 sprintf(un_str, "(%x)", ha->fw_attributes);
232 strcat(str, un_str);
233 break;
234 }
235 if (ha->fw_attributes & 0x100)
236 strcat(str, "X");
237
238 return (str);
239}
240
241/**************************************************************************
242* qla2x00_queuecommand
243*
244* Description:
245* Queue a command to the controller.
246*
247* Input:
248* cmd - pointer to Scsi cmd structure
249* fn - pointer to Scsi done function
250*
251* Returns:
252* 0 - Always
253*
254* Note:
255* The mid-level driver tries to ensures that queuecommand never gets invoked
256* concurrently with itself or the interrupt handler (although the
257* interrupt handler may call this routine as part of request-completion
258* handling).
259**************************************************************************/
260static int
f4f051e2005-04-17 15:02:26 -0500261qla2x00_queuecommand(struct scsi_cmnd *cmd, void (*done)(struct scsi_cmnd *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
f4f051e2005-04-17 15:02:26 -0500263 scsi_qla_host_t *ha = to_qla_host(cmd->device->host);
bdf79622005-04-17 15:06:53 -0500264 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
f4f051e2005-04-17 15:02:26 -0500265 srb_t *sp;
266 int rval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
bdf79622005-04-17 15:06:53 -0500268 if (!fcport) {
f4f051e2005-04-17 15:02:26 -0500269 cmd->result = DID_NO_CONNECT << 16;
270 goto qc_fail_command;
271 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
f4f051e2005-04-17 15:02:26 -0500273 if (atomic_read(&fcport->state) != FCS_ONLINE) {
274 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD ||
275 atomic_read(&ha->loop_state) == LOOP_DEAD) {
276 cmd->result = DID_NO_CONNECT << 16;
277 goto qc_fail_command;
278 }
279 goto qc_host_busy;
280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282 spin_unlock_irq(ha->host->host_lock);
283
f4f051e2005-04-17 15:02:26 -0500284 /* Allocate a command packet from the "sp" pool. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 if ((sp = qla2x00_get_new_sp(ha)) == NULL) {
f4f051e2005-04-17 15:02:26 -0500286 goto qc_host_busy_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 }
288
f4f051e2005-04-17 15:02:26 -0500289 sp->ha = ha;
bdf79622005-04-17 15:06:53 -0500290 sp->fcport = fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 sp->cmd = cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 sp->flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
f4f051e2005-04-17 15:02:26 -0500294 CMD_SP(cmd) = (void *)sp;
295 cmd->scsi_done = done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
f4f051e2005-04-17 15:02:26 -0500297 rval = qla2x00_start_scsi(sp);
298 if (rval != QLA_SUCCESS)
299 goto qc_host_busy_free_sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
f4f051e2005-04-17 15:02:26 -0500301 /* Manage unprocessed RIO/ZIO commands in response queue. */
302 if (ha->flags.online && ha->flags.process_response_queue &&
303 ha->response_ring_ptr->signature != RESPONSE_PROCESSED) {
304 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
f4f051e2005-04-17 15:02:26 -0500306 spin_lock_irqsave(&ha->hardware_lock, flags);
307 qla2x00_process_response_queue(ha);
308 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 }
310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 spin_lock_irq(ha->host->host_lock);
312
f4f051e2005-04-17 15:02:26 -0500313 return 0;
314
315qc_host_busy_free_sp:
316 qla2x00_sp_free_dma(ha, sp);
317 CMD_SP(cmd) = NULL;
318 mempool_free(sp, ha->srb_mempool);
319
320qc_host_busy_lock:
321 spin_lock_irq(ha->host->host_lock);
322
323qc_host_busy:
324 return SCSI_MLQUEUE_HOST_BUSY;
325
326qc_fail_command:
327 done(cmd);
328
329 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330}
331
332/*
333 * qla2x00_eh_wait_on_command
334 * Waits for the command to be returned by the Firmware for some
335 * max time.
336 *
337 * Input:
338 * ha = actual ha whose done queue will contain the command
339 * returned by firmware.
340 * cmd = Scsi Command to wait on.
341 * flag = Abort/Reset(Bus or Device Reset)
342 *
343 * Return:
344 * Not Found : 0
345 * Found : 1
346 */
347static int
348qla2x00_eh_wait_on_command(scsi_qla_host_t *ha, struct scsi_cmnd *cmd)
349{
350#define ABORT_POLLING_PERIOD HZ
f4f051e2005-04-17 15:02:26 -0500351#define ABORT_WAIT_ITER ((10 * HZ) / (ABORT_POLLING_PERIOD))
352 unsigned long wait_iter = ABORT_WAIT_ITER;
353 int ret = QLA_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
f4f051e2005-04-17 15:02:26 -0500355 while (CMD_SP(cmd)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 set_current_state(TASK_UNINTERRUPTIBLE);
357 schedule_timeout(ABORT_POLLING_PERIOD);
358
f4f051e2005-04-17 15:02:26 -0500359 if (--wait_iter)
360 break;
361 }
362 if (CMD_SP(cmd))
363 ret = QLA_FUNCTION_FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
f4f051e2005-04-17 15:02:26 -0500365 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366}
367
368/*
369 * qla2x00_wait_for_hba_online
370 * Wait till the HBA is online after going through
371 * <= MAX_RETRIES_OF_ISP_ABORT or
372 * finally HBA is disabled ie marked offline
373 *
374 * Input:
375 * ha - pointer to host adapter structure
376 *
377 * Note:
378 * Does context switching-Release SPIN_LOCK
379 * (if any) before calling this routine.
380 *
381 * Return:
382 * Success (Adapter is online) : 0
383 * Failed (Adapter is offline/disabled) : 1
384 */
385static int
386qla2x00_wait_for_hba_online(scsi_qla_host_t *ha)
387{
388 int return_status;
389 unsigned long wait_online;
390
391 wait_online = jiffies + (MAX_LOOP_TIMEOUT * HZ);
392 while (((test_bit(ISP_ABORT_NEEDED, &ha->dpc_flags)) ||
393 test_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags) ||
394 test_bit(ISP_ABORT_RETRY, &ha->dpc_flags) ||
395 ha->dpc_active) && time_before(jiffies, wait_online)) {
396
397 msleep(1000);
398 }
399 if (ha->flags.online)
400 return_status = QLA_SUCCESS;
401 else
402 return_status = QLA_FUNCTION_FAILED;
403
404 DEBUG2(printk("%s return_status=%d\n",__func__,return_status));
405
406 return (return_status);
407}
408
409/*
410 * qla2x00_wait_for_loop_ready
411 * Wait for MAX_LOOP_TIMEOUT(5 min) value for loop
412 * to be in LOOP_READY state.
413 * Input:
414 * ha - pointer to host adapter structure
415 *
416 * Note:
417 * Does context switching-Release SPIN_LOCK
418 * (if any) before calling this routine.
419 *
420 *
421 * Return:
422 * Success (LOOP_READY) : 0
423 * Failed (LOOP_NOT_READY) : 1
424 */
425static inline int
426qla2x00_wait_for_loop_ready(scsi_qla_host_t *ha)
427{
428 int return_status = QLA_SUCCESS;
429 unsigned long loop_timeout ;
430
431 /* wait for 5 min at the max for loop to be ready */
432 loop_timeout = jiffies + (MAX_LOOP_TIMEOUT * HZ);
433
434 while ((!atomic_read(&ha->loop_down_timer) &&
435 atomic_read(&ha->loop_state) == LOOP_DOWN) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 atomic_read(&ha->loop_state) != LOOP_READY) {
437 msleep(1000);
438 if (time_after_eq(jiffies, loop_timeout)) {
439 return_status = QLA_FUNCTION_FAILED;
440 break;
441 }
442 }
443 return (return_status);
444}
445
446/**************************************************************************
447* qla2xxx_eh_abort
448*
449* Description:
450* The abort function will abort the specified command.
451*
452* Input:
453* cmd = Linux SCSI command packet to be aborted.
454*
455* Returns:
456* Either SUCCESS or FAILED.
457*
458* Note:
459**************************************************************************/
460int
461qla2xxx_eh_abort(struct scsi_cmnd *cmd)
462{
f4f051e2005-04-17 15:02:26 -0500463 scsi_qla_host_t *ha = to_qla_host(cmd->device->host);
464 srb_t *sp;
465 int ret, i;
466 unsigned int id, lun;
467 unsigned long serial;
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700468 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
f4f051e2005-04-17 15:02:26 -0500470 if (!CMD_SP(cmd))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 return FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
f4f051e2005-04-17 15:02:26 -0500473 ret = FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
f4f051e2005-04-17 15:02:26 -0500475 id = cmd->device->id;
476 lun = cmd->device->lun;
477 serial = cmd->serial_number;
478
479 /* Check active list for command command. */
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700480 spin_lock_irqsave(&ha->hardware_lock, flags);
f4f051e2005-04-17 15:02:26 -0500481 for (i = 1; i < MAX_OUTSTANDING_COMMANDS; i++) {
482 sp = ha->outstanding_cmds[i];
483
484 if (sp == NULL)
485 continue;
486
487 if (sp->cmd != cmd)
488 continue;
489
490 DEBUG2(printk("%s(%ld): aborting sp %p from RISC. pid=%ld "
491 "sp->state=%x\n", __func__, ha->host_no, sp, serial,
492 sp->state));
493 DEBUG3(qla2x00_print_scsi_cmd(cmd);)
494
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700495 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700496 if (ha->isp_ops.abort_command(ha, sp)) {
f4f051e2005-04-17 15:02:26 -0500497 DEBUG2(printk("%s(%ld): abort_command "
498 "mbx failed.\n", __func__, ha->host_no));
499 } else {
500 DEBUG3(printk("%s(%ld): abort_command "
501 "mbx success.\n", __func__, ha->host_no));
502 ret = SUCCESS;
503 }
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700504 spin_lock_irqsave(&ha->hardware_lock, flags);
f4f051e2005-04-17 15:02:26 -0500505
506 break;
507 }
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700508 spin_unlock_irqrestore(&ha->hardware_lock, flags);
f4f051e2005-04-17 15:02:26 -0500509
510 /* Wait for the command to be returned. */
511 if (ret == SUCCESS) {
f4f051e2005-04-17 15:02:26 -0500512 if (qla2x00_eh_wait_on_command(ha, cmd) != QLA_SUCCESS) {
513 qla_printk(KERN_ERR, ha,
514 "scsi(%ld:%d:%d): Abort handler timed out -- %lx "
515 "%x.\n", ha->host_no, id, lun, serial, ret);
516 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
f4f051e2005-04-17 15:02:26 -0500519 qla_printk(KERN_INFO, ha,
520 "scsi(%ld:%d:%d): Abort command issued -- %lx %x.\n", ha->host_no,
521 id, lun, serial, ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
f4f051e2005-04-17 15:02:26 -0500523 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524}
525
526/**************************************************************************
527* qla2x00_eh_wait_for_pending_target_commands
528*
529* Description:
530* Waits for all the commands to come back from the specified target.
531*
532* Input:
533* ha - pointer to scsi_qla_host structure.
534* t - target
535* Returns:
536* Either SUCCESS or FAILED.
537*
538* Note:
539**************************************************************************/
540static int
541qla2x00_eh_wait_for_pending_target_commands(scsi_qla_host_t *ha, unsigned int t)
542{
543 int cnt;
544 int status;
545 srb_t *sp;
546 struct scsi_cmnd *cmd;
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700547 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549 status = 0;
550
551 /*
552 * Waiting for all commands for the designated target in the active
553 * array
554 */
555 for (cnt = 1; cnt < MAX_OUTSTANDING_COMMANDS; cnt++) {
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700556 spin_lock_irqsave(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 sp = ha->outstanding_cmds[cnt];
558 if (sp) {
559 cmd = sp->cmd;
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700560 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 if (cmd->device->id == t) {
562 if (!qla2x00_eh_wait_on_command(ha, cmd)) {
563 status = 1;
564 break;
565 }
566 }
f4f051e2005-04-17 15:02:26 -0500567 } else {
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700568 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 }
570 }
571 return (status);
572}
573
574
575/**************************************************************************
576* qla2xxx_eh_device_reset
577*
578* Description:
579* The device reset function will reset the target and abort any
580* executing commands.
581*
582* NOTE: The use of SP is undefined within this context. Do *NOT*
583* attempt to use this value, even if you determine it is
584* non-null.
585*
586* Input:
587* cmd = Linux SCSI command packet of the command that cause the
588* bus device reset.
589*
590* Returns:
591* SUCCESS/FAILURE (defined as macro in scsi.h).
592*
593**************************************************************************/
594int
595qla2xxx_eh_device_reset(struct scsi_cmnd *cmd)
596{
f4f051e2005-04-17 15:02:26 -0500597 scsi_qla_host_t *ha = to_qla_host(cmd->device->host);
bdf79622005-04-17 15:06:53 -0500598 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
f4f051e2005-04-17 15:02:26 -0500599 srb_t *sp;
600 int ret;
601 unsigned int id, lun;
602 unsigned long serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
f4f051e2005-04-17 15:02:26 -0500604 ret = FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
f4f051e2005-04-17 15:02:26 -0500606 id = cmd->device->id;
607 lun = cmd->device->lun;
608 serial = cmd->serial_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
f4f051e2005-04-17 15:02:26 -0500610 sp = (srb_t *) CMD_SP(cmd);
bdf79622005-04-17 15:06:53 -0500611 if (!sp || !fcport)
f4f051e2005-04-17 15:02:26 -0500612 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
614 qla_printk(KERN_INFO, ha,
f4f051e2005-04-17 15:02:26 -0500615 "scsi(%ld:%d:%d): DEVICE RESET ISSUED.\n", ha->host_no, id, lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Jeff Garzik 94d0e7b82005-05-28 07:55:48 -0400617 if (qla2x00_wait_for_hba_online(ha) != QLA_SUCCESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 goto eh_dev_reset_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
620 if (qla2x00_wait_for_loop_ready(ha) == QLA_SUCCESS) {
f4f051e2005-04-17 15:02:26 -0500621 if (qla2x00_device_reset(ha, fcport) == 0)
622 ret = SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
624#if defined(LOGOUT_AFTER_DEVICE_RESET)
f4f051e2005-04-17 15:02:26 -0500625 if (ret == SUCCESS) {
626 if (fcport->flags & FC_FABRIC_DEVICE) {
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700627 ha->isp_ops.fabric_logout(ha, fcport->loop_id);
f4f051e2005-04-17 15:02:26 -0500628 qla2x00_mark_device_lost(ha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 }
630 }
631#endif
632 } else {
633 DEBUG2(printk(KERN_INFO
634 "%s failed: loop not ready\n",__func__);)
635 }
636
f4f051e2005-04-17 15:02:26 -0500637 if (ret == FAILED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 DEBUG3(printk("%s(%ld): device reset failed\n",
639 __func__, ha->host_no));
640 qla_printk(KERN_INFO, ha, "%s: device reset failed\n",
641 __func__);
642
643 goto eh_dev_reset_done;
644 }
645
646 /*
647 * If we are coming down the EH path, wait for all commands to
648 * complete for the device.
649 */
650 if (cmd->device->host->eh_active) {
f4f051e2005-04-17 15:02:26 -0500651 if (qla2x00_eh_wait_for_pending_target_commands(ha, id))
652 ret = FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
f4f051e2005-04-17 15:02:26 -0500654 if (ret == FAILED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 DEBUG3(printk("%s(%ld): failed while waiting for "
656 "commands\n", __func__, ha->host_no));
657 qla_printk(KERN_INFO, ha,
658 "%s: failed while waiting for commands\n",
659 __func__);
660
661 goto eh_dev_reset_done;
662 }
663 }
664
665 qla_printk(KERN_INFO, ha,
f4f051e2005-04-17 15:02:26 -0500666 "scsi(%ld:%d:%d): DEVICE RESET SUCCEEDED.\n", ha->host_no, id, lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
668eh_dev_reset_done:
f4f051e2005-04-17 15:02:26 -0500669 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670}
671
672/**************************************************************************
673* qla2x00_eh_wait_for_pending_commands
674*
675* Description:
676* Waits for all the commands to come back from the specified host.
677*
678* Input:
679* ha - pointer to scsi_qla_host structure.
680*
681* Returns:
682* 1 : SUCCESS
683* 0 : FAILED
684*
685* Note:
686**************************************************************************/
687static int
688qla2x00_eh_wait_for_pending_commands(scsi_qla_host_t *ha)
689{
690 int cnt;
691 int status;
692 srb_t *sp;
693 struct scsi_cmnd *cmd;
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700694 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
696 status = 1;
697
698 /*
699 * Waiting for all commands for the designated target in the active
700 * array
701 */
702 for (cnt = 1; cnt < MAX_OUTSTANDING_COMMANDS; cnt++) {
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700703 spin_lock_irqsave(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 sp = ha->outstanding_cmds[cnt];
705 if (sp) {
706 cmd = sp->cmd;
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700707 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 status = qla2x00_eh_wait_on_command(ha, cmd);
709 if (status == 0)
710 break;
711 }
712 else {
Andrew Vasquez18e144d2005-05-27 15:04:47 -0700713 spin_unlock_irqrestore(&ha->hardware_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 }
715 }
716 return (status);
717}
718
719
720/**************************************************************************
721* qla2xxx_eh_bus_reset
722*
723* Description:
724* The bus reset function will reset the bus and abort any executing
725* commands.
726*
727* Input:
728* cmd = Linux SCSI command packet of the command that cause the
729* bus reset.
730*
731* Returns:
732* SUCCESS/FAILURE (defined as macro in scsi.h).
733*
734**************************************************************************/
735int
736qla2xxx_eh_bus_reset(struct scsi_cmnd *cmd)
737{
f4f051e2005-04-17 15:02:26 -0500738 scsi_qla_host_t *ha = to_qla_host(cmd->device->host);
bdf79622005-04-17 15:06:53 -0500739 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 srb_t *sp;
f4f051e2005-04-17 15:02:26 -0500741 int ret;
742 unsigned int id, lun;
743 unsigned long serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
f4f051e2005-04-17 15:02:26 -0500745 ret = FAILED;
746
747 id = cmd->device->id;
748 lun = cmd->device->lun;
749 serial = cmd->serial_number;
750
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 sp = (srb_t *) CMD_SP(cmd);
bdf79622005-04-17 15:06:53 -0500752 if (!sp || !fcport)
f4f051e2005-04-17 15:02:26 -0500753 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
755 qla_printk(KERN_INFO, ha,
f4f051e2005-04-17 15:02:26 -0500756 "scsi(%ld:%d:%d): LOOP RESET ISSUED.\n", ha->host_no, id, lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 if (qla2x00_wait_for_hba_online(ha) != QLA_SUCCESS) {
759 DEBUG2(printk("%s failed:board disabled\n",__func__));
f4f051e2005-04-17 15:02:26 -0500760 goto eh_bus_reset_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 }
762
763 if (qla2x00_wait_for_loop_ready(ha) == QLA_SUCCESS) {
f4f051e2005-04-17 15:02:26 -0500764 if (qla2x00_loop_reset(ha) == QLA_SUCCESS)
765 ret = SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 }
f4f051e2005-04-17 15:02:26 -0500767 if (ret == FAILED)
768 goto eh_bus_reset_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
770 /* Waiting for our command in done_queue to be returned to OS.*/
771 if (cmd->device->host->eh_active)
772 if (!qla2x00_eh_wait_for_pending_commands(ha))
f4f051e2005-04-17 15:02:26 -0500773 ret = FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
f4f051e2005-04-17 15:02:26 -0500775eh_bus_reset_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 qla_printk(KERN_INFO, ha, "%s: reset %s\n", __func__,
f4f051e2005-04-17 15:02:26 -0500777 (ret == FAILED) ? "failed" : "succeded");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
f4f051e2005-04-17 15:02:26 -0500779 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780}
781
782/**************************************************************************
783* qla2xxx_eh_host_reset
784*
785* Description:
786* The reset function will reset the Adapter.
787*
788* Input:
789* cmd = Linux SCSI command packet of the command that cause the
790* adapter reset.
791*
792* Returns:
793* Either SUCCESS or FAILED.
794*
795* Note:
796**************************************************************************/
797int
798qla2xxx_eh_host_reset(struct scsi_cmnd *cmd)
799{
f4f051e2005-04-17 15:02:26 -0500800 scsi_qla_host_t *ha = to_qla_host(cmd->device->host);
bdf79622005-04-17 15:06:53 -0500801 fc_port_t *fcport = (struct fc_port *) cmd->device->hostdata;
f4f051e2005-04-17 15:02:26 -0500802 srb_t *sp;
803 int ret;
804 unsigned int id, lun;
805 unsigned long serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
f4f051e2005-04-17 15:02:26 -0500807 ret = FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
f4f051e2005-04-17 15:02:26 -0500809 id = cmd->device->id;
810 lun = cmd->device->lun;
811 serial = cmd->serial_number;
812
813 sp = (srb_t *) CMD_SP(cmd);
bdf79622005-04-17 15:06:53 -0500814 if (!sp || !fcport)
f4f051e2005-04-17 15:02:26 -0500815 return ret;
816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 qla_printk(KERN_INFO, ha,
f4f051e2005-04-17 15:02:26 -0500818 "scsi(%ld:%d:%d): ADAPTER RESET ISSUED.\n", ha->host_no, id, lun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 if (qla2x00_wait_for_hba_online(ha) != QLA_SUCCESS)
f4f051e2005-04-17 15:02:26 -0500821 goto eh_host_reset_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 /*
824 * Fixme-may be dpc thread is active and processing
825 * loop_resync,so wait a while for it to
826 * be completed and then issue big hammer.Otherwise
827 * it may cause I/O failure as big hammer marks the
828 * devices as lost kicking of the port_down_timer
829 * while dpc is stuck for the mailbox to complete.
830 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 qla2x00_wait_for_loop_ready(ha);
832 set_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
833 if (qla2x00_abort_isp(ha)) {
834 clear_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
835 /* failed. schedule dpc to try */
836 set_bit(ISP_ABORT_NEEDED, &ha->dpc_flags);
837
838 if (qla2x00_wait_for_hba_online(ha) != QLA_SUCCESS)
f4f051e2005-04-17 15:02:26 -0500839 goto eh_host_reset_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 clear_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
842
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 /* Waiting for our command in done_queue to be returned to OS.*/
f4f051e2005-04-17 15:02:26 -0500844 if (qla2x00_eh_wait_for_pending_commands(ha))
845 ret = SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
f4f051e2005-04-17 15:02:26 -0500847eh_host_reset_lock:
f4f051e2005-04-17 15:02:26 -0500848 qla_printk(KERN_INFO, ha, "%s: reset %s\n", __func__,
849 (ret == FAILED) ? "failed" : "succeded");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
f4f051e2005-04-17 15:02:26 -0500851 return ret;
852}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
854/*
855* qla2x00_loop_reset
856* Issue loop reset.
857*
858* Input:
859* ha = adapter block pointer.
860*
861* Returns:
862* 0 = success
863*/
864static int
865qla2x00_loop_reset(scsi_qla_host_t *ha)
866{
867 int status = QLA_SUCCESS;
bdf79622005-04-17 15:06:53 -0500868 struct fc_port *fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870 if (ha->flags.enable_lip_reset) {
871 status = qla2x00_lip_reset(ha);
872 }
873
874 if (status == QLA_SUCCESS && ha->flags.enable_target_reset) {
bdf79622005-04-17 15:06:53 -0500875 list_for_each_entry(fcport, &ha->fcports, list) {
876 if (fcport->port_type != FCT_TARGET)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 continue;
878
bdf79622005-04-17 15:06:53 -0500879 status = qla2x00_target_reset(ha, fcport);
880 if (status != QLA_SUCCESS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 }
883 }
884
885 if (status == QLA_SUCCESS &&
886 ((!ha->flags.enable_target_reset &&
887 !ha->flags.enable_lip_reset) ||
888 ha->flags.enable_lip_full_login)) {
889
890 status = qla2x00_full_login_lip(ha);
891 }
892
893 /* Issue marker command only when we are going to start the I/O */
894 ha->marker_needed = 1;
895
896 if (status) {
897 /* Empty */
898 DEBUG2_3(printk("%s(%ld): **** FAILED ****\n",
899 __func__,
900 ha->host_no);)
901 } else {
902 /* Empty */
903 DEBUG3(printk("%s(%ld): exiting normally.\n",
904 __func__,
905 ha->host_no);)
906 }
907
908 return(status);
909}
910
911/*
912 * qla2x00_device_reset
913 * Issue bus device reset message to the target.
914 *
915 * Input:
916 * ha = adapter block pointer.
917 * t = SCSI ID.
918 * TARGET_QUEUE_LOCK must be released.
919 * ADAPTER_STATE_LOCK must be released.
920 *
921 * Context:
922 * Kernel context.
923 */
924static int
925qla2x00_device_reset(scsi_qla_host_t *ha, fc_port_t *reset_fcport)
926{
927 /* Abort Target command will clear Reservation */
Andrew Vasquezabbd8872005-07-06 10:30:05 -0700928 return ha->isp_ops.abort_target(reset_fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929}
930
f4f051e2005-04-17 15:02:26 -0500931static int
932qla2xxx_slave_alloc(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933{
934 scsi_qla_host_t *ha = to_qla_host(sdev->host);
bdf79622005-04-17 15:06:53 -0500935 struct fc_rport *rport = starget_to_rport(scsi_target(sdev));
936 fc_port_t *fcport;
937 int found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
bdf79622005-04-17 15:06:53 -0500939 if (!rport)
f4f051e2005-04-17 15:02:26 -0500940 return -ENXIO;
941
bdf79622005-04-17 15:06:53 -0500942 found = 0;
943 list_for_each_entry(fcport, &ha->fcports, list) {
944 if (rport->port_name ==
945 be64_to_cpu(*(uint64_t *)fcport->port_name)) {
946 found++;
947 break;
948 }
bdf79622005-04-17 15:06:53 -0500949 }
950 if (!found)
951 return -ENXIO;
952
953 sdev->hostdata = fcport;
f4f051e2005-04-17 15:02:26 -0500954
955 return 0;
956}
957
958static int
959qla2xxx_slave_configure(struct scsi_device *sdev)
960{
8482e1182005-04-17 15:04:54 -0500961 scsi_qla_host_t *ha = to_qla_host(sdev->host);
962 struct fc_rport *rport = starget_to_rport(sdev->sdev_target);
963
f4f051e2005-04-17 15:02:26 -0500964 if (sdev->tagged_supported)
965 scsi_activate_tcq(sdev, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 else
f4f051e2005-04-17 15:02:26 -0500967 scsi_deactivate_tcq(sdev, 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
8482e1182005-04-17 15:04:54 -0500969 rport->dev_loss_tmo = ha->port_down_retry_count + 5;
970
f4f051e2005-04-17 15:02:26 -0500971 return 0;
972}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
f4f051e2005-04-17 15:02:26 -0500974static void
975qla2xxx_slave_destroy(struct scsi_device *sdev)
976{
977 sdev->hostdata = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978}
979
980/**
981 * qla2x00_config_dma_addressing() - Configure OS DMA addressing method.
982 * @ha: HA context
983 *
984 * At exit, the @ha's flags.enable_64bit_addressing set to indicated
985 * supported addressing method.
986 */
987static void
988qla2x00_config_dma_addressing(scsi_qla_host_t *ha)
989{
990 /* Assume 32bit DMA address */
991 ha->flags.enable_64bit_addressing = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
993 /*
994 * Given the two variants pci_set_dma_mask(), allow the compiler to
995 * assist in setting the proper dma mask.
996 */
997 if (sizeof(dma_addr_t) > 4) {
998 if (pci_set_dma_mask(ha->pdev, DMA_64BIT_MASK) == 0) {
999 ha->flags.enable_64bit_addressing = 1;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001000 ha->isp_ops.calc_req_entries = qla2x00_calc_iocbs_64;
1001 ha->isp_ops.build_iocbs = qla2x00_build_scsi_iocbs_64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
1003 if (pci_set_consistent_dma_mask(ha->pdev,
1004 DMA_64BIT_MASK)) {
1005 qla_printk(KERN_DEBUG, ha,
1006 "Failed to set 64 bit PCI consistent mask; "
1007 "using 32 bit.\n");
1008 pci_set_consistent_dma_mask(ha->pdev,
1009 DMA_32BIT_MASK);
1010 }
1011 } else {
1012 qla_printk(KERN_DEBUG, ha,
1013 "Failed to set 64 bit PCI DMA mask, falling back "
1014 "to 32 bit MASK.\n");
1015 pci_set_dma_mask(ha->pdev, DMA_32BIT_MASK);
1016 }
1017 } else {
1018 pci_set_dma_mask(ha->pdev, DMA_32BIT_MASK);
1019 }
1020}
1021
1022static int
1023qla2x00_iospace_config(scsi_qla_host_t *ha)
1024{
1025 unsigned long pio, pio_len, pio_flags;
1026 unsigned long mmio, mmio_len, mmio_flags;
1027
1028 /* We only need PIO for Flash operations on ISP2312 v2 chips. */
1029 pio = pci_resource_start(ha->pdev, 0);
1030 pio_len = pci_resource_len(ha->pdev, 0);
1031 pio_flags = pci_resource_flags(ha->pdev, 0);
1032 if (pio_flags & IORESOURCE_IO) {
1033 if (pio_len < MIN_IOBASE_LEN) {
1034 qla_printk(KERN_WARNING, ha,
1035 "Invalid PCI I/O region size (%s)...\n",
1036 pci_name(ha->pdev));
1037 pio = 0;
1038 }
1039 } else {
1040 qla_printk(KERN_WARNING, ha,
1041 "region #0 not a PIO resource (%s)...\n",
1042 pci_name(ha->pdev));
1043 pio = 0;
1044 }
1045
1046 /* Use MMIO operations for all accesses. */
1047 mmio = pci_resource_start(ha->pdev, 1);
1048 mmio_len = pci_resource_len(ha->pdev, 1);
1049 mmio_flags = pci_resource_flags(ha->pdev, 1);
1050
1051 if (!(mmio_flags & IORESOURCE_MEM)) {
1052 qla_printk(KERN_ERR, ha,
1053 "region #0 not an MMIO resource (%s), aborting\n",
1054 pci_name(ha->pdev));
1055 goto iospace_error_exit;
1056 }
1057 if (mmio_len < MIN_IOBASE_LEN) {
1058 qla_printk(KERN_ERR, ha,
1059 "Invalid PCI mem region size (%s), aborting\n",
1060 pci_name(ha->pdev));
1061 goto iospace_error_exit;
1062 }
1063
1064 if (pci_request_regions(ha->pdev, ha->brd_info->drv_name)) {
1065 qla_printk(KERN_WARNING, ha,
1066 "Failed to reserve PIO/MMIO regions (%s)\n",
1067 pci_name(ha->pdev));
1068
1069 goto iospace_error_exit;
1070 }
1071
1072 ha->pio_address = pio;
1073 ha->pio_length = pio_len;
1074 ha->iobase = ioremap(mmio, MIN_IOBASE_LEN);
1075 if (!ha->iobase) {
1076 qla_printk(KERN_ERR, ha,
1077 "cannot remap MMIO (%s), aborting\n", pci_name(ha->pdev));
1078
1079 goto iospace_error_exit;
1080 }
1081
1082 return (0);
1083
1084iospace_error_exit:
1085 return (-ENOMEM);
1086}
1087
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001088static void
1089qla2x00_enable_intrs(scsi_qla_host_t *ha)
1090{
1091 unsigned long flags = 0;
Andrew Vasquez3d716442005-07-06 10:30:26 -07001092 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001093
1094 spin_lock_irqsave(&ha->hardware_lock, flags);
1095 ha->interrupts_on = 1;
1096 /* enable risc and host interrupts */
1097 WRT_REG_WORD(&reg->ictrl, ICR_EN_INT | ICR_EN_RISC);
1098 RD_REG_WORD(&reg->ictrl);
1099 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1100
1101}
1102
1103static void
1104qla2x00_disable_intrs(scsi_qla_host_t *ha)
1105{
1106 unsigned long flags = 0;
Andrew Vasquez3d716442005-07-06 10:30:26 -07001107 struct device_reg_2xxx __iomem *reg = &ha->iobase->isp;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001108
1109 spin_lock_irqsave(&ha->hardware_lock, flags);
1110 ha->interrupts_on = 0;
1111 /* disable risc and host interrupts */
1112 WRT_REG_WORD(&reg->ictrl, 0);
1113 RD_REG_WORD(&reg->ictrl);
1114 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1115}
1116
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117/*
1118 * PCI driver interface
1119 */
1120int qla2x00_probe_one(struct pci_dev *pdev, struct qla_board_info *brd_info)
1121{
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001122 int ret = -ENODEV;
Andrew Vasquez3d716442005-07-06 10:30:26 -07001123 struct device_reg_2xxx __iomem *reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 struct Scsi_Host *host;
1125 scsi_qla_host_t *ha;
1126 unsigned long flags = 0;
1127 unsigned long wait_switch = 0;
1128 char pci_info[20];
1129 char fw_str[30];
8482e1182005-04-17 15:04:54 -05001130 fc_port_t *fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
1132 if (pci_enable_device(pdev))
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001133 goto probe_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
1135 host = scsi_host_alloc(&qla2x00_driver_template,
1136 sizeof(scsi_qla_host_t));
1137 if (host == NULL) {
1138 printk(KERN_WARNING
1139 "qla2xxx: Couldn't allocate host from scsi layer!\n");
1140 goto probe_disable_device;
1141 }
1142
1143 /* Clear our data area */
1144 ha = (scsi_qla_host_t *)host->hostdata;
1145 memset(ha, 0, sizeof(scsi_qla_host_t));
1146
1147 ha->pdev = pdev;
1148 ha->host = host;
1149 ha->host_no = host->host_no;
1150 ha->brd_info = brd_info;
1151 sprintf(ha->host_str, "%s_%ld", ha->brd_info->drv_name, ha->host_no);
1152
1153 /* Configure PCI I/O space */
1154 ret = qla2x00_iospace_config(ha);
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001155 if (ret)
1156 goto probe_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
1158 /* Sanitize the information from PCI BIOS. */
1159 host->irq = pdev->irq;
1160
1161 qla_printk(KERN_INFO, ha,
1162 "Found an %s, irq %d, iobase 0x%p\n", ha->brd_info->isp_name,
1163 host->irq, ha->iobase);
1164
1165 spin_lock_init(&ha->hardware_lock);
1166
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 ha->prev_topology = 0;
1168 ha->ports = MAX_BUSES;
1169
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001170 /* Assign ISP specific operations. */
1171 ha->isp_ops.pci_config = qla2100_pci_config;
1172 ha->isp_ops.reset_chip = qla2x00_reset_chip;
1173 ha->isp_ops.chip_diag = qla2x00_chip_diag;
1174 ha->isp_ops.config_rings = qla2x00_config_rings;
1175 ha->isp_ops.reset_adapter = qla2x00_reset_adapter;
1176 ha->isp_ops.nvram_config = qla2x00_nvram_config;
1177 ha->isp_ops.update_fw_options = qla2x00_update_fw_options;
1178 ha->isp_ops.pci_info_str = qla2x00_pci_info_str;
1179 ha->isp_ops.fw_version_str = qla2x00_fw_version_str;
1180 ha->isp_ops.intr_handler = qla2100_intr_handler;
1181 ha->isp_ops.enable_intrs = qla2x00_enable_intrs;
1182 ha->isp_ops.disable_intrs = qla2x00_disable_intrs;
1183 ha->isp_ops.abort_command = qla2x00_abort_command;
1184 ha->isp_ops.abort_target = qla2x00_abort_target;
1185 ha->isp_ops.fabric_login = qla2x00_login_fabric;
1186 ha->isp_ops.fabric_logout = qla2x00_fabric_logout;
1187 ha->isp_ops.calc_req_entries = qla2x00_calc_iocbs_32;
1188 ha->isp_ops.build_iocbs = qla2x00_build_scsi_iocbs_32;
1189 ha->isp_ops.prep_ms_iocb = qla2x00_prep_ms_iocb;
1190 ha->isp_ops.fw_dump = qla2100_fw_dump;
1191 ha->isp_ops.ascii_fw_dump = qla2100_ascii_fw_dump;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 if (IS_QLA2100(ha)) {
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04001193 host->max_id = MAX_TARGETS_2100;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 ha->mbx_count = MAILBOX_REGISTER_COUNT_2100;
1195 ha->request_q_length = REQUEST_ENTRY_CNT_2100;
1196 ha->response_q_length = RESPONSE_ENTRY_CNT_2100;
1197 ha->last_loop_id = SNS_LAST_LOOP_ID_2100;
1198 host->sg_tablesize = 32;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001199 ha->gid_list_info_size = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 } else if (IS_QLA2200(ha)) {
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04001201 host->max_id = MAX_TARGETS_2200;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 ha->mbx_count = MAILBOX_REGISTER_COUNT;
1203 ha->request_q_length = REQUEST_ENTRY_CNT_2200;
1204 ha->response_q_length = RESPONSE_ENTRY_CNT_2100;
1205 ha->last_loop_id = SNS_LAST_LOOP_ID_2100;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001206 ha->gid_list_info_size = 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 } else /*if (IS_QLA2300(ha))*/ {
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04001208 host->max_id = MAX_TARGETS_2200;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 ha->mbx_count = MAILBOX_REGISTER_COUNT;
1210 ha->request_q_length = REQUEST_ENTRY_CNT_2200;
1211 ha->response_q_length = RESPONSE_ENTRY_CNT_2300;
1212 ha->last_loop_id = SNS_LAST_LOOP_ID_2300;
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001213 ha->isp_ops.pci_config = qla2300_pci_config;
1214 ha->isp_ops.intr_handler = qla2300_intr_handler;
1215 ha->isp_ops.fw_dump = qla2300_fw_dump;
1216 ha->isp_ops.ascii_fw_dump = qla2300_ascii_fw_dump;
1217 ha->gid_list_info_size = 6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 }
1219 host->can_queue = ha->request_q_length + 128;
1220
1221 /* load the F/W, read paramaters, and init the H/W */
1222 ha->instance = num_hosts;
1223
1224 init_MUTEX(&ha->mbx_cmd_sem);
1225 init_MUTEX_LOCKED(&ha->mbx_intr_sem);
1226
1227 INIT_LIST_HEAD(&ha->list);
1228 INIT_LIST_HEAD(&ha->fcports);
1229 INIT_LIST_HEAD(&ha->rscn_fcports);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
1231 /*
1232 * These locks are used to prevent more than one CPU
1233 * from modifying the queue at the same time. The
1234 * higher level "host_lock" will reduce most
1235 * contention for these locks.
1236 */
1237 spin_lock_init(&ha->mbx_reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
1239 ha->dpc_pid = -1;
1240 init_completion(&ha->dpc_inited);
1241 init_completion(&ha->dpc_exited);
1242
1243 qla2x00_config_dma_addressing(ha);
1244 if (qla2x00_mem_alloc(ha)) {
1245 qla_printk(KERN_WARNING, ha,
1246 "[ERROR] Failed to allocate memory for adapter\n");
1247
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001248 ret = -ENOMEM;
1249 goto probe_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 }
1251
1252 if (qla2x00_initialize_adapter(ha) &&
1253 !(ha->device_flags & DFLG_NO_CABLE)) {
1254
1255 qla_printk(KERN_WARNING, ha,
1256 "Failed to initialize adapter\n");
1257
1258 DEBUG2(printk("scsi(%ld): Failed to initialize adapter - "
1259 "Adapter flags %x.\n",
1260 ha->host_no, ha->device_flags));
1261
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001262 ret = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 goto probe_failed;
1264 }
1265
1266 /*
1267 * Startup the kernel thread for this host adapter
1268 */
1269 ha->dpc_should_die = 0;
1270 ha->dpc_pid = kernel_thread(qla2x00_do_dpc, ha, 0);
1271 if (ha->dpc_pid < 0) {
1272 qla_printk(KERN_WARNING, ha,
1273 "Unable to start DPC thread!\n");
1274
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001275 ret = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 goto probe_failed;
1277 }
1278 wait_for_completion(&ha->dpc_inited);
1279
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001280 host->this_id = 255;
1281 host->cmd_per_lun = 3;
1282 host->unique_id = ha->instance;
1283 host->max_cmd_len = MAX_CMDSZ;
1284 host->max_channel = ha->ports - 1;
1285 host->max_lun = MAX_LUNS;
1286 host->transportt = qla2xxx_transport_template;
1287
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001288 ret = request_irq(host->irq, ha->isp_ops.intr_handler,
1289 SA_INTERRUPT|SA_SHIRQ, ha->brd_info->drv_name, ha);
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001290 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 qla_printk(KERN_WARNING, ha,
1292 "Failed to reserve interrupt %d already in use.\n",
1293 host->irq);
1294 goto probe_failed;
1295 }
1296
1297 /* Initialized the timer */
1298 qla2x00_start_timer(ha, qla2x00_timer, WATCH_INTERVAL);
1299
1300 DEBUG2(printk("DEBUG: detect hba %ld at address = %p\n",
1301 ha->host_no, ha));
1302
Andrew Vasquez3d716442005-07-06 10:30:26 -07001303 reg = &ha->iobase->isp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001305 ha->isp_ops.disable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
1307 /* Ensure mailbox registers are free. */
1308 spin_lock_irqsave(&ha->hardware_lock, flags);
1309 WRT_REG_WORD(&reg->semaphore, 0);
1310 WRT_REG_WORD(&reg->hccr, HCCR_CLR_RISC_INT);
1311 WRT_REG_WORD(&reg->hccr, HCCR_CLR_HOST_INT);
1312
1313 /* Enable proper parity */
1314 if (!IS_QLA2100(ha) && !IS_QLA2200(ha)) {
1315 if (IS_QLA2300(ha))
1316 /* SRAM parity */
1317 WRT_REG_WORD(&reg->hccr, (HCCR_ENABLE_PARITY + 0x1));
1318 else
1319 /* SRAM, Instruction RAM and GP RAM parity */
1320 WRT_REG_WORD(&reg->hccr, (HCCR_ENABLE_PARITY + 0x7));
1321 }
1322 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1323
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001324 ha->isp_ops.enable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
1326 /* v2.19.5b6 */
1327 /*
1328 * Wait around max loop_reset_delay secs for the devices to come
1329 * on-line. We don't want Linux scanning before we are ready.
1330 *
1331 */
1332 for (wait_switch = jiffies + (ha->loop_reset_delay * HZ);
1333 time_before(jiffies,wait_switch) &&
1334 !(ha->device_flags & (DFLG_NO_CABLE | DFLG_FABRIC_DEVICES))
1335 && (ha->device_flags & SWITCH_FOUND) ;) {
1336
1337 qla2x00_check_fabric_devices(ha);
1338
1339 msleep(10);
1340 }
1341
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001342 pci_set_drvdata(pdev, ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 ha->flags.init_done = 1;
1344 num_hosts++;
1345
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001346 ret = scsi_add_host(host, &pdev->dev);
1347 if (ret)
1348 goto probe_failed;
1349
1350 qla2x00_alloc_sysfs_attr(ha);
1351
1352 qla2x00_init_host_attr(ha);
1353
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 qla_printk(KERN_INFO, ha, "\n"
1355 " QLogic Fibre Channel HBA Driver: %s\n"
1356 " QLogic %s - %s\n"
1357 " %s: %s @ %s hdma%c, host#=%ld, fw=%s\n", qla2x00_version_str,
1358 ha->model_number, ha->model_desc ? ha->model_desc: "",
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001359 ha->brd_info->isp_name, ha->isp_ops.pci_info_str(ha, pci_info),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 pci_name(ha->pdev), ha->flags.enable_64bit_addressing ? '+': '-',
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001361 ha->host_no, ha->isp_ops.fw_version_str(ha, fw_str));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
8482e1182005-04-17 15:04:54 -05001363 /* Go with fc_rport registration. */
1364 list_for_each_entry(fcport, &ha->fcports, list)
1365 qla2x00_reg_remote_port(ha, fcport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
1367 return 0;
1368
1369probe_failed:
bdf79622005-04-17 15:06:53 -05001370 fc_remove_host(ha->host);
1371
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 qla2x00_free_device(ha);
1373
1374 scsi_host_put(host);
1375
1376probe_disable_device:
1377 pci_disable_device(pdev);
1378
Andrew Vasqueza1541d52005-06-09 17:21:28 -07001379probe_out:
1380 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381}
1382EXPORT_SYMBOL_GPL(qla2x00_probe_one);
1383
1384void qla2x00_remove_one(struct pci_dev *pdev)
1385{
1386 scsi_qla_host_t *ha;
1387
1388 ha = pci_get_drvdata(pdev);
1389
8482e1182005-04-17 15:04:54 -05001390 qla2x00_free_sysfs_attr(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
bdf79622005-04-17 15:06:53 -05001392 fc_remove_host(ha->host);
1393
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 scsi_remove_host(ha->host);
1395
1396 qla2x00_free_device(ha);
1397
1398 scsi_host_put(ha->host);
1399
1400 pci_set_drvdata(pdev, NULL);
1401}
1402EXPORT_SYMBOL_GPL(qla2x00_remove_one);
1403
1404static void
1405qla2x00_free_device(scsi_qla_host_t *ha)
1406{
1407 int ret;
1408
1409 /* Abort any outstanding IO descriptors. */
1410 if (!IS_QLA2100(ha) && !IS_QLA2200(ha))
1411 qla2x00_cancel_io_descriptors(ha);
1412
1413 /* turn-off interrupts on the card */
1414 if (ha->interrupts_on)
Andrew Vasquezabbd8872005-07-06 10:30:05 -07001415 ha->isp_ops.disable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
1417 /* Disable timer */
1418 if (ha->timer_active)
1419 qla2x00_stop_timer(ha);
1420
1421 /* Kill the kernel thread for this host */
1422 if (ha->dpc_pid >= 0) {
1423 ha->dpc_should_die = 1;
1424 wmb();
1425 ret = kill_proc(ha->dpc_pid, SIGHUP, 1);
1426 if (ret) {
1427 qla_printk(KERN_ERR, ha,
1428 "Unable to signal DPC thread -- (%d)\n", ret);
1429
1430 /* TODO: SOMETHING MORE??? */
1431 } else {
1432 wait_for_completion(&ha->dpc_exited);
1433 }
1434 }
1435
1436 qla2x00_mem_free(ha);
1437
1438
1439 ha->flags.online = 0;
1440
1441 /* Detach interrupts */
1442 if (ha->pdev->irq)
1443 free_irq(ha->pdev->irq, ha);
1444
1445 /* release io space registers */
1446 if (ha->iobase)
1447 iounmap(ha->iobase);
1448 pci_release_regions(ha->pdev);
1449
1450 pci_disable_device(ha->pdev);
1451}
1452
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 * qla2x00_mark_device_lost Updates fcport state when device goes offline.
1455 *
1456 * Input: ha = adapter block pointer. fcport = port structure pointer.
1457 *
1458 * Return: None.
1459 *
1460 * Context:
1461 */
1462void qla2x00_mark_device_lost(scsi_qla_host_t *ha, fc_port_t *fcport,
1463 int do_login)
1464{
8482e1182005-04-17 15:04:54 -05001465 if (atomic_read(&fcport->state) == FCS_ONLINE && fcport->rport)
1466 fc_remote_port_block(fcport->rport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 /*
1468 * We may need to retry the login, so don't change the state of the
1469 * port but do the retries.
1470 */
1471 if (atomic_read(&fcport->state) != FCS_DEVICE_DEAD)
1472 atomic_set(&fcport->state, FCS_DEVICE_LOST);
1473
1474 if (!do_login)
1475 return;
1476
1477 if (fcport->login_retry == 0) {
1478 fcport->login_retry = ha->login_retry_count;
1479 set_bit(RELOGIN_NEEDED, &ha->dpc_flags);
1480
1481 DEBUG(printk("scsi(%ld): Port login retry: "
1482 "%02x%02x%02x%02x%02x%02x%02x%02x, "
1483 "id = 0x%04x retry cnt=%d\n",
1484 ha->host_no,
1485 fcport->port_name[0],
1486 fcport->port_name[1],
1487 fcport->port_name[2],
1488 fcport->port_name[3],
1489 fcport->port_name[4],
1490 fcport->port_name[5],
1491 fcport->port_name[6],
1492 fcport->port_name[7],
1493 fcport->loop_id,
1494 fcport->login_retry));
1495 }
1496}
1497
1498/*
1499 * qla2x00_mark_all_devices_lost
1500 * Updates fcport state when device goes offline.
1501 *
1502 * Input:
1503 * ha = adapter block pointer.
1504 * fcport = port structure pointer.
1505 *
1506 * Return:
1507 * None.
1508 *
1509 * Context:
1510 */
1511void
1512qla2x00_mark_all_devices_lost(scsi_qla_host_t *ha)
1513{
1514 fc_port_t *fcport;
1515
1516 list_for_each_entry(fcport, &ha->fcports, list) {
1517 if (fcport->port_type != FCT_TARGET)
1518 continue;
1519
1520 /*
1521 * No point in marking the device as lost, if the device is
1522 * already DEAD.
1523 */
1524 if (atomic_read(&fcport->state) == FCS_DEVICE_DEAD)
1525 continue;
8482e1182005-04-17 15:04:54 -05001526 if (atomic_read(&fcport->state) == FCS_ONLINE && fcport->rport)
1527 fc_remote_port_block(fcport->rport);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 atomic_set(&fcport->state, FCS_DEVICE_LOST);
1529 }
1530}
1531
1532/*
1533* qla2x00_mem_alloc
1534* Allocates adapter memory.
1535*
1536* Returns:
1537* 0 = success.
1538* 1 = failure.
1539*/
1540static uint8_t
1541qla2x00_mem_alloc(scsi_qla_host_t *ha)
1542{
1543 char name[16];
1544 uint8_t status = 1;
1545 int retry= 10;
1546
1547 do {
1548 /*
1549 * This will loop only once if everything goes well, else some
1550 * number of retries will be performed to get around a kernel
1551 * bug where available mem is not allocated until after a
1552 * little delay and a retry.
1553 */
1554 ha->request_ring = dma_alloc_coherent(&ha->pdev->dev,
1555 (ha->request_q_length + 1) * sizeof(request_t),
1556 &ha->request_dma, GFP_KERNEL);
1557 if (ha->request_ring == NULL) {
1558 qla_printk(KERN_WARNING, ha,
1559 "Memory Allocation failed - request_ring\n");
1560
1561 qla2x00_mem_free(ha);
1562 msleep(100);
1563
1564 continue;
1565 }
1566
1567 ha->response_ring = dma_alloc_coherent(&ha->pdev->dev,
1568 (ha->response_q_length + 1) * sizeof(response_t),
1569 &ha->response_dma, GFP_KERNEL);
1570 if (ha->response_ring == NULL) {
1571 qla_printk(KERN_WARNING, ha,
1572 "Memory Allocation failed - response_ring\n");
1573
1574 qla2x00_mem_free(ha);
1575 msleep(100);
1576
1577 continue;
1578 }
1579
1580 ha->gid_list = dma_alloc_coherent(&ha->pdev->dev, GID_LIST_SIZE,
1581 &ha->gid_list_dma, GFP_KERNEL);
1582 if (ha->gid_list == NULL) {
1583 qla_printk(KERN_WARNING, ha,
1584 "Memory Allocation failed - gid_list\n");
1585
1586 qla2x00_mem_free(ha);
1587 msleep(100);
1588
1589 continue;
1590 }
1591
1592 ha->rlc_rsp = dma_alloc_coherent(&ha->pdev->dev,
1593 sizeof(rpt_lun_cmd_rsp_t), &ha->rlc_rsp_dma, GFP_KERNEL);
1594 if (ha->rlc_rsp == NULL) {
1595 qla_printk(KERN_WARNING, ha,
1596 "Memory Allocation failed - rlc");
1597
1598 qla2x00_mem_free(ha);
1599 msleep(100);
1600
1601 continue;
1602 }
1603
1604 snprintf(name, sizeof(name), "qla2xxx_%ld", ha->host_no);
1605 ha->s_dma_pool = dma_pool_create(name, &ha->pdev->dev,
1606 DMA_POOL_SIZE, 8, 0);
1607 if (ha->s_dma_pool == NULL) {
1608 qla_printk(KERN_WARNING, ha,
1609 "Memory Allocation failed - s_dma_pool\n");
1610
1611 qla2x00_mem_free(ha);
1612 msleep(100);
1613
1614 continue;
1615 }
1616
1617 /* get consistent memory allocated for init control block */
1618 ha->init_cb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
1619 &ha->init_cb_dma);
1620 if (ha->init_cb == NULL) {
1621 qla_printk(KERN_WARNING, ha,
1622 "Memory Allocation failed - init_cb\n");
1623
1624 qla2x00_mem_free(ha);
1625 msleep(100);
1626
1627 continue;
1628 }
1629 memset(ha->init_cb, 0, sizeof(init_cb_t));
1630
1631 /* Get consistent memory allocated for Get Port Database cmd */
1632 ha->iodesc_pd = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
1633 &ha->iodesc_pd_dma);
1634 if (ha->iodesc_pd == NULL) {
1635 /* error */
1636 qla_printk(KERN_WARNING, ha,
1637 "Memory Allocation failed - iodesc_pd\n");
1638
1639 qla2x00_mem_free(ha);
1640 msleep(100);
1641
1642 continue;
1643 }
1644 memset(ha->iodesc_pd, 0, PORT_DATABASE_SIZE);
1645
1646 /* Allocate ioctl related memory. */
1647 if (qla2x00_alloc_ioctl_mem(ha)) {
1648 qla_printk(KERN_WARNING, ha,
1649 "Memory Allocation failed - ioctl_mem\n");
1650
1651 qla2x00_mem_free(ha);
1652 msleep(100);
1653
1654 continue;
1655 }
1656
1657 if (qla2x00_allocate_sp_pool(ha)) {
1658 qla_printk(KERN_WARNING, ha,
1659 "Memory Allocation failed - "
1660 "qla2x00_allocate_sp_pool()\n");
1661
1662 qla2x00_mem_free(ha);
1663 msleep(100);
1664
1665 continue;
1666 }
1667
1668 /* Allocate memory for SNS commands */
1669 if (IS_QLA2100(ha) || IS_QLA2200(ha)) {
1670 /* Get consistent memory allocated for SNS commands */
1671 ha->sns_cmd = dma_alloc_coherent(&ha->pdev->dev,
1672 sizeof(struct sns_cmd_pkt), &ha->sns_cmd_dma,
1673 GFP_KERNEL);
1674 if (ha->sns_cmd == NULL) {
1675 /* error */
1676 qla_printk(KERN_WARNING, ha,
1677 "Memory Allocation failed - sns_cmd\n");
1678
1679 qla2x00_mem_free(ha);
1680 msleep(100);
1681
1682 continue;
1683 }
1684 memset(ha->sns_cmd, 0, sizeof(struct sns_cmd_pkt));
1685 } else {
1686 /* Get consistent memory allocated for MS IOCB */
1687 ha->ms_iocb = dma_pool_alloc(ha->s_dma_pool, GFP_KERNEL,
1688 &ha->ms_iocb_dma);
1689 if (ha->ms_iocb == NULL) {
1690 /* error */
1691 qla_printk(KERN_WARNING, ha,
1692 "Memory Allocation failed - ms_iocb\n");
1693
1694 qla2x00_mem_free(ha);
1695 msleep(100);
1696
1697 continue;
1698 }
1699 memset(ha->ms_iocb, 0, sizeof(ms_iocb_entry_t));
1700
1701 /*
1702 * Get consistent memory allocated for CT SNS
1703 * commands
1704 */
1705 ha->ct_sns = dma_alloc_coherent(&ha->pdev->dev,
1706 sizeof(struct ct_sns_pkt), &ha->ct_sns_dma,
1707 GFP_KERNEL);
1708 if (ha->ct_sns == NULL) {
1709 /* error */
1710 qla_printk(KERN_WARNING, ha,
1711 "Memory Allocation failed - ct_sns\n");
1712
1713 qla2x00_mem_free(ha);
1714 msleep(100);
1715
1716 continue;
1717 }
1718 memset(ha->ct_sns, 0, sizeof(struct ct_sns_pkt));
1719 }
1720
1721 /* Done all allocations without any error. */
1722 status = 0;
1723
1724 } while (retry-- && status != 0);
1725
1726 if (status) {
1727 printk(KERN_WARNING
1728 "%s(): **** FAILED ****\n", __func__);
1729 }
1730
1731 return(status);
1732}
1733
1734/*
1735* qla2x00_mem_free
1736* Frees all adapter allocated memory.
1737*
1738* Input:
1739* ha = adapter block pointer.
1740*/
1741static void
1742qla2x00_mem_free(scsi_qla_host_t *ha)
1743{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 struct list_head *fcpl, *fcptemp;
1745 fc_port_t *fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 unsigned long wtime;/* max wait time if mbx cmd is busy. */
1747
1748 if (ha == NULL) {
1749 /* error */
1750 DEBUG2(printk("%s(): ERROR invalid ha pointer.\n", __func__));
1751 return;
1752 }
1753
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 /* Make sure all other threads are stopped. */
1755 wtime = 60 * HZ;
1756 while (ha->dpc_wait && wtime) {
1757 set_current_state(TASK_INTERRUPTIBLE);
1758 wtime = schedule_timeout(wtime);
1759 }
1760
1761 /* free ioctl memory */
1762 qla2x00_free_ioctl_mem(ha);
1763
1764 /* free sp pool */
1765 qla2x00_free_sp_pool(ha);
1766
1767 if (ha->sns_cmd)
1768 dma_free_coherent(&ha->pdev->dev, sizeof(struct sns_cmd_pkt),
1769 ha->sns_cmd, ha->sns_cmd_dma);
1770
1771 if (ha->ct_sns)
1772 dma_free_coherent(&ha->pdev->dev, sizeof(struct ct_sns_pkt),
1773 ha->ct_sns, ha->ct_sns_dma);
1774
1775 if (ha->ms_iocb)
1776 dma_pool_free(ha->s_dma_pool, ha->ms_iocb, ha->ms_iocb_dma);
1777
1778 if (ha->iodesc_pd)
1779 dma_pool_free(ha->s_dma_pool, ha->iodesc_pd, ha->iodesc_pd_dma);
1780
1781 if (ha->init_cb)
1782 dma_pool_free(ha->s_dma_pool, ha->init_cb, ha->init_cb_dma);
1783
1784 if (ha->s_dma_pool)
1785 dma_pool_destroy(ha->s_dma_pool);
1786
1787 if (ha->rlc_rsp)
1788 dma_free_coherent(&ha->pdev->dev,
1789 sizeof(rpt_lun_cmd_rsp_t), ha->rlc_rsp,
1790 ha->rlc_rsp_dma);
1791
1792 if (ha->gid_list)
1793 dma_free_coherent(&ha->pdev->dev, GID_LIST_SIZE, ha->gid_list,
1794 ha->gid_list_dma);
1795
1796 if (ha->response_ring)
1797 dma_free_coherent(&ha->pdev->dev,
1798 (ha->response_q_length + 1) * sizeof(response_t),
1799 ha->response_ring, ha->response_dma);
1800
1801 if (ha->request_ring)
1802 dma_free_coherent(&ha->pdev->dev,
1803 (ha->request_q_length + 1) * sizeof(request_t),
1804 ha->request_ring, ha->request_dma);
1805
1806 ha->sns_cmd = NULL;
1807 ha->sns_cmd_dma = 0;
1808 ha->ct_sns = NULL;
1809 ha->ct_sns_dma = 0;
1810 ha->ms_iocb = NULL;
1811 ha->ms_iocb_dma = 0;
1812 ha->iodesc_pd = NULL;
1813 ha->iodesc_pd_dma = 0;
1814 ha->init_cb = NULL;
1815 ha->init_cb_dma = 0;
1816
1817 ha->s_dma_pool = NULL;
1818
1819 ha->rlc_rsp = NULL;
1820 ha->rlc_rsp_dma = 0;
1821 ha->gid_list = NULL;
1822 ha->gid_list_dma = 0;
1823
1824 ha->response_ring = NULL;
1825 ha->response_dma = 0;
1826 ha->request_ring = NULL;
1827 ha->request_dma = 0;
1828
1829 list_for_each_safe(fcpl, fcptemp, &ha->fcports) {
1830 fcport = list_entry(fcpl, fc_port_t, list);
1831
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 /* fc ports */
1833 list_del_init(&fcport->list);
1834 kfree(fcport);
1835 }
1836 INIT_LIST_HEAD(&ha->fcports);
1837
1838 if (ha->fw_dump)
1839 free_pages((unsigned long)ha->fw_dump, ha->fw_dump_order);
1840
1841 if (ha->fw_dump_buffer)
1842 vfree(ha->fw_dump_buffer);
1843
1844 ha->fw_dump = NULL;
1845 ha->fw_dump_reading = 0;
1846 ha->fw_dump_buffer = NULL;
1847}
1848
1849/*
1850 * qla2x00_allocate_sp_pool
1851 * This routine is called during initialization to allocate
1852 * memory for local srb_t.
1853 *
1854 * Input:
1855 * ha = adapter block pointer.
1856 *
1857 * Context:
1858 * Kernel context.
1859 *
1860 * Note: Sets the ref_count for non Null sp to one.
1861 */
1862static int
1863qla2x00_allocate_sp_pool(scsi_qla_host_t *ha)
1864{
1865 int rval;
1866
1867 rval = QLA_SUCCESS;
1868 ha->srb_mempool = mempool_create(SRB_MIN_REQ, mempool_alloc_slab,
1869 mempool_free_slab, srb_cachep);
1870 if (ha->srb_mempool == NULL) {
1871 qla_printk(KERN_INFO, ha, "Unable to allocate SRB mempool.\n");
1872 rval = QLA_FUNCTION_FAILED;
1873 }
1874 return (rval);
1875}
1876
1877/*
1878 * This routine frees all adapter allocated memory.
1879 *
1880 */
1881static void
1882qla2x00_free_sp_pool( scsi_qla_host_t *ha)
1883{
1884 if (ha->srb_mempool) {
1885 mempool_destroy(ha->srb_mempool);
1886 ha->srb_mempool = NULL;
1887 }
1888}
1889
1890/**************************************************************************
1891* qla2x00_do_dpc
1892* This kernel thread is a task that is schedule by the interrupt handler
1893* to perform the background processing for interrupts.
1894*
1895* Notes:
1896* This task always run in the context of a kernel thread. It
1897* is kick-off by the driver's detect code and starts up
1898* up one per adapter. It immediately goes to sleep and waits for
1899* some fibre event. When either the interrupt handler or
1900* the timer routine detects a event it will one of the task
1901* bits then wake us up.
1902**************************************************************************/
1903static int
1904qla2x00_do_dpc(void *data)
1905{
1906 DECLARE_MUTEX_LOCKED(sem);
1907 scsi_qla_host_t *ha;
1908 fc_port_t *fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 uint8_t status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 uint16_t next_loopid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
1912 ha = (scsi_qla_host_t *)data;
1913
1914 lock_kernel();
1915
1916 daemonize("%s_dpc", ha->host_str);
1917 allow_signal(SIGHUP);
1918
1919 ha->dpc_wait = &sem;
1920
1921 set_user_nice(current, -20);
1922
1923 unlock_kernel();
1924
1925 complete(&ha->dpc_inited);
1926
1927 while (1) {
1928 DEBUG3(printk("qla2x00: DPC handler sleeping\n"));
1929
1930 if (down_interruptible(&sem))
1931 break;
1932
1933 if (ha->dpc_should_die)
1934 break;
1935
1936 DEBUG3(printk("qla2x00: DPC handler waking up\n"));
1937
1938 /* Initialization not yet finished. Don't do anything yet. */
1939 if (!ha->flags.init_done || ha->dpc_active)
1940 continue;
1941
1942 DEBUG3(printk("scsi(%ld): DPC handler\n", ha->host_no));
1943
1944 ha->dpc_active = 1;
1945
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 if (ha->flags.mbox_busy) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 ha->dpc_active = 0;
1948 continue;
1949 }
1950
1951 if (test_and_clear_bit(ISP_ABORT_NEEDED, &ha->dpc_flags)) {
1952
1953 DEBUG(printk("scsi(%ld): dpc: sched "
1954 "qla2x00_abort_isp ha = %p\n",
1955 ha->host_no, ha));
1956 if (!(test_and_set_bit(ABORT_ISP_ACTIVE,
1957 &ha->dpc_flags))) {
1958
1959 if (qla2x00_abort_isp(ha)) {
1960 /* failed. retry later */
1961 set_bit(ISP_ABORT_NEEDED,
1962 &ha->dpc_flags);
1963 }
1964 clear_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags);
1965 }
1966 DEBUG(printk("scsi(%ld): dpc: qla2x00_abort_isp end\n",
1967 ha->host_no));
1968 }
1969
1970 if (test_and_clear_bit(RESET_MARKER_NEEDED, &ha->dpc_flags) &&
1971 (!(test_and_set_bit(RESET_ACTIVE, &ha->dpc_flags)))) {
1972
1973 DEBUG(printk("scsi(%ld): qla2x00_reset_marker()\n",
1974 ha->host_no));
1975
1976 qla2x00_rst_aen(ha);
1977 clear_bit(RESET_ACTIVE, &ha->dpc_flags);
1978 }
1979
1980 /* Retry each device up to login retry count */
1981 if ((test_and_clear_bit(RELOGIN_NEEDED, &ha->dpc_flags)) &&
1982 !test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags) &&
1983 atomic_read(&ha->loop_state) != LOOP_DOWN) {
1984
1985 DEBUG(printk("scsi(%ld): qla2x00_port_login()\n",
1986 ha->host_no));
1987
1988 next_loopid = 0;
1989 list_for_each_entry(fcport, &ha->fcports, list) {
1990 if (fcport->port_type != FCT_TARGET)
1991 continue;
1992
1993 /*
1994 * If the port is not ONLINE then try to login
1995 * to it if we haven't run out of retries.
1996 */
1997 if (atomic_read(&fcport->state) != FCS_ONLINE &&
1998 fcport->login_retry) {
1999
2000 fcport->login_retry--;
2001 if (fcport->flags & FCF_FABRIC_DEVICE) {
2002 if (fcport->flags &
2003 FCF_TAPE_PRESENT)
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002004 ha->isp_ops.fabric_logout(
Andrew Vasquez1c7c6352005-07-06 10:30:57 -07002005 ha, fcport->loop_id,
2006 fcport->d_id.b.domain,
2007 fcport->d_id.b.area,
2008 fcport->d_id.b.al_pa);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 status = qla2x00_fabric_login(
2010 ha, fcport, &next_loopid);
2011 } else
2012 status =
2013 qla2x00_local_device_login(
2014 ha, fcport->loop_id);
2015
2016 if (status == QLA_SUCCESS) {
2017 fcport->old_loop_id = fcport->loop_id;
2018
2019 DEBUG(printk("scsi(%ld): port login OK: logged in ID 0x%x\n",
2020 ha->host_no, fcport->loop_id));
2021
2022 fcport->port_login_retry_count =
2023 ha->port_down_retry_count * PORT_RETRY_TIME;
2024 atomic_set(&fcport->state, FCS_ONLINE);
2025 atomic_set(&fcport->port_down_timer,
2026 ha->port_down_retry_count * PORT_RETRY_TIME);
2027
2028 fcport->login_retry = 0;
2029 } else if (status == 1) {
2030 set_bit(RELOGIN_NEEDED, &ha->dpc_flags);
2031 /* retry the login again */
2032 DEBUG(printk("scsi(%ld): Retrying %d login again loop_id 0x%x\n",
2033 ha->host_no,
2034 fcport->login_retry, fcport->loop_id));
2035 } else {
2036 fcport->login_retry = 0;
2037 }
2038 }
2039 if (test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags))
2040 break;
2041 }
2042 DEBUG(printk("scsi(%ld): qla2x00_port_login - end\n",
2043 ha->host_no));
2044 }
2045
2046 if ((test_bit(LOGIN_RETRY_NEEDED, &ha->dpc_flags)) &&
2047 atomic_read(&ha->loop_state) != LOOP_DOWN) {
2048
2049 clear_bit(LOGIN_RETRY_NEEDED, &ha->dpc_flags);
2050 DEBUG(printk("scsi(%ld): qla2x00_login_retry()\n",
2051 ha->host_no));
2052
2053 set_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags);
2054
2055 DEBUG(printk("scsi(%ld): qla2x00_login_retry - end\n",
2056 ha->host_no));
2057 }
2058
2059 if (test_and_clear_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags)) {
2060
2061 DEBUG(printk("scsi(%ld): qla2x00_loop_resync()\n",
2062 ha->host_no));
2063
2064 if (!(test_and_set_bit(LOOP_RESYNC_ACTIVE,
2065 &ha->dpc_flags))) {
2066
2067 qla2x00_loop_resync(ha);
2068
2069 clear_bit(LOOP_RESYNC_ACTIVE, &ha->dpc_flags);
2070 }
2071
2072 DEBUG(printk("scsi(%ld): qla2x00_loop_resync - end\n",
2073 ha->host_no));
2074 }
2075
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 if (test_and_clear_bit(FCPORT_RESCAN_NEEDED, &ha->dpc_flags)) {
2077
2078 DEBUG(printk("scsi(%ld): Rescan flagged fcports...\n",
2079 ha->host_no));
2080
2081 qla2x00_rescan_fcports(ha);
2082
2083 DEBUG(printk("scsi(%ld): Rescan flagged fcports..."
2084 "end.\n",
2085 ha->host_no));
2086 }
2087
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 if (!ha->interrupts_on)
Andrew Vasquezabbd8872005-07-06 10:30:05 -07002089 ha->isp_ops.enable_intrs(ha);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 ha->dpc_active = 0;
2092 } /* End of while(1) */
2093
2094 DEBUG(printk("scsi(%ld): DPC handler exiting\n", ha->host_no));
2095
2096 /*
2097 * Make sure that nobody tries to wake us up again.
2098 */
2099 ha->dpc_wait = NULL;
2100 ha->dpc_active = 0;
2101
2102 complete_and_exit(&ha->dpc_exited, 0);
2103}
2104
2105/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106* qla2x00_rst_aen
2107* Processes asynchronous reset.
2108*
2109* Input:
2110* ha = adapter block pointer.
2111*/
2112static void
2113qla2x00_rst_aen(scsi_qla_host_t *ha)
2114{
2115 if (ha->flags.online && !ha->flags.reset_active &&
2116 !atomic_read(&ha->loop_down_timer) &&
2117 !(test_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags))) {
2118 do {
2119 clear_bit(RESET_MARKER_NEEDED, &ha->dpc_flags);
2120
2121 /*
2122 * Issue marker command only when we are going to start
2123 * the I/O.
2124 */
2125 ha->marker_needed = 1;
2126 } while (!atomic_read(&ha->loop_down_timer) &&
2127 (test_bit(RESET_MARKER_NEEDED, &ha->dpc_flags)));
2128 }
2129}
2130
2131
2132/*
2133 * This routine will allocate SP from the free queue
2134 * input:
2135 * scsi_qla_host_t *
2136 * output:
2137 * srb_t * or NULL
2138 */
2139static srb_t *
2140qla2x00_get_new_sp(scsi_qla_host_t *ha)
2141{
2142 srb_t *sp;
2143
2144 sp = mempool_alloc(ha->srb_mempool, GFP_ATOMIC);
2145 if (sp)
2146 atomic_set(&sp->ref_count, 1);
2147 return (sp);
2148}
2149
f4f051e2005-04-17 15:02:26 -05002150static void
2151qla2x00_sp_free_dma(scsi_qla_host_t *ha, srb_t *sp)
2152{
2153 struct scsi_cmnd *cmd = sp->cmd;
2154
2155 if (sp->flags & SRB_DMA_VALID) {
2156 if (cmd->use_sg) {
2157 dma_unmap_sg(&ha->pdev->dev, cmd->request_buffer,
2158 cmd->use_sg, cmd->sc_data_direction);
2159 } else if (cmd->request_bufflen) {
2160 dma_unmap_single(&ha->pdev->dev, sp->dma_handle,
2161 cmd->request_bufflen, cmd->sc_data_direction);
2162 }
2163 sp->flags &= ~SRB_DMA_VALID;
2164 }
2165}
2166
2167void
2168qla2x00_sp_compl(scsi_qla_host_t *ha, srb_t *sp)
2169{
2170 struct scsi_cmnd *cmd = sp->cmd;
2171
2172 qla2x00_sp_free_dma(ha, sp);
2173
2174 CMD_SP(cmd) = NULL;
2175 mempool_free(sp, ha->srb_mempool);
2176
2177 cmd->scsi_done(cmd);
2178}
bdf79622005-04-17 15:06:53 -05002179
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180/**************************************************************************
2181* qla2x00_timer
2182*
2183* Description:
2184* One second timer
2185*
2186* Context: Interrupt
2187***************************************************************************/
2188static void
2189qla2x00_timer(scsi_qla_host_t *ha)
2190{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 unsigned long cpu_flags = 0;
2192 fc_port_t *fcport;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 int start_dpc = 0;
2194 int index;
2195 srb_t *sp;
f4f051e2005-04-17 15:02:26 -05002196 int t;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
2198 /*
2199 * Ports - Port down timer.
2200 *
2201 * Whenever, a port is in the LOST state we start decrementing its port
2202 * down timer every second until it reaches zero. Once it reaches zero
2203 * the port it marked DEAD.
2204 */
2205 t = 0;
2206 list_for_each_entry(fcport, &ha->fcports, list) {
2207 if (fcport->port_type != FCT_TARGET)
2208 continue;
2209
2210 if (atomic_read(&fcport->state) == FCS_DEVICE_LOST) {
2211
2212 if (atomic_read(&fcport->port_down_timer) == 0)
2213 continue;
2214
2215 if (atomic_dec_and_test(&fcport->port_down_timer) != 0)
2216 atomic_set(&fcport->state, FCS_DEVICE_DEAD);
2217
2218 DEBUG(printk("scsi(%ld): fcport-%d - port retry count: "
2219 "%d remainning\n",
2220 ha->host_no,
2221 t, atomic_read(&fcport->port_down_timer)));
2222 }
2223 t++;
2224 } /* End of for fcport */
2225
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
2227 /* Loop down handler. */
2228 if (atomic_read(&ha->loop_down_timer) > 0 &&
2229 !(test_bit(ABORT_ISP_ACTIVE, &ha->dpc_flags)) && ha->flags.online) {
2230
2231 if (atomic_read(&ha->loop_down_timer) ==
2232 ha->loop_down_abort_time) {
2233
2234 DEBUG(printk("scsi(%ld): Loop Down - aborting the "
2235 "queues before time expire\n",
2236 ha->host_no));
2237
2238 if (!IS_QLA2100(ha) && ha->link_down_timeout)
2239 atomic_set(&ha->loop_state, LOOP_DEAD);
2240
2241 /* Schedule an ISP abort to return any tape commands. */
2242 spin_lock_irqsave(&ha->hardware_lock, cpu_flags);
2243 for (index = 1; index < MAX_OUTSTANDING_COMMANDS;
2244 index++) {
bdf79622005-04-17 15:06:53 -05002245 fc_port_t *sfcp;
2246
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 sp = ha->outstanding_cmds[index];
2248 if (!sp)
2249 continue;
bdf79622005-04-17 15:06:53 -05002250 sfcp = sp->fcport;
2251 if (!(sfcp->flags & FCF_TAPE_PRESENT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 continue;
2253
2254 set_bit(ISP_ABORT_NEEDED, &ha->dpc_flags);
2255 break;
2256 }
2257 spin_unlock_irqrestore(&ha->hardware_lock, cpu_flags);
2258
2259 set_bit(ABORT_QUEUES_NEEDED, &ha->dpc_flags);
2260 start_dpc++;
2261 }
2262
2263 /* if the loop has been down for 4 minutes, reinit adapter */
2264 if (atomic_dec_and_test(&ha->loop_down_timer) != 0) {
2265 DEBUG(printk("scsi(%ld): Loop down exceed 4 mins - "
2266 "restarting queues.\n",
2267 ha->host_no));
2268
2269 set_bit(RESTART_QUEUES_NEEDED, &ha->dpc_flags);
2270 start_dpc++;
2271
2272 if (!(ha->device_flags & DFLG_NO_CABLE)) {
2273 DEBUG(printk("scsi(%ld): Loop down - "
2274 "aborting ISP.\n",
2275 ha->host_no));
2276 qla_printk(KERN_WARNING, ha,
2277 "Loop down - aborting ISP.\n");
2278
2279 set_bit(ISP_ABORT_NEEDED, &ha->dpc_flags);
2280 }
2281 }
2282 DEBUG3(printk("scsi(%ld): Loop Down - seconds remainning %d\n",
2283 ha->host_no,
2284 atomic_read(&ha->loop_down_timer)));
2285 }
2286
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 /* Schedule the DPC routine if needed */
2288 if ((test_bit(ISP_ABORT_NEEDED, &ha->dpc_flags) ||
2289 test_bit(LOOP_RESYNC_NEEDED, &ha->dpc_flags) ||
2290 start_dpc ||
2291 test_bit(LOGIN_RETRY_NEEDED, &ha->dpc_flags) ||
f4f051e2005-04-17 15:02:26 -05002292 test_bit(RESET_MARKER_NEEDED, &ha->dpc_flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 test_bit(RELOGIN_NEEDED, &ha->dpc_flags)) &&
2294 ha->dpc_wait && !ha->dpc_active) {
2295
2296 up(ha->dpc_wait);
2297 }
2298
2299 qla2x00_restart_timer(ha, WATCH_INTERVAL);
2300}
2301
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302/* XXX(hch): crude hack to emulate a down_timeout() */
2303int
2304qla2x00_down_timeout(struct semaphore *sema, unsigned long timeout)
2305{
2306 const unsigned int step = HZ/10;
2307
2308 do {
2309 if (!down_trylock(sema))
2310 return 0;
2311 set_current_state(TASK_INTERRUPTIBLE);
2312 if (schedule_timeout(step))
2313 break;
2314 } while ((timeout -= step) > 0);
2315
2316 return -ETIMEDOUT;
2317}
2318
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319/**
2320 * qla2x00_module_init - Module initialization.
2321 **/
2322static int __init
2323qla2x00_module_init(void)
2324{
2325 /* Allocate cache for SRBs. */
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04002326 srb_cachep = kmem_cache_create("qla2xxx_srbs", sizeof(srb_t), 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 SLAB_HWCACHE_ALIGN, NULL, NULL);
2328 if (srb_cachep == NULL) {
2329 printk(KERN_ERR
2330 "qla2xxx: Unable to allocate SRB cache...Failing load!\n");
2331 return -ENOMEM;
2332 }
2333
2334 /* Derive version string. */
2335 strcpy(qla2x00_version_str, QLA2XXX_VERSION);
2336#if DEBUG_QLA2100
2337 strcat(qla2x00_version_str, "-debug");
2338#endif
Andrew Vasquez1c97a122005-04-21 16:13:36 -04002339 qla2xxx_transport_template =
2340 fc_attach_transport(&qla2xxx_transport_functions);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 if (!qla2xxx_transport_template)
2342 return -ENODEV;
2343
2344 printk(KERN_INFO "QLogic Fibre Channel HBA Driver\n");
2345 return 0;
2346}
2347
2348/**
2349 * qla2x00_module_exit - Module cleanup.
2350 **/
2351static void __exit
2352qla2x00_module_exit(void)
2353{
Andrew Vasquez 354d6b22005-04-23 02:47:27 -04002354 kmem_cache_destroy(srb_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 fc_release_transport(qla2xxx_transport_template);
2356}
2357
2358module_init(qla2x00_module_init);
2359module_exit(qla2x00_module_exit);
2360
2361MODULE_AUTHOR("QLogic Corporation");
2362MODULE_DESCRIPTION("QLogic Fibre Channel HBA Driver");
2363MODULE_LICENSE("GPL");
2364MODULE_VERSION(QLA2XXX_VERSION);