blob: db9d88e7bee79f909356e3298e4eeafbc14a4805 [file] [log] [blame]
David Somayajuluafaf5a22006-09-19 10:28:00 -07001/*
2 * QLogic iSCSI HBA Driver
3 * Copyright (c) 2003-2006 QLogic Corporation
4 *
5 * See LICENSE.qla4xxx for copyright and licensing details.
6 */
7#include <linux/moduleparam.h>
8
9#include <scsi/scsi_tcq.h>
10#include <scsi/scsicam.h>
11
12#include "ql4_def.h"
13
14/*
15 * Driver version
16 */
17char qla4xxx_version_str[40];
18
19/*
20 * SRB allocation cache
21 */
22static kmem_cache_t *srb_cachep;
23
24/*
25 * Module parameter information and variables
26 */
27int ql4xdiscoverywait = 60;
28module_param(ql4xdiscoverywait, int, S_IRUGO | S_IRUSR);
29MODULE_PARM_DESC(ql4xdiscoverywait, "Discovery wait time");
30int ql4xdontresethba = 0;
31module_param(ql4xdontresethba, int, S_IRUGO | S_IRUSR);
32MODULE_PARM_DESC(ql4xdontresethba,
33 "Dont reset the HBA when the driver gets 0x8002 AEN "
34 " default it will reset hba :0"
35 " set to 1 to avoid resetting HBA");
36
Andrew Vasquez11010fe2006-10-06 09:54:59 -070037int ql4xextended_error_logging = 0; /* 0 = off, 1 = log errors */
38module_param(ql4xextended_error_logging, int, S_IRUGO | S_IRUSR);
39MODULE_PARM_DESC(ql4xextended_error_logging,
David Somayajuluafaf5a22006-09-19 10:28:00 -070040 "Option to enable extended error logging, "
41 "Default is 0 - no logging, 1 - debug logging");
42
43/*
44 * SCSI host template entry points
45 */
46
47void qla4xxx_config_dma_addressing(struct scsi_qla_host *ha);
48
49/*
50 * iSCSI template entry points
51 */
52static int qla4xxx_tgt_dscvr(enum iscsi_tgt_dscvr type, uint32_t host_no,
53 uint32_t enable, struct sockaddr *dst_addr);
54static int qla4xxx_conn_get_param(struct iscsi_cls_conn *conn,
55 enum iscsi_param param, char *buf);
56static int qla4xxx_sess_get_param(struct iscsi_cls_session *sess,
57 enum iscsi_param param, char *buf);
58static void qla4xxx_conn_stop(struct iscsi_cls_conn *conn, int flag);
59static int qla4xxx_conn_start(struct iscsi_cls_conn *conn);
60static void qla4xxx_recovery_timedout(struct iscsi_cls_session *session);
61
62/*
63 * SCSI host template entry points
64 */
65static int qla4xxx_queuecommand(struct scsi_cmnd *cmd,
66 void (*done) (struct scsi_cmnd *));
67static int qla4xxx_eh_device_reset(struct scsi_cmnd *cmd);
68static int qla4xxx_eh_host_reset(struct scsi_cmnd *cmd);
69static int qla4xxx_slave_alloc(struct scsi_device *device);
70static int qla4xxx_slave_configure(struct scsi_device *device);
71static void qla4xxx_slave_destroy(struct scsi_device *sdev);
72
73static struct scsi_host_template qla4xxx_driver_template = {
74 .module = THIS_MODULE,
75 .name = DRIVER_NAME,
76 .proc_name = DRIVER_NAME,
77 .queuecommand = qla4xxx_queuecommand,
78
79 .eh_device_reset_handler = qla4xxx_eh_device_reset,
80 .eh_host_reset_handler = qla4xxx_eh_host_reset,
81
82 .slave_configure = qla4xxx_slave_configure,
83 .slave_alloc = qla4xxx_slave_alloc,
84 .slave_destroy = qla4xxx_slave_destroy,
85
86 .this_id = -1,
87 .cmd_per_lun = 3,
88 .use_clustering = ENABLE_CLUSTERING,
89 .sg_tablesize = SG_ALL,
90
91 .max_sectors = 0xFFFF,
92};
93
94static struct iscsi_transport qla4xxx_iscsi_transport = {
95 .owner = THIS_MODULE,
96 .name = DRIVER_NAME,
97 .param_mask = ISCSI_CONN_PORT |
98 ISCSI_CONN_ADDRESS |
99 ISCSI_TARGET_NAME |
100 ISCSI_TPGT,
101 .sessiondata_size = sizeof(struct ddb_entry),
102 .host_template = &qla4xxx_driver_template,
103
104 .tgt_dscvr = qla4xxx_tgt_dscvr,
105 .get_conn_param = qla4xxx_conn_get_param,
106 .get_session_param = qla4xxx_sess_get_param,
107 .start_conn = qla4xxx_conn_start,
108 .stop_conn = qla4xxx_conn_stop,
109 .session_recovery_timedout = qla4xxx_recovery_timedout,
110};
111
112static struct scsi_transport_template *qla4xxx_scsi_transport;
113
114static void qla4xxx_recovery_timedout(struct iscsi_cls_session *session)
115{
116 struct ddb_entry *ddb_entry = session->dd_data;
117 struct scsi_qla_host *ha = ddb_entry->ha;
118
119 DEBUG2(printk("scsi%ld: %s: index [%d] port down retry count of (%d) "
120 "secs exhausted, marking device DEAD.\n", ha->host_no,
121 __func__, ddb_entry->fw_ddb_index,
122 ha->port_down_retry_count));
123
124 atomic_set(&ddb_entry->state, DDB_STATE_DEAD);
125
126 DEBUG2(printk("scsi%ld: %s: scheduling dpc routine - dpc flags = "
127 "0x%lx\n", ha->host_no, __func__, ha->dpc_flags));
128 queue_work(ha->dpc_thread, &ha->dpc_work);
129}
130
131static int qla4xxx_conn_start(struct iscsi_cls_conn *conn)
132{
133 struct iscsi_cls_session *session;
134 struct ddb_entry *ddb_entry;
135
136 session = iscsi_dev_to_session(conn->dev.parent);
137 ddb_entry = session->dd_data;
138
139 DEBUG2(printk("scsi%ld: %s: index [%d] starting conn\n",
140 ddb_entry->ha->host_no, __func__,
141 ddb_entry->fw_ddb_index));
142 iscsi_unblock_session(session);
143 return 0;
144}
145
146static void qla4xxx_conn_stop(struct iscsi_cls_conn *conn, int flag)
147{
148 struct iscsi_cls_session *session;
149 struct ddb_entry *ddb_entry;
150
151 session = iscsi_dev_to_session(conn->dev.parent);
152 ddb_entry = session->dd_data;
153
154 DEBUG2(printk("scsi%ld: %s: index [%d] stopping conn\n",
155 ddb_entry->ha->host_no, __func__,
156 ddb_entry->fw_ddb_index));
157 if (flag == STOP_CONN_RECOVER)
158 iscsi_block_session(session);
159 else
160 printk(KERN_ERR "iscsi: invalid stop flag %d\n", flag);
161}
162
163static int qla4xxx_sess_get_param(struct iscsi_cls_session *sess,
164 enum iscsi_param param, char *buf)
165{
166 struct ddb_entry *ddb_entry = sess->dd_data;
167 int len;
168
169 switch (param) {
170 case ISCSI_PARAM_TARGET_NAME:
171 len = snprintf(buf, PAGE_SIZE - 1, "%s\n",
172 ddb_entry->iscsi_name);
173 break;
174 case ISCSI_PARAM_TPGT:
175 len = sprintf(buf, "%u\n", ddb_entry->tpgt);
176 break;
177 default:
178 return -ENOSYS;
179 }
180
181 return len;
182}
183
184static int qla4xxx_conn_get_param(struct iscsi_cls_conn *conn,
185 enum iscsi_param param, char *buf)
186{
187 struct iscsi_cls_session *session;
188 struct ddb_entry *ddb_entry;
189 int len;
190
191 session = iscsi_dev_to_session(conn->dev.parent);
192 ddb_entry = session->dd_data;
193
194 switch (param) {
195 case ISCSI_PARAM_CONN_PORT:
196 len = sprintf(buf, "%hu\n", ddb_entry->port);
197 break;
198 case ISCSI_PARAM_CONN_ADDRESS:
199 /* TODO: what are the ipv6 bits */
200 len = sprintf(buf, "%u.%u.%u.%u\n",
201 NIPQUAD(ddb_entry->ip_addr));
202 break;
203 default:
204 return -ENOSYS;
205 }
206
207 return len;
208}
209
210static int qla4xxx_tgt_dscvr(enum iscsi_tgt_dscvr type, uint32_t host_no,
211 uint32_t enable, struct sockaddr *dst_addr)
212{
213 struct scsi_qla_host *ha;
214 struct Scsi_Host *shost;
215 struct sockaddr_in *addr;
216 struct sockaddr_in6 *addr6;
217 int ret = 0;
218
219 shost = scsi_host_lookup(host_no);
220 if (IS_ERR(shost)) {
221 printk(KERN_ERR "Could not find host no %u\n", host_no);
222 return -ENODEV;
223 }
224
225 ha = (struct scsi_qla_host *) shost->hostdata;
226
227 switch (type) {
228 case ISCSI_TGT_DSCVR_SEND_TARGETS:
229 if (dst_addr->sa_family == AF_INET) {
230 addr = (struct sockaddr_in *)dst_addr;
231 if (qla4xxx_send_tgts(ha, (char *)&addr->sin_addr,
232 addr->sin_port) != QLA_SUCCESS)
233 ret = -EIO;
234 } else if (dst_addr->sa_family == AF_INET6) {
235 /*
236 * TODO: fix qla4xxx_send_tgts
237 */
238 addr6 = (struct sockaddr_in6 *)dst_addr;
239 if (qla4xxx_send_tgts(ha, (char *)&addr6->sin6_addr,
240 addr6->sin6_port) != QLA_SUCCESS)
241 ret = -EIO;
242 } else
243 ret = -ENOSYS;
244 break;
245 default:
246 ret = -ENOSYS;
247 }
248
249 scsi_host_put(shost);
250 return ret;
251}
252
253void qla4xxx_destroy_sess(struct ddb_entry *ddb_entry)
254{
255 if (!ddb_entry->sess)
256 return;
257
258 if (ddb_entry->conn) {
259 iscsi_if_destroy_session_done(ddb_entry->conn);
260 iscsi_destroy_conn(ddb_entry->conn);
261 iscsi_remove_session(ddb_entry->sess);
262 }
263 iscsi_free_session(ddb_entry->sess);
264}
265
266int qla4xxx_add_sess(struct ddb_entry *ddb_entry)
267{
268 int err;
269
270 err = iscsi_add_session(ddb_entry->sess, ddb_entry->fw_ddb_index);
271 if (err) {
272 DEBUG2(printk(KERN_ERR "Could not add session.\n"));
273 return err;
274 }
275
276 ddb_entry->conn = iscsi_create_conn(ddb_entry->sess, 0);
277 if (!ddb_entry->conn) {
278 iscsi_remove_session(ddb_entry->sess);
279 DEBUG2(printk(KERN_ERR "Could not add connection.\n"));
280 return -ENOMEM;
281 }
282
283 ddb_entry->sess->recovery_tmo = ddb_entry->ha->port_down_retry_count;
284 iscsi_if_create_session_done(ddb_entry->conn);
285 return 0;
286}
287
288struct ddb_entry *qla4xxx_alloc_sess(struct scsi_qla_host *ha)
289{
290 struct ddb_entry *ddb_entry;
291 struct iscsi_cls_session *sess;
292
293 sess = iscsi_alloc_session(ha->host, &qla4xxx_iscsi_transport);
294 if (!sess)
295 return NULL;
296
297 ddb_entry = sess->dd_data;
298 memset(ddb_entry, 0, sizeof(*ddb_entry));
299 ddb_entry->ha = ha;
300 ddb_entry->sess = sess;
301 return ddb_entry;
302}
303
304/*
305 * Timer routines
306 */
307
308static void qla4xxx_start_timer(struct scsi_qla_host *ha, void *func,
309 unsigned long interval)
310{
311 DEBUG(printk("scsi: %s: Starting timer thread for adapter %d\n",
312 __func__, ha->host->host_no));
313 init_timer(&ha->timer);
314 ha->timer.expires = jiffies + interval * HZ;
315 ha->timer.data = (unsigned long)ha;
316 ha->timer.function = (void (*)(unsigned long))func;
317 add_timer(&ha->timer);
318 ha->timer_active = 1;
319}
320
321static void qla4xxx_stop_timer(struct scsi_qla_host *ha)
322{
323 del_timer_sync(&ha->timer);
324 ha->timer_active = 0;
325}
326
327/***
328 * qla4xxx_mark_device_missing - mark a device as missing.
329 * @ha: Pointer to host adapter structure.
330 * @ddb_entry: Pointer to device database entry
331 *
332 * This routine marks a device missing and resets the relogin retry count.
333 **/
334void qla4xxx_mark_device_missing(struct scsi_qla_host *ha,
335 struct ddb_entry *ddb_entry)
336{
337 atomic_set(&ddb_entry->state, DDB_STATE_MISSING);
338 DEBUG3(printk("scsi%d:%d:%d: index [%d] marked MISSING\n",
339 ha->host_no, ddb_entry->bus, ddb_entry->target,
340 ddb_entry->fw_ddb_index));
341 iscsi_conn_error(ddb_entry->conn, ISCSI_ERR_CONN_FAILED);
342}
343
344static struct srb* qla4xxx_get_new_srb(struct scsi_qla_host *ha,
345 struct ddb_entry *ddb_entry,
346 struct scsi_cmnd *cmd,
347 void (*done)(struct scsi_cmnd *))
348{
349 struct srb *srb;
350
351 srb = mempool_alloc(ha->srb_mempool, GFP_ATOMIC);
352 if (!srb)
353 return srb;
354
355 atomic_set(&srb->ref_count, 1);
356 srb->ha = ha;
357 srb->ddb = ddb_entry;
358 srb->cmd = cmd;
359 srb->flags = 0;
360 cmd->SCp.ptr = (void *)srb;
361 cmd->scsi_done = done;
362
363 return srb;
364}
365
366static void qla4xxx_srb_free_dma(struct scsi_qla_host *ha, struct srb *srb)
367{
368 struct scsi_cmnd *cmd = srb->cmd;
369
370 if (srb->flags & SRB_DMA_VALID) {
371 if (cmd->use_sg) {
372 pci_unmap_sg(ha->pdev, cmd->request_buffer,
373 cmd->use_sg, cmd->sc_data_direction);
374 } else if (cmd->request_bufflen) {
375 pci_unmap_single(ha->pdev, srb->dma_handle,
376 cmd->request_bufflen,
377 cmd->sc_data_direction);
378 }
379 srb->flags &= ~SRB_DMA_VALID;
380 }
381 cmd->SCp.ptr = NULL;
382}
383
384void qla4xxx_srb_compl(struct scsi_qla_host *ha, struct srb *srb)
385{
386 struct scsi_cmnd *cmd = srb->cmd;
387
388 qla4xxx_srb_free_dma(ha, srb);
389
390 mempool_free(srb, ha->srb_mempool);
391
392 cmd->scsi_done(cmd);
393}
394
395/**
396 * qla4xxx_queuecommand - scsi layer issues scsi command to driver.
397 * @cmd: Pointer to Linux's SCSI command structure
398 * @done_fn: Function that the driver calls to notify the SCSI mid-layer
399 * that the command has been processed.
400 *
401 * Remarks:
402 * This routine is invoked by Linux to send a SCSI command to the driver.
403 * The mid-level driver tries to ensure that queuecommand never gets
404 * invoked concurrently with itself or the interrupt handler (although
405 * the interrupt handler may call this routine as part of request-
406 * completion handling). Unfortunely, it sometimes calls the scheduler
407 * in interrupt context which is a big NO! NO!.
408 **/
409static int qla4xxx_queuecommand(struct scsi_cmnd *cmd,
410 void (*done)(struct scsi_cmnd *))
411{
412 struct scsi_qla_host *ha = to_qla_host(cmd->device->host);
413 struct ddb_entry *ddb_entry = cmd->device->hostdata;
414 struct srb *srb;
415 int rval;
416
417 if (atomic_read(&ddb_entry->state) != DDB_STATE_ONLINE) {
418 if (atomic_read(&ddb_entry->state) == DDB_STATE_DEAD) {
419 cmd->result = DID_NO_CONNECT << 16;
420 goto qc_fail_command;
421 }
422 goto qc_host_busy;
423 }
424
425 spin_unlock_irq(ha->host->host_lock);
426
427 srb = qla4xxx_get_new_srb(ha, ddb_entry, cmd, done);
428 if (!srb)
429 goto qc_host_busy_lock;
430
431 rval = qla4xxx_send_command_to_isp(ha, srb);
432 if (rval != QLA_SUCCESS)
433 goto qc_host_busy_free_sp;
434
435 spin_lock_irq(ha->host->host_lock);
436 return 0;
437
438qc_host_busy_free_sp:
439 qla4xxx_srb_free_dma(ha, srb);
440 mempool_free(srb, ha->srb_mempool);
441
442qc_host_busy_lock:
443 spin_lock_irq(ha->host->host_lock);
444
445qc_host_busy:
446 return SCSI_MLQUEUE_HOST_BUSY;
447
448qc_fail_command:
449 done(cmd);
450
451 return 0;
452}
453
454/**
455 * qla4xxx_mem_free - frees memory allocated to adapter
456 * @ha: Pointer to host adapter structure.
457 *
458 * Frees memory previously allocated by qla4xxx_mem_alloc
459 **/
460static void qla4xxx_mem_free(struct scsi_qla_host *ha)
461{
462 if (ha->queues)
463 dma_free_coherent(&ha->pdev->dev, ha->queues_len, ha->queues,
464 ha->queues_dma);
465
466 ha->queues_len = 0;
467 ha->queues = NULL;
468 ha->queues_dma = 0;
469 ha->request_ring = NULL;
470 ha->request_dma = 0;
471 ha->response_ring = NULL;
472 ha->response_dma = 0;
473 ha->shadow_regs = NULL;
474 ha->shadow_regs_dma = 0;
475
476 /* Free srb pool. */
477 if (ha->srb_mempool)
478 mempool_destroy(ha->srb_mempool);
479
480 ha->srb_mempool = NULL;
481
482 /* release io space registers */
483 if (ha->reg)
484 iounmap(ha->reg);
485 pci_release_regions(ha->pdev);
486}
487
488/**
489 * qla4xxx_mem_alloc - allocates memory for use by adapter.
490 * @ha: Pointer to host adapter structure
491 *
492 * Allocates DMA memory for request and response queues. Also allocates memory
493 * for srbs.
494 **/
495static int qla4xxx_mem_alloc(struct scsi_qla_host *ha)
496{
497 unsigned long align;
498
499 /* Allocate contiguous block of DMA memory for queues. */
500 ha->queues_len = ((REQUEST_QUEUE_DEPTH * QUEUE_SIZE) +
501 (RESPONSE_QUEUE_DEPTH * QUEUE_SIZE) +
502 sizeof(struct shadow_regs) +
503 MEM_ALIGN_VALUE +
504 (PAGE_SIZE - 1)) & ~(PAGE_SIZE - 1);
505 ha->queues = dma_alloc_coherent(&ha->pdev->dev, ha->queues_len,
506 &ha->queues_dma, GFP_KERNEL);
507 if (ha->queues == NULL) {
508 dev_warn(&ha->pdev->dev,
509 "Memory Allocation failed - queues.\n");
510
511 goto mem_alloc_error_exit;
512 }
513 memset(ha->queues, 0, ha->queues_len);
514
515 /*
516 * As per RISC alignment requirements -- the bus-address must be a
517 * multiple of the request-ring size (in bytes).
518 */
519 align = 0;
520 if ((unsigned long)ha->queues_dma & (MEM_ALIGN_VALUE - 1))
521 align = MEM_ALIGN_VALUE - ((unsigned long)ha->queues_dma &
522 (MEM_ALIGN_VALUE - 1));
523
524 /* Update request and response queue pointers. */
525 ha->request_dma = ha->queues_dma + align;
526 ha->request_ring = (struct queue_entry *) (ha->queues + align);
527 ha->response_dma = ha->queues_dma + align +
528 (REQUEST_QUEUE_DEPTH * QUEUE_SIZE);
529 ha->response_ring = (struct queue_entry *) (ha->queues + align +
530 (REQUEST_QUEUE_DEPTH *
531 QUEUE_SIZE));
532 ha->shadow_regs_dma = ha->queues_dma + align +
533 (REQUEST_QUEUE_DEPTH * QUEUE_SIZE) +
534 (RESPONSE_QUEUE_DEPTH * QUEUE_SIZE);
535 ha->shadow_regs = (struct shadow_regs *) (ha->queues + align +
536 (REQUEST_QUEUE_DEPTH *
537 QUEUE_SIZE) +
538 (RESPONSE_QUEUE_DEPTH *
539 QUEUE_SIZE));
540
541 /* Allocate memory for srb pool. */
542 ha->srb_mempool = mempool_create(SRB_MIN_REQ, mempool_alloc_slab,
543 mempool_free_slab, srb_cachep);
544 if (ha->srb_mempool == NULL) {
545 dev_warn(&ha->pdev->dev,
546 "Memory Allocation failed - SRB Pool.\n");
547
548 goto mem_alloc_error_exit;
549 }
550
551 return QLA_SUCCESS;
552
553mem_alloc_error_exit:
554 qla4xxx_mem_free(ha);
555 return QLA_ERROR;
556}
557
558/**
559 * qla4xxx_timer - checks every second for work to do.
560 * @ha: Pointer to host adapter structure.
561 **/
562static void qla4xxx_timer(struct scsi_qla_host *ha)
563{
564 struct ddb_entry *ddb_entry, *dtemp;
565 int start_dpc = 0;
566
567 /* Search for relogin's to time-out and port down retry. */
568 list_for_each_entry_safe(ddb_entry, dtemp, &ha->ddb_list, list) {
569 /* Count down time between sending relogins */
570 if (adapter_up(ha) &&
571 !test_bit(DF_RELOGIN, &ddb_entry->flags) &&
572 atomic_read(&ddb_entry->state) != DDB_STATE_ONLINE) {
573 if (atomic_read(&ddb_entry->retry_relogin_timer) !=
574 INVALID_ENTRY) {
575 if (atomic_read(&ddb_entry->retry_relogin_timer)
576 == 0) {
577 atomic_set(&ddb_entry->
578 retry_relogin_timer,
579 INVALID_ENTRY);
580 set_bit(DPC_RELOGIN_DEVICE,
581 &ha->dpc_flags);
582 set_bit(DF_RELOGIN, &ddb_entry->flags);
583 DEBUG2(printk("scsi%ld: %s: index [%d]"
584 " login device\n",
585 ha->host_no, __func__,
586 ddb_entry->fw_ddb_index));
587 } else
588 atomic_dec(&ddb_entry->
589 retry_relogin_timer);
590 }
591 }
592
593 /* Wait for relogin to timeout */
594 if (atomic_read(&ddb_entry->relogin_timer) &&
595 (atomic_dec_and_test(&ddb_entry->relogin_timer) != 0)) {
596 /*
597 * If the relogin times out and the device is
598 * still NOT ONLINE then try and relogin again.
599 */
600 if (atomic_read(&ddb_entry->state) !=
601 DDB_STATE_ONLINE &&
602 ddb_entry->fw_ddb_device_state ==
603 DDB_DS_SESSION_FAILED) {
604 /* Reset retry relogin timer */
605 atomic_inc(&ddb_entry->relogin_retry_count);
606 DEBUG2(printk("scsi%ld: index[%d] relogin"
607 " timed out-retrying"
608 " relogin (%d)\n",
609 ha->host_no,
610 ddb_entry->fw_ddb_index,
611 atomic_read(&ddb_entry->
612 relogin_retry_count))
613 );
614 start_dpc++;
615 DEBUG(printk("scsi%ld:%d:%d: index [%d] "
616 "initate relogin after"
617 " %d seconds\n",
618 ha->host_no, ddb_entry->bus,
619 ddb_entry->target,
620 ddb_entry->fw_ddb_index,
621 ddb_entry->default_time2wait + 4)
622 );
623
624 atomic_set(&ddb_entry->retry_relogin_timer,
625 ddb_entry->default_time2wait + 4);
626 }
627 }
628 }
629
630 /* Check for heartbeat interval. */
631 if (ha->firmware_options & FWOPT_HEARTBEAT_ENABLE &&
632 ha->heartbeat_interval != 0) {
633 ha->seconds_since_last_heartbeat++;
634 if (ha->seconds_since_last_heartbeat >
635 ha->heartbeat_interval + 2)
636 set_bit(DPC_RESET_HA, &ha->dpc_flags);
637 }
638
639
640 /* Wakeup the dpc routine for this adapter, if needed. */
641 if ((start_dpc ||
642 test_bit(DPC_RESET_HA, &ha->dpc_flags) ||
643 test_bit(DPC_RETRY_RESET_HA, &ha->dpc_flags) ||
644 test_bit(DPC_RELOGIN_DEVICE, &ha->dpc_flags) ||
645 test_bit(DPC_RESET_HA_DESTROY_DDB_LIST, &ha->dpc_flags) ||
646 test_bit(DPC_RESET_HA_INTR, &ha->dpc_flags) ||
647 test_bit(DPC_GET_DHCP_IP_ADDR, &ha->dpc_flags) ||
648 test_bit(DPC_AEN, &ha->dpc_flags)) &&
649 ha->dpc_thread) {
650 DEBUG2(printk("scsi%ld: %s: scheduling dpc routine"
651 " - dpc flags = 0x%lx\n",
652 ha->host_no, __func__, ha->dpc_flags));
653 queue_work(ha->dpc_thread, &ha->dpc_work);
654 }
655
656 /* Reschedule timer thread to call us back in one second */
657 mod_timer(&ha->timer, jiffies + HZ);
658
659 DEBUG2(ha->seconds_since_last_intr++);
660}
661
662/**
663 * qla4xxx_cmd_wait - waits for all outstanding commands to complete
664 * @ha: Pointer to host adapter structure.
665 *
666 * This routine stalls the driver until all outstanding commands are returned.
667 * Caller must release the Hardware Lock prior to calling this routine.
668 **/
669static int qla4xxx_cmd_wait(struct scsi_qla_host *ha)
670{
671 uint32_t index = 0;
672 int stat = QLA_SUCCESS;
673 unsigned long flags;
674 struct scsi_cmnd *cmd;
675 int wait_cnt = WAIT_CMD_TOV; /*
676 * Initialized for 30 seconds as we
677 * expect all commands to retuned
678 * ASAP.
679 */
680
681 while (wait_cnt) {
682 spin_lock_irqsave(&ha->hardware_lock, flags);
683 /* Find a command that hasn't completed. */
684 for (index = 0; index < ha->host->can_queue; index++) {
685 cmd = scsi_host_find_tag(ha->host, index);
686 if (cmd != NULL)
687 break;
688 }
689 spin_unlock_irqrestore(&ha->hardware_lock, flags);
690
691 /* If No Commands are pending, wait is complete */
692 if (index == ha->host->can_queue) {
693 break;
694 }
695
696 /* If we timed out on waiting for commands to come back
697 * return ERROR.
698 */
699 wait_cnt--;
700 if (wait_cnt == 0)
701 stat = QLA_ERROR;
702 else {
703 msleep(1000);
704 }
705 } /* End of While (wait_cnt) */
706
707 return stat;
708}
709
710/**
David C Somayajulud9150582006-11-15 17:38:40 -0800711 * qla4xxx_soft_reset - performs soft reset.
David Somayajuluafaf5a22006-09-19 10:28:00 -0700712 * @ha: Pointer to host adapter structure.
713 **/
David C Somayajulud9150582006-11-15 17:38:40 -0800714int qla4xxx_soft_reset(struct scsi_qla_host *ha)
David Somayajuluafaf5a22006-09-19 10:28:00 -0700715{
716 uint32_t max_wait_time;
717 unsigned long flags = 0;
718 int status = QLA_ERROR;
719 uint32_t ctrl_status;
720
721 spin_lock_irqsave(&ha->hardware_lock, flags);
722
723 /*
724 * If the SCSI Reset Interrupt bit is set, clear it.
725 * Otherwise, the Soft Reset won't work.
726 */
727 ctrl_status = readw(&ha->reg->ctrl_status);
728 if ((ctrl_status & CSR_SCSI_RESET_INTR) != 0)
729 writel(set_rmask(CSR_SCSI_RESET_INTR), &ha->reg->ctrl_status);
730
731 /* Issue Soft Reset */
732 writel(set_rmask(CSR_SOFT_RESET), &ha->reg->ctrl_status);
733 readl(&ha->reg->ctrl_status);
734
735 spin_unlock_irqrestore(&ha->hardware_lock, flags);
736
737 /* Wait until the Network Reset Intr bit is cleared */
738 max_wait_time = RESET_INTR_TOV;
739 do {
740 spin_lock_irqsave(&ha->hardware_lock, flags);
741 ctrl_status = readw(&ha->reg->ctrl_status);
742 spin_unlock_irqrestore(&ha->hardware_lock, flags);
743
744 if ((ctrl_status & CSR_NET_RESET_INTR) == 0)
745 break;
746
747 msleep(1000);
748 } while ((--max_wait_time));
749
750 if ((ctrl_status & CSR_NET_RESET_INTR) != 0) {
751 DEBUG2(printk(KERN_WARNING
752 "scsi%ld: Network Reset Intr not cleared by "
753 "Network function, clearing it now!\n",
754 ha->host_no));
755 spin_lock_irqsave(&ha->hardware_lock, flags);
756 writel(set_rmask(CSR_NET_RESET_INTR), &ha->reg->ctrl_status);
757 readl(&ha->reg->ctrl_status);
758 spin_unlock_irqrestore(&ha->hardware_lock, flags);
759 }
760
761 /* Wait until the firmware tells us the Soft Reset is done */
762 max_wait_time = SOFT_RESET_TOV;
763 do {
764 spin_lock_irqsave(&ha->hardware_lock, flags);
765 ctrl_status = readw(&ha->reg->ctrl_status);
766 spin_unlock_irqrestore(&ha->hardware_lock, flags);
767
768 if ((ctrl_status & CSR_SOFT_RESET) == 0) {
769 status = QLA_SUCCESS;
770 break;
771 }
772
773 msleep(1000);
774 } while ((--max_wait_time));
775
776 /*
777 * Also, make sure that the SCSI Reset Interrupt bit has been cleared
778 * after the soft reset has taken place.
779 */
780 spin_lock_irqsave(&ha->hardware_lock, flags);
781 ctrl_status = readw(&ha->reg->ctrl_status);
782 if ((ctrl_status & CSR_SCSI_RESET_INTR) != 0) {
783 writel(set_rmask(CSR_SCSI_RESET_INTR), &ha->reg->ctrl_status);
784 readl(&ha->reg->ctrl_status);
785 }
786 spin_unlock_irqrestore(&ha->hardware_lock, flags);
787
788 /* If soft reset fails then most probably the bios on other
789 * function is also enabled.
790 * Since the initialization is sequential the other fn
791 * wont be able to acknowledge the soft reset.
792 * Issue a force soft reset to workaround this scenario.
793 */
794 if (max_wait_time == 0) {
795 /* Issue Force Soft Reset */
796 spin_lock_irqsave(&ha->hardware_lock, flags);
797 writel(set_rmask(CSR_FORCE_SOFT_RESET), &ha->reg->ctrl_status);
798 readl(&ha->reg->ctrl_status);
799 spin_unlock_irqrestore(&ha->hardware_lock, flags);
800 /* Wait until the firmware tells us the Soft Reset is done */
801 max_wait_time = SOFT_RESET_TOV;
802 do {
803 spin_lock_irqsave(&ha->hardware_lock, flags);
804 ctrl_status = readw(&ha->reg->ctrl_status);
805 spin_unlock_irqrestore(&ha->hardware_lock, flags);
806
807 if ((ctrl_status & CSR_FORCE_SOFT_RESET) == 0) {
808 status = QLA_SUCCESS;
809 break;
810 }
811
812 msleep(1000);
813 } while ((--max_wait_time));
814 }
815
816 return status;
817}
818
819/**
David Somayajuluafaf5a22006-09-19 10:28:00 -0700820 * qla4xxx_flush_active_srbs - returns all outstanding i/o requests to O.S.
821 * @ha: Pointer to host adapter structure.
822 *
823 * This routine is called just prior to a HARD RESET to return all
824 * outstanding commands back to the Operating System.
825 * Caller should make sure that the following locks are released
826 * before this calling routine: Hardware lock, and io_request_lock.
827 **/
828static void qla4xxx_flush_active_srbs(struct scsi_qla_host *ha)
829{
830 struct srb *srb;
831 int i;
832 unsigned long flags;
833
834 spin_lock_irqsave(&ha->hardware_lock, flags);
835 for (i = 0; i < ha->host->can_queue; i++) {
836 srb = qla4xxx_del_from_active_array(ha, i);
837 if (srb != NULL) {
838 srb->cmd->result = DID_RESET << 16;
839 qla4xxx_srb_compl(ha, srb);
840 }
841 }
842 spin_unlock_irqrestore(&ha->hardware_lock, flags);
843
844}
845
846/**
David Somayajuluafaf5a22006-09-19 10:28:00 -0700847 * qla4xxx_recover_adapter - recovers adapter after a fatal error
848 * @ha: Pointer to host adapter structure.
849 * @renew_ddb_list: Indicates what to do with the adapter's ddb list
850 * after adapter recovery has completed.
851 * 0=preserve ddb list, 1=destroy and rebuild ddb list
852 **/
853static int qla4xxx_recover_adapter(struct scsi_qla_host *ha,
854 uint8_t renew_ddb_list)
855{
856 int status;
857
858 /* Stall incoming I/O until we are done */
859 clear_bit(AF_ONLINE, &ha->flags);
860 DEBUG2(printk("scsi%ld: %s calling qla4xxx_cmd_wait\n", ha->host_no,
861 __func__));
862
863 /* Wait for outstanding commands to complete.
864 * Stalls the driver for max 30 secs
865 */
866 status = qla4xxx_cmd_wait(ha);
867
868 qla4xxx_disable_intrs(ha);
869
870 /* Flush any pending ddb changed AENs */
871 qla4xxx_process_aen(ha, FLUSH_DDB_CHANGED_AENS);
872
873 /* Reset the firmware. If successful, function
874 * returns with ISP interrupts enabled.
875 */
876 if (status == QLA_SUCCESS) {
877 DEBUG2(printk("scsi%ld: %s - Performing soft reset..\n",
878 ha->host_no, __func__));
David C Somayajuluf26b9042006-11-15 16:41:09 -0800879 qla4xxx_flush_active_srbs(ha);
880 if (ql4xxx_lock_drvr_wait(ha) == QLA_SUCCESS)
881 status = qla4xxx_soft_reset(ha);
882 else
883 status = QLA_ERROR;
David Somayajuluafaf5a22006-09-19 10:28:00 -0700884 }
885
886 /* Flush any pending ddb changed AENs */
887 qla4xxx_process_aen(ha, FLUSH_DDB_CHANGED_AENS);
888
889 /* Re-initialize firmware. If successful, function returns
890 * with ISP interrupts enabled */
891 if (status == QLA_SUCCESS) {
892 DEBUG2(printk("scsi%ld: %s - Initializing adapter..\n",
893 ha->host_no, __func__));
894
895 /* If successful, AF_ONLINE flag set in
896 * qla4xxx_initialize_adapter */
897 status = qla4xxx_initialize_adapter(ha, renew_ddb_list);
898 }
899
900 /* Failed adapter initialization?
901 * Retry reset_ha only if invoked via DPC (DPC_RESET_HA) */
902 if ((test_bit(AF_ONLINE, &ha->flags) == 0) &&
903 (test_bit(DPC_RESET_HA, &ha->dpc_flags))) {
904 /* Adapter initialization failed, see if we can retry
905 * resetting the ha */
906 if (!test_bit(DPC_RETRY_RESET_HA, &ha->dpc_flags)) {
907 ha->retry_reset_ha_cnt = MAX_RESET_HA_RETRIES;
908 DEBUG2(printk("scsi%ld: recover adapter - retrying "
909 "(%d) more times\n", ha->host_no,
910 ha->retry_reset_ha_cnt));
911 set_bit(DPC_RETRY_RESET_HA, &ha->dpc_flags);
912 status = QLA_ERROR;
913 } else {
914 if (ha->retry_reset_ha_cnt > 0) {
915 /* Schedule another Reset HA--DPC will retry */
916 ha->retry_reset_ha_cnt--;
917 DEBUG2(printk("scsi%ld: recover adapter - "
918 "retry remaining %d\n",
919 ha->host_no,
920 ha->retry_reset_ha_cnt));
921 status = QLA_ERROR;
922 }
923
924 if (ha->retry_reset_ha_cnt == 0) {
925 /* Recover adapter retries have been exhausted.
926 * Adapter DEAD */
927 DEBUG2(printk("scsi%ld: recover adapter "
928 "failed - board disabled\n",
929 ha->host_no));
930 qla4xxx_flush_active_srbs(ha);
931 clear_bit(DPC_RETRY_RESET_HA, &ha->dpc_flags);
932 clear_bit(DPC_RESET_HA, &ha->dpc_flags);
933 clear_bit(DPC_RESET_HA_DESTROY_DDB_LIST,
934 &ha->dpc_flags);
935 status = QLA_ERROR;
936 }
937 }
938 } else {
939 clear_bit(DPC_RESET_HA, &ha->dpc_flags);
940 clear_bit(DPC_RESET_HA_DESTROY_DDB_LIST, &ha->dpc_flags);
941 clear_bit(DPC_RETRY_RESET_HA, &ha->dpc_flags);
942 }
943
944 ha->adapter_error_count++;
945
946 if (status == QLA_SUCCESS)
947 qla4xxx_enable_intrs(ha);
948
949 DEBUG2(printk("scsi%ld: recover adapter .. DONE\n", ha->host_no));
950 return status;
951}
952
953/**
954 * qla4xxx_do_dpc - dpc routine
955 * @data: in our case pointer to adapter structure
956 *
957 * This routine is a task that is schedule by the interrupt handler
958 * to perform the background processing for interrupts. We put it
959 * on a task queue that is consumed whenever the scheduler runs; that's
960 * so you can do anything (i.e. put the process to sleep etc). In fact,
961 * the mid-level tries to sleep when it reaches the driver threshold
962 * "host->can_queue". This can cause a panic if we were in our interrupt code.
963 **/
964static void qla4xxx_do_dpc(void *data)
965{
966 struct scsi_qla_host *ha = (struct scsi_qla_host *) data;
967 struct ddb_entry *ddb_entry, *dtemp;
968
David C Somayajuluf26b9042006-11-15 16:41:09 -0800969 DEBUG2(printk("scsi%ld: %s: DPC handler waking up."
970 "flags = 0x%08lx, dpc_flags = 0x%08lx\n",
971 ha->host_no, __func__, ha->flags, ha->dpc_flags));
David Somayajuluafaf5a22006-09-19 10:28:00 -0700972
973 /* Initialization not yet finished. Don't do anything yet. */
974 if (!test_bit(AF_INIT_DONE, &ha->flags))
975 return;
976
977 if (adapter_up(ha) ||
978 test_bit(DPC_RESET_HA, &ha->dpc_flags) ||
979 test_bit(DPC_RESET_HA_INTR, &ha->dpc_flags) ||
980 test_bit(DPC_RESET_HA_DESTROY_DDB_LIST, &ha->dpc_flags)) {
David C Somayajuluf26b9042006-11-15 16:41:09 -0800981 if (test_bit(DPC_RESET_HA_DESTROY_DDB_LIST, &ha->dpc_flags) ||
982 test_bit(DPC_RESET_HA, &ha->dpc_flags))
David Somayajuluafaf5a22006-09-19 10:28:00 -0700983 qla4xxx_recover_adapter(ha, PRESERVE_DDB_LIST);
984
985 if (test_and_clear_bit(DPC_RESET_HA_INTR, &ha->dpc_flags)) {
986 uint8_t wait_time = RESET_INTR_TOV;
987 unsigned long flags = 0;
988
989 qla4xxx_flush_active_srbs(ha);
990
991 spin_lock_irqsave(&ha->hardware_lock, flags);
992 while ((readw(&ha->reg->ctrl_status) &
993 (CSR_SOFT_RESET | CSR_FORCE_SOFT_RESET)) != 0) {
994 if (--wait_time == 0)
995 break;
996
997 spin_unlock_irqrestore(&ha->hardware_lock,
998 flags);
999
1000 msleep(1000);
1001
1002 spin_lock_irqsave(&ha->hardware_lock, flags);
1003 }
1004 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1005
1006 if (wait_time == 0)
1007 DEBUG2(printk("scsi%ld: %s: SR|FSR "
1008 "bit not cleared-- resetting\n",
1009 ha->host_no, __func__));
1010 }
1011 }
1012
1013 /* ---- process AEN? --- */
1014 if (test_and_clear_bit(DPC_AEN, &ha->dpc_flags))
1015 qla4xxx_process_aen(ha, PROCESS_ALL_AENS);
1016
1017 /* ---- Get DHCP IP Address? --- */
1018 if (test_and_clear_bit(DPC_GET_DHCP_IP_ADDR, &ha->dpc_flags))
1019 qla4xxx_get_dhcp_ip_address(ha);
1020
1021 /* ---- relogin device? --- */
1022 if (adapter_up(ha) &&
1023 test_and_clear_bit(DPC_RELOGIN_DEVICE, &ha->dpc_flags)) {
1024 list_for_each_entry_safe(ddb_entry, dtemp,
1025 &ha->ddb_list, list) {
1026 if (test_and_clear_bit(DF_RELOGIN, &ddb_entry->flags) &&
1027 atomic_read(&ddb_entry->state) != DDB_STATE_ONLINE)
1028 qla4xxx_relogin_device(ha, ddb_entry);
1029
1030 /*
1031 * If mbx cmd times out there is no point
1032 * in continuing further.
1033 * With large no of targets this can hang
1034 * the system.
1035 */
1036 if (test_bit(DPC_RESET_HA, &ha->dpc_flags)) {
1037 printk(KERN_WARNING "scsi%ld: %s: "
1038 "need to reset hba\n",
1039 ha->host_no, __func__);
1040 break;
1041 }
1042 }
1043 }
1044}
1045
1046/**
1047 * qla4xxx_free_adapter - release the adapter
1048 * @ha: pointer to adapter structure
1049 **/
1050static void qla4xxx_free_adapter(struct scsi_qla_host *ha)
1051{
1052
1053 if (test_bit(AF_INTERRUPTS_ON, &ha->flags)) {
1054 /* Turn-off interrupts on the card. */
1055 qla4xxx_disable_intrs(ha);
1056 }
1057
1058 /* Kill the kernel thread for this host */
1059 if (ha->dpc_thread)
1060 destroy_workqueue(ha->dpc_thread);
1061
1062 /* Issue Soft Reset to put firmware in unknown state */
David C Somayajuluf26b9042006-11-15 16:41:09 -08001063 if (ql4xxx_lock_drvr_wait(ha) == QLA_SUCCESS)
1064 qla4xxx_soft_reset(ha);
David Somayajuluafaf5a22006-09-19 10:28:00 -07001065
1066 /* Remove timer thread, if present */
1067 if (ha->timer_active)
1068 qla4xxx_stop_timer(ha);
1069
1070 /* free extra memory */
1071 qla4xxx_mem_free(ha);
1072
1073 /* Detach interrupts */
1074 if (test_and_clear_bit(AF_IRQ_ATTACHED, &ha->flags))
1075 free_irq(ha->pdev->irq, ha);
1076
1077 pci_disable_device(ha->pdev);
1078
1079}
1080
1081/***
1082 * qla4xxx_iospace_config - maps registers
1083 * @ha: pointer to adapter structure
1084 *
1085 * This routines maps HBA's registers from the pci address space
1086 * into the kernel virtual address space for memory mapped i/o.
1087 **/
1088static int qla4xxx_iospace_config(struct scsi_qla_host *ha)
1089{
1090 unsigned long pio, pio_len, pio_flags;
1091 unsigned long mmio, mmio_len, mmio_flags;
1092
1093 pio = pci_resource_start(ha->pdev, 0);
1094 pio_len = pci_resource_len(ha->pdev, 0);
1095 pio_flags = pci_resource_flags(ha->pdev, 0);
1096 if (pio_flags & IORESOURCE_IO) {
1097 if (pio_len < MIN_IOBASE_LEN) {
1098 dev_warn(&ha->pdev->dev,
1099 "Invalid PCI I/O region size\n");
1100 pio = 0;
1101 }
1102 } else {
1103 dev_warn(&ha->pdev->dev, "region #0 not a PIO resource\n");
1104 pio = 0;
1105 }
1106
1107 /* Use MMIO operations for all accesses. */
1108 mmio = pci_resource_start(ha->pdev, 1);
1109 mmio_len = pci_resource_len(ha->pdev, 1);
1110 mmio_flags = pci_resource_flags(ha->pdev, 1);
1111
1112 if (!(mmio_flags & IORESOURCE_MEM)) {
1113 dev_err(&ha->pdev->dev,
1114 "region #0 not an MMIO resource, aborting\n");
1115
1116 goto iospace_error_exit;
1117 }
1118 if (mmio_len < MIN_IOBASE_LEN) {
1119 dev_err(&ha->pdev->dev,
1120 "Invalid PCI mem region size, aborting\n");
1121 goto iospace_error_exit;
1122 }
1123
1124 if (pci_request_regions(ha->pdev, DRIVER_NAME)) {
1125 dev_warn(&ha->pdev->dev,
1126 "Failed to reserve PIO/MMIO regions\n");
1127
1128 goto iospace_error_exit;
1129 }
1130
1131 ha->pio_address = pio;
1132 ha->pio_length = pio_len;
1133 ha->reg = ioremap(mmio, MIN_IOBASE_LEN);
1134 if (!ha->reg) {
1135 dev_err(&ha->pdev->dev,
1136 "cannot remap MMIO, aborting\n");
1137
1138 goto iospace_error_exit;
1139 }
1140
1141 return 0;
1142
1143iospace_error_exit:
1144 return -ENOMEM;
1145}
1146
1147/**
1148 * qla4xxx_probe_adapter - callback function to probe HBA
1149 * @pdev: pointer to pci_dev structure
1150 * @pci_device_id: pointer to pci_device entry
1151 *
1152 * This routine will probe for Qlogic 4xxx iSCSI host adapters.
1153 * It returns zero if successful. It also initializes all data necessary for
1154 * the driver.
1155 **/
1156static int __devinit qla4xxx_probe_adapter(struct pci_dev *pdev,
1157 const struct pci_device_id *ent)
1158{
1159 int ret = -ENODEV, status;
1160 struct Scsi_Host *host;
1161 struct scsi_qla_host *ha;
1162 struct ddb_entry *ddb_entry, *ddbtemp;
1163 uint8_t init_retry_count = 0;
1164 char buf[34];
1165
1166 if (pci_enable_device(pdev))
1167 return -1;
1168
1169 host = scsi_host_alloc(&qla4xxx_driver_template, sizeof(*ha));
1170 if (host == NULL) {
1171 printk(KERN_WARNING
1172 "qla4xxx: Couldn't allocate host from scsi layer!\n");
1173 goto probe_disable_device;
1174 }
1175
1176 /* Clear our data area */
1177 ha = (struct scsi_qla_host *) host->hostdata;
1178 memset(ha, 0, sizeof(*ha));
1179
1180 /* Save the information from PCI BIOS. */
1181 ha->pdev = pdev;
1182 ha->host = host;
1183 ha->host_no = host->host_no;
1184
1185 /* Configure PCI I/O space. */
1186 ret = qla4xxx_iospace_config(ha);
1187 if (ret)
1188 goto probe_failed;
1189
1190 dev_info(&ha->pdev->dev, "Found an ISP%04x, irq %d, iobase 0x%p\n",
1191 pdev->device, pdev->irq, ha->reg);
1192
1193 qla4xxx_config_dma_addressing(ha);
1194
1195 /* Initialize lists and spinlocks. */
1196 INIT_LIST_HEAD(&ha->ddb_list);
1197 INIT_LIST_HEAD(&ha->free_srb_q);
1198
1199 mutex_init(&ha->mbox_sem);
1200 init_waitqueue_head(&ha->mailbox_wait_queue);
1201
1202 spin_lock_init(&ha->hardware_lock);
David Somayajuluafaf5a22006-09-19 10:28:00 -07001203
1204 /* Allocate dma buffers */
1205 if (qla4xxx_mem_alloc(ha)) {
1206 dev_warn(&ha->pdev->dev,
1207 "[ERROR] Failed to allocate memory for adapter\n");
1208
1209 ret = -ENOMEM;
1210 goto probe_failed;
1211 }
1212
1213 /*
1214 * Initialize the Host adapter request/response queues and
1215 * firmware
1216 * NOTE: interrupts enabled upon successful completion
1217 */
1218 status = qla4xxx_initialize_adapter(ha, REBUILD_DDB_LIST);
1219 while (status == QLA_ERROR && init_retry_count++ < MAX_INIT_RETRIES) {
1220 DEBUG2(printk("scsi: %s: retrying adapter initialization "
1221 "(%d)\n", __func__, init_retry_count));
1222 qla4xxx_soft_reset(ha);
1223 status = qla4xxx_initialize_adapter(ha, REBUILD_DDB_LIST);
1224 }
1225 if (status == QLA_ERROR) {
1226 dev_warn(&ha->pdev->dev, "Failed to initialize adapter\n");
1227
1228 ret = -ENODEV;
1229 goto probe_failed;
1230 }
1231
1232 host->cmd_per_lun = 3;
1233 host->max_channel = 0;
1234 host->max_lun = MAX_LUNS - 1;
1235 host->max_id = MAX_TARGETS;
1236 host->max_cmd_len = IOCB_MAX_CDB_LEN;
1237 host->can_queue = MAX_SRBS ;
1238 host->transportt = qla4xxx_scsi_transport;
1239
1240 ret = scsi_init_shared_tag_map(host, MAX_SRBS);
1241 if (ret) {
1242 dev_warn(&ha->pdev->dev, "scsi_init_shared_tag_map failed");
1243 goto probe_failed;
1244 }
1245
1246 /* Startup the kernel thread for this host adapter. */
1247 DEBUG2(printk("scsi: %s: Starting kernel thread for "
1248 "qla4xxx_dpc\n", __func__));
1249 sprintf(buf, "qla4xxx_%lu_dpc", ha->host_no);
1250 ha->dpc_thread = create_singlethread_workqueue(buf);
1251 if (!ha->dpc_thread) {
1252 dev_warn(&ha->pdev->dev, "Unable to start DPC thread!\n");
1253 ret = -ENODEV;
1254 goto probe_failed;
1255 }
1256 INIT_WORK(&ha->dpc_work, qla4xxx_do_dpc, ha);
1257
1258 ret = request_irq(pdev->irq, qla4xxx_intr_handler,
1259 SA_INTERRUPT|SA_SHIRQ, "qla4xxx", ha);
1260 if (ret) {
1261 dev_warn(&ha->pdev->dev, "Failed to reserve interrupt %d"
1262 " already in use.\n", pdev->irq);
1263 goto probe_failed;
1264 }
1265 set_bit(AF_IRQ_ATTACHED, &ha->flags);
1266 host->irq = pdev->irq;
1267 DEBUG(printk("scsi%d: irq %d attached\n", ha->host_no, ha->pdev->irq));
1268
1269 qla4xxx_enable_intrs(ha);
1270
1271 /* Start timer thread. */
1272 qla4xxx_start_timer(ha, qla4xxx_timer, 1);
1273
1274 set_bit(AF_INIT_DONE, &ha->flags);
1275
1276 pci_set_drvdata(pdev, ha);
1277
1278 ret = scsi_add_host(host, &pdev->dev);
1279 if (ret)
1280 goto probe_failed;
1281
1282 /* Update transport device information for all devices. */
1283 list_for_each_entry_safe(ddb_entry, ddbtemp, &ha->ddb_list, list) {
1284 if (ddb_entry->fw_ddb_device_state == DDB_DS_SESSION_ACTIVE)
1285 if (qla4xxx_add_sess(ddb_entry))
1286 goto remove_host;
1287 }
1288
1289 printk(KERN_INFO
1290 " QLogic iSCSI HBA Driver version: %s\n"
1291 " QLogic ISP%04x @ %s, host#=%ld, fw=%02d.%02d.%02d.%02d\n",
1292 qla4xxx_version_str, ha->pdev->device, pci_name(ha->pdev),
1293 ha->host_no, ha->firmware_version[0], ha->firmware_version[1],
1294 ha->patch_number, ha->build_number);
1295
1296 return 0;
1297
1298remove_host:
1299 qla4xxx_free_ddb_list(ha);
1300 scsi_remove_host(host);
1301
1302probe_failed:
1303 qla4xxx_free_adapter(ha);
1304 scsi_host_put(ha->host);
1305
1306probe_disable_device:
1307 pci_disable_device(pdev);
1308
1309 return ret;
1310}
1311
1312/**
1313 * qla4xxx_remove_adapter - calback function to remove adapter.
1314 * @pci_dev: PCI device pointer
1315 **/
1316static void __devexit qla4xxx_remove_adapter(struct pci_dev *pdev)
1317{
1318 struct scsi_qla_host *ha;
1319
1320 ha = pci_get_drvdata(pdev);
1321
1322 /* remove devs from iscsi_sessions to scsi_devices */
1323 qla4xxx_free_ddb_list(ha);
1324
1325 scsi_remove_host(ha->host);
1326
1327 qla4xxx_free_adapter(ha);
1328
1329 scsi_host_put(ha->host);
1330
1331 pci_set_drvdata(pdev, NULL);
1332}
1333
1334/**
1335 * qla4xxx_config_dma_addressing() - Configure OS DMA addressing method.
1336 * @ha: HA context
1337 *
1338 * At exit, the @ha's flags.enable_64bit_addressing set to indicated
1339 * supported addressing method.
1340 */
1341void qla4xxx_config_dma_addressing(struct scsi_qla_host *ha)
1342{
1343 int retval;
1344
1345 /* Update our PCI device dma_mask for full 64 bit mask */
1346 if (pci_set_dma_mask(ha->pdev, DMA_64BIT_MASK) == 0) {
1347 if (pci_set_consistent_dma_mask(ha->pdev, DMA_64BIT_MASK)) {
1348 dev_dbg(&ha->pdev->dev,
1349 "Failed to set 64 bit PCI consistent mask; "
1350 "using 32 bit.\n");
1351 retval = pci_set_consistent_dma_mask(ha->pdev,
1352 DMA_32BIT_MASK);
1353 }
1354 } else
1355 retval = pci_set_dma_mask(ha->pdev, DMA_32BIT_MASK);
1356}
1357
1358static int qla4xxx_slave_alloc(struct scsi_device *sdev)
1359{
1360 struct iscsi_cls_session *sess = starget_to_session(sdev->sdev_target);
1361 struct ddb_entry *ddb = sess->dd_data;
1362
1363 sdev->hostdata = ddb;
1364 sdev->tagged_supported = 1;
1365 scsi_activate_tcq(sdev, sdev->host->can_queue);
1366 return 0;
1367}
1368
1369static int qla4xxx_slave_configure(struct scsi_device *sdev)
1370{
1371 sdev->tagged_supported = 1;
1372 return 0;
1373}
1374
1375static void qla4xxx_slave_destroy(struct scsi_device *sdev)
1376{
1377 scsi_deactivate_tcq(sdev, 1);
1378}
1379
1380/**
1381 * qla4xxx_del_from_active_array - returns an active srb
1382 * @ha: Pointer to host adapter structure.
1383 * @index: index into to the active_array
1384 *
1385 * This routine removes and returns the srb at the specified index
1386 **/
1387struct srb * qla4xxx_del_from_active_array(struct scsi_qla_host *ha, uint32_t index)
1388{
1389 struct srb *srb = NULL;
1390 struct scsi_cmnd *cmd;
1391
1392 if (!(cmd = scsi_host_find_tag(ha->host, index)))
1393 return srb;
1394
1395 if (!(srb = (struct srb *)cmd->host_scribble))
1396 return srb;
1397
1398 /* update counters */
1399 if (srb->flags & SRB_DMA_VALID) {
1400 ha->req_q_count += srb->iocb_cnt;
1401 ha->iocb_cnt -= srb->iocb_cnt;
1402 if (srb->cmd)
1403 srb->cmd->host_scribble = NULL;
1404 }
1405 return srb;
1406}
1407
1408/**
David Somayajuluafaf5a22006-09-19 10:28:00 -07001409 * qla4xxx_eh_wait_on_command - waits for command to be returned by firmware
1410 * @ha: actual ha whose done queue will contain the comd returned by firmware.
1411 * @cmd: Scsi Command to wait on.
1412 *
1413 * This routine waits for the command to be returned by the Firmware
1414 * for some max time.
1415 **/
1416static int qla4xxx_eh_wait_on_command(struct scsi_qla_host *ha,
1417 struct scsi_cmnd *cmd)
1418{
1419 int done = 0;
1420 struct srb *rp;
1421 uint32_t max_wait_time = EH_WAIT_CMD_TOV;
1422
1423 do {
1424 /* Checking to see if its returned to OS */
1425 rp = (struct srb *) cmd->SCp.ptr;
1426 if (rp == NULL) {
1427 done++;
1428 break;
1429 }
1430
1431 msleep(2000);
1432 } while (max_wait_time--);
1433
1434 return done;
1435}
1436
1437/**
1438 * qla4xxx_wait_for_hba_online - waits for HBA to come online
1439 * @ha: Pointer to host adapter structure
1440 **/
1441static int qla4xxx_wait_for_hba_online(struct scsi_qla_host *ha)
1442{
1443 unsigned long wait_online;
1444
1445 wait_online = jiffies + (30 * HZ);
1446 while (time_before(jiffies, wait_online)) {
1447
1448 if (adapter_up(ha))
1449 return QLA_SUCCESS;
1450 else if (ha->retry_reset_ha_cnt == 0)
1451 return QLA_ERROR;
1452
1453 msleep(2000);
1454 }
1455
1456 return QLA_ERROR;
1457}
1458
1459/**
1460 * qla4xxx_eh_wait_for_active_target_commands - wait for active cmds to finish.
1461 * @ha: pointer to to HBA
1462 * @t: target id
1463 * @l: lun id
1464 *
1465 * This function waits for all outstanding commands to a lun to complete. It
1466 * returns 0 if all pending commands are returned and 1 otherwise.
1467 **/
1468static int qla4xxx_eh_wait_for_active_target_commands(struct scsi_qla_host *ha,
1469 int t, int l)
1470{
1471 int cnt;
1472 int status = 0;
1473 struct scsi_cmnd *cmd;
1474
1475 /*
1476 * Waiting for all commands for the designated target in the active
1477 * array
1478 */
1479 for (cnt = 0; cnt < ha->host->can_queue; cnt++) {
1480 cmd = scsi_host_find_tag(ha->host, cnt);
1481 if (cmd && cmd->device->id == t && cmd->device->lun == l) {
1482 if (!qla4xxx_eh_wait_on_command(ha, cmd)) {
1483 status++;
1484 break;
1485 }
1486 }
1487 }
1488 return status;
1489}
1490
1491/**
1492 * qla4xxx_eh_device_reset - callback for target reset.
1493 * @cmd: Pointer to Linux's SCSI command structure
1494 *
1495 * This routine is called by the Linux OS to reset all luns on the
1496 * specified target.
1497 **/
1498static int qla4xxx_eh_device_reset(struct scsi_cmnd *cmd)
1499{
1500 struct scsi_qla_host *ha = to_qla_host(cmd->device->host);
1501 struct ddb_entry *ddb_entry = cmd->device->hostdata;
1502 struct srb *sp;
1503 int ret = FAILED, stat;
1504
1505 sp = (struct srb *) cmd->SCp.ptr;
1506 if (!sp || !ddb_entry)
1507 return ret;
1508
1509 dev_info(&ha->pdev->dev,
1510 "scsi%ld:%d:%d:%d: DEVICE RESET ISSUED.\n", ha->host_no,
1511 cmd->device->channel, cmd->device->id, cmd->device->lun);
1512
1513 DEBUG2(printk(KERN_INFO
1514 "scsi%ld: DEVICE_RESET cmd=%p jiffies = 0x%lx, to=%x,"
1515 "dpc_flags=%lx, status=%x allowed=%d\n", ha->host_no,
1516 cmd, jiffies, cmd->timeout_per_command / HZ,
1517 ha->dpc_flags, cmd->result, cmd->allowed));
1518
1519 /* FIXME: wait for hba to go online */
1520 stat = qla4xxx_reset_lun(ha, ddb_entry, cmd->device->lun);
1521 if (stat != QLA_SUCCESS) {
1522 dev_info(&ha->pdev->dev, "DEVICE RESET FAILED. %d\n", stat);
1523 goto eh_dev_reset_done;
1524 }
1525
1526 /* Send marker. */
1527 ha->marker_needed = 1;
1528
1529 /*
1530 * If we are coming down the EH path, wait for all commands to complete
1531 * for the device.
1532 */
1533 if (cmd->device->host->shost_state == SHOST_RECOVERY) {
1534 if (qla4xxx_eh_wait_for_active_target_commands(ha,
1535 cmd->device->id,
1536 cmd->device->lun)){
1537 dev_info(&ha->pdev->dev,
1538 "DEVICE RESET FAILED - waiting for "
1539 "commands.\n");
1540 goto eh_dev_reset_done;
1541 }
1542 }
1543
1544 dev_info(&ha->pdev->dev,
1545 "scsi(%ld:%d:%d:%d): DEVICE RESET SUCCEEDED.\n",
1546 ha->host_no, cmd->device->channel, cmd->device->id,
1547 cmd->device->lun);
1548
1549 ret = SUCCESS;
1550
1551eh_dev_reset_done:
1552
1553 return ret;
1554}
1555
1556/**
1557 * qla4xxx_eh_host_reset - kernel callback
1558 * @cmd: Pointer to Linux's SCSI command structure
1559 *
1560 * This routine is invoked by the Linux kernel to perform fatal error
1561 * recovery on the specified adapter.
1562 **/
1563static int qla4xxx_eh_host_reset(struct scsi_cmnd *cmd)
1564{
1565 int return_status = FAILED;
1566 struct scsi_qla_host *ha;
1567
1568 ha = (struct scsi_qla_host *) cmd->device->host->hostdata;
1569
1570 dev_info(&ha->pdev->dev,
1571 "scsi(%ld:%d:%d:%d): ADAPTER RESET ISSUED.\n", ha->host_no,
1572 cmd->device->channel, cmd->device->id, cmd->device->lun);
1573
1574 if (qla4xxx_wait_for_hba_online(ha) != QLA_SUCCESS) {
1575 DEBUG2(printk("scsi%ld:%d: %s: Unable to reset host. Adapter "
1576 "DEAD.\n", ha->host_no, cmd->device->channel,
1577 __func__));
1578
1579 return FAILED;
1580 }
1581
1582 if (qla4xxx_recover_adapter(ha, PRESERVE_DDB_LIST) == QLA_SUCCESS) {
1583 return_status = SUCCESS;
1584 }
1585
1586 dev_info(&ha->pdev->dev, "HOST RESET %s.\n",
1587 return_status == FAILED ? "FAILED" : "SUCCEDED");
1588
1589 return return_status;
1590}
1591
1592
1593static struct pci_device_id qla4xxx_pci_tbl[] = {
1594 {
1595 .vendor = PCI_VENDOR_ID_QLOGIC,
1596 .device = PCI_DEVICE_ID_QLOGIC_ISP4010,
1597 .subvendor = PCI_ANY_ID,
1598 .subdevice = PCI_ANY_ID,
1599 },
1600 {
1601 .vendor = PCI_VENDOR_ID_QLOGIC,
1602 .device = PCI_DEVICE_ID_QLOGIC_ISP4022,
1603 .subvendor = PCI_ANY_ID,
1604 .subdevice = PCI_ANY_ID,
1605 },
David C Somayajulud9150582006-11-15 17:38:40 -08001606 {
1607 .vendor = PCI_VENDOR_ID_QLOGIC,
1608 .device = PCI_DEVICE_ID_QLOGIC_ISP4032,
1609 .subvendor = PCI_ANY_ID,
1610 .subdevice = PCI_ANY_ID,
1611 },
David Somayajuluafaf5a22006-09-19 10:28:00 -07001612 {0, 0},
1613};
1614MODULE_DEVICE_TABLE(pci, qla4xxx_pci_tbl);
1615
1616struct pci_driver qla4xxx_pci_driver = {
1617 .name = DRIVER_NAME,
1618 .id_table = qla4xxx_pci_tbl,
1619 .probe = qla4xxx_probe_adapter,
1620 .remove = qla4xxx_remove_adapter,
1621};
1622
1623static int __init qla4xxx_module_init(void)
1624{
1625 int ret;
1626
1627 /* Allocate cache for SRBs. */
1628 srb_cachep = kmem_cache_create("qla4xxx_srbs", sizeof(struct srb), 0,
1629 SLAB_HWCACHE_ALIGN, NULL, NULL);
1630 if (srb_cachep == NULL) {
1631 printk(KERN_ERR
1632 "%s: Unable to allocate SRB cache..."
1633 "Failing load!\n", DRIVER_NAME);
1634 ret = -ENOMEM;
1635 goto no_srp_cache;
1636 }
1637
1638 /* Derive version string. */
1639 strcpy(qla4xxx_version_str, QLA4XXX_DRIVER_VERSION);
Andrew Vasquez11010fe2006-10-06 09:54:59 -07001640 if (ql4xextended_error_logging)
David Somayajuluafaf5a22006-09-19 10:28:00 -07001641 strcat(qla4xxx_version_str, "-debug");
1642
1643 qla4xxx_scsi_transport =
1644 iscsi_register_transport(&qla4xxx_iscsi_transport);
1645 if (!qla4xxx_scsi_transport){
1646 ret = -ENODEV;
1647 goto release_srb_cache;
1648 }
1649
David Somayajuluafaf5a22006-09-19 10:28:00 -07001650 ret = pci_register_driver(&qla4xxx_pci_driver);
1651 if (ret)
1652 goto unregister_transport;
1653
1654 printk(KERN_INFO "QLogic iSCSI HBA Driver\n");
1655 return 0;
Doug Maxey5ae16db2006-10-05 23:50:07 -05001656
David Somayajuluafaf5a22006-09-19 10:28:00 -07001657unregister_transport:
1658 iscsi_unregister_transport(&qla4xxx_iscsi_transport);
1659release_srb_cache:
1660 kmem_cache_destroy(srb_cachep);
1661no_srp_cache:
1662 return ret;
1663}
1664
1665static void __exit qla4xxx_module_exit(void)
1666{
1667 pci_unregister_driver(&qla4xxx_pci_driver);
1668 iscsi_unregister_transport(&qla4xxx_iscsi_transport);
1669 kmem_cache_destroy(srb_cachep);
1670}
1671
1672module_init(qla4xxx_module_init);
1673module_exit(qla4xxx_module_exit);
1674
1675MODULE_AUTHOR("QLogic Corporation");
1676MODULE_DESCRIPTION("QLogic iSCSI HBA Driver");
1677MODULE_LICENSE("GPL");
1678MODULE_VERSION(QLA4XXX_DRIVER_VERSION);